@charset "UTF-8";
/* Scss Document */
/* 変数まとめ */
/*サポートブラウザの設定と初期値*/
/*色*/
/*トップページカラー*/
/*フォントサイズ*/
/*スマホの基本幅*/
/*pcの基本幅*/
/*imgパス*/
/* Scss Document */
/*メデイアクエリブレイクポイント*/
/* @include media-pc という風に記述する*/
/*clearfix*/
/*webfont*/
.back-color__bk {
  background-color: #000 !important;
  color: #FFF; }

/*--------------------------------------------------------------
# animate：アニメーション
--------------------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

/*最初に非表示*/
.nonvisibility {
  visibility: hidden; }

/*--------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInUp {
  visibility: visible !important;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

/*--------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInDown {
  visibility: visible !important;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

/*--------------*/
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.tada {
  visibility: visible !important;
  -webkit-animation-name: tada;
  animation-name: tada; }

/*--------------*/
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.rollIn {
  visibility: visible !important;
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3); }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out; }

.Att_base001 {
  color: #E50065; }

.Att_base002 {
  color: #E50065;
  font-weight: bold; }

.Attbackcolor--pink {
  padding: 0.2em 0.3em;
  background: #E50065;
  color: #fff; }

.AttBox001 {
  border: 3px solid #E50065;
  padding: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.AttBox002 {
  border: solid 8px #e40007;
  padding: 0.5em;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.AttBox003 {
  border: solid 3px #ccc;
  padding: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.AttBox004 {
  padding: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.7); }

.AttBox005 {
  border: solid 1px #E50065;
  padding: 0.5em; }

.AttBox006 {
  background-color: #e2e2e2;
  padding: 0.3em 0.5em;
  margin-bottom: 0.5em; }

.AttBox_border--gray {
  padding: 1.2em;
  margin: 1em 0;
  border: 10px #f2f2f2 solid; }

.AttBox_border--stripe {
  padding: 1.6em;
  margin: 1em 0;
  position: relative; }
  .AttBox_border--stripe:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #fff;
    z-index: -1; }
  .AttBox_border--stripe:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-repeating-linear-gradient(135deg, #fff, #fff 5px, #e2e2e2 0, #e2e2e2 10px);
    background: repeating-linear-gradient(-45deg, #fff, #fff 5px, #e2e2e2 0, #e2e2e2 10px);
    z-index: -2; }

/*------------*/
.highlighter--yellow {
  background: -webkit-linear-gradient(transparent 60%, #FFFF00 60%);
  background: linear-gradient(transparent 60%, #FFFF00 60%); }

.highlighter--pink {
  background: -webkit-linear-gradient(transparent 60%, #E50065 60%);
  background: linear-gradient(transparent 60%, #E50065 60%); }

.fukidashi__box, .fukidashi__box--pink, .fukidashi__box--glay {
  margin: 2rem auto;
  position: relative;
  padding: 1.5rem;
  width: 100%;
  font-size: 1.2rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .fukidashi__box, .fukidashi__box--pink, .fukidashi__box--glay {
      width: 100%; } }
  .fukidashi__box:after, .fukidashi__box--pink:after, .fukidashi__box--glay:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    text-align: center;
    border: 15px solid transparent; }
  .fukidashi__box--pink {
    background: #E50065;
    color: #FFFFFF; }
    .fukidashi__box--pink:after {
      border-top: 15px solid #E50065; }
  .fukidashi__box--glay {
    background: #e2e2e2;
    color: #E50065; }
    .fukidashi__box--glay:after {
      border-top: 15px solid #e2e2e2; }

/*frontpageのreadmoreボタン
******************************************************************************/
.btn_readmore {
  margin: 1.5em auto 0 auto;
  width: 8rem; }

/*汎用申し込みボタン（赤）
******************************************************************************/
.moushikomibutton {
  width: 80%;
  text-align: center;
  background: #EA004B;
  border-radius: 3px;
  margin: 1em auto; }

.moushikomibutton a {
  display: block !important;
  color: #FFF;
  padding: 3%;
  text-decoration: none;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .moushikomibutton a {
      padding: 4%; } }

.moushikomibutton a:hover,
.moushikomibutton a:visited {
  color: #FFF; }

.moushikomibutton:hover,
.moushikomibutton:active {
  opacity: 0.7; }

/*汎用申し込みボタン（グレー）
******************************************************************************/
.moushikomibutton.gray {
  background: #808080; }

.button-gost, .button-gost--bk, .button-gost--wh, .button-gost--bg_bk {
  display: inline-block;
  border: solid 2px #FFF;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  padding: .5rem 2rem;
  margin-bottom: .5rem;
  cursor: pointer;
  position: relative;
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  max-width: 100%;
  /*pc769px以上*/
  /*スマホ 768px以下*/
  /*	&--bg_bk {
		@extend .button-gost;
		color: #FFF;
        border-color: #FFF;
		background: #000;
		.button-gost__triangle{
			border-left-color: #000;
			&:hover {
			color: #000;
			background:#FFF;
			box-shadow:none;
				.button-gost__triangle{
			    border-left-color: #000;
				}
			}
		}
	}*/ }
  @media all and (min-width: 48.0625em) {
    .button-gost, .button-gost--bk, .button-gost--wh, .button-gost--bg_bk {
      min-width: 25rem; } }
  @media (max-width: 48em) {
    .button-gost, .button-gost--bk, .button-gost--wh, .button-gost--bg_bk {
      min-width: 70%; } }
  .button-gost .button-gost__triangle, .button-gost--bk .button-gost__triangle, .button-gost--wh .button-gost__triangle, .button-gost--bg_bk .button-gost__triangle {
    position: absolute;
    top: 50%;
    right: .5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    border-top: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    border-left: 1rem solid #FFF; }
  .button-gost:hover, .button-gost--bk:hover, .button-gost--wh:hover, .button-gost--bg_bk:hover {
    color: #000;
    background: #FFF;
    box-shadow: none; }
  .button-gost--bk {
    color: #000;
    border-color: #000; }
    .button-gost--bk .button-gost__triangle {
      border-left-color: #000; }
  .button-gost--wh {
    color: #000;
    border-color: #000;
    background: #FFFFFF; }
    .button-gost--wh .button-gost__triangle {
      border-left-color: #000; }
  .button-gost--bg_bk {
    color: #FFF !important; }
    .button-gost--bg_bk:hover {
      color: #000 !important; }
      .button-gost--bg_bk:hover .button-gost__triangle {
        border-left-color: #000; }

/*分割用BOX
****************************************************************************************************************/
.Box-2 {
  width: 47.5%;
  float: left;
  margin-right: 5%;
  margin-bottom: 10px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-2 {
      width: 100%;
      margin-right: 0;
      float: none; } }

.Box-2:nth-of-type(2n) {
  margin-right: 0; }

.Box-2:nth-of-type(2n+1) {
  clear: left; }

/*Box-2で横並びを維持する場合*/
.floatbox .Box-2 {
  width: 47.5%;
  float: left;
  margin-right: 5%;
  margin-bottom: 10px; }

.floatbox .Box-2:nth-of-type(2n) {
  margin-right: 0; }

.Box-3 {
  float: left;
  width: 30%;
  margin-right: 5%;
  margin-bottom: 10px; }

.Box-3:nth-of-type(3n) {
  margin-right: 0; }

/*Box-3で2列ずつにする場合*/
.drop .Box-3 {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .drop .Box-3 {
      width: 47.5%;
      margin-right: 5%; } }

.drop .Box-3:nth-of-type(3n) {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .drop .Box-3:nth-of-type(3n) {
      margin-right: 5%; } }

.drop .Box-3:nth-of-type(2n) {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .drop .Box-3:nth-of-type(2n) {
      margin-right: 0; } }

/*Box-3で1列ずつにする場合*/
.floatnone .Box-3 {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .floatnone .Box-3 {
      width: 100%;
      margin-right: 0; } }

.Box-4 {
  float: left;
  width: 21.25%;
  margin-right: 5%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-4 {
      width: 47.5%;
      float: left;
      margin-right: 5%; } }
  .Box-4:nth-of-type(4n) {
    margin-right: 0; }
  .Box-4:nth-of-type(2n) {
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .Box-4:nth-of-type(2n) {
        margin-right: 0; } }

.Box-5 {
  float: left;
  width: 17.6%;
  margin-right: 3%;
  margin-bottom: 10px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-5 {
      float: left;
      width: 30%;
      margin-right: 5%;
      margin-bottom: 10px; } }
  .Box-5:nth-of-type(3n) {
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .Box-5:nth-of-type(3n) {
        margin-right: 0; } }
  .Box-5:nth-of-type(5n) {
    /*pc769px以上*/
    /*スマホ 768px以下*/ }
    @media all and (min-width: 48.0625em) {
      .Box-5:nth-of-type(5n) {
        margin-right: 0; } }
    @media (max-width: 48em) {
      .Box-5:nth-of-type(5n) {
        margin-right: 5%; } }

.Box-6 {
  float: left;
  width: 14.1%;
  margin-right: 3%;
  margin-bottom: 10px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-6 {
      width: 32%;
      margin-top: 0.4em;
      margin-right: 2%;
      float: left; } }
  .Box-6:nth-of-type(3n) {
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .Box-6:nth-of-type(3n) {
        margin-right: 0; } }
  .Box-6:nth-of-type(6n) {
    margin-right: 0; }

/*以上Box-5、Box-6は交通アクセスページのsp用に変更のため、他のページでそれらを使う時には注意要*/
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    html {
      font-size: 100%;
      /*16px*/ } }
  @media (max-width: 48em) {
    html {
      font-size: 81.25%;
      /*13px*/ } }

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500; }

body,
button,
input,
select,
textarea {
  line-height: 1.5; }

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

hr {
  background-color: #ccc !important;
  border: 0 !important;
  height: 1px !important; }

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

/* 画像のリンクロールオーバー */
a img, a:hover img, a:visited img {
  -webkit-transition: all .3s;
  transition: all .3s; }

a:hover img {
  filter: alpha(opacity=50);
  -moz-opacity: 0.50;
  opacity: 0.50;
  -webkit-transition: all .3s;
  transition: all .3s; }

p {
  margin: 1.5em 0; }

a, a:hover, a:visited {
  color: #000; }
  a:hover {
    text-decoration: none; }

table {
  border-collapse: collapse; }

ul,
li {
  padding: 0;
  list-style: none; }

dl {
  padding: 0; }

dt,
dd {
  margin: 0; }

/*
******************************************************************************/
.ctinner {
  max-width: 1024px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ctinner {
      width: 96%; } }

.ctwrap, .ctwrap--sp-100 {
  max-width: 1024px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ctwrap, .ctwrap--sp-100 {
      width: 96%; } }
  .ctwrap--sp-100 {
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .ctwrap--sp-100 {
        width: 100%; } }

.wrap-sp {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .wrap-sp {
      width: 90%;
      margin-left: auto;
      margin-right: auto; } }

/*clearfix
******************************************************************************/
.clearfix::after {
  content: "";
  display: block;
  clear: both; }

/*pdfアイコン
******************************************************************************/
/*pdfのリンクの際に自動的にアイコンを付ける*/
a[href$=".pdf"] {
  background: url("../img/common/icon_pdf.png") no-repeat scroll right center transparent;
  display: inline-block;
  padding: 5px 40px 5px 0; }

/*アイコンを付けない場合*/
.no-pdf a[href$=".pdf"] {
  background: none;
  display: inline;
  padding: 0; }

/*pcとspで表示切り分け
******************************************************************************/
.Box-pc {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .Box-pc {
      display: block; } }
  @media (max-width: 48em) {
    .Box-pc {
      display: none; } }

.Box-sp {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .Box-sp {
      display: none; } }
  @media (max-width: 48em) {
    .Box-sp {
      display: block; } }

/*googlemapサイズをフレキシブルに
******************************************************************************/
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }

/*youtubeやiframeのサイズをフレキシブルに
******************************************************************************/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; }

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important; }

/*テキストサイズ
******************************************************************************/
.Font-S {
  font-size: 70%; }

.Font-SS {
  font-size: 80%; }

.Font-M {
  font-size: 100%; }

.Font-L {
  font-size: 110%; }

.Font-LL {
  font-size: 120%; }

.Font-LLL {
  font-size: 130%; }

.Font-4L {
  font-size: 140%; }

.Font-5L {
  font-size: 150%; }

.Font--0 {
  font-size: 0rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-0 {
    font-size: 0rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-0 {
    font-size: 0rem !important; } }

.Font--1 {
  font-size: 0.1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-1 {
    font-size: 0.1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-1 {
    font-size: 0.1rem !important; } }

.Font--2 {
  font-size: 0.2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-2 {
    font-size: 0.2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-2 {
    font-size: 0.2rem !important; } }

.Font--3 {
  font-size: 0.3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-3 {
    font-size: 0.3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-3 {
    font-size: 0.3rem !important; } }

.Font--4 {
  font-size: 0.4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-4 {
    font-size: 0.4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-4 {
    font-size: 0.4rem !important; } }

.Font--5 {
  font-size: 0.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-5 {
    font-size: 0.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-5 {
    font-size: 0.5rem !important; } }

.Font--6 {
  font-size: 0.6rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-6 {
    font-size: 0.6rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-6 {
    font-size: 0.6rem !important; } }

.Font--7 {
  font-size: 0.7rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-7 {
    font-size: 0.7rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-7 {
    font-size: 0.7rem !important; } }

.Font--8 {
  font-size: 0.8rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-8 {
    font-size: 0.8rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-8 {
    font-size: 0.8rem !important; } }

.Font--9 {
  font-size: 0.9rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-9 {
    font-size: 0.9rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-9 {
    font-size: 0.9rem !important; } }

.Font--10 {
  font-size: 1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-10 {
    font-size: 1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-10 {
    font-size: 1rem !important; } }

.Font--11 {
  font-size: 1.1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-11 {
    font-size: 1.1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-11 {
    font-size: 1.1rem !important; } }

.Font--12 {
  font-size: 1.2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-12 {
    font-size: 1.2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-12 {
    font-size: 1.2rem !important; } }

.Font--13 {
  font-size: 1.3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-13 {
    font-size: 1.3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-13 {
    font-size: 1.3rem !important; } }

.Font--14 {
  font-size: 1.4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-14 {
    font-size: 1.4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-14 {
    font-size: 1.4rem !important; } }

.Font--15 {
  font-size: 1.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-15 {
    font-size: 1.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-15 {
    font-size: 1.5rem !important; } }

.Font--16 {
  font-size: 1.6rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-16 {
    font-size: 1.6rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-16 {
    font-size: 1.6rem !important; } }

.Font--17 {
  font-size: 1.7rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-17 {
    font-size: 1.7rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-17 {
    font-size: 1.7rem !important; } }

.Font--18 {
  font-size: 1.8rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-18 {
    font-size: 1.8rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-18 {
    font-size: 1.8rem !important; } }

.Font--19 {
  font-size: 1.9rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-19 {
    font-size: 1.9rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-19 {
    font-size: 1.9rem !important; } }

.Font--20 {
  font-size: 2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-20 {
    font-size: 2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-20 {
    font-size: 2rem !important; } }

.Font--21 {
  font-size: 2.1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-21 {
    font-size: 2.1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-21 {
    font-size: 2.1rem !important; } }

.Font--22 {
  font-size: 2.2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-22 {
    font-size: 2.2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-22 {
    font-size: 2.2rem !important; } }

.Font--23 {
  font-size: 2.3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-23 {
    font-size: 2.3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-23 {
    font-size: 2.3rem !important; } }

.Font--24 {
  font-size: 2.4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-24 {
    font-size: 2.4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-24 {
    font-size: 2.4rem !important; } }

.Font--25 {
  font-size: 2.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-25 {
    font-size: 2.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-25 {
    font-size: 2.5rem !important; } }

.Font--26 {
  font-size: 2.6rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-26 {
    font-size: 2.6rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-26 {
    font-size: 2.6rem !important; } }

.Font--27 {
  font-size: 2.7rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-27 {
    font-size: 2.7rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-27 {
    font-size: 2.7rem !important; } }

.Font--28 {
  font-size: 2.8rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-28 {
    font-size: 2.8rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-28 {
    font-size: 2.8rem !important; } }

.Font--29 {
  font-size: 2.9rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-29 {
    font-size: 2.9rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-29 {
    font-size: 2.9rem !important; } }

.Font--30 {
  font-size: 3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-30 {
    font-size: 3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-30 {
    font-size: 3rem !important; } }

.Font--31 {
  font-size: 3.1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-31 {
    font-size: 3.1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-31 {
    font-size: 3.1rem !important; } }

.Font--32 {
  font-size: 3.2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-32 {
    font-size: 3.2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-32 {
    font-size: 3.2rem !important; } }

.Font--33 {
  font-size: 3.3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-33 {
    font-size: 3.3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-33 {
    font-size: 3.3rem !important; } }

.Font--34 {
  font-size: 3.4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-34 {
    font-size: 3.4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-34 {
    font-size: 3.4rem !important; } }

.Font--35 {
  font-size: 3.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-35 {
    font-size: 3.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-35 {
    font-size: 3.5rem !important; } }

.Font--36 {
  font-size: 3.6rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-36 {
    font-size: 3.6rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-36 {
    font-size: 3.6rem !important; } }

.Font--37 {
  font-size: 3.7rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-37 {
    font-size: 3.7rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-37 {
    font-size: 3.7rem !important; } }

.Font--38 {
  font-size: 3.8rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-38 {
    font-size: 3.8rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-38 {
    font-size: 3.8rem !important; } }

.Font--39 {
  font-size: 3.9rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-39 {
    font-size: 3.9rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-39 {
    font-size: 3.9rem !important; } }

.Font--40 {
  font-size: 4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-40 {
    font-size: 4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-40 {
    font-size: 4rem !important; } }

.Font--41 {
  font-size: 4.1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-41 {
    font-size: 4.1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-41 {
    font-size: 4.1rem !important; } }

.Font--42 {
  font-size: 4.2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-42 {
    font-size: 4.2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-42 {
    font-size: 4.2rem !important; } }

.Font--43 {
  font-size: 4.3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-43 {
    font-size: 4.3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-43 {
    font-size: 4.3rem !important; } }

.Font--44 {
  font-size: 4.4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-44 {
    font-size: 4.4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-44 {
    font-size: 4.4rem !important; } }

.Font--45 {
  font-size: 4.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-45 {
    font-size: 4.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-45 {
    font-size: 4.5rem !important; } }

.Font--46 {
  font-size: 4.6rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-46 {
    font-size: 4.6rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-46 {
    font-size: 4.6rem !important; } }

.Font--47 {
  font-size: 4.7rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-47 {
    font-size: 4.7rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-47 {
    font-size: 4.7rem !important; } }

.Font--48 {
  font-size: 4.8rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-48 {
    font-size: 4.8rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-48 {
    font-size: 4.8rem !important; } }

.Font--49 {
  font-size: 4.9rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-49 {
    font-size: 4.9rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-49 {
    font-size: 4.9rem !important; } }

.Font--50 {
  font-size: 5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .Font--pc-50 {
    font-size: 5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .Font--sp-50 {
    font-size: 5rem !important; } }

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

.Text--pc-Center {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .Text--pc-Center {
      text-align: center !important; } }

.Text--sp-Center {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Text--sp-Center {
      text-align: center !important; } }

.Text--Dec-None {
  text-decoration: none; }

.Font-DIN2014_Bold {
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal; }

.Font-DIN2014_Extra_Bold {
  font-family: din-2014, sans-serif;
  font-weight: 800;
  font-style: normal; }

.Font-Futura-PT_Light {
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-style: normal; }

.Font-Futura-PT_Book {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal; }

/* hタグ
/////////////////////////////////////////////////////////////////////////////////////// */
h1 {
  font-size: 2.0rem;
  line-height: 1.3; }

h2 {
  font-size: 1.6rem;
  line-height: 1.4; }

h3 {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 1.5em 0 1em 0; }

h4 {
  font-size: 1.2rem;
  line-height: 1.5; }

h5 {
  font-size: 1.12rem;
  line-height: 1.5; }

h6 {
  font-size: 1rem;
  /*=16px*/
  line-height: 1.5; }

.entry-title {
  font-size: 1.75rem; }

.border-title01 {
  border-top: solid 3px #000000;
  border-bottom: solid 3px #000000;
  padding: 0.6em 0; }

.border-title02 {
  padding: 0 0 0.4em 0;
  border-bottom: 2px solid #CCCCCC; }

.bar-title {
  border-left: solid 7px #1E1C1C;
  padding: 0 0 0 0.8em; }

.mainimg {
  margin: 0; }
  .mainimg img {
    width: 100%;
    height: auto; }

@-webkit-keyframes border-inOut {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left; }
  5% {
    opacity: 1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left; }
  49% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left; }
  50% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right;
    transform-origin: right; }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right; } }

@keyframes border-inOut {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left; }
  5% {
    opacity: 1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left; }
  49% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left; }
  50% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right;
    transform-origin: right; }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right; } }

@-webkit-keyframes content-innerStay {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  5% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes content-innerStay {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  5% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes content-wrapMove {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  5% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes content-wrapMove {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  5% {
    opacity: 1;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

.top-h__head {
  text-align: center;
  margin: 2rem 0; }

.top-h__head-en {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  /*text-transform: uppercase;*/
  letter-spacing: .1em; }

@media all and (min-width: 1025px) {
  .top-h__head-en {
    font-size: 45px; } }

@media all and (min-width: 768px) and (max-width: 1024px) {
  .top-h__head-en {
    font-size: 45px; } }

@media all and (max-width: 767px) {
  .top-h__head-en {
    font-size: 25px; } }

@media all and (max-width: 767px) and (max-width: 414px) {
  .top-h__head-en {
    font-size: 10vw; } }

@media all and (max-width: 767px) and (min-width: 415px) {
  .top-h__head-en {
    font-size: 35px; } }

.top-h__head-en-in {
  color: #000; }
  #index01 .top-h__head-en-in {
    color: #E50065; }
  #index02 .top-h__head-en-in {
    color: #009F89; }
  #index03 .top-h__head-en-in {
    color: #FFF; }
  #index04 .top-h__head-en-in {
    color: #025593; }
  #index05 .top-h__head-en-in {
    color: #DD4517; }
  #index06 .top-h__head-en-in {
    color: #CC1B09; }
  #index07 .top-h__head-en-in {
    color: #F2C001; }
  #index08 .top-h__head-en-in {
    color: #E50065; }

.top-h__head-ja {
  font-weight: 500;
  letter-spacing: .1em; }

@media all and (min-width: 1025px) {
  .top-h__head-ja {
    font-size: 20px; } }

@media all and (min-width: 768px) and (max-width: 1024px) {
  .top-h__head-ja {
    font-size: 20px; } }

@media all and (max-width: 767px) {
  .top-h__head-ja {
    font-size: 14px; } }

@media all and (max-width: 767px) and (max-width: 414px) {
  .top-h__head-ja {
    font-size: 4.375vw;
    font-size: 3vw; } }

@media all and (max-width: 767px) and (min-width: 415px) {
  .top-h__head-ja {
    font-size: 18.1125px; } }

.top-h__head-ja-in {
  color: #000; }
  #index01 .top-h__head-ja-in {
    color: #E50065; }
  #index02 .top-h__head-ja-in {
    color: #009F89; }
  #index03 .top-h__head-ja-in {
    color: #FFF; }
  #index04 .top-h__head-ja-in {
    color: #025593; }
  #index05 .top-h__head-ja-in {
    color: #DD4517; }
  #index06 .top-h__head-ja-in {
    color: #CC1B09; }
  #index07 .top-h__head-ja-in {
    color: #F2C001; }
  #index08 .top-h__head-ja-in {
    color: #E50065; }

.border-in-out {
  display: inline-block;
  z-index: 100;
  position: relative;
  color: transparent;
  white-space: nowrap; }

.border-in-out__cont {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0; }
  .border-in-out__cont:after {
    content: '';
    height: 10%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    bottom: 0;
    background-color: #000;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0); }
    #index01 .border-in-out__cont:after {
      background-color: #E50065; }
    #index02 .border-in-out__cont:after {
      background-color: #009F89; }
    #index03 .border-in-out__cont:after {
      background-color: #FFF; }
    #index04 .border-in-out__cont:after {
      background-color: #025593; }
    #index05 .border-in-out__cont:after {
      background-color: #DD4517; }
    #index06 .border-in-out__cont:after {
      background-color: #CC1B09; }
    #index07 .border-in-out__cont:after {
      background-color: #F2C001; }
    #index08 .border-in-out__cont:after {
      background-color: #E50065; }

.border-in-out__cont-in1 {
  width: 100%;
  display: block;
  overflow: hidden; }

.border-in-out__cont-in2 {
  width: 100%;
  display: block;
  white-space: nowrap; }

.border-in-out__cont-in1 {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0; }

.border-in-out__cont-in2 {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.on 。＿ .border-in-out__cont:after, .on
.border-in-out__cont:after {
  -webkit-animation-name: border-inOut;
  animation-name: border-inOut;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.on .border-in-out__cont-in1, .on
.border-in-out__cont-in1 {
  -webkit-animation-name: content-wrapMove;
  animation-name: content-wrapMove;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.on .border-in-out__cont-in2, .on
.border-in-out__cont-in2 {
  -webkit-animation-name: content-innerStay;
  animation-name: content-innerStay;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.anime-dl-1 {
  -webkit-animation-delay: .75s;
  animation-delay: .75s; }
  .anime-dl-1:after {
    -webkit-animation-delay: .35s;
    animation-delay: .35s; }

.anime-dl-2 {
  -webkit-animation-delay: .9s;
  animation-delay: .9s; }
  .anime-dl-2:after {
    -webkit-animation-delay: .5s;
    animation-delay: .5s; }

.MT0 {
  margin-top: 0 !important; }

.MT5 {
  margin-top: 5px !important; }

.MT10 {
  margin-top: 10px !important; }

.MT20 {
  margin-top: 20px !important; }

.MT30 {
  margin-top: 30px !important; }

.MT40 {
  margin-top: 40px !important; }

.MT50 {
  margin-top: 50px !important; }

.MT60 {
  margin-top: 60px !important; }

/*----*/
.MB0 {
  margin-bottom: 0px !important; }

.MB5 {
  margin-bottom: 5px !important; }

.MB10 {
  margin-bottom: 10px !important; }

.MB20 {
  margin-bottom: 20px !important; }

.MB30 {
  margin-bottom: 30px !important; }

.MB40 {
  margin-bottom: 40px !important; }

.MB50 {
  margin-bottom: 50px !important; }

.MB60 {
  margin-bottom: 60px !important; }

/*----*/
.MTB0 {
  margin-top: 0px;
  margin-bottom: 0px; }

.MTB5 {
  margin-top: 5px;
  margin-bottom: 5px; }

.MTB10 {
  margin-top: 10px;
  margin-bottom: 10px; }

.MTB20 {
  margin-top: 20px;
  margin-bottom: 20px; }

.MTB30 {
  margin-top: 30px;
  margin-bottom: 30px; }

.MTB40 {
  margin-top: 40px;
  margin-bottom: 40px; }

.MTB50 {
  margin-top: 50px;
  margin-bottom: 50px; }

/*----*/
.MR0 {
  margin-right: 0px; }

.MR5 {
  margin-right: 5px; }

.MR10 {
  margin-right: 10px; }

.MR20 {
  margin-right: 20px; }

.MR30 {
  margin-right: 30px; }

/*----*/
.ML0 {
  margin-left: 0px; }

.ML5 {
  margin-left: 5px; }

.ML10 {
  margin-left: 10px; }

.ML20 {
  margin-left: 20px; }

.ML30 {
  margin-left: 30px; }

/*----*/
.PT0 {
  padding-top: 0; }

.PB0 {
  padding-bottom: 0; }

.PT5 {
  padding-top: 5px; }

.PT10 {
  padding-top: 10px; }

.PT20 {
  padding-top: 20px; }

.PT30 {
  padding-top: 30px; }

.PT40 {
  padding-top: 40px; }

.PT50 {
  padding-top: 50px; }

.PT60 {
  padding-top: 60px; }

/*----*/
.PD0 {
  padding: 0px; }

.PD5 {
  padding: 5px; }

.PD10 {
  padding: 10px; }

.PD20 {
  padding: 20px; }

.M--auto {
  margin-right: auto;
  margin-left: auto; }

.D--block {
  display: block; }

.OV--h {
  overflow: hidden !important; }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .OV--pc-h {
    overflow: hidden !important; } }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .OV--sp-h {
    overflow: hidden !important; } }

.w--10 {
  width: 10% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-10 {
    width: 10% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-10 {
    width: 10% !important; } }

.w--20 {
  width: 20% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-20 {
    width: 20% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-20 {
    width: 20% !important; } }

.w--30 {
  width: 30% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-30 {
    width: 30% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-30 {
    width: 30% !important; } }

.w--40 {
  width: 40% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-40 {
    width: 40% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-40 {
    width: 40% !important; } }

.w--50 {
  width: 50% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-50 {
    width: 50% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-50 {
    width: 50% !important; } }

.w--60 {
  width: 60% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-60 {
    width: 60% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-60 {
    width: 60% !important; } }

.w--70 {
  width: 70% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-70 {
    width: 70% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-70 {
    width: 70% !important; } }

.w--80 {
  width: 80% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-80 {
    width: 80% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-80 {
    width: 80% !important; } }

.w--90 {
  width: 90% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-90 {
    width: 90% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-90 {
    width: 90% !important; } }

.w--100 {
  width: 100% !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .w--pc-100 {
    width: 100% !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .w--sp-100 {
    width: 100% !important; } }

.MT--0 {
  margin-top: 0rem !important; }

.MB--0 {
  margin-bottom: 0rem !important; }

.MR--0 {
  margin-right: 0rem !important; }

.ML--0 {
  margin-left: 0rem !important; }

.PT--0 {
  padding-top: 0rem !important; }

.PB--0 {
  padding-bottom: 0rem !important; }

.PR--0 {
  padding-right: 0rem !important; }

.PL--0 {
  padding-left: 0rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-0 {
    margin-top: 0rem !important; }
  .MB--pc-0 {
    margin-bottom: 0rem !important; }
  .MR--pc-0 {
    margin-right: 0rem !important; }
  .ML--pc-0 {
    margin-left: 0rem !important; }
  .PT--pc-0 {
    padding-top: 0rem !important; }
  .PB--pc-0 {
    padding-bottom: 0rem !important; }
  .PR--pc-0 {
    padding-right: 0rem !important; }
  .PL--pc-0 {
    padding-left: 0rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-0 {
    margin-top: 0rem !important; }
  .MB--sp-0 {
    margin-bottom: 0rem !important; }
  .MR--sp-0 {
    margin-right: 0rem !important; }
  .ML--sp-0 {
    margin-left: 0rem !important; }
  .PT--sp-0 {
    padding-top: 0rem !important; }
  .PB--sp-0 {
    padding-bottom: 0rem !important; }
  .PR--sp-0 {
    padding-right: 0rem !important; }
  .PL--sp-0 {
    padding-left: 0rem !important; } }

.MT--5 {
  margin-top: 0.5rem !important; }

.MB--5 {
  margin-bottom: 0.5rem !important; }

.MR--5 {
  margin-right: 0.5rem !important; }

.ML--5 {
  margin-left: 0.5rem !important; }

.PT--5 {
  padding-top: 0.5rem !important; }

.PB--5 {
  padding-bottom: 0.5rem !important; }

.PR--5 {
  padding-right: 0.5rem !important; }

.PL--5 {
  padding-left: 0.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-5 {
    margin-top: 0.5rem !important; }
  .MB--pc-5 {
    margin-bottom: 0.5rem !important; }
  .MR--pc-5 {
    margin-right: 0.5rem !important; }
  .ML--pc-5 {
    margin-left: 0.5rem !important; }
  .PT--pc-5 {
    padding-top: 0.5rem !important; }
  .PB--pc-5 {
    padding-bottom: 0.5rem !important; }
  .PR--pc-5 {
    padding-right: 0.5rem !important; }
  .PL--pc-5 {
    padding-left: 0.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-5 {
    margin-top: 0.5rem !important; }
  .MB--sp-5 {
    margin-bottom: 0.5rem !important; }
  .MR--sp-5 {
    margin-right: 0.5rem !important; }
  .ML--sp-5 {
    margin-left: 0.5rem !important; }
  .PT--sp-5 {
    padding-top: 0.5rem !important; }
  .PB--sp-5 {
    padding-bottom: 0.5rem !important; }
  .PR--sp-5 {
    padding-right: 0.5rem !important; }
  .PL--sp-5 {
    padding-left: 0.5rem !important; } }

.MT--10 {
  margin-top: 1rem !important; }

.MB--10 {
  margin-bottom: 1rem !important; }

.MR--10 {
  margin-right: 1rem !important; }

.ML--10 {
  margin-left: 1rem !important; }

.PT--10 {
  padding-top: 1rem !important; }

.PB--10 {
  padding-bottom: 1rem !important; }

.PR--10 {
  padding-right: 1rem !important; }

.PL--10 {
  padding-left: 1rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-10 {
    margin-top: 1rem !important; }
  .MB--pc-10 {
    margin-bottom: 1rem !important; }
  .MR--pc-10 {
    margin-right: 1rem !important; }
  .ML--pc-10 {
    margin-left: 1rem !important; }
  .PT--pc-10 {
    padding-top: 1rem !important; }
  .PB--pc-10 {
    padding-bottom: 1rem !important; }
  .PR--pc-10 {
    padding-right: 1rem !important; }
  .PL--pc-10 {
    padding-left: 1rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-10 {
    margin-top: 1rem !important; }
  .MB--sp-10 {
    margin-bottom: 1rem !important; }
  .MR--sp-10 {
    margin-right: 1rem !important; }
  .ML--sp-10 {
    margin-left: 1rem !important; }
  .PT--sp-10 {
    padding-top: 1rem !important; }
  .PB--sp-10 {
    padding-bottom: 1rem !important; }
  .PR--sp-10 {
    padding-right: 1rem !important; }
  .PL--sp-10 {
    padding-left: 1rem !important; } }

.MT--15 {
  margin-top: 1.5rem !important; }

.MB--15 {
  margin-bottom: 1.5rem !important; }

.MR--15 {
  margin-right: 1.5rem !important; }

.ML--15 {
  margin-left: 1.5rem !important; }

.PT--15 {
  padding-top: 1.5rem !important; }

.PB--15 {
  padding-bottom: 1.5rem !important; }

.PR--15 {
  padding-right: 1.5rem !important; }

.PL--15 {
  padding-left: 1.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-15 {
    margin-top: 1.5rem !important; }
  .MB--pc-15 {
    margin-bottom: 1.5rem !important; }
  .MR--pc-15 {
    margin-right: 1.5rem !important; }
  .ML--pc-15 {
    margin-left: 1.5rem !important; }
  .PT--pc-15 {
    padding-top: 1.5rem !important; }
  .PB--pc-15 {
    padding-bottom: 1.5rem !important; }
  .PR--pc-15 {
    padding-right: 1.5rem !important; }
  .PL--pc-15 {
    padding-left: 1.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-15 {
    margin-top: 1.5rem !important; }
  .MB--sp-15 {
    margin-bottom: 1.5rem !important; }
  .MR--sp-15 {
    margin-right: 1.5rem !important; }
  .ML--sp-15 {
    margin-left: 1.5rem !important; }
  .PT--sp-15 {
    padding-top: 1.5rem !important; }
  .PB--sp-15 {
    padding-bottom: 1.5rem !important; }
  .PR--sp-15 {
    padding-right: 1.5rem !important; }
  .PL--sp-15 {
    padding-left: 1.5rem !important; } }

.MT--20 {
  margin-top: 2rem !important; }

.MB--20 {
  margin-bottom: 2rem !important; }

.MR--20 {
  margin-right: 2rem !important; }

.ML--20 {
  margin-left: 2rem !important; }

.PT--20 {
  padding-top: 2rem !important; }

.PB--20 {
  padding-bottom: 2rem !important; }

.PR--20 {
  padding-right: 2rem !important; }

.PL--20 {
  padding-left: 2rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-20 {
    margin-top: 2rem !important; }
  .MB--pc-20 {
    margin-bottom: 2rem !important; }
  .MR--pc-20 {
    margin-right: 2rem !important; }
  .ML--pc-20 {
    margin-left: 2rem !important; }
  .PT--pc-20 {
    padding-top: 2rem !important; }
  .PB--pc-20 {
    padding-bottom: 2rem !important; }
  .PR--pc-20 {
    padding-right: 2rem !important; }
  .PL--pc-20 {
    padding-left: 2rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-20 {
    margin-top: 2rem !important; }
  .MB--sp-20 {
    margin-bottom: 2rem !important; }
  .MR--sp-20 {
    margin-right: 2rem !important; }
  .ML--sp-20 {
    margin-left: 2rem !important; }
  .PT--sp-20 {
    padding-top: 2rem !important; }
  .PB--sp-20 {
    padding-bottom: 2rem !important; }
  .PR--sp-20 {
    padding-right: 2rem !important; }
  .PL--sp-20 {
    padding-left: 2rem !important; } }

.MT--25 {
  margin-top: 2.5rem !important; }

.MB--25 {
  margin-bottom: 2.5rem !important; }

.MR--25 {
  margin-right: 2.5rem !important; }

.ML--25 {
  margin-left: 2.5rem !important; }

.PT--25 {
  padding-top: 2.5rem !important; }

.PB--25 {
  padding-bottom: 2.5rem !important; }

.PR--25 {
  padding-right: 2.5rem !important; }

.PL--25 {
  padding-left: 2.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-25 {
    margin-top: 2.5rem !important; }
  .MB--pc-25 {
    margin-bottom: 2.5rem !important; }
  .MR--pc-25 {
    margin-right: 2.5rem !important; }
  .ML--pc-25 {
    margin-left: 2.5rem !important; }
  .PT--pc-25 {
    padding-top: 2.5rem !important; }
  .PB--pc-25 {
    padding-bottom: 2.5rem !important; }
  .PR--pc-25 {
    padding-right: 2.5rem !important; }
  .PL--pc-25 {
    padding-left: 2.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-25 {
    margin-top: 2.5rem !important; }
  .MB--sp-25 {
    margin-bottom: 2.5rem !important; }
  .MR--sp-25 {
    margin-right: 2.5rem !important; }
  .ML--sp-25 {
    margin-left: 2.5rem !important; }
  .PT--sp-25 {
    padding-top: 2.5rem !important; }
  .PB--sp-25 {
    padding-bottom: 2.5rem !important; }
  .PR--sp-25 {
    padding-right: 2.5rem !important; }
  .PL--sp-25 {
    padding-left: 2.5rem !important; } }

.MT--30 {
  margin-top: 3rem !important; }

.MB--30 {
  margin-bottom: 3rem !important; }

.MR--30 {
  margin-right: 3rem !important; }

.ML--30 {
  margin-left: 3rem !important; }

.PT--30 {
  padding-top: 3rem !important; }

.PB--30 {
  padding-bottom: 3rem !important; }

.PR--30 {
  padding-right: 3rem !important; }

.PL--30 {
  padding-left: 3rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-30 {
    margin-top: 3rem !important; }
  .MB--pc-30 {
    margin-bottom: 3rem !important; }
  .MR--pc-30 {
    margin-right: 3rem !important; }
  .ML--pc-30 {
    margin-left: 3rem !important; }
  .PT--pc-30 {
    padding-top: 3rem !important; }
  .PB--pc-30 {
    padding-bottom: 3rem !important; }
  .PR--pc-30 {
    padding-right: 3rem !important; }
  .PL--pc-30 {
    padding-left: 3rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-30 {
    margin-top: 3rem !important; }
  .MB--sp-30 {
    margin-bottom: 3rem !important; }
  .MR--sp-30 {
    margin-right: 3rem !important; }
  .ML--sp-30 {
    margin-left: 3rem !important; }
  .PT--sp-30 {
    padding-top: 3rem !important; }
  .PB--sp-30 {
    padding-bottom: 3rem !important; }
  .PR--sp-30 {
    padding-right: 3rem !important; }
  .PL--sp-30 {
    padding-left: 3rem !important; } }

.MT--35 {
  margin-top: 3.5rem !important; }

.MB--35 {
  margin-bottom: 3.5rem !important; }

.MR--35 {
  margin-right: 3.5rem !important; }

.ML--35 {
  margin-left: 3.5rem !important; }

.PT--35 {
  padding-top: 3.5rem !important; }

.PB--35 {
  padding-bottom: 3.5rem !important; }

.PR--35 {
  padding-right: 3.5rem !important; }

.PL--35 {
  padding-left: 3.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-35 {
    margin-top: 3.5rem !important; }
  .MB--pc-35 {
    margin-bottom: 3.5rem !important; }
  .MR--pc-35 {
    margin-right: 3.5rem !important; }
  .ML--pc-35 {
    margin-left: 3.5rem !important; }
  .PT--pc-35 {
    padding-top: 3.5rem !important; }
  .PB--pc-35 {
    padding-bottom: 3.5rem !important; }
  .PR--pc-35 {
    padding-right: 3.5rem !important; }
  .PL--pc-35 {
    padding-left: 3.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-35 {
    margin-top: 3.5rem !important; }
  .MB--sp-35 {
    margin-bottom: 3.5rem !important; }
  .MR--sp-35 {
    margin-right: 3.5rem !important; }
  .ML--sp-35 {
    margin-left: 3.5rem !important; }
  .PT--sp-35 {
    padding-top: 3.5rem !important; }
  .PB--sp-35 {
    padding-bottom: 3.5rem !important; }
  .PR--sp-35 {
    padding-right: 3.5rem !important; }
  .PL--sp-35 {
    padding-left: 3.5rem !important; } }

.MT--40 {
  margin-top: 4rem !important; }

.MB--40 {
  margin-bottom: 4rem !important; }

.MR--40 {
  margin-right: 4rem !important; }

.ML--40 {
  margin-left: 4rem !important; }

.PT--40 {
  padding-top: 4rem !important; }

.PB--40 {
  padding-bottom: 4rem !important; }

.PR--40 {
  padding-right: 4rem !important; }

.PL--40 {
  padding-left: 4rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-40 {
    margin-top: 4rem !important; }
  .MB--pc-40 {
    margin-bottom: 4rem !important; }
  .MR--pc-40 {
    margin-right: 4rem !important; }
  .ML--pc-40 {
    margin-left: 4rem !important; }
  .PT--pc-40 {
    padding-top: 4rem !important; }
  .PB--pc-40 {
    padding-bottom: 4rem !important; }
  .PR--pc-40 {
    padding-right: 4rem !important; }
  .PL--pc-40 {
    padding-left: 4rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-40 {
    margin-top: 4rem !important; }
  .MB--sp-40 {
    margin-bottom: 4rem !important; }
  .MR--sp-40 {
    margin-right: 4rem !important; }
  .ML--sp-40 {
    margin-left: 4rem !important; }
  .PT--sp-40 {
    padding-top: 4rem !important; }
  .PB--sp-40 {
    padding-bottom: 4rem !important; }
  .PR--sp-40 {
    padding-right: 4rem !important; }
  .PL--sp-40 {
    padding-left: 4rem !important; } }

.MT--45 {
  margin-top: 4.5rem !important; }

.MB--45 {
  margin-bottom: 4.5rem !important; }

.MR--45 {
  margin-right: 4.5rem !important; }

.ML--45 {
  margin-left: 4.5rem !important; }

.PT--45 {
  padding-top: 4.5rem !important; }

.PB--45 {
  padding-bottom: 4.5rem !important; }

.PR--45 {
  padding-right: 4.5rem !important; }

.PL--45 {
  padding-left: 4.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-45 {
    margin-top: 4.5rem !important; }
  .MB--pc-45 {
    margin-bottom: 4.5rem !important; }
  .MR--pc-45 {
    margin-right: 4.5rem !important; }
  .ML--pc-45 {
    margin-left: 4.5rem !important; }
  .PT--pc-45 {
    padding-top: 4.5rem !important; }
  .PB--pc-45 {
    padding-bottom: 4.5rem !important; }
  .PR--pc-45 {
    padding-right: 4.5rem !important; }
  .PL--pc-45 {
    padding-left: 4.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-45 {
    margin-top: 4.5rem !important; }
  .MB--sp-45 {
    margin-bottom: 4.5rem !important; }
  .MR--sp-45 {
    margin-right: 4.5rem !important; }
  .ML--sp-45 {
    margin-left: 4.5rem !important; }
  .PT--sp-45 {
    padding-top: 4.5rem !important; }
  .PB--sp-45 {
    padding-bottom: 4.5rem !important; }
  .PR--sp-45 {
    padding-right: 4.5rem !important; }
  .PL--sp-45 {
    padding-left: 4.5rem !important; } }

.MT--50 {
  margin-top: 5rem !important; }

.MB--50 {
  margin-bottom: 5rem !important; }

.MR--50 {
  margin-right: 5rem !important; }

.ML--50 {
  margin-left: 5rem !important; }

.PT--50 {
  padding-top: 5rem !important; }

.PB--50 {
  padding-bottom: 5rem !important; }

.PR--50 {
  padding-right: 5rem !important; }

.PL--50 {
  padding-left: 5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-50 {
    margin-top: 5rem !important; }
  .MB--pc-50 {
    margin-bottom: 5rem !important; }
  .MR--pc-50 {
    margin-right: 5rem !important; }
  .ML--pc-50 {
    margin-left: 5rem !important; }
  .PT--pc-50 {
    padding-top: 5rem !important; }
  .PB--pc-50 {
    padding-bottom: 5rem !important; }
  .PR--pc-50 {
    padding-right: 5rem !important; }
  .PL--pc-50 {
    padding-left: 5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-50 {
    margin-top: 5rem !important; }
  .MB--sp-50 {
    margin-bottom: 5rem !important; }
  .MR--sp-50 {
    margin-right: 5rem !important; }
  .ML--sp-50 {
    margin-left: 5rem !important; }
  .PT--sp-50 {
    padding-top: 5rem !important; }
  .PB--sp-50 {
    padding-bottom: 5rem !important; }
  .PR--sp-50 {
    padding-right: 5rem !important; }
  .PL--sp-50 {
    padding-left: 5rem !important; } }

.MT--55 {
  margin-top: 5.5rem !important; }

.MB--55 {
  margin-bottom: 5.5rem !important; }

.MR--55 {
  margin-right: 5.5rem !important; }

.ML--55 {
  margin-left: 5.5rem !important; }

.PT--55 {
  padding-top: 5.5rem !important; }

.PB--55 {
  padding-bottom: 5.5rem !important; }

.PR--55 {
  padding-right: 5.5rem !important; }

.PL--55 {
  padding-left: 5.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-55 {
    margin-top: 5.5rem !important; }
  .MB--pc-55 {
    margin-bottom: 5.5rem !important; }
  .MR--pc-55 {
    margin-right: 5.5rem !important; }
  .ML--pc-55 {
    margin-left: 5.5rem !important; }
  .PT--pc-55 {
    padding-top: 5.5rem !important; }
  .PB--pc-55 {
    padding-bottom: 5.5rem !important; }
  .PR--pc-55 {
    padding-right: 5.5rem !important; }
  .PL--pc-55 {
    padding-left: 5.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-55 {
    margin-top: 5.5rem !important; }
  .MB--sp-55 {
    margin-bottom: 5.5rem !important; }
  .MR--sp-55 {
    margin-right: 5.5rem !important; }
  .ML--sp-55 {
    margin-left: 5.5rem !important; }
  .PT--sp-55 {
    padding-top: 5.5rem !important; }
  .PB--sp-55 {
    padding-bottom: 5.5rem !important; }
  .PR--sp-55 {
    padding-right: 5.5rem !important; }
  .PL--sp-55 {
    padding-left: 5.5rem !important; } }

.MT--60 {
  margin-top: 6rem !important; }

.MB--60 {
  margin-bottom: 6rem !important; }

.MR--60 {
  margin-right: 6rem !important; }

.ML--60 {
  margin-left: 6rem !important; }

.PT--60 {
  padding-top: 6rem !important; }

.PB--60 {
  padding-bottom: 6rem !important; }

.PR--60 {
  padding-right: 6rem !important; }

.PL--60 {
  padding-left: 6rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-60 {
    margin-top: 6rem !important; }
  .MB--pc-60 {
    margin-bottom: 6rem !important; }
  .MR--pc-60 {
    margin-right: 6rem !important; }
  .ML--pc-60 {
    margin-left: 6rem !important; }
  .PT--pc-60 {
    padding-top: 6rem !important; }
  .PB--pc-60 {
    padding-bottom: 6rem !important; }
  .PR--pc-60 {
    padding-right: 6rem !important; }
  .PL--pc-60 {
    padding-left: 6rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-60 {
    margin-top: 6rem !important; }
  .MB--sp-60 {
    margin-bottom: 6rem !important; }
  .MR--sp-60 {
    margin-right: 6rem !important; }
  .ML--sp-60 {
    margin-left: 6rem !important; }
  .PT--sp-60 {
    padding-top: 6rem !important; }
  .PB--sp-60 {
    padding-bottom: 6rem !important; }
  .PR--sp-60 {
    padding-right: 6rem !important; }
  .PL--sp-60 {
    padding-left: 6rem !important; } }

.MT--65 {
  margin-top: 6.5rem !important; }

.MB--65 {
  margin-bottom: 6.5rem !important; }

.MR--65 {
  margin-right: 6.5rem !important; }

.ML--65 {
  margin-left: 6.5rem !important; }

.PT--65 {
  padding-top: 6.5rem !important; }

.PB--65 {
  padding-bottom: 6.5rem !important; }

.PR--65 {
  padding-right: 6.5rem !important; }

.PL--65 {
  padding-left: 6.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-65 {
    margin-top: 6.5rem !important; }
  .MB--pc-65 {
    margin-bottom: 6.5rem !important; }
  .MR--pc-65 {
    margin-right: 6.5rem !important; }
  .ML--pc-65 {
    margin-left: 6.5rem !important; }
  .PT--pc-65 {
    padding-top: 6.5rem !important; }
  .PB--pc-65 {
    padding-bottom: 6.5rem !important; }
  .PR--pc-65 {
    padding-right: 6.5rem !important; }
  .PL--pc-65 {
    padding-left: 6.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-65 {
    margin-top: 6.5rem !important; }
  .MB--sp-65 {
    margin-bottom: 6.5rem !important; }
  .MR--sp-65 {
    margin-right: 6.5rem !important; }
  .ML--sp-65 {
    margin-left: 6.5rem !important; }
  .PT--sp-65 {
    padding-top: 6.5rem !important; }
  .PB--sp-65 {
    padding-bottom: 6.5rem !important; }
  .PR--sp-65 {
    padding-right: 6.5rem !important; }
  .PL--sp-65 {
    padding-left: 6.5rem !important; } }

.MT--70 {
  margin-top: 7rem !important; }

.MB--70 {
  margin-bottom: 7rem !important; }

.MR--70 {
  margin-right: 7rem !important; }

.ML--70 {
  margin-left: 7rem !important; }

.PT--70 {
  padding-top: 7rem !important; }

.PB--70 {
  padding-bottom: 7rem !important; }

.PR--70 {
  padding-right: 7rem !important; }

.PL--70 {
  padding-left: 7rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-70 {
    margin-top: 7rem !important; }
  .MB--pc-70 {
    margin-bottom: 7rem !important; }
  .MR--pc-70 {
    margin-right: 7rem !important; }
  .ML--pc-70 {
    margin-left: 7rem !important; }
  .PT--pc-70 {
    padding-top: 7rem !important; }
  .PB--pc-70 {
    padding-bottom: 7rem !important; }
  .PR--pc-70 {
    padding-right: 7rem !important; }
  .PL--pc-70 {
    padding-left: 7rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-70 {
    margin-top: 7rem !important; }
  .MB--sp-70 {
    margin-bottom: 7rem !important; }
  .MR--sp-70 {
    margin-right: 7rem !important; }
  .ML--sp-70 {
    margin-left: 7rem !important; }
  .PT--sp-70 {
    padding-top: 7rem !important; }
  .PB--sp-70 {
    padding-bottom: 7rem !important; }
  .PR--sp-70 {
    padding-right: 7rem !important; }
  .PL--sp-70 {
    padding-left: 7rem !important; } }

.MT--75 {
  margin-top: 7.5rem !important; }

.MB--75 {
  margin-bottom: 7.5rem !important; }

.MR--75 {
  margin-right: 7.5rem !important; }

.ML--75 {
  margin-left: 7.5rem !important; }

.PT--75 {
  padding-top: 7.5rem !important; }

.PB--75 {
  padding-bottom: 7.5rem !important; }

.PR--75 {
  padding-right: 7.5rem !important; }

.PL--75 {
  padding-left: 7.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-75 {
    margin-top: 7.5rem !important; }
  .MB--pc-75 {
    margin-bottom: 7.5rem !important; }
  .MR--pc-75 {
    margin-right: 7.5rem !important; }
  .ML--pc-75 {
    margin-left: 7.5rem !important; }
  .PT--pc-75 {
    padding-top: 7.5rem !important; }
  .PB--pc-75 {
    padding-bottom: 7.5rem !important; }
  .PR--pc-75 {
    padding-right: 7.5rem !important; }
  .PL--pc-75 {
    padding-left: 7.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-75 {
    margin-top: 7.5rem !important; }
  .MB--sp-75 {
    margin-bottom: 7.5rem !important; }
  .MR--sp-75 {
    margin-right: 7.5rem !important; }
  .ML--sp-75 {
    margin-left: 7.5rem !important; }
  .PT--sp-75 {
    padding-top: 7.5rem !important; }
  .PB--sp-75 {
    padding-bottom: 7.5rem !important; }
  .PR--sp-75 {
    padding-right: 7.5rem !important; }
  .PL--sp-75 {
    padding-left: 7.5rem !important; } }

.MT--80 {
  margin-top: 8rem !important; }

.MB--80 {
  margin-bottom: 8rem !important; }

.MR--80 {
  margin-right: 8rem !important; }

.ML--80 {
  margin-left: 8rem !important; }

.PT--80 {
  padding-top: 8rem !important; }

.PB--80 {
  padding-bottom: 8rem !important; }

.PR--80 {
  padding-right: 8rem !important; }

.PL--80 {
  padding-left: 8rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-80 {
    margin-top: 8rem !important; }
  .MB--pc-80 {
    margin-bottom: 8rem !important; }
  .MR--pc-80 {
    margin-right: 8rem !important; }
  .ML--pc-80 {
    margin-left: 8rem !important; }
  .PT--pc-80 {
    padding-top: 8rem !important; }
  .PB--pc-80 {
    padding-bottom: 8rem !important; }
  .PR--pc-80 {
    padding-right: 8rem !important; }
  .PL--pc-80 {
    padding-left: 8rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-80 {
    margin-top: 8rem !important; }
  .MB--sp-80 {
    margin-bottom: 8rem !important; }
  .MR--sp-80 {
    margin-right: 8rem !important; }
  .ML--sp-80 {
    margin-left: 8rem !important; }
  .PT--sp-80 {
    padding-top: 8rem !important; }
  .PB--sp-80 {
    padding-bottom: 8rem !important; }
  .PR--sp-80 {
    padding-right: 8rem !important; }
  .PL--sp-80 {
    padding-left: 8rem !important; } }

.MT--85 {
  margin-top: 8.5rem !important; }

.MB--85 {
  margin-bottom: 8.5rem !important; }

.MR--85 {
  margin-right: 8.5rem !important; }

.ML--85 {
  margin-left: 8.5rem !important; }

.PT--85 {
  padding-top: 8.5rem !important; }

.PB--85 {
  padding-bottom: 8.5rem !important; }

.PR--85 {
  padding-right: 8.5rem !important; }

.PL--85 {
  padding-left: 8.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-85 {
    margin-top: 8.5rem !important; }
  .MB--pc-85 {
    margin-bottom: 8.5rem !important; }
  .MR--pc-85 {
    margin-right: 8.5rem !important; }
  .ML--pc-85 {
    margin-left: 8.5rem !important; }
  .PT--pc-85 {
    padding-top: 8.5rem !important; }
  .PB--pc-85 {
    padding-bottom: 8.5rem !important; }
  .PR--pc-85 {
    padding-right: 8.5rem !important; }
  .PL--pc-85 {
    padding-left: 8.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-85 {
    margin-top: 8.5rem !important; }
  .MB--sp-85 {
    margin-bottom: 8.5rem !important; }
  .MR--sp-85 {
    margin-right: 8.5rem !important; }
  .ML--sp-85 {
    margin-left: 8.5rem !important; }
  .PT--sp-85 {
    padding-top: 8.5rem !important; }
  .PB--sp-85 {
    padding-bottom: 8.5rem !important; }
  .PR--sp-85 {
    padding-right: 8.5rem !important; }
  .PL--sp-85 {
    padding-left: 8.5rem !important; } }

.MT--90 {
  margin-top: 9rem !important; }

.MB--90 {
  margin-bottom: 9rem !important; }

.MR--90 {
  margin-right: 9rem !important; }

.ML--90 {
  margin-left: 9rem !important; }

.PT--90 {
  padding-top: 9rem !important; }

.PB--90 {
  padding-bottom: 9rem !important; }

.PR--90 {
  padding-right: 9rem !important; }

.PL--90 {
  padding-left: 9rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-90 {
    margin-top: 9rem !important; }
  .MB--pc-90 {
    margin-bottom: 9rem !important; }
  .MR--pc-90 {
    margin-right: 9rem !important; }
  .ML--pc-90 {
    margin-left: 9rem !important; }
  .PT--pc-90 {
    padding-top: 9rem !important; }
  .PB--pc-90 {
    padding-bottom: 9rem !important; }
  .PR--pc-90 {
    padding-right: 9rem !important; }
  .PL--pc-90 {
    padding-left: 9rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-90 {
    margin-top: 9rem !important; }
  .MB--sp-90 {
    margin-bottom: 9rem !important; }
  .MR--sp-90 {
    margin-right: 9rem !important; }
  .ML--sp-90 {
    margin-left: 9rem !important; }
  .PT--sp-90 {
    padding-top: 9rem !important; }
  .PB--sp-90 {
    padding-bottom: 9rem !important; }
  .PR--sp-90 {
    padding-right: 9rem !important; }
  .PL--sp-90 {
    padding-left: 9rem !important; } }

.MT--95 {
  margin-top: 9.5rem !important; }

.MB--95 {
  margin-bottom: 9.5rem !important; }

.MR--95 {
  margin-right: 9.5rem !important; }

.ML--95 {
  margin-left: 9.5rem !important; }

.PT--95 {
  padding-top: 9.5rem !important; }

.PB--95 {
  padding-bottom: 9.5rem !important; }

.PR--95 {
  padding-right: 9.5rem !important; }

.PL--95 {
  padding-left: 9.5rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-95 {
    margin-top: 9.5rem !important; }
  .MB--pc-95 {
    margin-bottom: 9.5rem !important; }
  .MR--pc-95 {
    margin-right: 9.5rem !important; }
  .ML--pc-95 {
    margin-left: 9.5rem !important; }
  .PT--pc-95 {
    padding-top: 9.5rem !important; }
  .PB--pc-95 {
    padding-bottom: 9.5rem !important; }
  .PR--pc-95 {
    padding-right: 9.5rem !important; }
  .PL--pc-95 {
    padding-left: 9.5rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-95 {
    margin-top: 9.5rem !important; }
  .MB--sp-95 {
    margin-bottom: 9.5rem !important; }
  .MR--sp-95 {
    margin-right: 9.5rem !important; }
  .ML--sp-95 {
    margin-left: 9.5rem !important; }
  .PT--sp-95 {
    padding-top: 9.5rem !important; }
  .PB--sp-95 {
    padding-bottom: 9.5rem !important; }
  .PR--sp-95 {
    padding-right: 9.5rem !important; }
  .PL--sp-95 {
    padding-left: 9.5rem !important; } }

.MT--100 {
  margin-top: 10rem !important; }

.MB--100 {
  margin-bottom: 10rem !important; }

.MR--100 {
  margin-right: 10rem !important; }

.ML--100 {
  margin-left: 10rem !important; }

.PT--100 {
  padding-top: 10rem !important; }

.PB--100 {
  padding-bottom: 10rem !important; }

.PR--100 {
  padding-right: 10rem !important; }

.PL--100 {
  padding-left: 10rem !important; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .MT--pc-100 {
    margin-top: 10rem !important; }
  .MB--pc-100 {
    margin-bottom: 10rem !important; }
  .MR--pc-100 {
    margin-right: 10rem !important; }
  .ML--pc-100 {
    margin-left: 10rem !important; }
  .PT--pc-100 {
    padding-top: 10rem !important; }
  .PB--pc-100 {
    padding-bottom: 10rem !important; }
  .PR--pc-100 {
    padding-right: 10rem !important; }
  .PL--pc-100 {
    padding-left: 10rem !important; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .MT--sp-100 {
    margin-top: 10rem !important; }
  .MB--sp-100 {
    margin-bottom: 10rem !important; }
  .MR--sp-100 {
    margin-right: 10rem !important; }
  .ML--sp-100 {
    margin-left: 10rem !important; }
  .PT--sp-100 {
    padding-top: 10rem !important; }
  .PB--sp-100 {
    padding-bottom: 10rem !important; }
  .PR--sp-100 {
    padding-right: 10rem !important; }
  .PL--sp-100 {
    padding-left: 10rem !important; } }

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a, a:hover, a:visited {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/*1カラム*/
.entry-content {
  width: 90%;
  margin: 0 auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .entry-content {
      max-width: 1024px; } }

/*1カラム全画面*/
.entry-content--wide {
  width: 100%; }

/*2カラム*/
.colomn-2_pagewrap {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .colomn-2_pagewrap {
      width: 90%;
      max-width: 1024px;
      margin: 0 auto;
      overflow: hidden; } }
  @media (max-width: 48em) {
    .colomn-2_pagewrap {
      width: 90%;
      margin: 0 auto; } }

.entry-content__inner--colomn-2 {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .entry-content__inner--colomn-2 {
      width: 72%;
      float: left; } }
  @media (max-width: 48em) {
    .entry-content__inner--colomn-2 {
      width: 100%; } }

/*	中ページの下 SNSボタン------------------------------------------------------------------------------ */
.snsbuttonbox {
  display: table;
  margin: 3em 0 0 0;
  padding: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .snsbuttonbox {
      width: 100%; } }

.snsbuttonbox__child {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .snsbuttonbox__child {
      text-align: center;
      padding-right: 0; } }

/*.snsbuttonbox__child:nth-of-type(2),
.snsbuttonbox__child:nth-of-type(3){
	padding-top:6px;
}*/
/*第1階層親ページのボックス------------------------------------------------------------------------------ */
.Box-Index {
  float: left;
  width: 30%;
  margin-bottom: 30px;
  margin-right: 4.6%;
  border: solid 1px #eee;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-Index {
      width: 48%;
      margin-right: 2.6%; } }
  .Box-Index:nth-of-type(3n) {
    margin-right: 0;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .Box-Index:nth-of-type(3n) {
        margin-right: 2.6%; } }
  .Box-Index:nth-of-type(2n) {
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .Box-Index:nth-of-type(2n) {
        margin-right: 0; } }

.Box-Index h3 {
  border: none;
  padding: 0;
  margin: 0 0 15px 0;
  text-align: center;
  line-height: 1.3;
  color: inherit;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-Index h3 {
      font-size: 0.82rem; } }

.Box-Index h3 span {
  font-size: 70%; }

.Box-Index p {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Box-Index p {
      font-size: 0.6rem;
      line-height: 130%; } }

.Box-Index a {
  text-decoration: none;
  display: block; }

.Box-Indeximage img {
  width: 100%;
  height: auto; }

.Box-Indexcontent {
  margin: 10px; }

ul.indexlist {
  border-top: 1px #ccc dotted;
  padding-top: 0.5em; }

ul.indexlist li {
  display: inline-block; }

ul.indexlist li a {
  padding: 0.2em 1em; }

/*	ページ冒頭ヘッダー（主に学校説明会とかで使っている）------------------------------------------------------------------------------ */
.page__beginningbox {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  border: 1px solid #CCCCCC;
  margin-bottom: 2em; }

.page__beginningbox__caption {
  width: 55%;
  margin: 0;
  padding: 0 5%;
  font-size: 2.5em;
  line-height: 1.2;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .page__beginningbox__caption {
      font-size: 1.5em; } }

.page__beginningbox__caption--sub {
  display: block;
  font-size: 0.5em; }

.page__beginningbox__img {
  width: 45%;
  margin: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.page__beginningbox__img::before {
  display: block;
  content: "";
  padding-top: 100%; }

.table-base01 {
  width: 100%;
  border-collapse: collapse;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.71em;
  letter-spacing: 0.05em;
  border: solid 1px #CCC; }
  .table-base01 td, .table-base01 th {
    padding: 0.8em;
    vertical-align: middle;
    border: solid 1px #CCC; }
  .table-base01 th {
    background: #F0F0F0; }

.td_base {
  background: #F0F0F0; }

.td_strong {
  background: #ddd; }

.col__wrap, .col__wrap--margin, .col__wrap--marginL, .col__wrap--marginS, .col__wrap--center {
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .col__wrap--margin {
    margin: 1% -1%; }
    .col__wrap--margin > li {
      padding: 1%; }
  .col__wrap--marginL {
    margin: 2% -2%; }
    .col__wrap--marginL > li {
      padding: 2%; }
  .col__wrap--marginS {
    margin: .5% -.5%; }
    .col__wrap--marginS > li {
      padding: .5%; }
  .col__wrap--stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
  .col__wrap--center > li {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center; }

.col__inner {
  min-height: 100%; }

.col--1 {
  width: 8.33333%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--1.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-1 {
    width: 8.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-1.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-1 {
    width: 8.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-1.col--right {
      float: right; } }

.col--2 {
  width: 16.66667%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--2.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-2 {
    width: 16.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-2.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-2 {
    width: 16.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-2.col--right {
      float: right; } }

.col--3 {
  width: 25%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--3.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-3 {
    width: 25%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-3.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-3 {
    width: 25%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-3.col--right {
      float: right; } }

.col--4 {
  width: 33.33333%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--4.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-4 {
    width: 33.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-4.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-4 {
    width: 33.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-4.col--right {
      float: right; } }

.col--5 {
  width: 41.66667%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--5.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-5 {
    width: 41.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-5.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-5 {
    width: 41.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-5.col--right {
      float: right; } }

.col--6 {
  width: 50%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--6.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-6 {
    width: 50%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-6.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-6 {
    width: 50%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-6.col--right {
      float: right; } }

.col--7 {
  width: 58.33333%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--7.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-7 {
    width: 58.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-7.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-7 {
    width: 58.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-7.col--right {
      float: right; } }

.col--8 {
  width: 66.66667%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--8.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-8 {
    width: 66.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-8.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-8 {
    width: 66.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-8.col--right {
      float: right; } }

.col--9 {
  width: 75%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--9.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-9 {
    width: 75%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-9.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-9 {
    width: 75%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-9.col--right {
      float: right; } }

.col--10 {
  width: 83.33333%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--10.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-10 {
    width: 83.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-10.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-10 {
    width: 83.33333%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-10.col--right {
      float: right; } }

.col--11 {
  width: 91.66667%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--11.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-11 {
    width: 91.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-11.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-11 {
    width: 91.66667%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-11.col--right {
      float: right; } }

.col--12 {
  width: 100%;
  list-style: none;
  text-indent: inherit;
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  .col--12.col--right {
    float: right; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .col--pc-12 {
    width: 100%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--pc-12.col--right {
      float: right; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .col--sp-12 {
    width: 100%;
    list-style: none;
    text-indent: inherit;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .col--sp-12.col--right {
      float: right; } }

/* CSS Document */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex--pc {
    /*pc769px以上*/ }
    @media all and (min-width: 48.0625em) {
      .flex--pc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }

.flex--margin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .flex--margin > * {
    padding: 1%;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

.fw--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.jc--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.jc--around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.jc--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.ai--start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.ai--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.ai--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .ai--pc-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; } }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .ai--pc-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; } }

.ai--st {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .ai--pc-st {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .ai--sp-st {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; } }

.fg--1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1; }

.fg--2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2; }

.fg--3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3; }

.fg--4 {
  -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  flex-grow: 4; }

.fg--5 {
  -webkit-box-flex: 5;
  -ms-flex-positive: 5;
  flex-grow: 5; }

.fs--0 {
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.fb--10 {
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-10 {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-10 {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%; } }

.fb--20 {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-20 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-20 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%; } }

.fb--30 {
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-30 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-30 {
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%; } }

.fb--40 {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-40 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-40 {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%; } }

.fb--50 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-50 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%; } }

.fb--60 {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-60 {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-60 {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%; } }

.fb--70 {
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-70 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-70 {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%; } }

.fb--80 {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-80 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-80 {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%; } }

.fb--90 {
  -ms-flex-preferred-size: 90%;
  flex-basis: 90%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-90 {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-90 {
    -ms-flex-preferred-size: 90%;
    flex-basis: 90%; } }

.fb--100 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .fb--pc-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .fb--sp-100 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; } }

.od--1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; } }

.od--2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; } }

.od--3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; } }

.od--4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; } }

.od--5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; } }

.od--6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; } }

.od--7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; } }

.od--8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; } }

.od--9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; } }

.od--10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10; }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  .od--pc-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  .od--sp-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; } }

/* 変数まとめ */
/*サポートブラウザの設定と初期値*/
/*色*/
/*トップページカラー*/
/*フォントサイズ*/
/*スマホの基本幅*/
/*pcの基本幅*/
/*imgパス*/
/* Scss Document */
/*メデイアクエリブレイクポイント*/
/* @include media-pc という風に記述する*/
/*clearfix*/
/*webfont*/
.img-black--youtube {
  background: #111;
  padding: 2.5%;
  position: relative; }

.image-wrap, .image-wrap--ov-none, .image-wrap--100, .image-wrap--50, .image-wrap--60, .image-wrap--30 {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center; }
  .image-wrap[style^="background-image"]:before, [style^="background-image"].image-wrap--ov-none:before, [style^="background-image"].image-wrap--100:before, [style^="background-image"].image-wrap--50:before, [style^="background-image"].image-wrap--60:before, [style^="background-image"].image-wrap--30:before {
    padding-top: 75%;
    content: "";
    display: block; }

.image-wrap--ov-none {
  overflow: inherit; }

.image-wrap--100[style^="background-image"]:before {
  padding-top: 100%;
  content: "";
  display: block; }

.image-wrap--50[style^="background-image"]:before {
  padding-top: 50%;
  content: "";
  display: block; }

.image-wrap--60[style^="background-image"]:before {
  padding-top: 60%;
  content: "";
  display: block; }

.image-wrap--30[style^="background-image"]:before {
  padding-top: 30%;
  content: "";
  display: block; }

/*img.icon-kokki {
	width: 15%;
	height: auto;
	position: absolute;
	top: 2.5%;
	right: 2.5%;
	z-index:100;
}
.card-wrap .card .image-wrap img.icon-kokki {
	@extend .icon-kokki;
	width: 15% !important;
	height: auto !important;
}
.img-black__cont {
	padding: .5rem 1rem;
	margin-top: -12%;
	position: relative;
}

.img-black__title {
	color: #FFF;
	font-size: 1rem;
	border-bottom: solid 1px #FFF;
	margin: 1rem 0;
	padding-bottom: .5rem;
}
.img-black__text {
	color: #FFF;
	font-size: .8rem;
}

.img-maru {
	border-radius:50%;
	
}*/
.video-icon {
  display: block;
  position: relative; }
  .video-icon > img {
    width: 100%;
    height: auto; }
  .video-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(1.2) translate(-40%, -40%);
    -ms-transform: scale(1.2) translate(-40%, -40%);
    transform: scale(1.2) translate(-40%, -40%);
    content: url("/wp-content/themes/BSC-2018/img/taiken/online/youtube.svg");
    height: 42px;
    width: 60px; }

.youtube-link__pass {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1; }

.img-black--youtube__tag, .img-black--youtube__tag--biyo, .img-black--youtube__tag--hm, .img-black--youtube__tag--tb, .img-black--youtube__tag--hogosya, .img-black--youtube__tag--gakuhi {
  position: absolute;
  margin: 0;
  padding: .5rem;
  min-width: 5rem;
  background: #CCC;
  color: #FFF;
  line-height: 1;
  display: inline-block;
  top: 0;
  left: 0;
  z-index: 2;
  text-align: center; }
  .img-black--youtube__tag--biyo {
    background: #03ae9c; }
  .img-black--youtube__tag--hm {
    background: #ffac19; }
  .img-black--youtube__tag--tb {
    background: #a660a3; }
  .img-black--youtube__tag--hogosya {
    background: #a660a3; }
  .img-black--youtube__tag--gakuhi {
    background: #a660a3; }

.youtube-popu {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .youtube-popu {
      height: auto; } }

.acd__check {
  display: none; }

.acd__label, .acd__label--gray {
  background: #E50065;
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding: 1em;
  position: relative; }
  .acd__label--gray {
    background: #808080; }

.acd__label:after, .acd__label--gray:after {
  background: #000000;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  content: '\f067';
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /*height: 52px;*/
  padding: 1em;
  position: absolute;
  right: 0;
  top: 0px; }

.acd__content {
  border: 1px solid #333;
  display: block;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  -webkit-transition: .5s;
  transition: .5s;
  visibility: hidden; }

.acd__check:checked + .acd__label:after, .acd__check:checked + .acd__label--gray:after {
  content: '\f068'; }

.acd__check:checked + .acd__label + .acd__content, .acd__check:checked + .acd__label--gray + .acd__content {
  height: auto;
  opacity: 1;
  padding: 10px;
  visibility: visible; }

.header_backimgbox {
  position: relative; }

.header {
  z-index: 1001;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 1em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .header {
      margin-bottom: 1.5em; } }

/*ハンバーガーが発火したときのheader*/
body.drawer-opened .header {
  z-index: 1100; }

.header__titlelogo {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .header__titlelogo {
      width: 90%;
      margin: 0em auto 0.5em auto;
      padding: 0 1em; } }
  @media (max-width: 48em) {
    .header__titlelogo {
      overflow: hidden;
      width: 100%;
      margin: 0em auto;
      padding: 0 0 0.5em 0;
      background: none; } }

.sitetitle {
  font-size: 1em;
  width: 14em;
  margin: 0;
  padding: 1em 0.7em 0 0.7em;
  /*pc769px以上*/ }
  .sitetitle svg .cls-1 {
    fill: #000; }
  .sitetitle svg .cls-2 {
    fill: #de0055; }
  .sitetitle svg .cls-3 {
    fill: #de0052; }
  .sitetitle svg .cls-4 {
    fill: #fff; }
  @media all and (min-width: 48.0625em) {
    .sitetitle {
      margin-left: 1%; } }

.home .sitetitle svg .cls-1 {
  fill: #fff; }

.spnav .sitetitle {
  margin-left: 0;
  margin-bottom: 1em;
  padding-left: 0; }

.pcnavwrap {
  float: right;
  max-width: 80%;
  position: relative; }

.submenubox {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 100px;
  top: 25px;
  right: 100px;
  margin: 0; }

.submenu--base {
  float: left;
  margin: 0 0 0 1em; }

.submenu--display01 {
  border: solid 1px #000;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.8em; }
  .submenu--display01 a {
    display: block;
    padding: 0.45em 1em;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s; }
    .submenu--display01 a:hover {
      background: #000;
      color: #fff !important;
      transition: all .3s;
      -webkit-transition: all .3s; }
    .submenu--display01 a:visited {
      color: #000; }

.submenu--display02 {
  background: #E50065;
  font-size: 0.8em;
  font-weight: bold; }
  .submenu--display02 a {
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s; }
    .submenu--display02 a:hover {
      background: #bd006d;
      color: #fff;
      transition: all .3s;
      -webkit-transition: all .3s; }

.mainmenubox {
  clear: both;
  float: right;
  margin: 1.5em 0 0 0;
  position: relative; }

.mainmenubox::after {
  display: block;
  clear: both;
  content: ''; }

.pcnav__p {
  float: left;
  margin-left: 1.2em; }
  .pcnav__p span {
    color: #FFFFFF;
    font-family: "UD Shin Go NT Medium";
    cursor: pointer; }
  .pcnav__p a,
  .pcnav__p a:visited {
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s; }

.pcnav__cwrap {
  display: none;
  position: absolute;
  top: 100%;
  background: #000;
  overflow: hidden;
  padding: 1em;
  font-size: 0.8em; }

.pcnav__cwrap--full {
  width: 100%;
  left: 0; }

.pcnav__p:hover > .pcnav__cwrap {
  display: block; }

.pcnav_clist {
  float: left;
  margin-right: 2em; }
  .pcnav_clist:last-of-type {
    margin-right: 0; }

.pcnav_clist--gakka {
  width: 32%;
  margin-right: 1em; }

.pcnav_clist li a {
  display: block;
  padding: 1em;
  color: #fff;
  text-decoration: none; }
  .pcnav_clist li a::before {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    color: #999;
    margin-right: 5px;
    font-weight: 900; }
  .pcnav_clist li a:hover {
    background: #3A3A3A; }

.pcnav_clist li.img a::before {
  content: normal; }

.pcnav_gakkatitle {
  font-size: 1rem; }

/*ハンバーガー*/
.hamburgerbox {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 1em;
  z-index: 9999;
  background: #000; }

#hamburger {
  position: relative;
  width: 35px;
  height: 30px;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #hamburger {
      width: 55px;
      height: 50px; } }

#hamburger,
#hamburger .icon-bar {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#hamburger .icon-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #FFF;
  border-radius: 4px;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #hamburger .icon-bar {
      height: 6px; } }

#hamburger .icon-bar:nth-of-type(1) {
  top: 5px; }

#hamburger .icon-bar:nth-of-type(2) {
  top: 15px;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #hamburger .icon-bar:nth-of-type(2) {
      top: 22px; } }

#hamburger .icon-bar:nth-of-type(3) {
  bottom: 0;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #hamburger .icon-bar:nth-of-type(3) {
      bottom: 5px; } }

/*発火したときのハンバーガー*/
body.drawer-opened .hamburgerbox {
  position: fixed; }

body.home.drawer-opened .hamburgerbox {
  top: 1rem;
  right: 1rem; }

body.drawer-opened #hamburger .icon-bar {
  background-color: #fff; }

body.drawer-opened #hamburger :nth-of-type(1) {
  -ms-transform: translate(0, 10.5px) rotate(45deg);
  transform: translate(0, 10.5px) rotate(45deg);
  -webkit-transform: translate(0, 10.5px) rotate(45deg);
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    body.drawer-opened #hamburger :nth-of-type(1) {
      -webkit-transform: translate(0, 15px) rotate(45deg);
      -ms-transform: translate(0, 15px) rotate(45deg);
      transform: translate(0, 15px) rotate(45deg); } }

body.drawer-opened #hamburger :nth-of-type(2) {
  -ms-transform: translate(-20px, 0);
  transform: translate(-20px, 0);
  -webkit-transform: translate(-20px, 0);
  opacity: 0; }

body.drawer-opened #hamburger :nth-of-type(3) {
  -ms-transform: translate(0, -10.5px) rotate(-45deg);
  transform: translate(0, -10.5px) rotate(-45deg);
  -webkit-transform: translate(0, -10.5px) rotate(-45deg);
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    body.drawer-opened #hamburger :nth-of-type(3) {
      -webkit-transform: translate(0, -18.5px) rotate(-45deg);
      -ms-transform: translate(0, -18.5px) rotate(-45deg);
      transform: translate(0, -18.5px) rotate(-45deg); } }

/*ドロワーメニュー*/
body.drawer-opened .sitetitle svg .cls-1 {
  fill: #fff; }

.spnavbox {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 1001;
  padding: 0 1em 1em 1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: auto; }
  .home .spnavbox {
    top: 0.7rem;
    right: 0.7rem;
    width: calc(100% - 1.4rem);
    height: calc(100% - 1.4rem); }

.spnav {
  margin: 0;
  padding: 0;
  list-style: none;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .spnav {
      width: 70%;
      margin: 0 auto; } }

.spnav__p {
  margin: 0 0 0.5em 0;
  padding: 0;
  background: #242424;
  position: relative; }
  .spnav__p img {
    width: 1.5em;
    height: auto;
    vertical-align: bottom;
    margin-right: 0.5em; }

.spnav__clist {
  display: none;
  background: #3E3E3E;
  padding-left: 2em; }

.spnav__c {
  padding: 0 1.5em 0 0;
  border-bottom: solid 1px #222; }
  .spnav__c:last-child {
    border: none; }

/*子メニューの幅だけ少しせまく*/
.spnav__clist > .spnav__c a {
  padding: 0.7em 1em; }

.spnav__navbtn, .spnav__navbtn__grandchild {
  display: block;
  padding: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none; }
  .spnav__navbtn:visited, .spnav__navbtn__grandchild:visited, .spnav__navbtn:hover, .spnav__navbtn__grandchild:hover {
    color: #fff; }

.spnav__navbtn__grandchild {
  font-size: 80%;
  padding-left: 2.2em; }

.spnav__navbtn__angle {
  position: absolute;
  top: 0;
  right: 0;
  width: 10%;
  height: 100%;
  background-color: #3E3E3E;
  text-align: center;
  padding-top: 8px; }

.viewless .spnav__navbtn__angle i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.spnav__sns {
  overflow: hidden; }

.spnav__sns__c {
  margin: 0;
  padding: 0;
  float: left;
  width: calc(100% / 4);
  text-align: center; }
  .spnav__sns__c img {
    width: 30px; }

/*発火した時のドロワー*/
body.drawer-opened {
  overflow: hidden; }

body.drawer-opened .spnavbox {
  opacity: 1;
  visibility: visible; }

.footer {
  background: #000000;
  color: #fff;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .footer {
      padding-bottom: 1em; } }
  @media (max-width: 48em) {
    .footer {
      padding-bottom: 6em; } }

.footerwrap {
  margin: 0 auto;
  padding: 1.5em 0 0 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .footerwrap {
      width: 90%; } }

.footer-snsbox {
  background: #eee;
  color: #000;
  padding: 1em 0;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .footer-snsbox {
      text-align: right; } }
  @media (max-width: 48em) {
    .footer-snsbox {
      text-align: center; } }

.footer-snsbox__child {
  margin: 0;
  text-align: center; }

.footer-snsbox__icon {
  display: inline-block;
  margin-right: 1.5em;
  width: 3em; }
  .footer-snsbox__icon img {
    vertical-align: middle; }
  .footer-snsbox__icon:last-of-type {
    margin-right: 0; }

.copyright {
  font-size: 0.6em;
  margin: 1em 0;
  text-align: center; }

.footerwrap_box {
  overflow: hidden; }

.footer_pc-schoolname__logo {
  float: left;
  width: 30%;
  margin: 0.5em 0; }

.footer_pc__telmailbox {
  float: right;
  width: 65%; }

.footer_pc__telmailbox__child {
  display: inline-block;
  width: 46%;
  text-align: center;
  margin-right: 6%; }
  .footer_pc__telmailbox__child:last-of-type {
    margin-right: 0; }
  .footer_pc__telmailbox__child a {
    display: block;
    padding: 0.5em 0.8em;
    background: #eee;
    border-radius: 2px;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s; }
    .footer_pc__telmailbox__child a:hover {
      background: #ccc;
      transition: all .3s;
      -webkit-transition: all .3s; }

.footerotherbox {
  color: #ffffff;
  border-top: solid 1px #999;
  font-size: 0.7em; }

.footerotherlink {
  overflow: hidden; }
  .footerotherlink li {
    float: left;
    margin-right: 2em; }
    .footerotherlink li::before {
      content: "\f105";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      color: #999;
      margin-right: 5px; }
    .footerotherlink li a {
      color: #fff;
      text-decoration: none; }
      .footerotherlink li a:hover {
        color: #ccc; }

.footer-group {
  overflow: hidden;
  border-top: solid 1px #999;
  font-size: 0.7rem; }
  .footer-group li.g {
    font-weight: bold; }
  .footer-group li a {
    color: #fff;
    text-decoration: none; }
    .footer-group li a:hover {
      color: #ccc; }
    .footer-group li a::before {
      content: "\f105";
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      color: #999; }

.footer-sisterschoolname {
  margin-top: 1.5em;
  margin-right: 5%;
  padding: 0 1em 1em 1em;
  float: left;
  width: 60%;
  font-size: 0.7em;
  border: dotted 1px #E8E8E8; }
  .footer-sisterschoolname:last-of-type {
    width: 35%;
    margin-right: 0; }

.footer-sisterschoolname__tbecopy {
  color: #000;
  text-align: center;
  background: #E8E8E8;
  margin: 0 0 0.5em 0;
  padding: 0.3em;
  width: 20em; }

.footer-sisterschoolname__logo {
  width: 38%;
  display: inline-block;
  margin: 0 1em 0 0;
  vertical-align: middle; }

.footer-sisterschoolname__adress {
  display: inline-block;
  margin: 0.1em 0 0 0;
  vertical-align: middle; }
  .footer-sisterschoolname__adress a {
    display: inline-block;
    background: #eee;
    padding: 0.1em 0.3em;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s; }
    .footer-sisterschoolname__adress a:hover {
      background: #ccc;
      transition: all .3s;
      -webkit-transition: all .3s; }

.footer_sp__telmailbox {
  text-align: center; }

.footer_sp__telmailbox__child {
  display: inline-block;
  width: 45%;
  text-align: center;
  margin-right: 8%; }
  .footer_sp__telmailbox__child:last-of-type {
    margin-right: 0; }
  .footer_sp__telmailbox__child a {
    display: block;
    padding: 0.5em 0.8em;
    background: #eee;
    border-radius: 2px; }

.footer-schoolname {
  margin-top: 1.5em;
  padding: 1.2em; }

.footer-schoolname--tbe {
  border: dotted 1px #E8E8E8; }

.footer-schoolname__logo {
  margin: 0;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .footer-schoolname__logo {
      width: 50%;
      float: left; } }

.footer-schoolname__tbecopy {
  color: #000;
  text-align: center;
  background: #E8E8E8;
  margin: 0 0 0.5em 0;
  padding: 0.3em; }

.footer-schoolname__adress {
  font-size: .7em;
  margin: 0 0 0.1em 0;
  text-align: center;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .footer-schoolname__adress {
      font-size: 0.8em;
      text-align: left; } }

.footer-schoolname__adress span {
  display: inline-block;
  background: #eee;
  padding: 0.1em 0.3em; }
  .footer-schoolname__adress span a {
    text-decoration: none; }

/* footerの固定ナビ------------------------------------------------------------------------------ */
.footernavibox {
  background-color: #eee;
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding-top: 2px;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .footernavibox {
      display: none; } }
  .home .footernavibox {
    width: calc(100% - 5vw);
    bottom: 0.7rem;
    left: 0.7rem;
    margin: 0 auto; }

.footernavi {
  margin: 0;
  padding: 0;
  font-size: 0;
  background: #000; }

.footernavi_child {
  position: relative;
  display: inline-block;
  width: 39%;
  margin-right: 1.5%;
  font-size: 1rem;
  text-align: center; }
  .footernavi_child a {
    display: block;
    text-decoration: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1.4rem 0;
    color: #fff; }

.footernavi_child--access {
  width: 19%;
  margin-right: 0;
  vertical-align: bottom;
  background: #eee;
  padding-top: 0.3em; }
  .footernavi_child--access i {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.2rem; }
  .footernavi_child--access a {
    padding: 0.6rem 0;
    color: #000; }

.footernavi_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  margin: 0; }

.footernavi_cap {
  display: inline-block;
  margin-left: 35%; }
  .footernavi_cap::after {
    content: "";
    border-bottom: 3px solid #fff;
    display: block; }

/*

#footernavi   {
    width: 100%;
	box-sizing:border-box;  
    position: fixed;  
    bottom:0;  
    left:0; 
	z-index:6; 
		
}  

 
#footernavi ul{
	margin:0;
	padding:0;
	font-size:0;
	}

#footernavi ul li{
	position:relative;
	display:inline-block;
	width:33.333%;
	margin:0;
	padding:1%;
	font-size:0.8rem;
	line-height:1;
	text-align:center;
	vertical-align:top;	
	background:#9A9A9A;
	
	&:nth-of-type(2){
		background:#a4a4a4;
	}
	&:last-of-type{
		margin-right:0;
	}
}

#footernavi ul li:last-child a{
	border-right:none;
}


#footernavi ul li a{
	display:block;
	padding:4% 0;
	text-decoration:none;
	box-sizing: border-box;
}

#footernavi ul li a img{
	display:block;
	width:25%;
	margin:0 auto;
	margin-bottom:0.5em;
}



#footernavi ul li a:before{
	content:"\f0a9";
	font-family:Font Awesome 5 Free;
	font-weight : 900;
	color:#fff;
	margin-right:5px;
	font-size: 1.15rem;
    vertical-align: middle;
}


.footernavi__icon{
    position: absolute;
    top: -50%;
    left: 5%;
    width: 30%;
}

*/
.main {
  width: 100%;
  margin: 0 auto 3em auto;
  overflow-x: hidden;
  padding-top: 4.5em;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .main {
      padding-top: 1em; } }

.home .main {
  padding-top: 0; }

.pcwrap {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .pcwrap {
      width: 80%;
      /*max-width: 73.14em;*/
      margin: 0 auto;
      clear: both; } }

/*サイドバー全体
*******************************/
.content-extra {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .content-extra {
      float: right;
      width: 22%; } }
  @media (max-width: 48em) {
    .content-extra {
      display: none; } }

/*
固定ページサイドバー
*******************************/
.child-name {
  background-color: #fff;
  border: solid 3px #CCC;
  padding: 15px 10px;
  margin: 0;
  color: #333;
  text-align: center;
  font-weight: bold; }

.child-name a {
  text-decoration: none; }

/*子*/
.child-box {
  margin-bottom: 20px; }

.child-box ul {
  margin: 0 auto;
  padding: 0; }

.child-box ul li {
  display: block;
  border-bottom: dotted 1px #999; }

.child-box ul li a {
  display: block;
  padding: 0.8em 0.7em 0.8em 1.0em;
  text-decoration: none; }

.child-box ul li a:before {
  content: "\f101";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  margin-right: 5px; }

.child-box ul li.parent a {
  padding-left: 0.7em; }

.child-box ul li.parent a:before {
  content: normal; }

.child-box ul li.current_page_item {
  background-color: #F0F0F0; }

/*孫*/
.child-box ul li ul li a {
  display: block;
  padding: 0.7em 0.7em 0.7em 2.0em;
  text-decoration: none;
  background-image: none; }

.child-box ul li ul li:last-of-type {
  border-bottom: none; }

.child-box ul li ul li a:before {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  margin-right: 5px; }

.child-box ul li a:hover {
  background-color: #FFE8F4;
  color: #333; }

/*
ブログ用サイドバー
*******************************/
.blog_sidebar ul {
  margin: 0;
  padding: 0; }

.blog_sidebar .widget {
  list-style: none;
  margin: 2em 0; }
  .blog_sidebar .widget ul {
    list-style: none;
    font-size: 0.86em;
    margin: 0;
    padding: 0; }
    .blog_sidebar .widget ul li {
      padding: 0.5em;
      border-bottom: dotted 1px #ccc; }
      .blog_sidebar .widget ul li:before {
        content: "\f054";
        font-family: FontAwesome;
        color: #ccc;
        margin-right: 0.5em; }
  .blog_sidebar .widget:first-child {
    margin-top: 0; }

.blog_sidebar .child-name {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .blog_sidebar .child-name {
      display: none; } }

.blog_sidebar .widgettitle {
  background-color: #E8E8E8;
  font-size: 1em;
  margin: 2em 0 1em 0;
  padding: 1em; }
  .blog_sidebar .widgettitle:nth-of-type(1) {
    margin-top: 0; }

#wp-calendar {
  font-size: 0.8em;
  width: 100%; }
  #wp-calendar caption {
    margin-bottom: 0.5em; }
  #wp-calendar th {
    text-align: center; }
  #wp-calendar td, #wp-calendar .table-base01 th, .table-base01 #wp-calendar th {
    text-align: center; }
  #wp-calendar tfoot td#prev, #wp-calendar tfoot .table-base01 th#prev, .table-base01 #wp-calendar tfoot th#prev {
    text-align: left;
    padding-top: 0.5em; }
  #wp-calendar tfoot td#next, #wp-calendar tfoot .table-base01 th#next, .table-base01 #wp-calendar tfoot th#next {
    text-align: right;
    padding-top: 0.5em; }

.textwidget {
  font-size: 0.86em; }

/*ぱんくず*/
.breadcrumb {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding-top: 6.2em;
  z-index: 1001;
  font-size: 0.8em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .breadcrumb {
      display: none; } }

/*投稿の各アーカイブページ＆全記事一覧：index.phpにひとまとめ
*****************************************************************************************************
*****************************************************************************************************/
.archives-postbox {
  background-color: #E8E8E8;
  padding: 0.5em;
  margin-top: 0; }

.archives-title {
  margin: 0; }

.archivesbox {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: dotted 1px #ccc; }

.post-list {
  overflow: hidden;
  margin: 5px 0;
  padding: 0; }

.post-list__img {
  float: left;
  width: 29.4%;
  margin-left: 0;
  margin-top: 0.4em; }

.post-list__except {
  float: right;
  width: 66%; }
  .post-list__except p {
    margin: 0; }

.post-list__more {
  clear: both;
  font-size: 0.72em;
  text-align: right; }

.post-spec {
  font-size: 0.72em;
  color: #999;
  text-align: right;
  margin: 0.5em 0; }

.post-footer {
  border-top: dotted 1px #999;
  font-size: 0.72em;
  padding-top: 1em;
  margin-top: 2em;
  text-align: center; }

/* front-page
/////////////////////////////////////////////////////////////////////////////////////// */
body.home {
  padding: 2.5vw;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    body.home {
      padding: 0.7rem; } }

#front-border .front-border__v:before {
  content: "";
  position: fixed;
  height: 100vh;
  width: 2.5vw;
  top: 0;
  left: 0;
  background: #E50065;
  z-index: 9999;
  -webkit-transition: background .3s;
  transition: background .3s;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #front-border .front-border__v:before {
      width: 0.7rem; } }

#front-border .front-border__v:after {
  content: "";
  position: fixed;
  height: 100vh;
  width: 2.5vw;
  top: 0;
  right: 0;
  background: #E50065;
  z-index: 9999;
  -webkit-transition: background .3s;
  transition: background .3s;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #front-border .front-border__v:after {
      width: 0.7rem; } }

#front-border .front-border__s:before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 2.5vw;
  top: 0;
  left: 0;
  background: #E50065;
  z-index: 9999;
  -webkit-transition: background .3s;
  transition: background .3s;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #front-border .front-border__s:before {
      height: 0.7rem; } }

#front-border .front-border__s:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 2.5vw;
  bottom: 0;
  left: 0;
  background: #E50065;
  z-index: 9999;
  -webkit-transition: background .3s;
  transition: background .3s;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    #front-border .front-border__s:after {
      height: 0.7rem; } }

#front-border.index02 .front-border__v:before, #front-border.index02 .front-border__v:after, #front-border.index02 .front-border__s:before, #front-border.index02 .front-border__s:after {
  background: #009F89; }

#front-border.index03 .front-border__v:before, #front-border.index03 .front-border__v:after, #front-border.index03 .front-border__s:before, #front-border.index03 .front-border__s:after {
  background: #63066E; }

#front-border.index04 .front-border__v:before, #front-border.index04 .front-border__v:after, #front-border.index04 .front-border__s:before, #front-border.index04 .front-border__s:after {
  background: #025593; }

#front-border.index05 .front-border__v:before, #front-border.index05 .front-border__v:after, #front-border.index05 .front-border__s:before, #front-border.index05 .front-border__s:after {
  background: #DD4517; }

#front-border.index06 .front-border__v:before, #front-border.index06 .front-border__v:after, #front-border.index06 .front-border__s:before, #front-border.index06 .front-border__s:after {
  background: #CC1B09; }

#front-border.index07 .front-border__v:before, #front-border.index07 .front-border__v:after, #front-border.index07 .front-border__s:before, #front-border.index07 .front-border__s:after {
  background: #F2C001; }

#front-border.index08 .front-border__v:before, #front-border.index08 .front-border__v:after, #front-border.index08 .front-border__s:before, #front-border.index08 .front-border__s:after {
  background: #E50065; }

/*シュイーン*/
.aniItem,
.aniItem__blue,
.aniItem__orange {
  display: block; }

.aniItem.fade {
  -webkit-animation: ani01 0.4s;
  animation: ani01 0.4s;
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  background: transparent; }

.aniItem__blue.fade {
  -webkit-animation: ani02 0.4s;
  animation: ani02 0.4s;
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  background: #025593; }

.aniItem__orange.fade {
  -webkit-animation: ani02 0.4s;
  animation: ani02 0.4s;
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  background: #dd4517; }

.aniItem.fade img,
.aniItem.fade .instafeed__img,
.aniItem.fade .aniItem__inner {
  -webkit-animation: ani01-img 0.6s;
  animation: ani01-img 0.6s; }

.aniItem__blue.fade img,
.aniItem__blue.fade .instafeed__img,
.aniItem__blue.fade .aniItem__inner {
  -webkit-animation: ani01-img 0.6s;
  animation: ani01-img 0.6s; }

.aniItem__orange.fade img,
.aniItem__orange.fade .instafeed__img,
.aniItem__orange.fade .aniItem__inner {
  -webkit-animation: ani01-img 0.6s;
  animation: ani01-img 0.6s; }

@-webkit-keyframes ani01 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: black; }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background: black; } }

@keyframes ani01 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: black; }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background: black; } }

@-webkit-keyframes ani01-img {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani01-img {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/*------------*/
.front-title {
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 auto 1em auto; }
  .front-title small {
    display: block;
    font-size: 1rem; }

.front-title--white {
  text-shadow: 1.0px 1.0px 0 #fff, -1.0px 1.0px 0 #fff, 1.0px -1.0px 0 #fff, -1.0px -1.0px 0 #fff; }
  .front-title--white small {
    text-shadow: none;
    color: #fff; }

.section__inner {
  padding-top: 3em;
  padding-bottom: 3em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .section__inner {
      padding-bottom: 0.5em; } }

.front-title-box {
  position: relative; }

.followus {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  color: #000;
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.3em;
  -webkit-animation: Flash1 1s ease infinite;
  animation: Flash1 1s ease infinite; }

@-webkit-keyframes Flash1 {
  25% {
    background: #E50065; }
  50% {
    background: #E50065; }
  75% {
    background: #fff; }
  100% {
    background: #fff; } }

@keyframes Flash1 {
  25% {
    background: #E50065; }
  50% {
    background: #E50065; }
  75% {
    background: #fff; }
  100% {
    background: #fff; } }
  .followus::before {
    display: block;
    content: "";
    width: 20px;
    border-top: 1px solid #fff;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: 100%; }
  .followus a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    padding: 0 0.2em; }
    .followus a:hover {
      background: #E50065;
      color: #fff; }

.followus--nonanime {
  -webkit-animation: none;
  animation: none; }

.followus--blog {
  border: 1px #000 solid;
  top: 25%;
  bottom: inherit; }
  .followus--blog::before {
    border-top: 1px #000 solid; }
  .followus--blog a {
    padding: 0 1em; }

/*------------SNSボックス（スマホ）------------*/
.top__snsbox__wrap {
  background: #eee;
  margin-bottom: 1.5em; }

.top__snsbox {
  color: #000;
  width: 100%;
  margin: 0 auto;
  padding: 1em;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .top__snsbox {
      text-align: right; } }
  @media (max-width: 48em) {
    .top__snsbox {
      text-align: center; } }

.top__snsbox__child {
  margin: 0;
  text-align: center; }

.top__snsbox__icon {
  display: inline-block;
  margin-right: 1.5em;
  width: 3em; }
  .top__snsbox__icon img {
    vertical-align: middle; }
  .top__snsbox__icon:last-of-type {
    margin-right: 0; }

/*リモート進路選び*/
.top__otherbtn__wrap {
  position: relative;
  width: 100%;
  /*	background: #000;
	padding: .5rem;*/ }

.top__otherbtn__icon {
  position: absolute;
  width: 60%;
  height: 50px;
  text-align: center;
  top: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #000;
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.3em;
  -webkit-animation: Flash1 1s ease infinite;
  animation: Flash1 1s ease infinite;
  /*	a{
		display: flex;
		width: 100%;
		height: 100%;
		align-items: center;
		text-decoration: none;
		padding: 0 0.2em;
		color: #fff;

		
		&:hover{
			background: #000;
			color:#fff;
		}

		
	}*/ }

@keyframes Flash1 {
  25% {
    background: #000;
    color: #fff; }
  50% {
    background: #000;
    color: #fff; }
  75% {
    background: #fff;
    color: #000; }
  100% {
    background: #fff;
    color: #000; } }
  .top__otherbtn__icon::before {
    display: block;
    content: "";
    width: 20px;
    border-top: 1px solid #fff;
    position: absolute;
    top: 50%;
    bottom: 50%;
    right: 100%; }

.top__otherbtn__txt {
  text-align: center;
  margin: 0 auto; }

.topbannerbox {
  position: relative;
  margin: 0;
  z-index: 5;
  padding: 1.5em 0;
  text-align: center;
  background: #E50065;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .topbannerbox {
      padding: 2em 0; } }

.topbannerbox__child {
  width: 90%;
  margin: 0 auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .topbannerbox__child {
      overflow: hidden;
      margin: -6em auto 0 auto;
      text-align: center; } }
  .topbannerbox__child li {
    display: inline-block;
    margin: 0 0 0.5em 0;
    /*padding:0;*/
    /*pc769px以上*/ }
    .topbannerbox__child li img {
      vertical-align: bottom; }
    .topbannerbox__child li:first-of-type {
      margin-top: -4em; }
    @media all and (min-width: 48.0625em) {
      .topbannerbox__child li {
        /*width: 30%;*/
        /*width:23%;*/
        /*margin-right: 2%;*/ }
        .topbannerbox__child li:first-of-type {
          margin-top: 0; }
        .topbannerbox__child li:last-child {
          margin-right: 0; } }

.top__ocbnr__img {
  position: relative;
  display: block;
  padding-top: 2em; }

.top__ocbnr__icon {
  position: absolute;
  left: 2%;
  top: 2%;
  height: 2.5rem;
  width: auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .top__ocbnr__icon {
      height: 2rem;
      top: 4%; } }

/*-------------*/
.coursebox {
  overflow: hidden;
  padding-bottom: 0em; }

.courselink {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .courselink {
      -webkit-transform-origin: center;
      -ms-transform-origin: center;
      transform-origin: center;
      -webkit-transform: scale(1.04);
      -ms-transform: scale(1.04);
      transform: scale(1.04); } }

.courselink_child {
  position: relative; }
  .courselink_child a {
    display: block;
    overflow: hidden; }
  .courselink_child img {
    vertical-align: middle; }

.courselink_child__img {
  width: 100%;
  height: auto; }

.courselink_child__textbox {
  display: inline-block;
  position: absolute;
  /*pc769px以上*/
  /*スマホ 768px以下*/
  left: 0;
  bottom: 5%; }
  @media all and (min-width: 48.0625em) {
    .courselink_child__textbox {
      font-size: 1.3em; } }
  @media (max-width: 48em) {
    .courselink_child__textbox {
      font-size: .9em; } }

.courselink_child__text-item {
  display: inline-block;
  margin-bottom: 2%;
  background-color: #000;
  color: #fff;
  padding-right: .2em; }
  #index04 .courselink_child__text-item {
    background: #025593; }

/*-------------*/
.pickupbox {
  overflow: hidden;
  padding-bottom: 3em;
  line-height: 0; }

.pickuplink {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .pickuplink {
      -webkit-transform-origin: center;
      -ms-transform-origin: center;
      transform-origin: center; } }

.pickuplink_child {
  position: relative;
  width: 90%;
  margin: 0 5% 1em 5%;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .pickuplink_child {
      width: 48%;
      margin: 0 auto 2em; } }

.pickuplink_child__link {
  display: block; }

.pickuplink_child__img {
  width: 100%;
  height: auto; }

/*-------------*/
.instagrambox {
  background: #000;
  padding-bottom: 3em; }

#instafeed {
  width: 90%;
  margin: 0 auto;
  padding: 0; }
  #instafeed li {
    list-style: none;
    display: inline-block;
    float: left;
    margin-bottom: 1vh;
    border: 2px solid #fff;
    /*スマホ 768px以下*/
    /*pc769px以上*/ }
    @media (max-width: 48em) {
      #instafeed li {
        width: 32%;
        margin-right: 2%; }
        #instafeed li:nth-of-type(3n) {
          margin-right: 0; }
        #instafeed li:nth-last-of-type(-n+6) {
          display: none; } }
    @media all and (min-width: 48.0625em) {
      #instafeed li {
        width: 16%;
        margin-right: 0.8%; }
        #instafeed li:nth-of-type(6n) {
          margin-right: 0; } }

.instafeed__img {
  width: 100%;
  margin: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block; }
  .instafeed__img::before {
    display: block;
    content: "";
    padding-top: 100%; }

.pc_floatwrap {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .pc_floatwrap {
      overflow: hidden; } }

/*snap*/
.topsnapbox_inner {
  position: relative;
  margin-top: 3em;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .topsnapbox_inner {
      max-width: 70%;
      width: 800px;
      margin: 0 auto;
      height: 650px; } }

.js-photostack {
  position: relative;
  padding: 0;
  margin: 0 auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .js-photostack {
      margin-top: 2em;
      left: 25%; } }

.js-photostack > * {
  position: absolute;
  top: 0;
  left: 0;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .js-photostack > * {
      width: 70%; } }
  @media (max-width: 48em) {
    .js-photostack > * {
      width: 90%;
      margin-left: 5%; } }

.front-title--snap {
  position: absolute;
  bottom: 13%;
  left: 5%;
  z-index: 10;
  -webkit-transform: rotate(-6deg);
  -ms-transform: rotate(-6deg);
  transform: rotate(-6deg);
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 300;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .front-title--snap {
      bottom: 30%;
      left: 10%; } }
  .front-title--snap span {
    display: table;
    background: #000;
    color: #fff;
    padding: 0.1em 0.3em;
    /*pc769px以上*/
    /*スマホ 768px以下*/ }
    @media all and (min-width: 48.0625em) {
      .front-title--snap span {
        font-size: 2em; } }
    @media (max-width: 48em) {
      .front-title--snap span {
        font-size: 1.5em;
        letter-spacing: 0.05em; } }
    .front-title--snap span a {
      display: block;
      color: #fff;
      text-decoration: none; }
      .front-title--snap span a:hover {
        background-color: #666; }

.topsnapbox__back01 {
  position: absolute;
  width: 50%;
  height: 200px;
  top: -60px;
  right: 0;
  z-index: -1;
  background-size: 10px 10px;
  margin: 0 auto;
  background-image: -webkit-radial-gradient(#000 15%, transparent 20%);
  background-image: radial-gradient(#000 15%, transparent 20%);
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .topsnapbox__back01 {
      left: -20%;
      top: -50px;
      height: 400px; } }

.topsnapbox__back02 {
  position: absolute;
  width: 50%;
  height: 200px;
  bottom: 0;
  z-index: -1;
  background-size: 10px 10px;
  margin: 0 auto;
  background-image: -webkit-radial-gradient(#000 10%, transparent 20%);
  background-image: radial-gradient(#000 10%, transparent 20%);
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .topsnapbox__back02 {
      bottom: 40%;
      right: 0; } }

.twitter_blogwrap {
  position: relative; }

.twitter_blog__back {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .twitter_blog__back {
      position: absolute;
      top: 20px;
      height: 200px;
      width: 100%;
      background: #000; } }

/*twitter*/
.twitterbox {
  position: relative;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .twitterbox {
      width: 45%;
      float: left; } }

.twitter-inner {
  width: 90%;
  margin: 0 auto;
  padding: 0 1em;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .twitter-inner {
      width: 100%; } }

.twitter-inner iframe {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .twitter-inner iframe {
      height: 100% !important; } }
  @media (max-width: 48em) {
    .twitter-inner iframe {
      width: calc(100vw - 20px) !important; } }

.twitterbox__back {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 200px;
  background: #000;
  z-index: -1; }

.twitterbox__back--stripe01,
.twitterbox__back--stripe02 {
  position: absolute;
  width: 100px;
  height: 200px;
  background-size: auto auto;
  background-color: white;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 6px, black 6px, black 8px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, black 6px, black 8px);
  z-index: -1; }

.twitterbox__back--stripe01 {
  top: 50%;
  right: 0; }

.twitterbox__back--stripe02 {
  bottom: 0;
  left: 0; }

/*YouTube*/
.youtubebox {
  position: relative;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .youtubebox {
      width: 45%;
      float: left; } }

.youtubebox__child {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  /*pc769px以上*/ }
  .youtubebox__child:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden; }
  @media all and (min-width: 48.0625em) {
    .youtubebox__child {
      width: 100%; } }
  .youtubebox__child .btn_readmore {
    /*pc769px以上*/ }
    @media all and (min-width: 48.0625em) {
      .youtubebox__child .btn_readmore {
        margin-bottom: 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
        .youtubebox__child .btn_readmore img {
          vertical-align: bottom; } }

.youtubebox__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

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

/*ブログ*/
.blogbox {
  position: relative;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .blogbox {
      width: 45%;
      float: right; } }

.blogbox__child {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  /*pc769px以上*/ }
  .blogbox__child:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden; }
  @media all and (min-width: 48.0625em) {
    .blogbox__child {
      width: 100%; } }
  .blogbox__child .btn_readmore {
    /*pc769px以上*/ }
    @media all and (min-width: 48.0625em) {
      .blogbox__child .btn_readmore {
        margin-bottom: 0;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
        .blogbox__child .btn_readmore img {
          vertical-align: bottom; } }

.front-blog {
  float: left;
  width: 48%;
  margin: 0 4% 2em 0;
  position: relative;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .front-blog {
      margin-bottom: 4em; } }
  .front-blog:nth-of-type(2n) {
    margin-right: 0; }
  .front-blog:nth-of-type(3), .front-blog:nth-of-type(4) {
    margin-bottom: 0; }
  .front-blog a {
    display: block;
    text-decoration: none; }

.front-blog__img {
  margin: 0;
  width: 100%;
  background: #fff; }
  .front-blog__img img {
    width: 100%;
    height: auto;
    vertical-align: middle; }

.front-blog__title {
  padding: 5%;
  min-height: 10em;
  background: #fff;
  margin: -10% auto 0;
  position: relative;
  width: 95%; }

.front-blog__day {
  font-family: din-condensed, sans-serif;
  display: inline-block;
  margin-bottom: 0.5em;
  margin-top: 0.5em; }

.front-blog__back {
  position: absolute;
  top: -10px;
  left: 20px;
  right: 0;
  width: 60%;
  height: 260px;
  z-index: -1;
  background-size: auto auto;
  background-color: transparent;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 6px, #e20052 6px, #e20052 8px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, #e20052 6px, #e20052 8px);
  -webkit-transform: skew(-15deg, 0deg);
  -ms-transform: skew(-15deg, 0deg);
  transform: skew(-15deg, 0deg);
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .front-blog__back {
      height: 360px; } }

.front-blog:nth-of-type(2n) .front-blog__back {
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 6px, #80e8d1 6px, #80e8d1 8px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, #80e8d1 6px, #80e8d1 8px); }

/*sns*/
.snsbox {
  color: #000;
  padding: 1em 0 2em;
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .snsbox {
      padding: 1em 0 4em; } }

.snsbox__child {
  margin: 0; }

.snsbox__icon {
  display: inline-block;
  margin-right: 1em;
  width: 3.5em; }
  @media screen and (max-width: 320px) {
    .snsbox__icon {
      width: 3.2em;
      margin-right: 0.5em; } }
  .snsbox__icon img {
    vertical-align: middle; }
  .snsbox__icon:last-of-type {
    margin-right: 0; }

.top-sp-wrap {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .top-sp-wrap {
      padding-left: 10px;
      padding-right: 10px; } }

/*news*/
.newsbox {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .newsbox {
      /*margin-top: -3em;*/
      /*重要なお知らせを上にあげたのでコメントアウト*/
      margin-top: 0;
      padding-top: 10px; } }

.newsbox__inner {
  width: 90%;
  margin: 0 auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .newsbox__inner {
      width: 100%; } }

.newsbox__elements {
  padding-bottom: 1em;
  margin-bottom: 1em;
  margin-top: 1em;
  border-bottom: dotted 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.newsbox__time {
  padding-right: .5rem;
  white-space: nowrap;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .newsbox__time {
      padding-right: 2em; } }

.newsbox__text {
  font-size: 0.9rem; }

.cousebox {
  margin-bottom: 2em; }

.top-bar {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .top-bar {
      margin-top: 3em; } }
  @media (max-width: 48em) {
    .top-bar {
      padding-top: 0; } }

.top-bar__link {
  display: block; }

.top-bar__img {
  vertical-align: middle;
  /*	border: $point-color2 .7rem solid;
	box-sizing: border-box;*/ }

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

.top-bar__icon {
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate; }

/*@keyframes blink {
  0% {opacity:0;}
  100% {opacity:1;}
}*/
@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0; } }
@keyframes blink {
  0%, 100% {
    opacity: 1; }
  50% {
    opacity: 0; } }

.bk-geom {
  background-image: url(/wp-content/themes/BSC-2018/img/top/bg/bg_geometry.jpg);
  background-size: cover;
  background-repeat: no-repeat; }

.bk--bk {
  background: #000; }

.top-oc-bar {
  margin-right: auto;
  margin-left: auto;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .top-oc-bar {
      width: 1024px; } }
  @media (max-width: 48em) {
    .top-oc-bar {
      width: 100%; } }

.top-oc-bar__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -3% -3%; }

.top-oc-bar__item--L {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .top-oc-bar__item--L {
      width: 70%;
      padding: 3%; } }
  @media (max-width: 48em) {
    .top-oc-bar__item--L {
      margin: 10px 0;
      padding: 0 10px; } }

.top-oc-bar__item--S {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .top-oc-bar__item--S {
      width: 50%;
      padding: 3%; } }
  @media (max-width: 48em) {
    .top-oc-bar__item--S {
      margin: 10px 0;
      padding: 0 10px; } }

.top-oc-bar__link {
  display: block;
  position: relative; }
  .top-oc-bar__link:hover {
    opacity: 1;
    color: #E5DA1A; }

@-webkit-keyframes board {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes board {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

.top-oc-bar__day {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #E5DA1A;
  font-family: teko, sans-serif;
  font-weight: 400;
  overflow: hidden;
  z-index: 99;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .top-oc-bar__day {
      font-size: 3rem; }
      .top-oc-bar__item--S .top-oc-bar__day {
        font-size: 2rem; } }
  @media (max-width: 48em) {
    .top-oc-bar__day {
      font-size: 6vw; } }

.top-oc-bar__day-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  padding: 0 0 0 100%;
  -webkit-animation-name: board;
  animation-name: board;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.top-oc-bar__item:nth-of-type(0) .top-oc-bar__day-list {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.top-oc-bar__item:nth-of-type(1) .top-oc-bar__day-list {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.top-oc-bar__item:nth-of-type(2) .top-oc-bar__day-list {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.top-oc-bar__item:nth-of-type(3) .top-oc-bar__day-list {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.top-oc-bar__item:nth-of-type(4) .top-oc-bar__day-list {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.top-oc-bar__item:nth-of-type(5) .top-oc-bar__day-list {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s; }

.top-oc-bar__item:nth-of-type(6) .top-oc-bar__day-list {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.top-oc-bar__day-item {
  margin-right: 3%;
  white-space: nowrap; }

.bk-top-concept {
  background-image: url(/wp-content/themes/BSC-2018/img/top/concept/concept_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .bk-top-concept {
      margin-bottom: 10rem; } }
  @media (max-width: 48em) {
    .bk-top-concept {
      margin-bottom: 10rem; } }

.top-concept__text {
  color: #FFF; }

.swiper-concept {
  margin-top: -10rem;
  -webkit-transform: translateY(10rem);
  -ms-transform: translateY(10rem);
  transform: translateY(10rem); }

.top-concept__img {
  border: solid #FFF .2rem; }

.top-concept__item {
  position: relative; }

.top-concept__tag {
  margin: 0 0 0 .2rem;
  color: #FFF;
  display: inline-block;
  background: #63066E;
  padding: .5rem;
  line-height: 1;
  -webkit-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  transform: translateY(-70%);
  font-style: italic;
  font-weight: 100; }

#index03 .swiper-concept-pagination {
  bottom: 0; }

.swiper-concept-pagination .swiper-pagination-bullet {
  border-radius: 0;
  border: solid 1px #000;
  background-color: #FFF;
  opacity: 1; }
  .swiper-concept-pagination .swiper-pagination-bullet-active {
    background-color: #000; }

.pick_up__box {
  border: #DD4517 2px solid; }

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden; }

.youtube__thumbnail__icon {
  position: relative; }
  .youtube__thumbnail__icon:after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 70px;
    height: 49px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url("/wp-content/themes/BSC-2018/img/top/youtube/youtube_social_icon_red.png") no-repeat center center;
    background-size: contain;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .youtube__thumbnail__icon:after {
        width: 20%; } }

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.top-snap__item {
  position: relative;
  display: block; }
  .top-snap__item:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(15%, 32%) rotate(45deg);
    -ms-transform: translate(15%, 32%) rotate(45deg);
    transform: translate(15%, 32%) rotate(45deg);
    display: inline-block;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1rem solid #FFF; }
    #index06 .top-snap__item:after {
      border-left-color: #CC1B09; }
  .top-snap__item:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border: .3rem solid transparent;
    -webkit-transition: .5s;
    transition: .5s; }
    .swiper-slide-active .top-snap__item:before {
      top: 1rem;
      bottom: 1rem;
      right: 1rem;
      left: 1rem;
      border-color: #CC1B09; }

.top-snap__img {
  vertical-align: middle;
  width: 100%;
  height: auto; }

.top-snap__tag {
  position: absolute;
  margin: 0;
  z-index: 99;
  bottom: 5%;
  left: 5%;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg); }

.top-snap__tag-item {
  display: inline-block;
  margin-bottom: 2%;
  padding-right: .5rem;
  padding-left: .5rem;
  background-color: #000;
  color: #fff; }
  #index06 .top-snap__tag-item {
    background-color: #CC1B09; }

.swiper-snap {
  padding-bottom: 35px; }

/*トップページスライド用のcss*/
.silde {
  z-index: 0;
  position: relative;
  overflow: hidden;
  /*margin-bottom: 5em;*/ }
  .silde img {
    vertical-align: bottom; }

/*
.slide__white{
	position: absolute;
	z-index: 3;
	left: auto;
	bottom: auto;
	width: 80%;
	height: 100px;
	background: #fff;
	transform-origin: 100% 100% 0;
	transform: skewY(15deg) translateY(0);
	
	@include media-pc{
		width: 44%;
		height: 460px;
	}
}
*/
.slide__title {
  position: absolute;
  bottom: 5%;
  left: 3%;
  margin: 0;
  z-index: 3;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), -1px 1px 2px rgba(0, 0, 0, 0.1), 1px -1px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1);
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .slide__title {
      font-size: 5vw; } }
  @media (max-width: 48em) {
    .slide__title {
      font-size: 10vw;
      line-height: 1.3; } }

.slide__title--sub {
  display: table;
  background: #fff;
  color: #000;
  padding: 0.2vw 0.6vw;
  margin-top: 0.3em;
  font-size: 45%;
  text-shadow: none; }

/*
.slide__border{
	    position: relative;
		z-index: 3;
		border: none;
		border-right:3px solid #000;
		border-bottom:3px solid #000;
	
	@include media-pc{
		width: 44%;
		height: 35px;
		top: 0;
	}
	
			@include media-sp{
			bottom: 0px;
			left: 0px;
			width: 80%;
			height:50px;
			}

}

*/
.swiper-container {
  width: 100%;
  height: 100%; }

.swiper-container .swiper-slide {
  width: 100%;
  height: 100%; }

.swiper-main .swiper-slide img {
  width: 100%;
  vertical-align: bottom; }

/*イベントバナー*/
.swiper-banner {
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.swiper-banner__button--prev {
  color: #fff; }

.swiper-button-prev,
.swiper-button-next {
  background: none; }

.swiper-banner__button--prev {
  background: url(/wp-content/themes/BSC-2017/img/common/swiper-banner__button--prev.png) no-repeat center;
  background-size: 100%; }

.swiper-banner__button--next {
  background: url(/wp-content/themes/BSC-2017/img/common/swiper-banner__button--next.png) no-repeat center;
  background-size: 100%; }

/*学科バナー*/
.swiper-frontcourse__button--prev {
  background: url(/wp-content/themes/BSC-2017/img/common/swiper-frontcourse__button--prev.png) no-repeat center;
  background-size: 100%;
  left: 17%; }

.swiper-frontcourse__button--next {
  background: url(/wp-content/themes/BSC-2017/img/common/swiper-frontcourse__button--next.png) no-repeat center;
  background-size: 100%;
  right: 17%; }

/*****スライドに重ねる 2段階スライドイン*****/
.slide-txt__container {
  position: absolute;
  bottom: 9%;
  left: 0;
  z-index: 3;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .slide-txt__container {
      bottom: 15%;
      left: 2%; } }

.twostep__wrap--front01 {
  display: inline-block;
  width: auto;
  height: 6rem;
  overflow: hidden;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .twostep__wrap--front01 {
      height: 3rem; } }

/*スライド*/
.slide__title__wrap {
  position: absolute;
  bottom: 5%;
  left: 0; }

.slide__title__box {
  width: 100%;
  margin: 0 0 2% 0;
  /*pc769px以上*/ }

.slide__title__txt, .slide__title__txt--sub {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  display: inline-block;
  color: #000;
  background-color: #fff;
  font-family: Midashi Go MB31 JIS2004;
  overflow: hidden;
  position: relative;
  -webkit-animation-name: play;
  animation-name: play;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .slide__title__txt, .slide__title__txt--sub {
      font-size: 5vw;
      padding-left: 2vw;
      padding-right: 2vw; } }
  @media (max-width: 48em) {
    .slide__title__txt, .slide__title__txt--sub {
      font-size: 10vw;
      padding-left: 3vw;
      padding-right: 3vw; } }
  .slide__title__txt:before, .slide__title__txt--sub:before {
    -webkit-animation-name: maskOut;
    animation-name: maskOut;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(340.4deg, #e50065 11.2%, #ffee00 91.1%);
    background-image: linear-gradient(109.6deg, #e50065 11.2%, #ffee00 91.1%); }

.slide__title__txt--sub {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .slide__title__txt--sub {
      font-size: 2.5vw;
      padding-left: 2vw;
      padding-right: 0;
      margin-top: 3%; } }
  @media (max-width: 48em) {
    .slide__title__txt--sub {
      font-size: 5vw;
      padding-left: 3vw;
      padding-right: 0;
      margin-top: 1%; } }
  .slide__title__txt--sub:before {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s; }
  .slide__title__txt--sub:nth-of-type(2) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s; }
    .slide__title__txt--sub:nth-of-type(2):before {
      -webkit-animation-duration: .5s;
      animation-duration: .5s;
      -webkit-animation-delay: 2s;
      animation-delay: 2s; }

@-webkit-keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes play {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }

@keyframes maskOut {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }

.isPlay {
  position: relative;
  opacity: 1 !important; }

.isPlay:before {
  -webkit-animation-name: maskOut;
  animation-name: maskOut;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(340.4deg, #e50065 11.2%, #ffee00 91.1%);
  background-image: linear-gradient(109.6deg, #e50065 11.2%, #ffee00 91.1%); }

/* 就職・資格
/////////////////////////////////////////////////////////////////////////////////////// */
/*------------------------内定者情報2018--------------------------*/
.anchor-Box {
  overflow: hidden; }

.anchor-Box p {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .anchor-Box p {
      margin: 1em 0; } }

.anchor-Box p a {
  display: block;
  padding: 1em;
  background: #E7E7E7;
  border-bottom: solid 2px #000;
  text-decoration: none; }

.anchor-Box p a:before {
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5em; }

.anchor-Box p a:hover {
  background: #D6D6D6; }

/**/
.shushoku_naiteibox {
  overflow: hidden;
  position: relative;
  border: solid 1px #000;
  margin-bottom: 2em;
  padding-top: 2%;
  border-left: none;
  border-right: solid 1px #000;
  /*スマホ 768px以下*/
  /*pc769px以上*/ }
  .shushoku_naiteibox:last-of-type {
    border-right: solid 1px #fff; }
  @media (max-width: 48em) {
    .shushoku_naiteibox:nth-of-type(2n) {
      border-right: solid 1px #fff; } }
  @media all and (min-width: 48.0625em) {
    .shushoku_naiteibox:nth-of-type(5n) {
      border-right: solid 1px #fff; } }

.naitei_card {
  width: 50%;
  margin: 0;
  float: left;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .naitei_card {
      width: 20%; } }

.shushoku_naitei_img {
  margin: 0; }
  .shushoku_naitei_img img {
    vertical-align: bottom; }

.shushoku_naitei_subbox {
  position: relative; }

.shushoku_naitei_subbox--inner {
  position: absolute;
  top: 25%;
  right: 0;
  width: 48%;
  background: rgba(255, 255, 255, 0.6);
  padding: 4%; }

.shushoku_campanybox {
  padding: 0.3em; }

.shushoku_campany {
  position: relative;
  font-size: 1.1em;
  font-family: "UD Shin Go NT Bold";
  text-align: center;
  word-wrap: break-word;
  margin: 0 0.4em; }
  .shushoku_campany::after {
    position: absolute;
    content: ' ';
    left: 0;
    bottom: -4px;
    width: 20%;
    border-bottom: 2px solid #000;
    right: 0;
    margin: 0 auto; }

.shokushu_studentname {
  font-size: 1em;
  margin: 0 0 0.3em 0;
  font-weight: bold; }
  .shokushu_studentname::after {
    content: "さん";
    font-size: 80%; }

.shokushu_school {
  font-size: 0.8em;
  margin: 0;
  line-height: 1.3; }
  .shokushu_school::after {
    content: " 出身"; }

.shushoku_job {
  display: inline-block;
  font-size: 0.7em;
  margin: 0 0 0.3em 0;
  color: #fff;
  padding: 0.5em;
  border-radius: 2px; }

.job-sa {
  background-color: #00a5b1; }
  .job-sa::after {
    content: "美容師"; }

.job-el {
  background-color: #414dab; }
  .job-el::after {
    content: "アイリスト"; }

.job-ebrow {
  background-color: #414dab; }
  .job-ebrow::after {
    content: "アイブロウスタイリスト"; }

.job-fa {
  background-color: #c4c900; }
  .job-fa::after {
    content: "ファッションスタイリスト"; }

.job-es {
  background-color: #cd3042; }
  .job-es::after {
    content: "エステティシャン"; }

.job-ba {
  background-color: #bb3f91; }
  .job-ba::after {
    content: "ビューティアドバイザー"; }

.job-nl {
  background-color: #6acda8; }
  .job-nl::after {
    content: "ネイリスト"; }

.job-bhm {
  background-color: #ff92c5; }
  .job-bhm::after {
    content: "ブライダルヘアメイク"; }

.job-hm {
  background-color: #ea9d00; }
  .job-hm::after {
    content: "ヘアメイク"; }

.shushoku_naitei_newbanner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: 0;
  border: 2em solid #E50065;
  border-top: 2em solid transparent;
  border-right: 2em solid transparent;
  z-index: 3; }
  .shushoku_naitei_newbanner::after {
    content: "new!";
    display: block;
    color: #fff;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-83%) rotate(45deg);
    -ms-transform: translateX(-83%) rotate(45deg);
    transform: translateX(-83%) rotate(45deg);
    z-index: 2; }

/*--------------------------------------内定者情報2017-------------------------------------*/
.naitei2017box div img {
  width: 15%;
  height: auto;
  margin-right: 2%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .naitei2017box div img {
      width: 31.7%; } }

.naitei2017box div img:nth-of-type(6n) {
  margin-right: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .naitei2017box div img:nth-of-type(6n) {
      margin-right: 2%; } }

.naitei2017box div img:nth-of-type(3n) {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .naitei2017box div img:nth-of-type(3n) {
      margin-right: 0; } }

/*--------------------------------------資格サポート・実績-------------------------------------*/
.shikaku__biyoshi {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .shikaku__biyoshi {
      width: 100%;
      height: 13em;
      object-fit: cover; } }

.shikaku__supportbox {
  float: left;
  width: 22.75%;
  margin-right: 3%;
  padding: 0 1em;
  border: #ccc 10px solid;
  /*スマホ 768px以下*/ }
  .shikaku__supportbox:last-of-type {
    margin-right: 0; }
  .shikaku__supportbox h3 {
    font-size: 1.2em; }
  @media (max-width: 48em) {
    .shikaku__supportbox {
      float: none;
      width: 100%;
      margin-right: 0;
      margin-bottom: 1em; } }

#shushoku_shikaku2014 .shikaku-box {
  border: 3px solid #CCCCCC;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 5px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #shushoku_shikaku2014 .shikaku-box {
      width: 100%; } }

#shushoku_shikaku2014 .shikaku-box .support {
  margin-top: 0; }

#shushoku_shikaku2014 .shikaku-box2 {
  border: 3px solid #CCCCCC;
  padding: 10px; }

#shushoku_shikaku2014 .shikaku-box3 {
  border: 3px solid #ec2365;
  padding: 10px; }

#shushoku_shikaku2014 .shikaku-box2 .Box-2,
#shushoku_shikaku2014 .shikaku-box3 .Box-2 {
  margin-right: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #shushoku_shikaku2014 .shikaku-box2 .Box-2,
    #shushoku_shikaku2014 .shikaku-box3 .Box-2 {
      width: 100%; } }

#shushoku_shikaku2014 img,
#shushoku_shikaku2014 .Box-2 img,
#shushoku_shikaku2014 .Box-3 img,
#shushoku_shikaku2014 .shikaku-box3.Box-2 img {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #shushoku_shikaku2014 img,
    #shushoku_shikaku2014 .Box-2 img,
    #shushoku_shikaku2014 .Box-3 img,
    #shushoku_shikaku2014 .shikaku-box3.Box-2 img {
      width: 100%; } }

.shikak_top--img--wrap {
  position: relative; }

.shikak_top--img--text-bg {
  background: rgba(255, 255, 255, 0.9);
  width: 40%;
  height: 13em;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .shikak_top--img--text-bg {
      width: 90%;
      height: 10em; } }

.shikak_top--img--text-wrap {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0em;
  right: 0;
  left: 0;
  height: 9.5em; }

.shikak_top--img--text {
  text-align: center;
  font-weight: bold;
  padding: 1rem;
  font-size: 1.4rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .shikak_top--img--text {
      padding: 2.5rem 1rem 1rem;
      font-size: 1.2rem; } }

.shikak_top--img--text-big {
  color: #E50065;
  line-height: 1em;
  font-size: 8rem;
  font-family: din-2014, sans-serif;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .shikak_top--img--text-big {
      font-size: 7rem; } }

/* 学科紹介
/////////////////////////////////////////////////////////////////////////////////////// */
/*------------------------汎用--------------------------*/
.gakkatitle-wrap {
  background-repeat: no-repeat;
  background-position: center center;
  margin: 0 0 18vh 0;
  background-size: cover;
  position: relative;
  min-height: 450px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkatitle-wrap {
      margin-bottom: 1em;
      min-height: 250px; } }

.gakkatitle-wrap__box {
  text-align: center;
  padding: 1em 2em;
  position: absolute;
  bottom: -10vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakkatitle-wrap__box {
      max-width: 500px; } }

.gakkatitle--en,
.gakkatitle--ensub {
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: #fff; }

.gakkatitle--en {
  font-size: 70px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkatitle--en {
      font-size: 9vw; } }

.gakkatitle--ensub {
  display: inline-block;
  padding: 0.2em 0.5em;
  border: 1px solid #fff; }

.gakkatitle--main {
  font-size: 45px;
  color: #fff;
  margin: 0.5vh 0 0 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkatitle--main {
      font-size: 8vw; } }

/*------------------------------------------*/
.gakkacatch-box {
  margin-top: 14vh; }

.gakkacatch {
  text-align: center;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakkacatch {
      font-size: 2.2rem; } }

.gakkacatch_sub {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakkacatch_sub {
      text-align: center;
      font-size: 1.2rem;
      line-height: 1.8; } }

.gakkamovie_catch {
  display: inline-block;
  margin: 0;
  padding: 0.2em 0.5em;
  color: #fff;
  background: #000;
  position: relative;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakkamovie_catch {
      height: 31px; } }
  .gakkamovie_catch::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid black;
    border-top: 31px solid transparent;
    top: 0;
    left: 100%; }

/*------------------------------------------*/
.gakkafuture-wrap {
  text-align: center;
  margin: 3em 0 0 0;
  padding: 1.5em 0;
  background: #e1e1e1; }

.gakkafuture-box {
  display: table;
  border-collapse: collapse;
  border: 1px solid #000;
  margin: 2vh 0;
  width: 100%; }

.gakkafuture-box__title {
  display: table-cell;
  border-right: 1px solid #000;
  padding: 2em;
  width: 13em;
  text-align: center;
  vertical-align: middle;
  background-color: #000;
  color: #fff;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkafuture-box__title {
      padding: 0;
      width: 9em; } }

.gakkafuture-box__main {
  display: table-cell;
  padding: 2em;
  background: #fff;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkafuture-box__main {
      padding: 1em; } }

/*------------------------------------------*/
.gakka__section--gray {
  background-size: auto auto;
  background-color: whitesmoke;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 5px, #f0f0f0 5px, #f0f0f0 10px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, #f0f0f0 5px, #f0f0f0 10px);
  text-align: center;
  margin: 0;
  padding: 5em 0; }

.gakkasugoi__title {
  position: relative;
  display: table;
  margin: auto;
  padding-bottom: 0.5em;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakkasugoi__title {
      font-size: 2.2rem; } }
  .gakkasugoi__title::before, .gakkasugoi__title::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: auto;
    background-color: #000;
    height: 1px; }
  .gakkasugoi__title::after {
    bottom: 0px;
    height: 5px; }

.gakka-sugoi__fukidashi {
  position: relative;
  background: #f5f5f5;
  border: 1px solid #000;
  display: inline-block;
  padding: 0.5em 1.5em;
  margin: 3em 0 0 0;
  font-family: 'UD Shin Go Conde70 DB'; }

.gakka-sugoi__fukidashi:after, .gakka-sugoi__fukidashi:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.gakka-sugoi__fukidashi:after {
  border-color: rgba(245, 245, 245, 0);
  border-top-color: #f5f5f5;
  border-width: 7px;
  margin-left: -7px; }

.gakka-sugoi__fukidashi:before {
  border-color: transparent;
  border-top-color: #000;
  border-width: 8px;
  margin-left: -8px; }

/*------------------------------------------*/
.gakka__section_headingbox {
  text-align: center;
  margin: 5em 0 3em 0;
  padding: 0;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }

.gakka__section_heading {
  padding: 3em;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 2.0em;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakka__section_heading {
      font-size: 2.2em; } }

.gakka__section_heading--en {
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin: 0; }

.gakka_section_featurebox {
  border-top: 1px solid #000;
  padding: 1em 0;
  margin: 1em 0; }

.gakka_section_featurebox__title {
  position: relative;
  padding-bottom: 0.6em;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  .gakka_section_featurebox__title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    content: " ";
    height: 6px;
    width: 100%;
    background-size: auto auto;
    background-color: white;
    background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 5px, black 5px, black 10px);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, black 5px, black 10px); }

/*------------------------------------------*/
.gakka__studentvoicebox {
  background-color: #f5f5f5;
  margin-top: 3em;
  padding: 2em;
  position: relative; }

.gakka__studentvoice_title {
  margin: 0;
  padding: 0;
  position: absolute;
  top: -1.2em;
  left: 0;
  font-size: 2em; }
  .gakka__studentvoice_title span {
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400; }

.gakka__studentvoicebox--inner {
  margin: 0;
  overflow: hidden; }

.gakka__studentvoice_img {
  float: left;
  margin-right: 1em;
  width: 8em; }

.gakka__studentvoice_caption_head {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 0.5em 0; }
  .gakka__studentvoice_caption_head span {
    background-color: #fff;
    color: #E50065;
    padding: 0.2em;
    font-size: 1rem;
    margin-bottom: 0.5em;
    display: inline-block; }

.gakka__studentvoice_caption_spec {
  margin: 0.5em 0 0 0;
  padding: 0.5em 0 0 0;
  /*スマホ 768px以下*/ }
  .gakka__studentvoice_caption_spec span {
    font-size: 0.8em; }
  @media (max-width: 48em) {
    .gakka__studentvoice_caption_spec {
      border-top: solid 1px #888; } }

.gakka__borderbox {
  border: 1px solid #000;
  border-left-width: 6px;
  padding: 1em; }

.img_shadow {
  box-shadow: 6px 6px #000; }

/*---------ページ最下部 cv誘導部分---------------------------------*/
.gakka__cvwrap {
  text-align: center;
  background-size: auto auto;
  background-color: white;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 10px, #f9ecf2 10px, #f9ecf2 20px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, #f9ecf2 10px, #f9ecf2 20px);
  margin-top: 5em;
  padding: 3em 0;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakka__cvwrap {
      padding: 3em 6em; } }

.gakka-cvwrap__fukidashi {
  position: relative;
  background: #000000;
  display: inline-block;
  color: #fff;
  padding: 0.5em 0.8em;
  border-radius: 5px;
  margin: 0;
  font-size: 1.4em; }
  .gakka-cvwrap__fukidashi::after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: #000000;
    border-width: 8px;
    margin-left: -8px; }

/*------------------------美容師科------------------------------------------------------------------------------------------------*/
.biyocolor {
  color: #03ae9c; }

.gakkatitle-wrap__box--biyo {
  background: #0086b1;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(top, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
  background: linear-gradient(to bottom, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.titleback--biyo {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/biyo/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--biyo {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/biyo/titleback-sp.jpg); } }

.gakkafuture-wrap--biyo {
  background: #c9f0df; }

.gakkafuture-box__title--biyo {
  background: #03ae9c; }

.gakka__section_headingbox--biyo {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/biyo/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--biyo::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
    background: linear-gradient(180deg, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

.gakka_section_featurebox__title--biyo {
  padding: 1em;
  background: #03ae9c;
  color: #fff; }

.gakka__studentvoicebox--biyo {
  border: 3px solid #03ae9c; }

.biyo__salonworklist {
  background-color: #EDEDED;
  padding: 0.5em;
  margin-top: 0;
  margin-bottom: 0.25em;
  text-align: center; }

/*------------------------美容師科ヘアメイクプラン----------------------------------------------------------------------------------*/
/*------------------------ヘアメイク科------------------------------------------------------------------------------------------------*/
.hmcolor {
  color: #ffac19; }

.gakkatitle-wrap__box--hm {
  background: #FDC830;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(top, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
  background: linear-gradient(to bottom, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ }

.titleback--hm {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--hm {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/titleback-sp.jpg); } }

.gakkafuture-wrap--hm {
  background: #fffad7; }

.gakkafuture-box__title--hm {
  background: #ffac19; }

.gakka__section_headingbox--hm {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--hm::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
    background: linear-gradient(180deg, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

.gakka_section_featurebox__title--hm {
  padding: 1em;
  background: #ffac19;
  color: #fff; }

.gakka_hm_genbabox {
  position: relative;
  text-align: center;
  margin-top: 3em; }
  .gakka_hm_genbabox::before {
    content: " ";
    display: inline-block;
    background: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/genba_fukidashi.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -5em;
    left: 0;
    width: 15em;
    height: 100%;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .gakka_hm_genbabox::before {
        top: -2em;
        width: 10em; } }

.gakka__studentvoicebox--hm {
  border: 3px solid #ffac19; }

/*------------------------ヘアメイク科美容師免許プラン--------------------------*/
.titleback--hm_wschool {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/wschool/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--hm_wschool {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/wschool/titleback-sp.jpg); } }

.gakka__wschool_materialinner {
  background-color: #f7f7ea;
  text-align: center;
  position: relative;
  float: left;
  width: 47.5%;
  margin-right: 5%;
  padding: 1em; }
  .gakka__wschool_materialinner::after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 104%; }
  .gakka__wschool_materialinner:last-of-type {
    margin-right: 0; }
    .gakka__wschool_materialinner:last-of-type::after {
      display: none; }

.gakka__wschool_materialtitle {
  margin: 0 0 1em 0; }

.wschoolbox__child {
  text-align: center;
  font-size: 1.5em;
  border: 1px solid #000;
  padding: 0.5em;
  position: relative;
  float: left;
  width: calc(30% - 4px);
  margin-right: 5%;
  left: 6px;
  /*スマホ 768px以下*/ }
  .wschoolbox__child:last-of-type {
    margin-right: 0; }
  @media (max-width: 48em) {
    .wschoolbox__child {
      float: none;
      margin-bottom: 1em;
      margin-right: 0;
      width: calc(100% - 12px); } }
  .wschoolbox__child small {
    display: block;
    color: #ffac19; }
  .wschoolbox__child::before {
    content: "";
    border: 1px solid #000;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    position: absolute;
    top: -6px;
    left: -6px; }

.gakka__section_headingbox--hm_wschool {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/hairmake/wschool/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--hm_wschool::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
    background: linear-gradient(180deg, rgba(255, 128, 8, 0.8), rgba(255, 247, 0, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

/*------------------------トータルビューティ科--------------------------*/
.tbcolor {
  color: #a660a3; }

.gakkatitle-wrap__box--tb {
  background: #800080;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(top, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
  background: linear-gradient(to bottom, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  max-width: 510px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkatitle-wrap__box--tb {
      bottom: -18vh; } }

.titleback--tb {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/titleback-sp.jpg); } }

.titleback--tb .gakkatitle--main {
  font-size: 42px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb .gakkatitle--main {
      font-size: 8vw; } }

.gakkacatch-box--tb {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .gakkacatch-box--tb {
      margin-top: 22vh; } }

.gakkafuture-wrap--tb {
  background: #ffe8fd; }

.gakkafuture-box__title--tb {
  background: #a660a3; }

.gakka__section_headingbox--tb {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--tb::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background: linear-gradient(180deg, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

.gakka_section_featurebox__title--tb {
  padding: 1em;
  background: #a660a3;
  color: #fff; }

.gakka__studentvoicebox--tb {
  border: 3px solid #a660a3; }

/*------------------------トータルビューティ科メイクアップコース--------------------------*/
.titleback--tb_makeup {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/ma/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb_makeup {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/ma/titleback-sp.jpg); } }

.gakka__section_headingbox--tb_makeup {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/ma/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--tb_makeup::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background: linear-gradient(180deg, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

/*------------------------トータルビューティ科ネイルコース--------------------------*/
.titleback--tb_nail {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/na/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb_nail {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/na/titleback-sp.jpg); } }

.gakka__section_headingbox--tb_nail {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/na/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--tb_nail::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background: linear-gradient(180deg, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

/*------------------------トータルビューティ科エステ・ビューティセラピーコース--------------------------*/
.titleback--tb_esthe .gakkatitle--main {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb_esthe .gakkatitle--main {
      font-size: 7.3vw; } }

.titleback--tb_esthe {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/es/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb_esthe {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/es/titleback-sp.jpg); } }

.gakka__section_headingbox--tb_esthe {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/es/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--tb_esthe::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background: linear-gradient(180deg, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

/*------------------------トータルビューティ科ファッションコース--------------------------*/
.titleback--tb_fashion {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/fa/titleback.jpg);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .titleback--tb_fashion {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/fa/titleback-sp.jpg); } }

.gakka__section_headingbox--tb_fashion {
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2020/totalbeauty/fa/section_headingback.jpg);
  position: relative;
  overflow: hidden; }
  .gakka__section_headingbox--tb_fashion::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background: linear-gradient(180deg, rgba(107, 96, 154, 0.8), rgba(247, 182, 255, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

/*------------------------グラデアニメーション--------------------------*/
@-webkit-keyframes gradation {
  0% {
    top: 0%;
    left: 0%; }
  50% {
    top: -100%;
    left: 0%; }
  100% {
    top: 0%;
    left: 0%; } }
@keyframes gradation {
  0% {
    top: 0%;
    left: 0%; }
  50% {
    top: -100%;
    left: 0%; }
  100% {
    top: 0%;
    left: 0%; } }

/*------------------------在校生ブログ読み込み--------------------------*/
.gakka__blog {
  float: left;
  margin: 0;
  padding: 1em;
  position: relative;
  background: #fff; }
  .gakka__blog:nth-of-type(2n) {
    margin-right: 0; }
  .gakka__blog:nth-of-type(3), .gakka__blog:nth-of-type(4) {
    margin-bottom: 0; }
  .gakka__blog a {
    display: block;
    text-decoration: none; }

.gakka__blog__img {
  margin: 0 auto;
  width: 100%;
  background: #fff; }
  .gakka__blog__img img {
    width: 100%;
    height: auto;
    vertical-align: middle; }

.gakka__blog__title {
  padding: 1em;
  min-height: 10em;
  background: #fff;
  position: relative;
  top: -10px;
  left: 10px;
  width: 95%; }

.gakka__blog__day {
  display: inline-block;
  margin-bottom: 0.5em; }

.gakka__blog__back {
  position: absolute;
  top: -10px;
  left: 20px;
  right: 0;
  width: 60%;
  height: 260px;
  z-index: -1;
  background-size: auto auto;
  background-color: transparent;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 6px, #e20052 6px, #e20052 8px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, #e20052 6px, #e20052 8px);
  -webkit-transform: skew(-15deg, 0deg);
  -ms-transform: skew(-15deg, 0deg);
  transform: skew(-15deg, 0deg);
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .gakka__blog__back {
      height: 360px; } }

.gakka__blog:nth-of-type(2n) .gakka__blog__back {
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 6px, #80e8d1 6px, #80e8d1 8px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 6px, #80e8d1 6px, #80e8d1 8px); }

.gakka__blog__wrap {
  background: #eeeeee;
  padding: 2%; }

.gakka__blog__detail {
  font-size: 0.8rem; }

.bosyu-anchorbox {
  border: solid 1px #ccc;
  padding: 1em;
  margin: 1.5em 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.bosyu-anchorbox__child {
  display: inline-block;
  margin-right: 1em;
  padding: 0.5em; }
  .bosyu-anchorbox__child:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.4em;
    color: #e40007; }

/*------------------------------ページ最後の赤枠----------------------------------*/
.bosyu_attention {
  border: 3px solid #E50065;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-top: 2em;
  padding: 1.5em; }

.bosyu_attention h3 {
  border: none;
  margin: 0;
  padding: 0; }

.bosyu_attention p {
  margin-bottom: 0; }

.bosyu_attention p .mail,
.bosyu_attention p .tel {
  font-size: 1.4em;
  text-decoration: none; }

.bosyu_attention p .mail:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.3em; }

.bosyu_attention p .tel:before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.3em; }

/*------------------------------「学費について」のテーブル----------------------------------*/
td.case, .table-base01 th.case {
  width: 40%;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    td.case, .table-base01 th.case {
      width: 45%; } }

td.jiki, .table-base01 th.jiki {
  width: 17%;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    td.jiki, .table-base01 th.jiki {
      width: 15%; } }

td.uchiwake, .table-base01 th.uchiwake {
  width: 20%;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    td.uchiwake, .table-base01 th.uchiwake {
      width: 21%; } }

td.course, .table-base01 th.course {
  width: 30%;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    td.course, .table-base01 th.course {
      width: 27.5%; } }

/*------------------------------AO入試----------------------------------*/
.ao_titlewrap {
  background: url("/wp-content/themes/BSC-2018/img/nyugaku/ao/2021top003.jpg") no-repeat center center;
  background-size: 100% auto;
  padding-bottom: calc(100%*600/2000);
  position: relative;
  margin: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ao_titlewrap {
      background: url("/wp-content/themes/BSC-2018/img/nyugaku/ao/2021top-sp.jpg") no-repeat center center;
      background-size: 93% auto;
      padding-bottom: calc(100%*450/750); } }

.ao_titleinner {
  position: absolute;
  max-width: 450px;
  width: 70%;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  padding: 1em;
  top: 50%;
  left: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: 'UD Shin Go NT Bold';
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ao_titleinner {
      max-width: 500px;
      top: 65%;
      left: 0; } }

.ao_title {
  font-size: 50px;
  margin: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ao_title {
      font-size: 8vw; } }

.ao_title--sub {
  display: inline-block;
  margin: 0;
  padding-top: 0.5em;
  border-top: #000 1px solid;
  font-size: 25px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ao_title--sub {
      font-size: 4vw; } }

.ao_sectionbox {
  margin: 0 auto 4em auto; }

.ao_sectionbox__title {
  text-align: center;
  background: #000;
  color: #fff;
  padding: 1em;
  margin-top: 2em; }

.ao_sectionbox__answer {
  font-size: 35px;
  text-align: center;
  font-family: 'UD Shin Go NT Bold';
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ao_sectionbox__answer {
      font-size: 7vw; } }

.flex-wrap__jc-bw {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.img-back__sq {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .img-back__sq {
      height: 100%;
      background-position: center 0; } }

.Box-W30 {
  width: 30%; }

.Box-W65 {
  width: 65%; }

.ao_merit__title {
  background: #E50065;
  color: #fff;
  padding: 0.5em;
  margin: 0 0 1em 0; }

.ao_qa ul {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: dotted 1px #CCCCCC; }

.ao_qa ul li {
  padding-left: 1.7em;
  text-indent: -1.7em; }

.ao_qa ul li.q {
  color: #E50065; }

/*------------------------------AO入試でベルエポックに入学した先輩たち----------------------------------*/
.ao_interviewbox {
  font-size: 0.86em;
  background: #000000;
  color: #fff;
  margin: 0;
  padding: 4% 3% 3% 3%;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.ao_interviewbox li:nth-of-type(2n+1) {
  font-weight: bold; }

.ao_interviewbox li:nth-of-type(2n+0) {
  margin-left: 0.86rem;
  margin-right: 0.86rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: dotted 1px #ccc; }

.ao_interviewbutton {
  margin-bottom: 0; }
  .ao_interviewbutton img {
    vertical-align: middle; }

.ao_arrow {
  font-size: 0.9em;
  display: block;
  background: #000;
  padding: 0.5em 0 0.5em 1em;
  color: #FFF; }

.ao_arrow:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  display: inline-block; }

.ao_arrow:hover {
  background: #666; }

.pointarrow .ao_arrow:after {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg); }

/*------------------------------特待生メッセージ----------------------------------*/
.tokutai_icon {
  font-size: 0.8em;
  margin-left: 0.5em;
  padding: 0.3em;
  background: #FFFE00;
  color: #000000; }

/* 学校紹介
/////////////////////////////////////////////////////////////////////////////////////// */
/* 企業コラボ
--------------------------------------------------------------------------------------------------*/
.collabobox {
  overflow: hidden;
  padding-top: 3em;
  margin-top: 3em;
  border-top: solid 1px #ccc;
  position: relative; }

.colabo__child-title {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .colabo__child-title {
      float: left;
      width: 30%;
      margin-right: 2%; } }
  @media (max-width: 48em) {
    .colabo__child-title {
      float: none;
      width: 100%;
      margin-right: 0; } }

.colabo__child__logo {
  margin-top: 0; }

.colabo__child__lead {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 0.25em 0 0.13em;
  font-size: 1.05em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .colabo__child__lead {
      text-align: center; } }

.colabo__child-photoL {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .colabo__child-photoL {
      float: left;
      width: 45.5%; } }
  @media (max-width: 48em) {
    .colabo__child-photoL {
      float: none;
      width: 100%; } }

.colabo__child-photoM {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .colabo__child-photoM {
      float: right;
      width: 68%; }
      .colabo__child-photoM img {
        float: left;
        width: 49%; }
        .colabo__child-photoM img:last-child {
          float: right; } }
  @media (max-width: 48em) {
    .colabo__child-photoM {
      float: none;
      width: 100%; } }

.colabo__child-photoS {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .colabo__child-photoS {
      float: right;
      width: 22%; } }
  @media (max-width: 48em) {
    .colabo__child-photoS {
      float: none;
      width: 100%; }
      .colabo__child-photoS img {
        float: left;
        width: 49%; }
        .colabo__child-photoS img:first-child {
          margin-right: 2%; } }

.collabo_newbanner {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-top: 1.5em solid #E50065;
  border-left: 4em solid #E50065;
  border-right: 1em solid transparent;
  z-index: 3; }

.collabo_newbanner::after {
  content: "new!";
  display: block;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: -1.5em;
  left: -4em;
  padding-left: 1em;
  z-index: 2; }

/* 企業コラボ2021
---------------------*/
.collabo_main_img {
  width: calc(100% / 5); }

.collabo_main_ttl_box {
  margin: -5rem auto auto;
  width: 75%;
  position: relative;
  z-index: 30;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .collabo_main_ttl_box {
      width: 70%;
      margin: -13rem auto auto; } }

.collabo_main_ttl_bg {
  border: solid 3px #e20065;
  background: -webkit-linear-gradient(left, rgba(219, 47, 128, 0.8), rgba(240, 193, 33, 0.8));
  background: linear-gradient(to right, rgba(219, 47, 128, 0.8), rgba(240, 193, 33, 0.8)); }
  .collabo_main_ttl_bg img {
    width: 100%; }

.collabo_contents {
  position: relative;
  margin-top: 5rem;
  padding: 0 0 4rem;
  /*pc769px以上*/ }
  @media screen and (max-width: 320px) {
    .collabo_contents {
      margin-top: 8rem; } }
  @media all and (min-width: 48.0625em) {
    .collabo_contents {
      margin-top: 10rem;
      padding: 0 0 13rem; } }

.collabo_width_wrap {
  width: 95vw;
  margin: auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .collabo_width_wrap {
      width: 1024px;
      margin-top: 10rem; } }

.collabo_width_wrap_800 {
  width: 95vw;
  margin: auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .collabo_width_wrap_800 {
      width: 680px;
      margin-top: 3rem; } }

.collabo_contents__bg {
  background-color: #E50065;
  position: absolute;
  width: 70%;
  height: 100%;
  z-index: -10;
  right: 0;
  margin-top: -2.5rem;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .collabo_contents__bg {
      width: 57%;
      margin-top: -3.8rem;
      height: 100%; } }

section:nth-of-type(2n) .collabo_contents__bg {
  left: 0;
  background-color: #FFEE00; }

.collabo_slide__title_box {
  position: absolute;
  z-index: 50;
  top: -1.5rem;
  /*pc769px以上*/ }
  @media screen and (max-width: 320px) {
    .collabo_slide__title_box {
      top: -1rem; } }
  @media all and (min-width: 48.0625em) {
    .collabo_slide__title_box {
      top: -3.8rem; } }

section:nth-of-type(2n) .collabo_slide__title_box {
  right: 0; }

.collabo_slide__title {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  margin: 0;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  z-index: 1;
  /*pc769px以上*/ }
  @media screen and (max-width: 320px) {
    .collabo_slide__title {
      font-size: 2rem; } }
  @media all and (min-width: 48.0625em) {
    .collabo_slide__title {
      font-size: 4.5rem; } }

section:nth-of-type(2n) .collabo_slide__title {
  text-align: right; }

.collabo_contents__logobox {
  width: 70px;
  margin-top: .3rem;
  /*pc769px以上*/ }
  @media screen and (max-width: 320px) {
    .collabo_contents__logobox {
      width: 50px;
      margin-top: 1.2rem; } }
  @media all and (min-width: 48.0625em) {
    .collabo_contents__logobox {
      width: 150px;
      margin-top: 1.8rem; } }

section:nth-of-type(2n) .collabo_contents__logobox {
  margin: .3rem 0 0 auto;
  /*pc769px以上*/ }
  @media screen and (max-width: 320px) {
    section:nth-of-type(2n) .collabo_contents__logobox {
      margin-top: 1.2rem; } }
  @media all and (min-width: 48.0625em) {
    section:nth-of-type(2n) .collabo_contents__logobox {
      margin-top: 1.8rem; } }

.collabo_contents__logo {
  width: 100%; }

.collabo_position_main {
  position: relative; }

.collabo_contents__mainimg {
  margin: 0 0 0 auto;
  width: 80%; }
  .collabo_contents__mainimg img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /*pc769px以上*/ }
    @media all and (min-width: 48.0625em) {
      .collabo_contents__mainimg img {
        height: 470px; } }

section:nth-of-type(2n) .collabo_contents__mainimg {
  margin: 0 auto 0 0; }

.collabo_contents__subimg {
  width: 40%;
  margin-top: -6rem;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .collabo_contents__subimg {
      width: 30%;
      margin-top: -11rem; } }

section:nth-of-type(2n) .collabo_contents__subimg {
  margin: -6rem 0 0 auto;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    section:nth-of-type(2n) .collabo_contents__subimg {
      margin-top: -11rem; } }

.collabo_contents__txt_box {
  background-color: #FFF;
  border: solid 1px #000;
  margin: 1rem 0; }
  .collabo_contents__txt_box p {
    margin: 1rem 1rem; }

.collabo_contents__txt_ttl {
  background-color: #000;
  color: #FFF;
  text-align: center;
  padding: 1% 1%;
  margin: 1rem 0 0.5rem; }

.collabo_contents__second_img {
  width: 100%;
  height: auto; }

/* 在校生メッセージ（メッセージ部分は特待生メッセージにも使用）
--------------------------------------------------------------------------------------------------*/
.zai_topwrap {
  position: relative;
  background: url("/wp-content/themes/BSC-2018/img/concept/zai_voice/top.jpg") no-repeat center center;
  background-size: cover;
  height: 500px;
  text-align: center;
  margin-bottom: 3em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .zai_topwrap {
      height: 270px; } }

.zai_title {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .zai_title {
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 80%; } }

.zai_messagebox {
  padding: 30px 0;
  border-bottom: 2px solid #000;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .zai_messagebox {
      width: 100%;
      padding: 15px 0; } }

.zai_message__name {
  border: none;
  margin: 5px 0;
  padding: 0;
  font-size: 1.2em; }

.zai_spec {
  font-size: 0.8em;
  margin: 0; }

/* 卒業生メッセージ
--------------------------------------------------------------------------------------------------*/
.obog_message {
  margin: 0.5em 0; }
  .obog_message span {
    background: -webkit-linear-gradient(transparent 60%, #ffff95 60%);
    background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.6, transparent), color-stop(0.6, #ffff95));
    background: linear-gradient(transparent 60%, #ffff95 60%); }

.obog_salontitle {
  font-size: 1em;
  margin-top: 0.5em;
  margin-bottom: 0; }

.obog_name {
  font-size: 1.2em;
  margin: 0; }

.obog_career {
  font-weight: normal;
  font-size: 0.8em;
  margin: 0.2em 0 0 0; }

.obog_img {
  position: relative;
  margin-bottom: 0; }
  .obog_img span {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4.5em; }

.obog_instagram {
  margin-top: 0.2em;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .obog_instagram {
      margin-bottom: 4em; } }
  @media (max-width: 48em) {
    .obog_instagram {
      margin-bottom: 2em; } }
  .obog_instagram::before {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    content: "\f16d";
    margin-right: 0.5em;
    vertical-align: middle; }

.obog_accordion--block {
  margin-bottom: 0px;
  position: relative; }

.obog_accordion--box {
  max-width: 100%;
  margin: 0 auto;
  background: #FFF;
  overflow: hidden; }

.obog_accordion--box-inner {
  padding: 0px 0px 45px; }

.obog_accordion--more {
  font-weight: bold;
  position: relative;
  height: 55px;
  line-height: 75px;
  margin-top: -45px;
  text-align: center;
  color: #F93082;
  cursor: pointer;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0)), color-stop(31%, white), color-stop(100%, white));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, white 31%, white 100%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 0%, white 31%, white 100%); }
  .obog_accordion--more:after {
    white-space: pre-wrap;
    font-family: "Font Awesome 5 Free";
    content: " \f107  ";
    display: inline-block;
    font-weight: 900;
    font-size: 18px;
    -webkit-transition: .3s;
    transition: .3s; }
  .obog_accordion--more.obog_accordion--is-active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }

/* 学生SNAP2018
--------------------------------------------------------------------------------------------------*/
.snapbox {
  position: relative;
  float: left;
  margin-bottom: 6em;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .snapbox {
      width: 33.33%; } }
  @media (max-width: 48em) {
    .snapbox {
      width: 48%;
      margin-right: 4%; }
      .snapbox:nth-of-type(2n) {
        margin-right: 0; } }

.snap__specbox {
  position: absolute;
  top: 80%;
  left: -1em;
  width: 85%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .snap__specbox {
      font-size: 0.95em;
      top: 70%;
      left: -0.5em;
      width: 100%; } }
  .snap__specbox li {
    display: table;
    background-color: #000;
    padding: 0.4em;
    color: #fff; }

.snap__spec--name {
  margin-bottom: 0.5em; }
  .snap__spec--name::after {
    content: "さん";
    margin-left: 0.2em;
    font-size: 0.8em; }

.snap__spec--school {
  font-size: 0.8em;
  margin-bottom: 0.2em;
  clear: both; }
  .snap__spec--school::after {
    content: "出身";
    margin-left: 0.2em; }

.snap__spec--sns {
  font-size: 0.8em; }
  .snap__spec--sns a {
    color: #fff; }
    .snap__spec--sns a:hover {
      text-decoration: none; }

.snap__spec--sns_twitter::before {
  display: inline-block;
  content: "";
  background: url(/wp-content/themes/BSC-2018/img/common/sns_twitter.png) no-repeat;
  margin-right: 0.2em;
  width: 1.2em;
  height: 1.2em;
  vertical-align: sub;
  background-size: contain; }

.snap__spec--sns_instagram::before {
  display: inline-block;
  content: "";
  background: url(/wp-content/themes/BSC-2018/img/common/sns_instagram.png) no-repeat;
  margin-right: 0.2em;
  width: 1.2em;
  height: 1.2em;
  vertical-align: sub;
  background-size: contain; }

.snap_newbanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0;
  border: 2em solid #ff0;
  border-right: 2em solid transparent;
  border-bottom: 2em solid transparent;
  z-index: 3; }
  .snap_newbanner::after {
    content: "new!";
    display: block;
    color: #000;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translate(20%, 20%) rotate(-45deg);
    -ms-transform: translate(20%, 20%) rotate(-45deg);
    transform: translate(20%, 20%) rotate(-45deg);
    z-index: 2; }

/* ひとりぐらし
--------------------------------------------------------------------------------------------------*/
.hitori_reportwrap {
  margin: 3em 0;
  padding-bottom: 3em;
  border-bottom: 1px dotted #000000; }

.hitori_reportlogo {
  margin: 0 auto;
  width: 25%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori_reportlogo {
      width: 40%; } }

.hitori_maintitle {
  margin: 0.5em 0;
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori_maintitle {
      font-size: 1.5em; } }
  .hitori_maintitle span {
    background: -webkit-linear-gradient(transparent 60%, #ffff66 60%);
    background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.6, transparent), color-stop(0.6, #ffff66));
    background: linear-gradient(transparent 60%, #ffff66 60%); }

.hitori_subtitle {
  margin: 0;
  font-size: 1.2em;
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori_subtitle {
      margin-top: 1.2em;
      text-align: left; } }

.hitori_caption {
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori_caption {
      font-size: 1.2em;
      text-align: left; } }

.hitoriroombox {
  overflow: hidden;
  background: #F2F2F2;
  width: 60%;
  margin: 0.5em auto;
  padding: 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitoriroombox {
      width: 100%; } }

.hitoriroombox_l {
  width: 60%;
  float: left; }

.hitoriroombox_r {
  width: 35%;
  float: right;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitoriroombox_r {
      font-size: 0.8em; } }

.fudosanbox {
  border: solid 10px #DFDFDF;
  padding: 2em;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.fudosan_logo {
  width: 50%;
  margin-bottom: 1%;
  margin-top: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .fudosan_logo {
      width: 70%; } }

.fudosan_tel,
.fudosan_mail,
.fudosan_url {
  margin: 0; }

.fudosan_tel:before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  margin-right: 0.4em; }

.fudosan_mail:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  margin-right: 0.4em; }

.fudosan_url:before {
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  display: inline-block;
  margin-right: 0.4em; }

.fudosan_adress {
  margin: 0.5em 0; }

.fudosan_text {
  margin: 0;
  font-size: 0.8em; }

.hitori__shiryobox {
  background-color: #FFF1FB;
  margin-top: 3em;
  padding: 2em;
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori__shiryobox {
      padding: 1em; } }

.hitori__shiryobox__inner {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 75%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori__shiryobox__inner {
      width: 100%; } }

.hitori__shiryobox__subcatch {
  margin: 0; }

.hitori__shiryobox__maincatch {
  font-family: "UD Shin Go NT Medium";
  font-size: 1.5em;
  margin: 0; }

.hitori__shiryobox__img {
  width: 18%;
  border: 3px solid #000;
  display: inline-block;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .hitori__shiryobox__img {
      text-align: center;
      width: 30%;
      margin: 0 auto 1em auto; } }
  .hitori__shiryobox__img img {
    vertical-align: middle; }

/* 入学者出身校一覧
--------------------------------------------------------------------------------------------------*/
.graduates2016 .anchor-Box p.Box-3 a {
  display: block;
  padding: 1em;
  background: #E7E7E7;
  border-bottom: solid 2px #000000;
  text-decoration: none; }

.graduates2016 .anchor-Box p.Box-3 a:before {
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5em; }

.graduates2016 .anchor-Box p.Box-3 a:hover {
  background: #D6D6D6; }

.graduates2016 .graduates-Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.graduates2016 .graduates-Box-2 {
  width: 30%;
  margin-right: 2%;
  margin-bottom: 0.8em;
  padding: 1%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .graduates2016 .graduates-Box-2 {
      width: 46%;
      margin-right: 3%;
      margin-bottom: 0.8em;
      padding: 1%; } }

.graduates2016 .graduates-Box-2:nth-of-type(3n) {
  margin-right: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .graduates2016 .graduates-Box-2:nth-of-type(3n) {
      margin-right: 3%; } }

.graduates2016 .graduates-Box-2:nth-of-type(2n) {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .graduates2016 .graduates-Box-2:nth-of-type(2n) {
      margin-right: 0; } }

/* 職業実践専門課程
--------------------------------------------------------------------------------------------------*/
p.nintei_pdf {
  background-size: 6px 6px;
  margin: 0 auto;
  background-color: #fff;
  background-image: -webkit-radial-gradient(#ddd 15%, transparent 20%), -webkit-radial-gradient(#ddd 15%, transparent 20%);
  background-image: radial-gradient(#ddd 15%, transparent 20%), radial-gradient(#ddd 15%, transparent 20%);
  background-position: 0 0, 3px 3px;
  padding: 0.5em 1em;
  margin: 0.5em 0; }

/* クラブ活動
--------------------------------------------------------------------------------------------------*/
.clubbox {
  position: relative;
  height: 610px;
  margin-top: 80px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .clubbox {
      height: auto;
      margin-top: 10%; } }

.club__title {
  float: left;
  margin-top: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .club__title {
      float: none; } }

.club__child-photo {
  width: 600px;
  float: right;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .club__child-photo {
      width: 100%;
      float: none; } }

.club__child-photoL {
  margin-bottom: 20px;
  width: 600px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .club__child-photoL {
      margin-bottom: 3%;
      width: 100%; } }

.club__text {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 440px;
  border: 4px solid #232d2c;
  padding: 20px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .club__text {
      position: static;
      left: 0;
      bottom: 0;
      width: 100%;
      padding: 4%; } }

.club__news {
  margin-top: 20px;
  font-weight: 600;
  color: #E50065;
  font-size: 85%; }

.clubbox:nth-of-type(2n) {
  /*スマホ 768px以下*/ }
  .clubbox:nth-of-type(2n) .club__title {
    float: right;
    margin-top: 0; }
  .clubbox:nth-of-type(2n) .club__child-photo {
    width: 600px;
    float: left; }
  .clubbox:nth-of-type(2n) .club__text {
    left: 564px; }
  @media (max-width: 48em) {
    .clubbox:nth-of-type(2n) .club__title {
      float: none; }
    .clubbox:nth-of-type(2n) .club__child-photo {
      width: 100%;
      float: none; } }

/* 年間学校行事
--------------------------------------------------------------------------------------------------*/
.eventbox {
  position: relative;
  height: 630px;
  margin-top: 80px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .eventbox {
      height: auto;
      margin-top: 10%; } }

.event__title {
  float: left;
  margin-top: 0;
  /*スマホ 768px以下*/ }
  .event__title p {
    margin: 0; }
  @media (max-width: 48em) {
    .event__title {
      float: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.event__title-month {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__title-month {
      width: 20%; } }

.event__title-name {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__title-name {
      width: 80%; } }

.event__child-photoL {
  float: right;
  width: 600px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__child-photoL {
      float: none;
      margin-bottom: 3%;
      width: 100%; } }

.event__child-photoS {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__child-photoS {
      margin-bottom: 3%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.event__child-photoS-1 {
  position: absolute;
  width: 295px;
  top: 270px;
  left: 90px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__child-photoS-1 {
      width: auto;
      position: static; } }

.event__child-photoS-2 {
  position: absolute;
  width: 295px;
  bottom: 0px;
  right: 0px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__child-photoS-2 {
      width: auto;
      position: static;
      padding-left: 3%; } }

.event__text {
  position: absolute;
  left: 265px;
  top: 440px;
  width: 420px;
  padding: 20px;
  background: #000;
  color: #fff;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .event__text {
      position: static;
      left: 0;
      bottom: 0;
      width: 100%;
      padding: 4%;
      background: #000;
      color: #fff; } }

/* BELLEpress2019
--------------------------------------------------------------------------------------------------*/
/*冒頭のタイトル部分のシュイーン*/
.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden; }
  .motion-txt.--collabo_main-img {
    width: 100%; }

.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #000;
  -webkit-transform: translate3d(-101%, 0, 0);
  transform: translate3d(-101%, 0, 0); }

.js-scroll.show .motion-txt:after {
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.js-scroll.done .motion-txt:after {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(103%, 0, 0);
  transform: translate3d(103%, 0, 0); }

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
  padding: 0 1rem; }
  .motion-txt .motion-inner.--collabo {
    padding: 0 0.5rem; }
  .motion-txt .motion-inner.--collabo_main-img {
    padding: 0rem; }

.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
  background: #fff; }

/**/
.bellepress_topwrap {
  position: relative;
  margin-bottom: 5em; }

.swiper-bellepress--wrap {
  overflow: hidden; }

.swiper-bellepress {
  width: calc(100vw / 2);
  float: left;
  height: 600px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .swiper-bellepress {
      width: 100%;
      height: 450px; } }
  .swiper-bellepress img {
    width: 100%; }

.swiper-bellepress--left {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .swiper-bellepress--left {
      width: 100%; } }

.swiper-bellepress--right {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .swiper-bellepress--right {
      display: none; } }

.bellepress_slide__title {
  position: absolute;
  bottom: -8vh;
  left: 2vw;
  font-size: 8rem;
  letter-spacing: 0.03em;
  /*background: #fff;*/
  /*padding: 0 1rem;*/
  margin: 0;
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  z-index: 1;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_slide__title {
      bottom: -2vh;
      left: 0;
      font-size: 5em; } }
  .bellepress_slide__title div {
    display: inline;
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: 1.0px 1.0px 0 #000, -1.0px 1.0px 0 #000, 1.0px -1.0px 0 #000, -1.0px -1.0px 0 #000;
    color: #FFF; }

.bellepress_slide__title--sub {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 4rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.03em;
  /*background: #fff;*/
  padding: 0;
  margin: 0;
  line-height: 1;
  z-index: 1;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_slide__title--sub {
      font-size: 2.5em; } }

/*-------*/
.bellepress_contents {
  position: relative;
  margin: 5vh 0;
  /*@include media-sp{
		margin: 5vh 0 0;
	}*/ }

.bellepress_contents__bg {
  background: #F6F6F6;
  position: absolute;
  width: 1000px;
  height: 80%;
  top: 0;
  z-index: -1;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_contents__bg {
      width: 100%;
      top: auto;
      bottom: 0; } }

section:nth-of-type(2n) .bellepress_contents__bg {
  right: 0; }

.bellepress_contents__inner {
  position: relative;
  width: 1024px;
  height: calc(795px + 2em);
  margin: 0 auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_contents__inner {
      width: 90vw;
      height: 62vh; } }

.bellepress_contents__mainimg {
  width: 480px;
  height: 672px;
  float: right;
  margin-top: 2em;
  margin-right: 10%;
  z-index: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_contents__mainimg {
      width: 70%;
      height: auto;
      margin: 0; } }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  section:nth-of-type(2n) .bellepress_contents__mainimg {
    margin-left: 10%; } }

section:nth-of-type(2n) .bellepress_contents__mainimg {
  float: left; }

.bellepress_contents__subimg, .bellepress_contents__subimg--side {
  position: absolute;
  left: 20%;
  top: 10%;
  width: 270px;
  height: auto;
  z-index: 1;
  box-shadow: 8px 8px 0 #000;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_contents__subimg, .bellepress_contents__subimg--side {
      width: 33vw;
      height: auto;
      left: 0;
      top: 3%;
      box-shadow: 4px 4px 0 #000; } }
  .bellepress_contents__subimg img, .bellepress_contents__subimg--side img {
    vertical-align: bottom; }
  .bellepress_contents__subimg--side {
    width: 370px;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .bellepress_contents__subimg--side {
        width: 46vw; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  section:nth-of-type(2n) .bellepress_contents__subimg, section:nth-of-type(2n) .bellepress_contents__subimg--side {
    right: -45%; } }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  section:nth-of-type(2n) .bellepress_contents__subimg, section:nth-of-type(2n) .bellepress_contents__subimg--side {
    right: -35%;
    left: 0;
    box-shadow: 8px 8px 0 #000; } }

.bellepress_contents__textbox, .bellepress_contents__textbox--line3 {
  position: absolute;
  bottom: 0;
  left: 20%;
  z-index: 2;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_contents__textbox, .bellepress_contents__textbox--line3 {
      bottom: -2%;
      left: 0; } }
  .bellepress_contents__textbox--line3 {
    bottom: 0;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .bellepress_contents__textbox--line3 {
        bottom: -2%;
        left: auto; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  section:nth-of-type(2n) .bellepress_contents__textbox, section:nth-of-type(2n) .bellepress_contents__textbox--line3 {
    left: auto; } }

/*スマホ 768px以下*/
@media (max-width: 48em) {
  section:nth-of-type(2n) .bellepress_contents__textbox--line3 {
    bottom: -5%; } }

/*pc769px以上*/
@media all and (min-width: 48.0625em) {
  section:nth-of-type(2n) .bellepress_contents__textbox, section:nth-of-type(2n) .bellepress_contents__textbox--line3 {
    right: 13%;
    left: auto; } }

body {
  counter-reset: number 0; }

.bellepress_contents__number {
  counter-increment: number; }

.bellepress_contents__number::before {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 4em;
  line-height: 1;
  content: counter(number, decimal-leading-zero); }

.bellepress_contents__name, .bellepress_contents__school, .bellepress_contents__insta {
  display: table;
  background: #000;
  color: #fff;
  font-size: 2em;
  padding: 0 0.2em;
  margin: 0 0 0.3em; }
  .bellepress_contents__name::after, .bellepress_contents__school::after, .bellepress_contents__insta::after {
    display: inline;
    content: "さん";
    font-size: 0.8em; }

.bellepress_contents__school, .bellepress_contents__insta {
  font-size: 1em;
  margin-bottom: 0.2em; }
  .bellepress_contents__school::after, .bellepress_contents__insta::after {
    display: none; }

.bellepress_contents__insta::before {
  font-family: "Font Awesome 5 Brands";
  content: "\f16d";
  margin-right: 0.2em; }

.bellepress_contents__insta a {
  color: #fff;
  text-decoration: none; }
  .bellepress_contents__insta a:hover {
    text-decoration: underline; }

.bellepress_contents__point {
  width: 13em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bellepress_contents__point {
      width: 100%;
      font-size: 95%; } }

.bellepress_contents__point__title {
  text-decoration: underline; }

/* 地域貢献
--------------------------------------------------------------------------------------------------*/
.project_topwrap {
  position: relative;
  height: 500px;
  text-align: center;
  margin-bottom: 3em;
  background-color: #fff;
  background-image: -webkit-radial-gradient(#eee 10%, transparent 20%), -webkit-radial-gradient(#eee 10%, transparent 20%);
  background-image: radial-gradient(#eee 10%, transparent 20%), radial-gradient(#eee 10%, transparent 20%);
  background-size: 18px 18px;
  background-position: 0 0, 9px 9px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .project_topwrap {
      height: 100vw; } }

.project_title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  /*スマホ 768px以下*/ }
  .project_title img {
    /*pc769px以上*/
    vertical-align: bottom; }
    @media all and (min-width: 48.0625em) {
      .project_title img {
        max-width: inherit; } }
  @media (max-width: 48em) {
    .project_title {
      width: 100%;
      height: 100vw; } }

.project_no {
  font-family: din-condensed, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  text-shadow: 2px 1px 0 #EC0087, -2px 1px 0 #00FFFF, 1px -1px 0 #EC0087, -1px -1px 0 #00FFFF;
  border-bottom: solid #00FFFF 4px;
  letter-spacing: .1rem;
  width: 100%;
  margin: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .project_no {
      text-shadow: 1px 1px 0 #EC0087, -1px 1px 0 #00FFFF, 1px -1px 0 #EC0087, -1px -1px 0 #00FFFF;
      font-size: 1.4rem;
      border-bottom: solid #00FFFF 2px; } }

.project_ttl {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .project_ttl {
      font-size: 1.4rem; } }

.project_text-box {
  position: relative;
  margin: 2rem auto 0;
  min-height: 10rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .project_text-box {
      margin: 1rem auto;
      min-height: 5rem; } }
  .project_text-box .project_tag {
    background-color: #EC0087;
    padding: .3rem .8rem .1rem .3rem;
    margin-right: .5rem;
    color: #ffffff;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .project_text-box .project_tag {
        font-size: .9rem;
        margin-right: .3rem; } }
  .project_text-box:before {
    position: absolute;
    content: "PROJECT";
    font-family: din-condensed, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 9rem;
    color: rgba(0, 0, 0, 0.05);
    top: 0;
    right: 0;
    padding: 0;
    margin: auto;
    line-height: 1;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .project_text-box:before {
        font-size: 6rem;
        top: 0; } }

/* P-LAB.
--------------------------------------------------------------------------------------------------*/
.bg-gray--stripes {
  background-size: auto auto;
  background-color: whitesmoke;
  background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 5px, #f0f0f0 5px, #f0f0f0 10px);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, #f0f0f0 5px, #f0f0f0 10px);
  margin: 0;
  padding: 60px 0; }

/********swiper*******/
.swiper-project {
  position: relative;
  text-align: center; }
  .swiper-project img {
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .swiper-project img {
        width: 95%;
        margin: 0 auto; } }
  .swiper-project .swiper-button-prev,
  .swiper-project .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: -2em;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .swiper-project .swiper-button-prev,
      .swiper-project .swiper-button-next {
        width: 30px;
        height: 30px; } }
  .swiper-project .swiper-project-button-prev {
    background: url(../../../../wp-content/themes/BSC-2018/img/concept/project/swiper-button-prev.png) no-repeat center center/contain;
    opacity: 0.9; }
  .swiper-project .swiper-project-button-next {
    background: url(../../../../wp-content/themes/BSC-2018/img/concept/project/swiper-button-next.png) no-repeat center center/contain;
    opacity: 0.9; }
  .swiper-project .swiper-project-pagination {
    bottom: .5em; }
  .swiper-project .swiper-pagination-bullet-active {
    background: #EC0087; }

/* 美容×TECH
--------------------------------------------------------------------------------------------------*/
.it_topwrap {
  position: relative;
  background: url("/wp-content/themes/BSC-2018/img/concept/tech/top.jpg") no-repeat center center;
  background-size: auto;
  background-size: cover;
  height: 500px;
  text-align: center;
  margin-bottom: 5em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .it_topwrap {
      height: 270px;
      background: url("/wp-content/themes/BSC-2018/img/concept/tech/top_sp.jpg") no-repeat center center;
      background-size: auto 100%;
      margin-bottom: 3em; } }
  .it_topwrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(0, 39, 36, 0.2), rgba(0, 0, 0, 0.5));
    background: linear-gradient(to right, rgba(0, 39, 36, 0.2), rgba(0, 0, 0, 0.5)); }

.it_title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .it_title {
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 90%; } }

.it_contents-wrap {
  position: relative;
  margin: 10vh auto; }
  .it_contents-wrap .it_contents__bg {
    background: #EFEFEF;
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: -30%;
    z-index: -1;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .it_contents-wrap .it_contents__bg {
        left: -15%; } }
  .it_contents-wrap .it_ttl-box {
    width: 65%;
    margin-right: 35%;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .it_contents-wrap .it_ttl-box {
        width: 100%;
        margin-right: 0; } }
    .it_contents-wrap .it_ttl-box .it_ttl {
      margin-top: 1rem;
      margin-bottom: 1rem;
      padding-bottom: 0;
      border-bottom: #000 2px solid;
      font-size: 2.2rem;
      font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
      /*スマホ 768px以下*/ }
      @media (max-width: 48em) {
        .it_contents-wrap .it_ttl-box .it_ttl {
          font-size: 1.6rem; } }
      .it_contents-wrap .it_ttl-box .it_ttl .number {
        font-family: din-condensed, sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 230%;
        margin-right: .8rem;
        color: #1bc0a0;
        /*スマホ 768px以下*/ }
        @media (max-width: 48em) {
          .it_contents-wrap .it_ttl-box .it_ttl .number {
            margin-right: .6rem; } }
      .it_contents-wrap .it_ttl-box .it_ttl .logo {
        width: 18%;
        /*スマホ 768px以下*/ }
        @media (max-width: 48em) {
          .it_contents-wrap .it_ttl-box .it_ttl .logo {
            width: 35%;
            display: block;
            margin: 0 auto 1rem; } }

.it_contents-wrap:nth-child(odd) .it_contents__bg {
  right: -30%;
  left: auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .it_contents-wrap:nth-child(odd) .it_contents__bg {
      right: -15%; } }

.it_contents-wrap:nth-child(odd) .it_ttl-box {
  width: 65%;
  margin-left: 35%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .it_contents-wrap:nth-child(odd) .it_ttl-box {
      width: 100%;
      margin-left: 0;
      margin-right: 0; } }

.it_youtube01 {
  /***Youtubeをレスポンシブにする****/
  position: relative;
  width: 100%;
  padding-top: 56.25%; }
  .it_youtube01 iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important; }

.it_pickup__ttl {
  width: 60%;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  margin-top: 3rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .it_pickup__ttl {
      width: 90%;
      margin-left: 5%;
      margin-bottom: -1rem; } }

.it_pickup__bg {
  background-color: #c2c2c2;
  margin: auto;
  width: 700px;
  padding: 1rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .it_pickup__bg {
      width: 100%; } }

/*************2020.11.04****************/
.kekka_icon-wrap {
  position: relative; }
  .kekka_icon-wrap .kekka_icon {
    position: absolute;
    top: -1rem;
    right: 0; }

/*ブログ用のclass
******************************************************************************/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.625em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.625em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.blog__post_item__wrap {
  background: #eeeeee; }

/* 対象者別メニュー
/////////////////////////////////////////////////////////////////////////////////////// */
/* 高校２年生
--------------------------------------------------------------------------------------------------*/
/* 高２ 2020↓↓↓
-------------------------------------------------*/
.kou2_interview--wrap {
  padding: 3%;
  border: solid 1px #000;
  background-color: #FFF; }

.kou2_interview--account {
  content: "";
  background-size: cover;
  padding: 0.8rem 0.3rem;
  border-radius: 50%;
  background-repeat: no-repeat; }

.kou2_interview--account_back {
  background: -webkit-linear-gradient(315deg, #427eff 0%, #f13f79 70%);
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%);
  border-radius: 50%;
  padding: 1rem 0.2rem; }

.kou2_interview--account_name {
  border-bottom: solid 1px #000; }

.kou2_interview--account_text {
  line-height: 1rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_interview--account_text {
      line-height: 2.5rem;
      margin: .5rem 0rem; } }

.kou2_box_bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten; }

.kou2_figure {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: relative; }

.kou2_figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg); }

.kou2_figure:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s; }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

.kou2_section_featurebox__title, .kou2_section_featurebox__title--blue {
  position: relative;
  padding-bottom: 0.6em;
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  .kou2_section_featurebox__title::after, .kou2_section_featurebox__title--blue::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    content: " ";
    height: 6px;
    width: 100%;
    background-size: auto auto;
    background-color: white;
    background-image: -webkit-repeating-linear-gradient(315deg, transparent, transparent 5px, black 5px, black 10px);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, black 5px, black 10px); }
  .kou2_section_featurebox__title--blue::after {
    background-color: #def9f2; }

.kou2_content01_wrap {
  border: solid 2px #000000;
  text-align: center; }

.kou2_content01_txtbox {
  padding: 5%; }

.kou2_content01_balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 100%;
  max-width: 100%;
  color: #ffff12;
  font-size: 16px;
  font-weight: bold;
  background: #e0edff;
  text-align: center; }
  .kou2_content01_balloon1::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #e0edff; }
  .kou2_content01_balloon1.--pink {
    background: #e73562; }
    .kou2_content01_balloon1.--pink::before {
      border-top: 15px solid #e73562; }
  .kou2_content01_balloon1.--orange {
    background: #ff8a3d; }
    .kou2_content01_balloon1.--orange::before {
      border-top: 15px solid #ff8a3d; }
  .kou2_content01_balloon1.--green {
    background: #4dbc6a; }
    .kou2_content01_balloon1.--green::before {
      border-top: 15px solid #4dbc6a; }
  .kou2_content01_balloon1.--blue {
    background: #0075c2; }
    .kou2_content01_balloon1.--blue::before {
      border-top: 15px solid #0075c2; }

.kou2_content1_box {
  color: #000;
  text-align: center;
  margin: 48px 0 20px; }
  .kou2_content1_box p {
    font-weight: bold;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_content1_box p {
        font-size: 0.8rem; } }
  .kou2_content1_box::before {
    content: "";
    display: block;
    color: #000;
    text-align: center;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    padding: 28px 16px 20px;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_content1_box::before {
        padding: 0px 16px 20px; } }
  .kou2_content1_box::after {
    content: "";
    display: block;
    font-family: 'Noto Sans Japanese', serif;
    color: #000;
    text-align: center;
    border-bottom: 3px solid #000;
    border-left: 3px solid #000;
    border-right: 3px solid #000;
    padding: 28px 16px 20px;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_content1_box::after {
        padding: 0px 16px 20px; } }

.kou2_content1_number {
  margin: 0;
  counter-reset: number; }
  .kou2_content1_number span {
    font-size: 1rem;
    border-bottom: solid 3px #000;
    padding: 0.5rem 0.5rem; }
  .kou2_content1_number div {
    font-weight: bold; }
  .kou2_content1_number p {
    margin-top: 0; }

.kou2_content1_number p ::after {
  counter-increment: number;
  content: counter(number);
  padding-right: 5px; }

.flow-list {
  list-style-type: none;
  padding: 0; }

.flow-list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flow-list__item:last-child:before {
  display: none; }

.flow-list__item:last-child .flow-list__body {
  margin-bottom: 0; }

.flow-list__item:before {
  position: absolute;
  top: 50px;
  left: 37px;
  width: 3px;
  height: 100%;
  background-color: #000;
  content: '';
  opacity: .2; }

.flow-list__item > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 30px;
  width: 79px;
  height: 79px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3; }

.flow-list__item > p span {
  font-size: 2.2rem; }

.flow-list__item:nth-child(n+2) > p {
  position: relative;
  top: 15px; }

.flow-list__inner {
  position: relative; }

.flow-list__item:first-child .flow-list__inner:after, .flow-list__item:first-child .flow-list__inner:before {
  display: none; }

.flow-list__inner:after, .flow-list__inner:before {
  position: absolute;
  left: 50%;
  content: '';
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.flow-list__inner:before {
  top: -50px;
  z-index: 1;
  width: 0;
  height: 0;
  border-width: 9px 7px 0;
  border-style: solid;
  border-color: #222 transparent transparent; }

.flow-list__inner:after {
  top: -55px;
  width: 37px;
  height: 17px;
  background-color: #fff; }

.flow-list__body:before {
  position: absolute;
  top: -46px;
  left: 0;
  width: 720px;
  height: 1px;
  background-color: #e6e6e6;
  content: ''; }

.flow-list__item:first-child .flow-list__body:before {
  display: none; }

.flow-list .list__item {
  letter-spacing: .08em;
  font-weight: 700;
  font-size: 1.5rem; }

.flow-list .list__item + .list__item {
  margin-top: 5px; }

.flow-list .list__item > a {
  position: relative; }

.flow-list .list__item > a::before {
  margin-right: 8px;
  color: #000;
  content: '\e901';
  text-transform: none;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  font-family: icomoon !important;
  line-height: 1.1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.flow-list .list__item > a:hover {
  opacity: .6; }

.flow-list .list__item > span {
  position: relative;
  font-weight: 400;
  font-size: 1.2rem; }

.flow-list .list__item > span:before {
  position: absolute;
  top: 50%;
  right: -38px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 33px;
  height: 18px;
  background-color: #f23f16;
  color: #fff;
  content: 'PDF';
  letter-spacing: .05em;
  font-size: 1.1rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.flow-list__item:before {
  top: 30px;
  left: 36px;
  width: 2px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .flow-list__item:before {
      left: 26px; } }

.flow-list__item > p {
  margin-right: 12px;
  width: 75px;
  height: 75px;
  font-size: .7rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .flow-list__item > p {
      margin-right: 5px;
      width: 50px;
      height: 50px; } }

.flow-list__item > p span {
  font-size: 1.5rem; }

.flow-list__item:nth-child(n+2) > p {
  position: relative;
  top: 0; }

.flow-list__body {
  margin-bottom: 50px;
  width: 90%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .flow-list__body {
      width: 80%; } }

.flow-list__body:before {
  top: -30px;
  width: 100%; }

.flow-list__inner > dt {
  font-size: 1.6rem;
  line-height: 1.44; }

.flow-list__day {
  background-color: #000;
  padding: 0.5rem 0.5rem;
  color: #FFF;
  font-size: 1rem; }

/* 高２ 2020↑↑↑
-------------------------------------------------*/
.kou2_topwrap {
  position: relative;
  background: url("/wp-content/themes/BSC-2018/img/kou2/2020/top.jpg") no-repeat center center;
  background-size: auto;
  background-size: cover;
  height: 500px;
  text-align: center;
  margin-bottom: 5em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_topwrap {
      height: 230px; } }

.kou2_title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_title {
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 50%; } }

.kou2_back {
  background-color: #F7F7F7;
  padding-top: 2em;
  padding-bottom: 2em;
  position: relative; }

.kou2_back--gray {
  background-color: #F7F7F7; }
  .kou2_back--gray::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 200px 0 0;
    border-color: #D4D4D4 transparent transparent transparent;
    position: absolute;
    top: 0;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_back--gray::before {
        border-width: 100px 100px 0 0; } }

.kou2_back--pink {
  background-color: #f8d3e3; }
  .kou2_back--pink::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 200px 0 0;
    border-color: #ee92ba transparent transparent transparent;
    position: absolute;
    top: 0;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_back--pink::before {
        border-width: 100px 100px 0 0; } }

.kou2_back--blue {
  background-color: #def9f2; }
  .kou2_back--blue::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 200px 0 0;
    border-color: #85c9c7 transparent transparent transparent;
    position: absolute;
    top: 0;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_back--blue::before {
        border-width: 100px 100px 0 0; } }

.kou2_back--orange {
  background-color: #ffefcc; }
  .kou2_back--orange::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 200px 200px 0 0;
    border-color: #ffac19 transparent transparent transparent;
    position: absolute;
    top: 0;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_back--orange::before {
        border-width: 100px 100px 0 0; } }

.kou2_midashi {
  position: relative;
  font-family: "UD Shin Go NT Bold";
  color: #fff;
  text-align: center;
  text-shadow: 1.0px 1.0px 0 #000, -1.0px 1.0px 0 #000, 1.0px -1.0px 0 #000, -1.0px -1.0px 0 #000;
  padding-top: 55px;
  margin-top: 0;
  font-size: 2rem;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  .kou2_midashi.-yellow {
    color: #FFFF00; }
    .kou2_midashi.-yellow::before {
      background: none; }
  @media all and (min-width: 48.0625em) {
    .kou2_midashi {
      font-size: 3rem; } }
  @media (max-width: 48em) {
    .kou2_midashi {
      padding-top: 30px; } }
  .kou2_midashi::before {
    content: "";
    display: inline-block;
    background: url("/wp-content/themes/BSC-2018/img/kou2/q_icon.png") no-repeat center 0;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 48px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-size: 7rem; }
  .kou2_midashi::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    display: block;
    /*background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, #000 3px, #000 4px);*/
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: -webkit-linear-gradient(transparent 50%, yellow 50%);
    background: linear-gradient(transparent 50%, yellow 50%);
    width: 50%;
    height: 20px;
    z-index: -1;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .kou2_midashi::after {
        width: 80%; } }

.kou2_midashi--under {
  border-bottom: solid 5px yellow; }

.kou2_midashi--normal::before {
  background: none; }

.kou2_question--graph {
  text-align: center; }
  .kou2_question--graph img {
    vertical-align: bottom; }

.kou2_question01--person {
  width: 90%;
  position: relative;
  height: 400px;
  margin: 0 auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_question01--person {
      width: 100%;
      height: 200px;
      margin-bottom: 1em; } }

.kou2_question01--person--img {
  position: absolute;
  right: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_question01--person--img {
      width: 45%;
      bottom: 0; } }

.kou2_question01--person--serif {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  background: #fff;
  padding: 1em 3em;
  border-radius: 5px;
  font-size: 2rem;
  color: #01e2af;
  font-family: "UD Shin Go NT Bold";
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_question01--person--serif {
      top: 0;
      /*font-size: 1.6rem;*/
      font-size: 1.4rem;
      padding: 1em 40% 1em 0.5em;
      /*height: 200px;*/ } }

.kou2_question02--person {
  width: 90%;
  position: relative;
  height: 400px;
  margin: 0 auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_question02--person {
      height: 250px;
      margin-bottom: 1em; } }

.kou2_question02--person--img {
  position: absolute;
  left: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_question02--person--img {
      width: 52%;
      left: -10px;
      bottom: 0; } }

.kou2_question02--person--serif {
  position: absolute;
  right: 0;
  top: 20%;
  width: 100%;
  background: #fff;
  padding: 1em 1em 1em 40%;
  border-radius: 5px;
  font-size: 2rem;
  color: #FFA49D;
  font-family: "UD Shin Go NT Bold";
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_question02--person--serif {
      top: 0;
      font-size: 1.6rem;
      padding: 1em 0.5em 1em 45%;
      height: 250px; } }

.kou2_question02--person--mt2 {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .kou2_question02--person--mt2 {
      margin-top: -6em; } }

.kou2_question02--person--mt3 {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .kou2_question02--person--mt3 {
      margin-top: -7em;
      margin-bottom: -1em; } }

.kou2_ttl_linkbox {
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  z-index: 5;
  position: relative; }
  .kou2_ttl_linkbox h4 {
    color: #FFF; }

.kou2_linkbox {
  background: #000;
  padding: 1em 2em 2em 2em;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .kou2_linkbox {
      width: 80%;
      margin: auto; } }
  .kou2_linkbox p {
    margin-bottom: 0;
    margin-top: 10px; }

.kou2_back02 {
  background: url(/wp-content/themes/BSC-2018/img/kou2/back.jpg) no-repeat center 0;
  background-size: cover; }

.kou2_back02inner {
  /*background:rgba(255, 255, 255, 0.60);*/
  background: rgba(0, 195, 255, 0.7);
  background: -webkit-linear-gradient(to right bottom, rgba(250, 169, 172, 0.7) 35%, rgba(0, 195, 255, 0.7));
  background: -webkit-linear-gradient(left top, rgba(250, 169, 172, 0.7) 35%, rgba(0, 195, 255, 0.7));
  background: linear-gradient(to right bottom, rgba(250, 169, 172, 0.7) 35%, rgba(0, 195, 255, 0.7));
  padding: 3em 5em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .kou2_back02inner {
      padding: 1em 2em; } }

.kou2_nagarebox, .kou2_nagarebox--fix {
  text-align: center;
  margin-bottom: 3.5em;
  background: rgba(255, 255, 255, 0.86);
  padding: 2em; }
  .kou2_nagarebox::after, .kou2_nagarebox--fix::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    border-top: 2em solid rgba(255, 255, 255, 0.86);
    border-right: 5em solid transparent;
    border-left: 5em solid transparent;
    border-bottom: 0px solid transparent;
    margin: 0 auto -3.95em auto; }

.kou2_nagarebox--fix::after {
  display: none; }

.kou2_nagare--month {
  border: 2px solid #000;
  font-family: "UD Shin Go NT Bold";
  font-size: 1.2em;
  display: inline-block;
  margin-bottom: 0; }

.kou2_nagare--month_inner {
  padding: 0.5em 1em;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.kou2_nagare--title {
  margin: 0.5em 0 1em 0; }

.kou2_back #taiken2014 .Box-Wrap {
  display: none; }

.kou2_back #taiken2014 .Box-Wrap:first-of-type {
  display: block; }

/* 卒業生
--------------------------------------------------------------------------------------------------*/
/*求人票*/
.obog_kyujin {
  width: 680px;
  margin: 20px auto 40px auto; }

.obog_kyujin p {
  background: url(../../../uploads/t_img/maru_pink.jpg) no-repeat 1px 4px;
  padding-left: 15px;
  padding-right: 0;
  padding-bottom: 5px;
  margin: 7px 0;
  border-bottom: dotted 1px #999999; }

.obog_kyujin_table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #F99;
  font-size: 1em;
  margin: 15px 0 30px 0; }

.obog_kyujin_table th,
.obog_kyujin_table td,
.obog_kyujin_table .table-base01 th, .table-base01
.obog_kyujin_table th {
  padding: 8px;
  border: 1px solid #F99; }

.obog_kyujin_table th {
  background: #FCC;
  width: 20%; }

.Box-Contact {
  background-color: #fff;
  border: 3px solid #999999; }

/* 学生サロン
/////////////////////////////////////////////////////////////////////////////////////// */
/*----------------------ネイルサロン　bonebone----------------------*/
.bonebone_topwrap {
  position: relative;
  height: 500px;
  text-align: center;
  margin-bottom: 3em;
  background-color: #fff;
  background-image: -webkit-radial-gradient(#eee 10%, transparent 20%), -webkit-radial-gradient(#eee 10%, transparent 20%);
  background-image: radial-gradient(#eee 10%, transparent 20%), radial-gradient(#eee 10%, transparent 20%);
  background-size: 18px 18px;
  background-position: 0 0, 9px 9px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .bonebone_topwrap {
      height: 100vw; } }

.bonebone_title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  /*スマホ 768px以下*/ }
  .bonebone_title img {
    /*pc769px以上*/
    vertical-align: bottom; }
    @media all and (min-width: 48.0625em) {
      .bonebone_title img {
        max-width: inherit; } }
  @media (max-width: 48em) {
    .bonebone_title {
      width: 100%;
      height: 100vw; } }

/*------------------------リラクゼーションサロン　アペゼ-------------------*/
.ApaiserMenuBox {
  width: 658px;
  border: #999999 solid 1px;
  padding: 10px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ApaiserMenuBox {
      width: 100%;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

.ApaiserMenuBox .Box-2 {
  width: 320px;
  float: left;
  margin-right: 18px; }

.ApaiserMenuBox .Box-2.R {
  margin-right: 0; }

.ApaiserMenuBox .Box-2 h4 {
  margin: 10px 0; }

#Apaiser.salon2013 .qu {
  margin-top: 10px;
  margin-bottom: 0px;
  color: #EC2365;
  font-weight: bold; }

.ApaiserMenuBox .Box-2 img {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .ApaiserMenuBox .Box-2 img {
      width: 100%; } }

/*-----------------------エステサロン aimer-----------------------*/
.AimerMenuBox {
  width: 658px;
  border: #999999 solid 1px;
  padding: 1em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .AimerMenuBox {
      width: 100%;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

.AimerMenuBox .Box-2 {
  width: 320px;
  float: left;
  margin-right: 18px; }

.AimerMenuBox .Box-2.R {
  margin-right: 0; }

#Aimer .AimerMenuBox .Box-2 h4 {
  margin: 10px 0; }

.AimerMenuBox .Box-2 img {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .AimerMenuBox .Box-2 img {
      width: 100%; } }

/*----------------------エステサロン------------------------*/
.EsthesalonMenuBox {
  border: #999999 solid 1px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 2em; }

.EsthesalonMenuBox h4 {
  margin-top: 0; }

/*---------------------------------------チャリティーサロン-------------------------------------*/
.charity_copy {
  background: url("../../../uploads/salon/gp/copybg.jpg") no-repeat scroll 0 0 transparent;
  margin-bottom: 2em;
  padding-bottom: 5%;
  padding-top: 10%; }

.charity_copy p {
  margin: 0 4%; }

/* オープンキャンパス
/////////////////////////////////////////////////////////////////////////////////////// */
.taiken__topwrap {
  position: relative;
  background: url(/wp-content/themes/BSC-2018/img/taiken/menu/top.jpg) no-repeat center center;
  background-size: cover;
  height: 530px;
  text-align: center;
  margin-bottom: 6em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .taiken__topwrap {
      background: url(/wp-content/themes/BSC-2018/img/taiken/menu/top-sp.jpg) no-repeat center -20px;
      background-size: cover;
      height: 55vh; } }
  .taiken__topwrap h2 {
    position: absolute;
    bottom: -20%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0; }

/*OC扉2015
--------------------------------------------------------------------------------*/
#taiken2014 .oc_typebox {
  margin: 7% 0;
  padding-bottom: 3.5%;
  border-bottom: dotted 1px #CCCCCC; }
  #taiken2014 .oc_typebox::last-of-type {
    border-bottom: none; }

#taiken2014 .oc_top img,
#taiken2014 .oc_box .btn_menu_sp,
#taiken2014 .oc_box img {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .oc_top img,
    #taiken2014 .oc_box .btn_menu_sp,
    #taiken2014 .oc_box img {
      width: 100%; } }

#taiken2014 .oc_box {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .oc_box {
      border-left: 2px #CCCCCC solid;
      border-right: 2px #CCCCCC solid;
      border-bottom: 2px #CCCCCC solid;
      width: 100%;
      height: auto;
      background: none;
      margin-top: 0;
      padding: 1em;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

/*カレンダー*/
#taiken2014 .cal_box {
  width: 100%;
  margin: 30px auto;
  overflow: hidden;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .cal_box {
      background: none;
      padding: 0;
      margin: 20px 0;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

#taiken2014 .cal_box .left {
  width: 20%;
  float: left; }

#taiken2014 .cal_box .left p {
  margin: 0; }

#taiken2014 #CalendarWrap {
  margin: 0; }

#taiken2014 .oc_calendar {
  background: #ffffff none repeat scroll 0 0;
  float: right;
  margin: 0 auto;
  width: 77%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .oc_calendar {
      width: 99%;
      float: none;
      padding: 0; } }

#taiken2014 .calendar_head {
  margin-top: 0; }

#taiken2014 .calendar_head span {
  font-size: 160%;
  font-weight: bold; }

#taiken2014 .month-box {
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .month-box {
      width: 100%; } }

#taiken2014 table.calendar {
  border-collapse: collapse;
  border: none;
  width: 99.9%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 table.calendar {
      margin-bottom: 5px;
      width: 100%; } }

#taiken2014 table.calendar td, #taiken2014 table.calendar .table-base01 th, .table-base01 #taiken2014 table.calendar th {
  width: 14%;
  height: 40px;
  text-align: center;
  vertical-align: top;
  padding: 0.5%;
  border: 1px #CCCCCC solid;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 table.calendar td, #taiken2014 table.calendar .table-base01 th, .table-base01 #taiken2014 table.calendar th {
      font-size: 0.8rem; } }

#taiken2014 table.calendar td:first-child, #taiken2014 table.calendar .table-base01 th:first-child, .table-base01 #taiken2014 table.calendar th:first-child {
  color: #F36;
  font-weight: bold; }

#taiken2014 table.calendar td:last-child, #taiken2014 table.calendar .table-base01 th:last-child, .table-base01 #taiken2014 table.calendar th:last-child {
  color: #36C;
  font-weight: bold; }

#taiken2014 table.calendar td:empty, #taiken2014 table.calendar .table-base01 th:empty, .table-base01 #taiken2014 table.calendar th:empty {
  background-color: #F9F9F9; }

#taiken2014 table.calendar thead td, #taiken2014 table.calendar thead .table-base01 th, .table-base01 #taiken2014 table.calendar thead th {
  border: none;
  height: auto;
  font-weight: bold; }

#taiken2014 table.calendar thead td:first-child, #taiken2014 table.calendar thead .table-base01 th:first-child, .table-base01 #taiken2014 table.calendar thead th:first-child {
  color: #F36; }

#taiken2014 table.calendar thead td:last-child, #taiken2014 table.calendar thead .table-base01 th:last-child, .table-base01 #taiken2014 table.calendar thead th:last-child {
  color: #36C; }

#taiken2014 table.calendar tbody td span, #taiken2014 table.calendar tbody .table-base01 th span, .table-base01 #taiken2014 table.calendar tbody th span {
  display: none; }

#taiken2014 table.calendar td a, #taiken2014 table.calendar .table-base01 th a, .table-base01 #taiken2014 table.calendar th a {
  display: block;
  color: #FFF;
  font-size: 0.65rem;
  text-decoration: none;
  line-height: 1.2;
  margin: 2%;
  padding: 3% 1%;
  border-radius: 2px; }

#taiken2014 table.calendar td a.taiken, #taiken2014 table.calendar .table-base01 th a.taiken, .table-base01 #taiken2014 table.calendar th a.taiken {
  background: none repeat scroll 0 0 #ED0047; }

#taiken2014 table.calendar td a.kobetsu, #taiken2014 table.calendar .table-base01 th a.kobetsu, .table-base01 #taiken2014 table.calendar th a.kobetsu {
  background: none repeat scroll 0 0 #29D8EC; }

#taiken2014 table.calendar td a.yakan, #taiken2014 table.calendar .table-base01 th a.yakan, .table-base01 #taiken2014 table.calendar th a.yakan {
  background: none repeat scroll 0 0 #1151B3; }

#taiken2014 table.calendar td a.ao, #taiken2014 table.calendar .table-base01 th a.ao, .table-base01 #taiken2014 table.calendar th a.ao {
  background: none repeat scroll 0 0 #FFF300;
  color: #000; }

#taiken2014 table.calendar td a.heijitsu_tsu, #taiken2014 table.calendar .table-base01 th a.heijitsu_tsu, .table-base01 #taiken2014 table.calendar th a.heijitsu_tsu {
  background: none repeat scroll 0 0 #2BB7B3; }

#taiken2014 table.calendar td a.tokutai, #taiken2014 table.calendar .table-base01 th a.tokutai, .table-base01 #taiken2014 table.calendar th a.tokutai {
  background: none repeat scroll 0 0 #7379AE; }

#taiken2014 table.calendar td a.taiken_1day, #taiken2014 table.calendar .table-base01 th a.taiken_1day, .table-base01 #taiken2014 table.calendar th a.taiken_1day,
#taiken2014 table.calendar td a.taiken_sp,
#taiken2014 table.calendar .table-base01 th a.taiken_sp, .table-base01
#taiken2014 table.calendar th a.taiken_sp {
  background: none repeat scroll 0 0 #FF99FF; }

#taiken2014 table.calendar td a.taiken_sp, #taiken2014 table.calendar .table-base01 th a.taiken_sp, .table-base01 #taiken2014 table.calendar th a.taiken_sp {
  border: #9CD2CE 4px solid; }

#taiken2014 table.calendar td a.blue, #taiken2014 table.calendar .table-base01 th a.blue, .table-base01 #taiken2014 table.calendar th a.blue {
  background: none repeat scroll 0 0 #2A76B8; }

#taiken2014 table.calendar td a.red, #taiken2014 table.calendar .table-base01 th a.red, .table-base01 #taiken2014 table.calendar th a.red {
  background: none repeat scroll 0 0 #B02020; }

#taiken2014 table.calendar td a.green, #taiken2014 table.calendar .table-base01 th a.green, .table-base01 #taiken2014 table.calendar th a.green {
  background: none repeat scroll 0 0 #2AB86C; }

#taiken2014 table.calendar td a.orange, #taiken2014 table.calendar .table-base01 th a.orange, .table-base01 #taiken2014 table.calendar th a.orange {
  background: none repeat scroll 0 0 #E08030; }

#taiken2014 table.calendar td a.purple, #taiken2014 table.calendar .table-base01 th a.purple, .table-base01 #taiken2014 table.calendar th a.purple {
  background: none repeat scroll 0 0 #745397; }

/*------*/
/* 体験メニューページ
--------------------------------------------------------------------------------*/
/*体験授業ページにのみ出すカレンダー*/
/*#taiken2014.menu table.calendar td a:not(.taiken):not(.taiken_1day):not(.taiken_kou2){
	display:none;
}
*/
#taiken2014 .day_box {
  background: #F0F0F0;
  padding: 10px 10px 10px 0; }

#taiken2014 .day_box ul {
  margin: 0; }

#taiken2014 .day_box ul li {
  float: left;
  padding: 0 25px 0 10px;
  line-height: 2.5; }

#taiken2014 .Box-Wrap {
  border: #cccccc 1px solid;
  margin-top: 30px;
  width: 100%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-Wrap {
      width: 100%;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

#taiken2014 .Box-Day {
  /*background:url(../../../uploads/taiken/2014/oc_menu/day_bg.gif) repeat;*/
  background: url(/wp-content/themes/BSC-2018/img/taiken/menu/day_bg_gray01.gif) repeat;
  width: 100%;
  margin: 0 auto;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-Day {
      width: 100%; } }

/*#taiken2014 .Box-Day h4{
	border:none;
	margin:20px 15px 15px 15px;
	padding:0;
	font-size:1.2em;
	float:left;
	
	@include media-sp{	
	font-size:0.9em;
	margin:8px;	
	}
}*/
#taiken2014 .moushikomi {
  float: right;
  width: 250px;
  margin: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .moushikomi {
      width: 100px;
      margin: 8px 8px 8px 0;
      font-size: 0.8rem;
      line-height: 1.2; } }

#taiken2014 .moushikomi a {
  display: block;
  padding: 10px;
  color: #FFF;
  background: #ED0047;
  border-radius: 3px;
  text-decoration: none;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .moushikomi a {
      padding: 6px; } }

#taiken2014 .moushikomi a:hover {
  opacity: 0.5;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .moushikomi a:hover {
      opacity: 1.0; } }

#taiken2014 .Box-MenuWrap {
  background: #FFFFFF;
  margin-top: 5px;
  /*padding:1.5em;*/ }

#taiken2014 .Box-MenuWrap .Box-Menu .Box-3 {
  width: 32%;
  margin-right: 2%;
  margin-top: 1em;
  margin-bottom: 1em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu .Box-3 {
      width: 48% !important;
      margin-right: 4%;
      margin-top: 1em;
      margin-bottom: 0.5em;
      float: left;
      clear: none; } }

#taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(3n) {
  margin-right: 0;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(3n) {
      margin-right: 4%; } }

#taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(3n+1) {
  clear: left;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(3n+1) {
      clear: none; } }

#taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(2n),
#taiken2014 .Box-MenuWrap .Box-Menu .Box-3:last-of-type {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(2n),
    #taiken2014 .Box-MenuWrap .Box-Menu .Box-3:last-of-type {
      margin-right: 0; } }

#taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(2n+1) {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu .Box-3:nth-of-type(2n+1) {
      clear: left; } }

* + html #taiken2014 .Box-MenuWrap .Box-Menu .Menu-Title {
  width: 280px; }

#taiken2014 .Box-MenuWrap .Box-Menu .Menu-Title,
#taiken2014 .Box-MenuWrap .Box-Menu .Menu-Title-sp {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu .Menu-Title,
    #taiken2014 .Box-MenuWrap .Box-Menu .Menu-Title-sp {
      font-size: 0.75em;
      width: auto; } }

#taiken2014 .Box-MenuWrap .Box-Menu .Menu-Title span {
  display: inline-block;
  background: #000;
  font-size: 0.9em;
  font-weight: bold;
  color: #FFF;
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 3px; }

#taiken2014 .Box-MenuWrap .Box-Menu ul li {
  line-height: 1.3;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-MenuWrap .Box-Menu ul li {
      font-size: 0.8em; } }

#taiken2014 .Box-MenuWrap .Box-Menu ul li img {
  width: 100%;
  height: auto; }

#taiken2014 .Box-MenuWrap .Box-Menu ul li:last-of-type {
  margin-top: 5px; }

.Menu-specialtext-box {
  background-color: #fff800;
  text-align: center;
  padding: 1em;
  margin-bottom: 0.5em; }

.Menu-specialtext-box--sub {
  border: solid #000 1px; }

.Menu-specialtext-box--copy {
  font-family: "UD Shin Go NT Medium";
  color: #000;
  font-size: 2vw;
  margin: 0.7em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Menu-specialtext-box--copy {
      font-size: 3.5vw; } }

.Menu-specialtext-box--copy2 {
  font-family: "UD Shin Go NT Medium";
  color: #000;
  font-size: 1rem;
  margin: 0.7em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .Menu-specialtext-box--copy2 {
      font-size: 3.5vw; } }

/*インスタ風バージョン*/
#taiken2014 .Box-Wrap-Square {
  border: #cccccc 1px solid;
  margin-top: 30px;
  width: 946px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #taiken2014 .Box-Wrap-Square {
      width: 100%;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

.Box-Wrap-Square .Menu-Img {
  width: 100%;
  overflow: hidden;
  position: relative;
  /*相対配置*/ }

.Box-Wrap-Square .Menu-Img p {
  position: absolute;
  /*絶対配置*/
  color: white;
  /*文字は白に*/
  top: 0;
  left: 0;
  background: #000;
  padding: 3px 10px;
  font-size: 0.85rem;
  /*border-radius: 5px;*/
  opacity: 0.75;
  margin: 0; }

.Box-Wrap-Square .Menu-Text {
  font-size: 0.9rem; }

#taiken2014 .Box-MenuWrap .Box-Menu ul li:last-of-type {
  margin-top: 0; }

#taiken2014 .Box-Day {
  width: auto;
  padding: .8em .5em .5em .5em;
  margin-top: 10px; }

/*-------20190520辻田-----------*/
.tikn-line {
  border-bottom: solid 1px #000000; }

.tikn-line--bld {
  padding: 0.8rem 0rem;
  border-bottom: solid 4px #000000;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .tikn-line--bld {
      border-bottom: solid 3px #000000; } }

.tikn-line--sp {
  border-bottom: solid 1px #000000;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .tikn-line--sp {
      border-bottom: none; } }

.tikn-ttl {
  text-align: left;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .tikn-ttl {
      text-align: center; } }

.tikn--balloon {
  position: relative;
  display: inline-block;
  /*background-color: #fff;*/
  border-bottom: solid 1px #000000;
  padding: 0px 0px 1rem 0px;
  width: 100%;
  text-align: center;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .tikn--balloon {
      padding: 0px 0px 0.8rem 0px; } }

.tikn--balloon:before,
.tikn--balloon:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.tikn--balloon:before {
  border: solid 12px transparent;
  border-top: solid 12px #000000; }

.tikn--balloon:after {
  border: solid 16px transparent;
  border-top: solid 16px #fff;
  margin-top: -5px; }

.tikn--balloon p {
  margin: 0;
  padding: 0; }

.tikn--dot {
  padding: 1rem;
  margin: 1em 0;
  border: dotted 2px #000000;
  /*点線*/ }

.tikn--dot p {
  margin: 0;
  padding: 0; }

.nav {
  width: 100%;
  text-align: left;
  display: table;
  width: 100%;
  background: #FFF; }

.nav__item {
  display: table-cell;
  vertical-align: middle; }

/*------------------実技特待2016------------------*/
.sikenimg {
  margin-bottom: 0; }

/*------------------実技特待 2019.12.18------------------*/
.tokutai_wrap {
  background-color: #f2f2f2;
  padding: 1em; }
  .tokutai_wrap .tokutai_ttl--biyo {
    background-color: #fff;
    border: solid 2px #03ae9c;
    color: #03ae9c;
    font-size: 1.2rem;
    padding: .5em;
    text-align: center;
    margin: .5em 0; }
  .tokutai_wrap .tokutai_ttl--hm {
    background-color: #fff;
    border: solid 2px #ffac19;
    color: #ffac19;
    font-size: 1.2rem;
    padding: .5em;
    text-align: center;
    margin: .5em 0; }
  .tokutai_wrap .tokutai_ttl--tb {
    background-color: #fff;
    border: solid 2px #a660a3;
    color: #a660a3;
    font-size: 1.2rem;
    padding: .5em;
    text-align: center;
    margin: .5em 0; }

/*------------------出張ガイダンス 2020.6.23------------------*/
.list-style--check {
  list-style: none;
  margin-left: 2em; }
  .list-style--check li {
    position: relative;
    padding-left: 0.4em;
    /* アイコンと文章の間のスペース */
    padding-right: 1.5em; }
    .list-style--check li:before {
      position: absolute;
      left: -1em;
      top: 8px;
      content: "\f046";
      font-family: FontAwesome;
      color: #E50065;
      /*スマホ 768px以下*/ }
      @media (max-width: 48em) {
        .list-style--check li:before {
          top: 2.5px; } }

.list--clear {
  margin: 0;
  padding: 0;
  text-indent: inherit;
  list-style: none; }

/*------------------体験メニュー　申し込みボタンを下に移動・日程を大きく・枠線削除------------------*/
.taiken__menubox__btn {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .taiken__menubox__btn {
      width: 80%;
      margin: 0 auto;
      font-size: 0.8rem;
      line-height: 1.2; } }
  .taiken__menubox__btn a {
    display: block;
    padding: 1em;
    color: #FFF;
    background: #ED0047;
    border-radius: 3px;
    text-decoration: none;
    /*スマホ 768px以下*/ }
    @media (max-width: 48em) {
      .taiken__menubox__btn a {
        padding: .7em; } }

.taiken__menubox__wrap {
  padding: 20px 0 10px;
  position: relative; }
  .taiken__menubox__wrap:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    margin: 0 auto;
    text-align: center;
    background-image: -webkit-linear-gradient(left, transparent, #777 50%, #777 50%, transparent);
    background-image: linear-gradient(to right, transparent, #777 50%, #777 50%, transparent);
    background-position: center;
    background-repeat: no-repeat; }

.taiken__menubox__day {
  color: #000000;
  font-size: 3rem;
  text-align: center;
  font-family: din-2014;
  font-style: normal;
  font-weight: 800;
  margin: 0 10px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .taiken__menubox__day {
      font-size: 2.8rem;
      line-height: 1em; }
      .taiken__menubox__day .Font-S {
        font-size: 60%; } }

/* 以前から引き継いでいるその他のclass
/////////////////////////////////////////////////////////////////////////////////////// */
/*------------------------------インタビュー用Box----------------------------------*/
/*例）就職サポートの採用担当者*/
.BoxVoice {
  border: #CCCCCC 1px solid;
  padding: 10px;
  margin-bottom: 20px;
  width: 660px;
  overflow: hidden;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .BoxVoice {
      width: 100%;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      /*padding と border の幅を要素の幅と高さに含める*/ } }

.BoxVoice .Left {
  width: 180px;
  float: left;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .BoxVoice .Left {
      margin-right: 0.5em;
      width: 30%; } }

.BoxVoice .Right {
  width: 450px;
  float: right;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .BoxVoice .Right {
      width: auto;
      float: none; } }

.BoxVoice h4 {
  margin: 0;
  font-size: 0.85em; }

/*インタビューBox-3
例）就職サポートの先輩の声*/
.BoxVoice-Box3 .Box-3 {
  border: #CCCCCC 1px solid;
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  overflow: hidden;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .BoxVoice-Box3 .Box-3 {
      width: 28% !important;
      padding: 1.5%; } }

.BoxVoice-Box3 .Box-3.R {
  margin-right: 0; }

.BoxVoice-Box3 .interview {
  border-top: #333333 1px dotted;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .BoxVoice-Box3 .interview {
      font-size: 0.68em; } }

/*下層共通
****************************************************************************************************************/
/*シンプルdl*/
dl.simple {
  font-size: 0.82em;
  position: relative; }

dl.simple dt {
  left: 0;
  padding: 1em 0;
  position: absolute;
  width: 9em; }

dl.simple dd {
  border-bottom: 1px dashed #CCCCCC;
  padding: 1em 0 1em 10em;
  margin-left: 0; }

/*シンプルtable*/
.simple_t table {
  border: 1px solid #CCCCCC;
  border-collapse: collapse;
  font-size: 0.86em;
  width: 100%; }

.simple_t table th,
.simple_t table td,
.simple_t table .table-base01 th, .table-base01
.simple_t table th {
  border: 1px solid #CCCCCC;
  padding: 0.3em;
  font-size: 0.82em; }

.simple_t table th {
  background: none repeat scroll 0 0 #F0F0F0;
  font-weight: normal; }

/*よくある質問
**************************************************************************************************************************/
/*アコーディオン*/
.accordion_head {
  cursor: pointer; }

#campuslife2013 .accordion_head {
  cursor: pointer;
  background: url(../../../uploads/faq/icon-q.gif) no-repeat 0 0;
  padding: 10px 10px 10px 50px;
  text-decoration: underline;
  display: block; }

#campuslife2013 .accordion_head:hover {
  color: #D96197;
  text-decoration: none; }

#campuslife2013 .accordion_box {
  background: url(../../../uploads/faq/icon-a.gif) no-repeat 0 0;
  padding: 0 0 0 46px;
  margin: 0 10px 20px;
  display: none; }

/*単発ページ
**************************************************************************************************************************/
/*---------------------------------------本校へのリンクについて-------------------------------------*/
#link h3 {
  margin: 0 0 50px 0;
  padding: 10px;
  width: auto;
  height: auto;
  line-height: normal;
  background-image: none;
  font-size: medium;
  letter-spacing: normal;
  border: 1px solid #DCDCDC; }

/*---------------------------------------交通アクセス-------------------------------------*/
.AccessPhoto1 {
  float: left;
  margin-right: 12px; }

.AccessPhoto2 {
  float: left;
  margin-right: 13px; }

.AccessPhoto3, .AccessPhoto6, .AccessPhoto8, .AccessPhoto10 {
  float: left; }

.AccessPhoto4, .AccessPhoto5 {
  float: left;
  margin-right: 15px; }

.AccessPhoto7, .AccessPhoto9 {
  float: left;
  margin-right: 58px; }

/*-------------------------------講師募集----------------------------------*/
.KoushiBosyu {
  border-collapse: collapse;
  border: 1px solid #CCC;
  font-size: 90%; }

.KoushiBosyu th,
.KoushiBosyu td,
.KoushiBosyu .table-base01 th, .table-base01
.KoushiBosyu th {
  padding: 7px;
  border-bottom: 1px solid #CCC;
  border-right: 1px solid #CCC; }

.KoushiBosyu th {
  background: #FFF6C1; }

.KoushiBosyu th.First {
  background: #FCC; }

.KoushiBosyu td, .KoushiBosyu .table-base01 th, .table-base01 .KoushiBosyu th {
  background: #FFFBE2; }

/*-------------------------------sns公式アカウント一覧----------------------------------*/
#sns2013 .sns-Box {
  border-bottom: 1px #333333 dotted;
  display: table; }

#sns2013 .sns-Box.top {
  border-top: 1px #333333 dotted;
  margin-top: 30px; }

#sns2013 .Box-2 p {
  font-size: 0.78em;
  display: table-cell;
  vertical-align: middle;
  height: 100px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    #sns2013 .Box-2 p {
      height: auto; } }

*:first-child + html #sns2013 .Box-2 p {
  /* IE 7 */
  display: inline;
  zoom: 1; }

/*-------------------------------ソーシャルメディアポリシー----------------------------------*/
#sns2013 ul li {
  font-size: 0.82em; }

#sns2013 ul li a {
  color: #F66; }

#sns2013 ul.sns_info li {
  padding-left: 1.5em;
  text-indent: -1.5em; }

/*-------------------------------ブライダルブック　----------------------------------*/
#bridalbook .mainp {
  width: 50%;
  float: left;
  margin: 0 3% 5% 0; }

#bridalbook .subp {
  width: 47%;
  float: left;
  margin: 0; }

#bridalbook .subp p {
  font-size: 0.75rem;
  line-height: 130%;
  margin: 0 0 0.5em;
  word-wrap: break-word; }

#bridalbook .subp .left {
  width: 30%;
  margin: 0 5% 5% 0;
  float: left; }

#bridalbook .subp .right {
  width: 60%;
  float: left; }

#bridalbook p.name {
  margin-bottom: 2em; }

#bridalbook p.Attbridal01 {
  background: #EF599D;
  padding: 0.2em;
  color: #fff; }

#bridalbook p.Attbridal02 {
  background: #578FC2;
  padding: 0.2em;
  color: #fff; }

#bridalbook p.Attbridal03 {
  background: #A87052;
  padding: 0.2em;
  color: #fff; }

#bridalbook .requestbutton {
  /*	width:40%;*/ }

#bridalbook .LeftBox {
  width: 20%;
  float: left;
  margin: 0 10% 0 0; }

#bridalbook .RightBox {
  width: 70%;
  float: left; }

/*スマホ独自の
*********************************************************************************************************************
*********************************************************************************************************************
*********************************************************************************************************************/
/*スマホのみfloatなし*/
.sNonefloat {
  float: none; }

.english_lesson_topwrap {
  position: relative;
  background: url("/wp-content/themes/BSC-2018/img/concept/english_lesson/main.jpg") no-repeat center center;
  background-size: auto;
  background-size: cover;
  height: 700px;
  text-align: center;
  margin-bottom: 5em;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_topwrap {
      height: 450px;
      background: url("/wp-content/themes/BSC-2018/img/concept/english_lesson/main.png") no-repeat center center;
      background-size: auto 100%;
      margin-bottom: 3em; } }

.english_lesson_title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_title {
      top: 40%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 80%; } }

.english_lesson_title2 {
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_title2 {
      width: 95%;
      margin-top: -10rem;
      position: absolute;
      z-index: 10; } }

.english_lesson_catch-box {
  margin-top: 14vh; }

.english_lesson_catch {
  text-align: center;
  font-size: 1.2rem;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .english_lesson_catch {
      font-size: 1.2rem; } }

.english_lesson_catch_sub {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .english_lesson_catch_sub {
      font-size: 1rem;
      line-height: 1.8; } }
  .english_lesson_catch_sub__center {
    text-align: center; }

.english_lesson_movie_catch {
  display: inline-block;
  margin: 0;
  padding: 0.2em 0.5em;
  color: #fff;
  background: #000;
  position: relative;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .english_lesson_movie_catch {
      height: 31px; } }
  .english_lesson_movie_catch::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid black;
    border-top: 31px solid transparent;
    top: 0;
    left: 100%; }

.english_lesson_cnt1_bg, .english_lesson_cnt1_bg__pint1, .english_lesson_cnt1_bg__pint2, .english_lesson_cnt1_bg__pint3 {
  position: relative;
  height: 300px;
  text-align: center;
  z-index: -5;
  /*スマホ 768px以下*/ }
  .english_lesson_cnt1_bg__pint1 {
    background: url("/wp-content/themes/BSC-2018/img/concept/english_lesson/cont1_bg1.jpg") no-repeat center center;
    background-size: auto;
    background-size: cover; }
  .english_lesson_cnt1_bg__pint2 {
    background: url("/wp-content/themes/BSC-2018/img/concept/english_lesson/cont1_bg2.jpg") no-repeat center center;
    background-size: auto;
    background-size: cover; }
  .english_lesson_cnt1_bg__pint3 {
    background: url("/wp-content/themes/BSC-2018/img/concept/english_lesson/cont1_bg3.jpg") no-repeat center center;
    background-size: auto;
    background-size: cover; }
  @media (max-width: 48em) {
    .english_lesson_cnt1_bg, .english_lesson_cnt1_bg__pint1, .english_lesson_cnt1_bg__pint2, .english_lesson_cnt1_bg__pint3 {
      height: 220px;
      background-size: auto 100%;
      margin-bottom: 1em; } }

.english_lesson_cnt1_box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_cnt1_box {
      margin: auto;
      margin: 0 1rem; } }

.english_lesson_cnt1_box_ttl {
  margin-top: -1rem;
  width: 60%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_cnt1_box_ttl {
      width: 50%; } }

.english_lesson_headingbox {
  background-image: url(/wp-content/themes/BSC-2018/img//concept/english_lesson/all_cont_bg.jpg);
  position: relative;
  overflow: hidden; }
  .english_lesson_headingbox::after {
    content: "";
    background: -webkit-linear-gradient(top, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
    background: linear-gradient(180deg, rgba(30, 215, 143, 0.8), rgba(45, 173, 221, 0.8));
    background-size: 100% 100%;
    -webkit-animation: gradation 5s ease infinite;
    animation: gradation 5s ease infinite;
    top: 0;
    left: 0%;
    width: 200%;
    height: 200%;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    position: absolute;
    -webkit-animation-delay: 3s;
    animation-delay: 3s; }

.english_lesson__heading {
  padding: 1em;
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: 1.5em;
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .english_lesson__heading {
      padding: 3em;
      font-size: 2.2em; } }

.english_lesson_cnt2_wrap {
  position: static;
  margin-bottom: 40rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_cnt2_wrap {
      position: relative;
      margin-bottom: 7rem; } }

.english_lesson_cnt2_flag {
  position: relative;
  margin: 0 auto -2rem;
  width: 65%;
  z-index: 20; }
  .english_lesson_cnt2_flag img {
    width: 100%; }

.english_lesson_cnt2_box {
  background-color: #FFFFFF;
  box-shadow: 15px 15px 0px 0 #03ae9c;
  position: absolute;
  z-index: 30;
  margin: 10rem 0rem 0rem -15rem;
  padding: 2rem;
  width: 150%;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_cnt2_box {
      box-shadow: 8px 8px 0px 0 #03ae9c;
      position: static;
      width: 90%;
      margin: -4rem auto;
      padding: 1rem; } }

.english_lesson_cnt4_wrap {
  position: relative;
  overflow: hidden; }

.english_lesson_cnt4_box {
  color: #FFFFFF;
  padding: 0.5rem;
  font-weight: bold;
  text-align: center;
  font-size: 2.2rem;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_cnt4_box {
      font-size: 1.2rem; } }

.english_lesson_cnt4_box_kira {
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 3s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 3s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 3s ease-in-out infinite; }

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0; }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0.5; }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
    opacity: 1; }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
    opacity: 0; } }

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0; }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5; }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1; }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0; } }

.english_lesson_cnt7_qa {
  line-height: 30px;
  /*スマホ 768px以下*/ }
  @media (max-width: 48em) {
    .english_lesson_cnt7_qa {
      line-height: 30px; } }
  @media screen and (max-width: 320px) {
    .english_lesson_cnt7_qa {
      line-height: 20px; } }

.english_lesson_aniItem {
  display: block; }

.english_lesson_aniItem.fade {
  -webkit-animation: ani02 0.5s;
  animation: ani02 0.5s;
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  background: transparent; }

.english_lesson_aniItem.fade img {
  -webkit-animation: ani02-img 0.6s;
  animation: ani02-img 0.6s; }

@-webkit-keyframes ani02 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: black !important; }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background: black !important; } }

@keyframes ani02 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background: black !important; }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background: black !important; } }

@-webkit-keyframes ani02-img {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani02-img {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.img-cache {
  display: none; }

.main-h-works__wrap {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-position: top center;
  background-repeat: no-repeat;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .main-h-works__wrap {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2019/hairmake/hairmake_works/main_back.jpg);
      background-size: cover; } }
  @media (max-width: 48em) {
    .main-h-works__wrap {
      background-image: url(/wp-content/themes/BSC-2018/img/gakka/2019/hairmake/hairmake_works/main_back_sp.jpg);
      background-size: auto 70vh; } }
  .main-h-works__wrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 46, 114, 0.5), rgba(225, 225, 0, 0.7));
    background: linear-gradient(to right, rgba(255, 46, 114, 0.5), rgba(225, 225, 0, 0.7));
    /*pc769px以上*/
    /*スマホ 768px以下*/ }
    @media all and (min-width: 48.0625em) {
      .main-h-works__wrap:after {
        height: 100%; } }
    @media (max-width: 48em) {
      .main-h-works__wrap:after {
        height: 70vh; } }

.main-h-works__inner {
  position: relative;
  z-index: 2;
  padding: 2rem 5%; }

.main-h-works__title-box {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .main-h-works__title-box {
      min-width: 800px;
      margin: 3rem 0 1rem;
      display: inline-block; } }
  @media (max-width: 48em) {
    .main-h-works__title-box {
      margin-top: 26vh; } }

.main-h-works {
  text-align: center; }

.main-h-works__title-img-wrap {
  margin: 0;
  padding: 2.5%; }

.main-h-works__title-img {
  width: 800px;
  height: auto;
  vertical-align: bottom; }

.main-h-works__title-sub {
  margin: 0;
  /*pc769px以上*/
  /*スマホ 768px以下*/
  background: #FFF;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  border-radius: 99999px;
  display: inline-block; }
  @media all and (min-width: 48.0625em) {
    .main-h-works__title-sub {
      padding: 1rem; } }
  @media (max-width: 48em) {
    .main-h-works__title-sub {
      padding: .5rem 0 .3rem;
      margin-bottom: 1rem;
      width: 100%; } }

.card-anchor__wrap-link {
  display: block;
  text-decoration: none;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.2); }

.card-anchor {
  margin: 0;
  padding: 2.5%;
  background: #FFF;
  text-align: center; }

.card-anchor__title, .card-anchor__title--sub {
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
  padding: 2.5%;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .card-anchor__title, .card-anchor__title--sub {
      font-size: 1.3rem; } }
  @media (max-width: 48em) {
    .card-anchor__title, .card-anchor__title--sub {
      font-size: .9rem; } }
  .card-anchor__title--sub {
    margin-top: -1.2rem; }

.card-anchor__title-sub {
  display: block;
  font-size: .8rem;
  margin-bottom: 2.5%; }

.card-anchor__title-icon {
  display: inline-block;
  margin-left: .5rem;
  color: #f90773; }

.h-border, .h-border--biyo {
  margin: 2rem 0 0;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .h-border, .h-border--biyo {
      background-image: url(/wp-content/themes/BSC-2018/img/common/h-border.svg), url(/wp-content/themes/BSC-2018/img/common/h-border.svg);
      background-repeat: no-repeat;
      background-position: top 0 right calc(50% + 1550px), bottom 0 left calc(50% + 1550px); } }
  @media (max-width: 48em) {
    .h-border, .h-border--biyo {
      background-image: -webkit-repeating-linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 3%, black 3.3%, black 5%, rgba(255, 255, 255, 0) 5.3%);
      background-image: repeating-linear-gradient(140deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 3%, black 3.3%, black 5%, rgba(255, 255, 255, 0) 5.3%);
      padding: 1rem 0;
      background-position: center center; } }
  .h-border--biyo {
    /*pc769px以上*/
    /*スマホ 768px以下*/ }
    @media all and (min-width: 48.0625em) {
      .h-border--biyo {
        background-image: url(/wp-content/themes/BSC-2018/img/common/h-border--biyo.svg), url(/wp-content/themes/BSC-2018/img/common/h-border--biyo.svg); } }
    @media (max-width: 48em) {
      .h-border--biyo {
        background-image: -webkit-repeating-linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 3%, #FFBBDA 3.3%, #FFBBDA 5%, rgba(255, 255, 255, 0) 5.3%);
        background-image: repeating-linear-gradient(140deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 3%, #FFBBDA 3.3%, #FFBBDA 5%, rgba(255, 255, 255, 0) 5.3%); } }

.h-border__inner {
  text-align: center;
  margin: auto;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .h-border__inner {
      padding: 3rem 2.5%; } }
  @media (max-width: 48em) {
    .h-border__inner {
      padding: 2rem 2.5%;
      background: #FFF; } }

.h-border__title {
  margin: 0;
  font-family: "新ゴ シャドウ";
  line-height: 1.2;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .h-border__title {
      font-size: 5rem; } }
  @media (max-width: 48em) {
    .h-border__title {
      font-size: 2.7rem; } }

.h-border__title-sub {
  display: block;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1;
  font-size: 50%;
  margin-bottom: .5rem; }

.h-border__lead {
  font-weight: bold;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .h-border__lead {
      margin: 1.5rem 0 0 0; } }
  @media (max-width: 48em) {
    .h-border__lead {
      margin: 1rem 0 0 0; } }

.works-interview {
  width: 1465px;
  max-width: 100%;
  margin: auto; }

.works-interview__head {
  position: relative;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__head {
      margin-bottom: 3rem; } }
  @media (max-width: 48em) {
    .works-interview__head {
      margin-bottom: 2rem; } }

.works-interview__img-box, .works-interview__img-box--right {
  position: relative; }
  .works-interview__img-box--right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    /*pc769px以上*/ }
    @media all and (min-width: 48.0625em) {
      .works-interview__img-box--right {
        width: 50%; } }

.works-interview__img {
  opacity: 0;
  vertical-align: bottom;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__img {
      width: 75%; } }
  .works-interview__img-box--right .works-interview__img {
    /*pc769px以上*/ }
    @media all and (min-width: 48.0625em) {
      .works-interview__img-box--right .works-interview__img {
        width: 100%; } }

.works-interview__lead {
  margin: 0;
  font-size: 1.5rem;
  color: #FFF;
  padding: 1% 2.5%;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__lead {
      display: inline-block;
      position: absolute;
      left: 0;
      bottom: 0;
      max-width: 45%;
      background: rgba(0, 0, 0, 0.85); } }
  @media (max-width: 48em) {
    .works-interview__lead {
      background: black;
      position: relative;
      z-index: 1; } }

.works-interview__brand {
  font-weight: normal;
  color: #FF0; }

.works-interview__attr {
  position: relative;
  z-index: 2;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__attr {
      margin-top: -50%;
      text-align: right; } }
  @media (max-width: 48em) {
    .works-interview__attr {
      text-align: center; } }

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

.works-interview__name-box {
  display: inline-block;
  text-align: left;
  opacity: 0;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__name-box {
      margin-top: 2rem;
      max-width: 50%; } }
  @media (max-width: 48em) {
    .works-interview__name-box {
      padding: 2.5%;
      margin: 1rem 0; } }

.works-interview__name {
  margin: 0;
  display: inline-block;
  background: #000;
  color: #FFF;
  line-height: 1;
  padding: .5rem 1rem;
  font-weight: normal;
  white-space: nowrap;
  font-size: 2rem;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__name {
      font-size: 2.5rem; } }
  @media (max-width: 48em) {
    .works-interview__name {
      font-size: 2rem; } }

.works-interview__keireki {
  margin: .5rem 0; }

.works-interview__account {
  margin: .5rem 0 0; }

.works-interview__account-link {
  text-decoration: none; }

.works-interview__account-icon {
  margin-right: .5rem; }

.works-interview__success {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__success {
      width: 50%;
      margin-left: auto; } }

.works-interview__success-title {
  display: inline-block;
  padding: .5rem 1rem;
  color: #FFF;
  line-height: 1;
  margin: 0;
  font-weight: normal;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__success-title {
      background: rgba(0, 0, 0, 0.8); } }
  @media (max-width: 48em) {
    .works-interview__success-title {
      background: black; } }

.works-interview__success-cont {
  margin: 0; }

.works-interview__success-list {
  margin: 0;
  padding: 0; }

.works-interview__success-cont {
  background: rgba(225, 225, 225, 0.8);
  padding: .8rem 1rem .5rem; }

.works-interview__success-age {
  display: inline-block;
  background: #000;
  min-width: 3rem;
  line-height: 1;
  color: #FFF;
  font-weight: bold;
  text-align: right;
  padding: .5rem 1rem; }

.works-interview__success-item {
  padding-bottom: 2rem;
  position: relative;
  opacity: 0; }
  .works-interview__success-item:after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    text-rendering: auto;
    line-height: 1;
    content: "\f063";
    position: absolute;
    bottom: .25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.5rem; }
  .works-interview__success-item:last-of-type {
    padding-bottom: 0; }
    .works-interview__success-item:last-of-type:after {
      content: "";
      display: none; }

.works-interview__success-event {
  margin-top: .5rem; }

.works-interview__2nd {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__2nd {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.works-interview__2nd-cont {
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__2nd-cont {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      width: 50%;
      position: relative;
      background: rgba(255, 255, 255, 0.8);
      padding-right: 5%; } }
  @media (max-width: 48em) {
    .works-interview__2nd-cont {
      margin-top: 2rem;
      margin-bottom: 2rem; } }

.works-interview__2nd-title {
  margin: 0 0 1rem;
  font-size: 1.5rem; }

.works-interview__2nd-title-strong, .works-interview__box-title {
  display: inline-block;
  background: #000;
  padding: .5rem 1rem;
  margin-bottom: .5rem;
  color: #FFF;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.3; }

.works-interview__2nd-title-normal {
  display: block; }

.works-interview__works {
  margin-top: 2rem;
  position: relative; }

.works-interview__works-title, .works-interview__box-title--yellow {
  display: inline-block;
  padding: .5rem 1rem;
  background: #000;
  color: #FFF;
  line-height: 1;
  margin: 0;
  font-weight: normal; }

.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: .5rem 0; }

.tag-list__title {
  display: inline-block;
  background: rgba(225, 225, 225, 0.8);
  padding: .25rem .5rem;
  line-height: 1;
  margin-right: .5rem;
  font-size: .8rem; }

.tag-list__item:after {
  content: "／"; }

.tag-list__item:last-of-type:after {
  content: ""; }

.works-interview__works-text {
  margin: .5rem 0 0; }

.works-interview__3rd {
  margin: 4rem auto 2rem;
  border: solid 3px #000;
  position: relative;
  width: 80%;
  text-align: center;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__3rd {
      padding: 2rem; } }
  @media (max-width: 48em) {
    .works-interview__3rd {
      padding: 1rem; } }

.works-interview__3rd--min {
  /*pc769px以上*/ }
  @media all and (min-width: 48.0625em) {
    .works-interview__3rd--min {
      width: 65%; } }

.vg--right {
  position: absolute;
  top: 0;
  width: 12rem;
  max-width: 40%;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .vg--right {
      right: -2.5%;
      -webkit-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
      transform: translateY(-30%); } }
  @media (max-width: 48em) {
    .vg--right {
      right: -13%;
      -webkit-transform: translateY(-68%);
      -ms-transform: translateY(-68%);
      transform: translateY(-68%); } }

.ni--left {
  position: absolute;
  top: 0;
  width: 12rem;
  max-width: 40%;
  /*pc769px以上*/
  /*スマホ 768px以下*/ }
  @media all and (min-width: 48.0625em) {
    .ni--left {
      left: -2.5%;
      -webkit-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
      transform: translateY(-30%); } }
  @media (max-width: 48em) {
    .ni--left {
      left: -13%;
      -webkit-transform: translateY(-68%);
      -ms-transform: translateY(-68%);
      transform: translateY(-68%); } }

.works-interview__box-cont {
  padding: 5%;
  text-align: center; }

.works-interview__box-title {
  margin: 0 0 1rem; }
  .works-interview__box-title--yellow {
    background: #FFFF00;
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.3;
    /*pc769px以上*/
    /*スマホ 768px以下*/ }
    @media all and (min-width: 48.0625em) {
      .works-interview__box-title--yellow {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }
    @media (max-width: 48em) {
      .works-interview__box-title--yellow {
        display: block;
        margin-bottom: 1rem; } }

.works-interview__wave-title {
  font-size: 1.5rem;
  background-image: url(/wp-content/themes/BSC-2018/img/gakka/2019/hairmake/hairmake_works/b_wave.svg);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 1.5rem;
  padding-bottom: .8rem;
  display: inline-block;
  margin: 1rem auto 1.5rem; }

.works-interview__nober {
  margin-right: .5rem;
  display: inline-block;
  vertical-align: bottom; }

.works-interview__box-text {
  text-align: left;
  margin: 0; }

.color-biyo .color-box {
  background: #FFBBDA; }

.works-interview__works-item {
  line-height: 1.3;
  padding-left: 1.3rem;
  position: relative;
  margin: .5rem 0; }
  .works-interview__works-item:before {
    position: absolute;
    left: 0;
    display: inline-block;
    margin-right: .3rem;
    content: "■"; }

.works-interview__4th {
  margin-top: 2rem; }

/*# sourceMappingURL=maps/style.css.map */
