@charset "utf-8";

/*==================================================

ベース

==================================================*/
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
	color: #0d0d0d;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
/*	font-feature-settings: "palt";*/
	letter-spacing: .04em;
  position: relative;
}
body.menu-open,
body.menu2-open
{
	overflow: hidden;
}
html.menu-open,
html.menu2-open{
	overflow: hidden;
}

/*========= font family関数指定 ==========*/
:root {
	--font-sans-serif: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
	--font-serif: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
body {
	font-family: var(--font-sans-serif);
}
.m-title{
	font-family: var(--font-serif);
}
/*===================*/


img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	color: #0d0d0d;
	text-decoration: none;
	cursor: pointer;
}
/* フェードイン */
.js-inview {
	opacity: 0;
	transition: opacity .8s;
}
.js-inview.is-show {
	opacity: 1;
}

/* アンカー
--------------------------------------------------*/
.m-anchor{
  position: relative;
}
/* PC */
@media print,only screen and (min-width: 768px){
  .m-anchor{
    scroll-margin-top: 10rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
}

/*==================================================

全ページ共通

==================================================*/
/* PC */
@media print, screen and (min-width: 768px) {
	html {
		font-size: 10px;
	}
	.sp {
		display: none!important;
	}
	a:hover {
		text-decoration: underline;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	html {
		font-size: 1.33vw;
	}
  body{
    background: url("../images/shared/bg-sp.png") center top repeat-y;
    background-size: 100% auto;
  }
	.pc {
		display: none!important;
	}
}

/* form リセット
--------------------------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type="checkbox"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==================================================

ヘッダー

==================================================*/

/* レイアウト 
--------------------------------------------------*/
.l-header{
  width: 100%;
  background-color: #fff;
}
.l-header__logo{
  position:absolute;
}
.l-header__logo img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-header{
    height: 10rem;
    position:fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .l-header__logo{
    width: 26.8rem;
    top:2.5rem;
    left:3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	 
  .l-header{
    height: 12rem;
    position:relative;
  }
  .l-header__logo{
    width: 34.4rem;
    top:3rem;
    left:0;
    right: 0;
    margin: 0 auto;
  }
}

/* グローバルナビ
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){ 
  .nav-globalWrapper{
    display: block!important;
  }
  .nav-global{
    position:absolute;
    top:0;
    right:10rem;
    display: flex;
    justify-content: flex-end;
  }
  .nav-global__itemIn{
    height: 10rem;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .02em;
    padding: 1rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color .3s ease;
   }
  .nav-global__itemIn:before{
    content: "";
    width: 1px;
    border-left: 1px #d9d9d9 dashed;
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 0;
    display: block;
   }
  .nav-global__item.-document .nav-global__itemIn{
    background: url("../images/shared/icon-document.svg") 2.7rem center no-repeat;
    background-size: 2.2rem auto;
    padding-left: 6.5rem;
   }
  .nav-global__item.-examination .nav-global__itemIn{
    background: url("../images/shared/icon-exam.svg") 2rem center no-repeat;
    background-size: 2.6rem auto;
    padding-left: 6rem;
   }
  .nav-global__itemIn:hover{
    color: #ca2374;
    text-decoration: none;
   }
}

@media (min-width: 768px) and (max-width: 1330px) {
  .nav-global__itemIn{
    padding: 1rem 2rem;
   }
  .nav-global__item.-document .nav-global__itemIn{
    background: url("../images/shared/icon-document.svg") 2rem center no-repeat;
    background-size: 2.2rem auto;
    padding-left: 6rem;
   }
  .nav-global__item.-examination .nav-global__itemIn{
    background: url("../images/shared/icon-exam.svg") 1.5rem center no-repeat;
    background-size: 2.6rem auto;
    padding-left: 5rem;
   }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .l-header__logo{
    width: 22rem;
    top:3.5rem;
    left:3rem;
  }
}
@media (min-width: 768px) and (max-width: 1150px) {
  .nav-global__itemIn{
    font-size: 1.5rem;
   }
  .nav-global__itemIn:before{
    top: 1rem;
    bottom: 1rem;
   }
}

@media (min-width: 768px) and (max-width: 1090px) {
  .l-header__logo{
    top:1rem;
    left:3rem;
  }
  .nav-global{
    top:auto;
    bottom: 0;
  }
  .nav-global__itemIn{
    height:5rem;
    padding: 1rem 2.5rem;
   }
  .nav-global__item.-document .nav-global__itemIn{
    background: url("../images/shared/icon-document.svg") 2.1rem center no-repeat;
    background-size: 2.2rem auto;
    padding-left: 5.4rem;
   }
  .nav-global__item.-examination .nav-global__itemIn{
    background: url("../images/shared/icon-exam.svg") 1.8rem center no-repeat;
    background-size: 2.6rem auto;
    padding-left: 5.3rem;
   }
}

@media (min-width: 768px) and (max-width: 860px) {
  .nav-global__itemIn{
    padding: 1rem 1.7rem;
   }
  .nav-global__item.-document .nav-global__itemIn{
    background: url("../images/shared/icon-document.svg") 1.5rem center no-repeat;
    background-size: 2rem auto;
    padding-left: 4.1rem;
   }
  .nav-global__item.-examination .nav-global__itemIn{
    background: url("../images/shared/icon-exam.svg") 1rem center no-repeat;
    background-size: 2.7rem auto;
    padding-left: 4.3rem;
   }
}

/* SP */
@media screen and (max-width: 767px){
  .nav-sp{
    width: 100%;
    height: 15rem;
    background: linear-gradient(-50deg,#bd1c69 0%, #d23584 100%);
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    z-index: 100;
   }	
  .nav-sp__item.-special{
    width: 30rem;
   }	
  .nav-sp__item.-document,
  .nav-sp__item.-examination{
    width: 15rem;
   }	
  .nav-sp__itemIn{
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    display: block;
    border-right: 1px #d7659d solid;
   }	
  .nav-sp__item.-special .nav-sp__itemIn{
    font-size: 3.2rem;
    font-weight: 500;
    padding-top: 5rem;
   }	
  .nav-sp__item.-document .nav-sp__itemIn,
  .nav-sp__item.-examination .nav-sp__itemIn{
    font-size: 2rem;
    font-weight: bold;
    padding-top: 9.4rem;
    position: relative;
   }	
  .nav-sp__item.-document .nav-sp__itemIn:before{
    content: "";
    width: 3.6rem;
    height: 4.6rem;
    background: url("../images/shared/icon-document-white.svg") center center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    top: 3.2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
   }	
  .nav-sp__item.-examination .nav-sp__itemIn:before{
    content: "";
    width: 4.6rem;
    height: 4.6rem;
    background: url("../images/shared/icon-exam-white.svg") center center no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    top: 3.2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
   }	
}

/* ヘッダーナビ
--------------------------------------------------*/
.l-header__menus{
  background-color: #c01e6c;
  display: none;
  z-index: 100;
}
.nav-menu__item{
  width: calc( ( 100% / 3 ) - 2.8rem );
  border-bottom: 1px #e08fb6 dashed;
  display: flex;
  align-items: center;
}
.nav-menu__itemIn{
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: bold;
  line-height: 1.44;
  position: relative;
  display: block;
}
.nav-menu__itemIn:before{
  content: "";
  background-color: #e08fb6;
  border-radius: 50%;
  position: absolute;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-header__menus{
    padding: 1rem 10rem 5rem 10rem;
    position:absolute;
    top:10rem;
    left: 0;
    right:0;
  }
  .nav-menu{
    display: flex;
    flex-wrap: wrap;
    gap:0 4.2rem;
  }
  .nav-menu__item{
    width: calc( ( 100% / 3 ) - 2.8rem );
  }
  .nav-menu__itemIn{
    font-size: 1.8rem;
    padding: 3.5rem 0 1.6rem 2.5rem;
  }
  .nav-menu__itemIn:before{
    width: 0.5rem;
    height: 0.5rem;
    left: 0.8rem;
    top: 2.5em;
  }
}

@media (min-width: 768px) and (max-width: 905px) {
  .l-header__menus{
    padding: 1rem 5rem 5rem 5rem;
  }
  .nav-menu__item{
    width: calc( ( 100% / 2 ) - 2.1rem );
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .l-header__menus,
  .nav-globalWrapper{
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    height: calc( 100vh - 15rem );
    position: fixed;
    bottom: 15rem;
    left: 0;
    right: 0;
    padding: 5.5rem 3.5rem;
    z-index: 100;
  }
  .nav-globalWrapper{
    display: none;
    background-color: #d23584;
  }
  .nav-menu,
  .nav-global{
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 15rem);
    height: fit-content;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5rem 3.5rem 6rem 3.5rem;
  }
  .nav-menu__item,
  .nav-global__item{
    width: 100%;
  }
  .nav-menu__itemIn,
  .nav-global__itemIn{
    color: #fff;
    font-size: 3.2rem;
    padding: 5.3rem 0 2.5rem 3.5rem;
    display: block;
  }
  .nav-menu__itemIn:before,
  .nav-global__itemIn:before{
    width: 0.9rem;
    height: 0.9rem;
    left: 1.3rem;
    top: 2.2em;
  }
  .nav-global__item{
    border-bottom: 1px #e08fb6 dashed;
  }
  .nav-global__itemIn{
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: bold;
    line-height: 1.44;
    position: relative;
    display: block;
  }
  .nav-global__itemIn:before{
    content: "";
    background-color: #e08fb6;
    border-radius: 50%;
    position: absolute;
  }
}

/* ハンバーガー
--------------------------------------------------*/

.m-hamburger{
  cursor: pointer;
  z-index: 100;
}
.m-hamburger__lines{
  height: 31%;
  width:45%;
  margin: 18% auto 11% auto;
  position: relative;
}
.m-hamburger__lines>div{
  background-color: #fff;
  width:100%;
  height:8%;
  transition: transform .3s ease, opacity .3s ease;
  position: absolute;
  left:0;
  top:50%;
}
.m-hamburger__lines>div:first-child{
  transform: translateY(-600%);
}
.m-hamburger__lines>div:nth-child(2){
  width:77.78%;
}
.m-hamburger__lines>div:last-child{
  width:55.556%;
  transform: translateY(600%);
}
.menu-open .m-hamburger__lines>div:first-child{
  transform: rotate(225deg);
}
.menu-open .m-hamburger__lines>div:nth-child(2){
  transform: translateX(-50%);
  opacity: 0;
}
.menu-open .m-hamburger__lines>div:last-child{
  width: 100%;
  transform: rotate(-225deg);
}
.m-hamburger__text{
  height: auto;
  width:100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.m-hamburger__text:before{
  content: "MENU";
}
.menu-open .m-hamburger__text:before{
  content: "CLOSE";
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-hamburger{
    background: linear-gradient(-50deg,rgba(192, 30, 108, 1) 0%, rgba(210, 53, 132, 1) 100%);
    width: 10rem;
    height: 10rem;
    position: absolute;
    top: 0;
    right: 0;
  }
  .m-hamburger__text{
    font-size: 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .m-hamburger{
    width: 15rem;
    height: 15rem;
    position: fixed;
    bottom: 0;
    right: 0;
  }  
  .m-hamburger__lines{
    height: 31%;
    width:50%;
    margin: 20% auto 13% auto;
  }
  .m-hamburger__lines>div{
    height:8%;
  }
  .m-hamburger__lines>div:first-child{
    transform: translateY(-600%);
  }
  .m-hamburger__lines>div:nth-child(2){
    width:86.66%;
  }
  .m-hamburger__lines>div:last-child{
    width:73.33%;
    transform: translateY(600%);
  }  
  .m-hamburger__text{
    font-size: 2rem;
  }
}

/*==================================================

フッター

==================================================*/

/* フッター1
--------------------------------------------------*/
footer{
  position: relative;
  z-index: 5;
}
.l-footer__logo img{
  width: 100%;
}
.l-footer01{
  background-color: #363581;
}
.l-footer__address{
  color: #fff;
  font-weight: 500;
}
.nav-footer01__itemIn{
  position: relative;
  color: #fff;
  font-weight: 500;
  display: block;
}
.nav-footer01__itemIn:before {
  background-color: #7372a7;
  content: "";
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  display: block;
  position: absolute;
  left: 0;
}
.l-footer__address a{
  color: #fff;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer01{
    padding: 2.5rem 2rem;
  }
  .l-footer01__inner,
  .l-footer02__inner{
    max-width: 108rem;
    margin: 0 auto;
  }
  .l-footer01__inner{
    display: flex;
    justify-content: space-between;
  }
  .l-footer__logoAddress{
    width: 56%;
    display: flex;
    justify-content: space-between;
    margin-top: 1.7rem;
  }
  .l-footer__address a{
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }
  .l-footer__logo{
    width: 20rem;
    margin-bottom: 1.5rem;
  }
  .l-footer__address{
    width: calc( 100% - 23rem );
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .nav-footer01{
    width: 42%;  
  }
  .nav-footer01__itemIn{
    font-size: 1.6rem;
    padding: 0.8rem 0 0.8rem 2rem;
  }
  .nav-footer01__itemIn:before {
    width: 0.9rem;
    height: 1rem;
    top: 0.85em;
  }
}

@media (min-width: 768px) and (max-width: 1055px) {
  .l-footer__logoAddress{
    width: 32.5rem;  
    display: block;
  }
  .l-footer__address{
    width: 100%;
  }
  .nav-footer01{
    width: calc( 100% - 34rem );  
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer01{
    padding: 7rem 3.5rem 6rem 3.5rem;
  }
  .l-footer__logoAddress{
    margin-bottom: 4.5rem;
  }
  .l-footer__logo{
    width: 36rem;
    margin: 0 auto 4rem auto;
  }
  .l-footer__address{
    text-align: center;
    font-size: 2.6rem;
    line-height: 1.9;
  }
  .nav-footer01__itemIn{
    font-size: 2.5rem;
    padding: 1.5rem 0 1.5rem 2.5rem;
  }
  .nav-footer01__itemIn:before {
    width: 1.6rem;
    height: 1.6rem;
    top: 0.95em;
  }
}

/* フッター2
--------------------------------------------------*/
.l-footer02{
  background-color: #1d50a2;
}
.nav-footer02{
  display: flex;
  flex-wrap: wrap;
}
.nav-footer02__itemIn{
  position: relative;
  color: #fff;
  font-weight: 500;
  display: block;
}
.nav-footer02__itemIn:before {
  background-color: #6185be;
  content: "";
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  display: block;
  position: absolute;
  left: 0;
  margin: auto;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .l-footer02{
    padding: 1.2rem 1rem;
  }
  .nav-footer02{
    justify-content: center;
  }
  .nav-footer02__itemIn{
    font-size: 1.4rem;
    padding: 0.3rem 2.6rem 0.3rem 1.5rem;
  }
  .nav-footer02__itemIn:before {
    width: 0.9rem;
    height: 1rem;
    top: 0.5em;
  } 
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer02{
    padding: 3rem 3.5rem;
  }
  .nav-footer02__item{
    width: 50%;
  }
  .nav-footer02__itemIn{
    font-size: 2.5rem;
    line-height: 1.6;
    padding: 1.5rem 0 1.5rem 3.2rem;
  }
  .nav-footer02__itemIn:before {
    width: 1.6rem;
    height: 1.6rem;
    top: 0.9em;
  } 
}
/* フッター3
--------------------------------------------------*/
.l-footer03{
  background-color: #fff;
  text-align: center;
  color: #595959;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer03{
    font-size: 1.4rem;
    padding: 2.5rem 3rem 1.8rem 3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-footer03{
    font-size: 2.4rem;
    padding: 3rem 3rem 4rem 3rem;
    margin-bottom: 15rem;
  }
}

/* ページトップ
--------------------------------------------------*/
.l-footer__pagetop {
  background: #fff;
  position: fixed;
  z-index: 98;
  cursor: pointer;
  border-radius: 50%;
  border: 1px #a6a6a6 solid;
}
.l-footer__pagetop:before {
  background-color: #a6a6a6;
  content: "";
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-90deg);
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .l-footer__pagetop {
    width: 6rem;
    height: 6rem;
    bottom: 3rem;
    right: 3.3rem;
    transition: background-color .3s ease;
  }
  .l-footer__pagetop:before {
    width: 1.5rem;
    height: 1.8rem;
    top: -0.5rem;
    transition: background-color .3s ease;
  }
  .l-footer__pagetop:hover {
    background: #a6a6a6;
  }
  .l-footer__pagetop:hover:before {
    background-color: #fff;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .l-footer__pagetop {
    width: 8rem;
    height: 8rem;
    bottom: 25.5rem;
    right: 2rem;
  }
  .l-footer__pagetop:before {
    width: 2.2rem;
    height: 2.5rem;
    top: -0.5rem;
  }
}

/* レイアウト
--------------------------------------------------*/
.l-content{
  box-shadow: 0 0 2rem rgba(0,0,0,0.05);
  position: relative;
  z-index: 5;
}

/* PC */
@media print,only screen and (min-width: 768px){	
	.l-content{
    background-color: rgba(255,255,255,0.9);
		max-width: 50rem;  
    box-sizing: border-box;
    padding-bottom: 13rem;
		margin: 0 auto;
	}
}

/* SP */
@media screen and (max-width: 767px){
	.l-content{
    background-color: rgba(255,255,255,0.8);
    padding-bottom: 18rem;
    margin: 0 3.5rem;
	}
}

/*==================================================

トップページ

==================================================*/
/* 背景スライド
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){ 
  .m-bgSlide{
    width: 100%;
    height: calc( 100vh - 10rem );
    position: fixed!important;
    top: 10rem;
    left: 0;
    right: 0;
  }
  .m-bgSlide__item{
    width: 100%;
    height: calc( 100vh - 10rem )!important;
    position: absolute;
    inset:0;
  }
  .m-bgSlide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* SP */
@media screen and (max-width: 767px){	
}

/* メイン
--------------------------------------------------*/
.home-main{
  width: 100%;
  position: relative;
  color: #fff;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 0 2rem rgba(0,0,0,0.05);
}
.home-main__light{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: rotateClockwise 20s linear infinite;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home-main__text01{
  letter-spacing: .22em;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-main{
    background-color: rgba(202,35,116,0.8);
		max-width: 50rem;  
    box-sizing: border-box;
		margin: 10rem auto 0 auto;
    padding: 20rem 3rem 9.7rem 3rem;
  }
  .home-main__light{
    width: 39rem;
    top: 6rem;
  }
  .home-main__text01{
    font-size: 4rem;
    margin-bottom: 8rem;
  }
  .home-main__text02{
    font-size: 1.8rem;
    line-height: 2.22;
  }
  .l-text{
    width: 1.6rem;
    position: fixed;
    top: 14rem;
    left: calc( 50vw + 26.2rem );
  }
  .l-text img{
    width: 100%;
  }
  .m-section{
    position: relative;
  }
  .m-section:after{
    content: "";
    width: 1.6rem;
    height: 22.9rem;
    background: url("../images/shared/text.png") center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 4rem;
    right: -3.5rem;
    display: block;
  }
}

/* SP */
@media screen and (max-width: 767px){	
  .home-main{
    width: 100%;
    background-color: #fff;
  }
  .home-main__inner{
  }
  .home-main__content{
    background: url("../images/home/main-bg-sp.jpg") center center no-repeat;
    background-size: cover;
    padding: 12.4rem 3.5rem 6rem 3.5rem;
    position: relative;
  }
  .home-main__content:before{
    background-color: rgba(202,35,116,0.8);
    content: "";
    inset:0;
    position: absolute;
    display: block;
  }
  .home-main__contentIn{
    position: relative;
    z-index: 5;
  }
  .home-main__light{
    width: 45.5rem;
    top: -3rem;
  }
  .home-main__text01{
    font-size: 5rem;
    line-height: 1.4;
    margin-bottom: 6rem;
  }
  .home-main__text02{
    font-size: 2.6rem;
    line-height: 1.92;
  }
  .home-main__slide{
    position: relative;
    z-index: 10;
  }
  .home-main__slideItem{
    width: 43.4rem;
  }
}

/* コース
--------------------------------------------------*/
.home-course__intro{
  font-weight: 500;
  text-align: center;
  border-bottom: 1px #e5e5e5 solid;
}
.home-course img,
.home-title img{
  width: 100%;
}
.home-course__slideWrapper{
  position: relative;
}
.home-course__slide{
  border-bottom: 1px #e5e5e5 solid;
}
.home-course__image{
  overflow: hidden;
  margin: 0 auto;
}
.home-course__text{
  line-height: 1.888;
  text-align: center;
}
.home-title{
  text-align: center;
}
.home-title__english{
  display: block;
}
.home-title__japanese{
  font-weight: bold;
  display: block;
}
.home-course__course{
  margin: 0 auto;
  position: relative;
}
.-music .home-course__course{
  background-color: #f5f1ef;
}
.-media .home-course__course{
  background-color: #e9f5ef;
}
.-performance .home-course__course{
  background-color: #e6edf2;
}
.home-course__title{
  position: absolute;
}
.home-course__list{
  width: fit-content;
  margin: 0 auto;
}
.home-course__listItem{
  font-weight: 500;
  position: relative;
}
.home-course__listItem:before{
  content:"";
  position: absolute;
  left: 0;
  border-radius: 50%;
}
.-music .home-course__listItem:before{
  background-color: #ae4e25;
}
.-media .home-course__listItem:before{
  background-color: #579278;
}
.-performance .home-course__listItem:before{
  background-color: #617c90;
}
.home-course__button{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.home-course__buttonItemIn{
  width: 100%;
  border-radius: 10rem;
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.home-course__buttonItem:first-child .home-course__buttonItemIn{
  background: url("../images/shared/arrow-down.svg") right 1.6rem center no-repeat;
  background-size: 1.7rem auto;
}
.home-course__buttonItem:nth-child(2) .home-course__buttonItemIn{
  background: url("../images/shared/arrow-next.svg") right 1.6rem center no-repeat;
  background-size: 1.8rem auto;
}
.home-course__buttonItemIn:hover{
  text-decoration: none;
}
.-music .home-course__buttonItem:first-child .home-course__buttonItemIn{
  background-color: #ae4e25;
}
.-music .home-course__buttonItem:nth-child(2) .home-course__buttonItemIn{
  background-color: #ae7225;
}
.-music .home-course__buttonItem:first-child .home-course__buttonItemIn:hover{
  background-color: #973e18;
}
.-music .home-course__buttonItem:nth-child(2) .home-course__buttonItemIn:hover{
  background-color: #975f15;
}
.-media .home-course__buttonItem:first-child .home-course__buttonItemIn{
  background-color: #579278;
}
.-media .home-course__buttonItem:nth-child(2) .home-course__buttonItemIn{
  background-color: #60b48f;
}
.-media .home-course__buttonItem:first-child .home-course__buttonItemIn:hover{
  background-color: #418466;
}
.-media .home-course__buttonItem:nth-child(2) .home-course__buttonItemIn:hover{
  background-color: #4a9f7a;
}
.-performance .home-course__buttonItem:first-child .home-course__buttonItemIn{
  background-color: #617c90;
}
.-performance .home-course__buttonItem:nth-child(2) .home-course__buttonItemIn{
  background-color: #6e9bbc;
}
.-performance .home-course__buttonItem:first-child .home-course__buttonItemIn:hover{
  background-color: #436986;
}
.-performance .home-course__buttonItem:nth-child(2) .home-course__buttonItemIn:hover{
  background-color: #5284a8;
}
.home-course__arrow.-prev{
  background-image: url("../images/shared/arrow-prev.svg");
  left: 0;
  border-radius:0 0.8rem 0.8rem 0; 
}
.home-course__arrow.-next{
  background-image: url("../images/shared/arrow-next.svg");
  right: 0;
  border-radius: 0.8rem 0 0 0.8rem;
}
.home-course__arrow{
  background-repeat: no-repeat;
  background-color: #436986;
  position: absolute;
  color: #fff;
  font-weight: bold;
  writing-mode: vertical-rl;
  cursor: pointer;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color .3s ease;
}
.home-course__arrowText{
  opacity: 1;
}
.home-course__arrow.-performance{
  background-color: #617c90;
}
.home-course__arrow.-media{
  background-color: #579278;
}
.home-course__arrow.-music{
  background-color: #ae4e25;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .home-course__intro{
    font-size: 1.8rem;
    line-height: 2.22;
    padding: 5rem 3rem;
  }
  .home-course__slide{
    padding: 3.5rem 0 10rem 0;
  }
  .home-course__slideItem{
    width: 36rem;
  }
  .home-course__image{
    width: 36rem;
    border-radius: 1.3rem;
  }
  .home-course__text{
    font-size: 1.8rem;
    line-height: 1.888;
    margin: 3rem 0 3rem 0;
  }
  .home-title{
    margin-bottom: 3rem;
  }
  .home-title__english{
    margin: 0 auto 2.2rem auto;
  }
  .-music .home-title__english{
    width: 11.6rem;
  }
  .-media .home-title__english{
    width: 22.45rem;
  }
  .-performance .home-title__english{
    width: 24.65rem;
  }
  .home-title__japanese{
    font-size: 4rem;
  }
  .home-course__course{
    width: 36rem;
    padding: 1.8rem;
    border-radius:1.2rem; 
    margin-bottom: 3rem;
  }
  .home-course__title{
    width: 11.6rem;
    top: 1.75rem;
    left: -4.25rem;
  }
  .home-course__listItem{
    font-size: 1.6rem;
    line-height: 1.87;
    padding-left: 1.6rem;
  }
  .home-course__listItem:before{
    width: 0.7rem;
    height: 0.7rem;
    top: 0.7em;
  }
  .home-course__button{
    width: 36rem;
  }
  .home-course__buttonItem{
    width: calc( 50% - 0.9rem );
  }
  .home-course__buttonItemIn{
    border-radius: 10rem;
    font-size: 1.6rem;
    padding: 1.2rem 3.5rem;
    transition: background-color .3s ease;
  }
  .home-course__buttonItemIn:hover{
    text-decoration: none;
  }
  .home-course__arrow{
    width: 6rem;
    height: 27rem;
    top: 28rem;
    font-size: 1.8rem;
    transition: background-color .3s ease;
    background-position: center top 2.2rem;
    background-size: 1.6rem auto;
  }
  .home-course__arrow.-performance:hover{
    background-color: #436986;
  }
  .home-course__arrow.-media:hover{
    background-color: #418466;
  }
  .home-course__arrow.-music:hover{
    background-color: #973e18;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-course__intro{
    font-size: 2.8rem;
    line-height: 2.14;
    padding: 7rem 3rem;
  }
  .home-course__slide{
    padding: 6rem 0 12rem 0;
  }
  .home-course__slideItem{
    width: 50rem;
  }
  .home-course__image{
    width: 50rem;
    border-radius: 1.3rem;
  }
  .home-course__text{
    font-size: 2.8rem;
    line-height: 1.678;
    margin: 5rem 0 5rem 0;
  }
  .home-title{
    margin-bottom: 4.8rem;
  }
  .home-title__english{
    margin: 0 auto 2rem auto;
  }
  .-music .home-title__english{
    width: 16rem;
  }
  .-media .home-title__english{
    width: 30.98rem;
  }
  .-performance .home-title__english{
    width: 30.12rem;
  }
  .home-title__japanese{
    font-size: 5rem;
  }
  .home-course__course{
    width: 50rem;
    padding: 2.5rem;
    border-radius:1.2rem; 
    margin-bottom: 5rem;
  }
  .home-course__title{
    width: 14.5rem;
    top: 2.3rem;
    left: -4.9rem;
  }
  .home-course__listItem{
    font-size: 2.6rem;
    line-height: 1.92;
    padding-left: 2.6rem;
  }
  .home-course__listItem:before{
    width: 1.1rem;
    height: 1.1rem;
    top: 0.8em;
  }
  .home-course__button{
    width: 50rem;
  }
  .home-course__buttonItem{
    width: calc( 50% - 1rem );
  }
  .home-course__buttonItem .home-course__buttonItemIn{
    background-size: 2.4rem auto!important;
    background-position: right 2.2rem center!important;
    border-radius: 10rem;
    font-size: 2.6rem;
    padding: 1.5rem 4rem 1.5rem 2rem;
  }
  .home-course__arrow{
    width: 9rem;
    height: 40rem;
    top: 42rem;
    font-size: 2.8rem;
    background-position: center top 3.4rem;
    background-size: 2.2rem auto;
  }
  .home-course__arrow.-prev{
    left: -3.5rem;
  }
  .home-course__arrow.-next{
    right: -3.5rem;
  }
}
	
/* コース詳細
--------------------------------------------------*/
.home-detail{
  border-bottom: 1px #e5e5e5 solid;
}
.home-detail__course{
  display: flex;
  flex-wrap: wrap;
}
.home-detail__courseItem{
  border-radius: 10rem;
  font-weight: bold;
  position: relative;
}
.home-detail__courseItem:before{
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
}
.-music .home-detail__courseItem{
  border: 1px #d3a794 solid;
  color: #ae4e25;
}
.-music .home-detail__courseItem:before{
  background-color: #e6bcaa;
}
.-media .home-detail__courseItem{
  border: 1px #a0c0b2 solid;
  color: #579278;
}
.-media .home-detail__courseItem:before{
  background-color: #9ed2bb;
}
.-performance .home-detail__courseItem{
  border: 1px #8ca9bf solid;
  color: #617c90;
}
.-performance .home-detail__courseItem:before{
  background-color: #b6c8d5;
}
.home-detail__text{
  font-weight: 500;
}
.home-detail__movie iframe{
  aspect-ratio: 55 / 31;
}
.-music .home-detail__title{
  background: url("../images/shared/title-bg-music.svg") center bottom no-repeat;
}
.-media .home-detail__title{
  background: url("../images/shared/title-bg-media.svg") center bottom no-repeat;
}
.-performance .home-detail__title{
  background: url("../images/shared/title-bg-performance.svg") center bottom no-repeat;
}
.home-detail__title{
  font-weight: bold;
  text-align: center;
}
.home-detail__feild{
  background-color: #fff;
  border-radius: 1rem;
}
.home-detail__list{
  height: 32.5rem;
  overflow-y: auto;
}
.home-detail__list::-webkit-scrollbar {
  width: 0.3rem;
}
.home-detail__list::-webkit-scrollbar-track {
  background: #e5e5e5;
}
.-music .home-detail__list::-webkit-scrollbar-thumb {
  background: #ae4e25;
}
.-media .home-detail__list::-webkit-scrollbar-thumb {
  background: #579278;
}
.-performance .home-detail__list::-webkit-scrollbar-thumb {
  background: #617c90;
}
.home-detail__listItem{
  position: relative;
  font-weight: 500;
}
.home-detail__listItem:before{
  content: "";
  position: absolute;
  left: 0;
  border-radius: 50%;
  display: block;
}
.-music .home-detail__listItem:before{
  background-color: #ae4e25;
}
.-media .home-detail__listItem:before{
  background-color: #579278;
}
.-performance .home-detail__listItem:before{
  background-color: #617c90;
}
.home-button__item:hover{
  text-decoration: none;
}
.home-button__item{
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  border-radius: 10rem;
  transition: background-color .3s ease;
}
.-music .home-button__item{
  background-color: #ae4e25;
}
.-media .home-button__item{
  background-color: #579278;
}
.-performance .home-button__item{
  background-color: #617c90;
}
.home-detail__slideItem{
  border-radius: 1rem;
  overflow: hidden;
}
.home-detail__slideItem img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){   
  .home-detail{
    padding: 5rem 3rem 10rem 3rem;
  }
  .home-detail__course{
    gap:1.5rem 2rem;
    margin-bottom: 4.2rem;
  }
  .home-detail__courseItem{
    width: calc( 50% - 1rem );
    font-size: 1.6rem;
    padding: 0.7rem 1rem 0.7rem 2.8rem;
  }
  .home-detail__courseItem:before{
    width: 0.7rem;
    height: 0.7rem;
    left: 1.4rem;
  }
  .home-detail__text{
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 4.2rem;
  }
  .home-detail__movie{
    margin-bottom: 4rem;
  }
  .home-detail__title{
    background-size: 35.6rem auto!important;
    font-size: 2rem;
    padding-bottom: 0.7rem;
    margin-bottom: 2.5rem;
  }
  .home-detail__feild{
    padding: 2.8rem 2.7rem 2.3rem 4rem;
    margin-bottom: 5rem;
  }
  .home-detail__list{
    height: 32.5rem;
    padding-right: 1rem;
  }
  .home-detail__listItem{
    padding-left: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.875;
  }
  .home-detail__listItem:before{
    width: 0.7rem;
    height: 0.7rem;
    top: 0.6em;
  }
  .home-button__item{
    background: url("../images/shared/arrow-next.svg") right 1.7rem center no-repeat;
    background-size: 1.6rem auto;
    font-size: 2rem;
    border-radius: 10rem;
    padding: 1.5rem 3.5rem;
    transition: background-color .3s ease;
  }
  .home-detail__slide{
    margin: 5rem -3rem 0 -3rem;
  }
  .home-detail__slideItem{
    margin: 0 1rem;
    overflow: hidden;
  }
  .-music .home-button__item:hover{
    background-color: #973e18;
  }

  .-media .home-button__item:hover{
    background-color: #418466;
  }

  .-performance .home-button__item:hover{
    background-color: #436986;
  }
}

/* SP */
@media screen and (max-width: 767px){ 
  .home-detail{
    padding: 6rem 3rem 12rem 3rem;
  }
  .home-detail__course{
    gap:2rem 2rem;
    margin-bottom: 4.8rem;
  }
  .home-detail__courseItem{
    width: calc( 50% - 1rem );
    font-size: 2.4rem;
    padding: 1.1rem 1rem 1.1rem 4.7rem;
  }
  .home-detail__courseItem:before{
    width: 1.1rem;
    height: 1.1rem;
    left: 2.2rem;
  }
  .home-detail__text{
    font-size: 2.6rem;
    line-height: 1.92;
    margin-bottom: 5.2rem;
  }
  .home-detail__movie{
    margin-bottom: 7rem;
  }
  .home-detail__title{
    background-size: 55rem auto!important;
    font-size: 3rem;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
  }
  .home-detail__feild{
    padding: 2rem 2rem 2rem 4rem;
    margin-bottom: 6rem;
  }
  .-music .home-detail__feild{
    background-color: rgba(174,78,37,0.05);
  }
  .-media .home-detail__feild{
    background-color: rgba(87,146,120,0.05);
  }
  .-performance .home-detail__feild{
    background-color: rgba(97,124,144,0.05);
  }
  .home-detail__list{
    height: 56rem;
    padding-right: 2rem;
  }
  .home-detail__listItem{
    padding-left: 2rem;
    font-size: 2.6rem;
    line-height: 1.923;
  }
  .home-detail__listItem:before{
    width: 1.1rem;
    height: 1.1rem;
    top: 0.8em;
  }
  .home-button__item{
    background: url("../images/shared/arrow-next.svg") right 3.2rem center no-repeat;
    background-size: 2.5rem auto;
    font-size: 3rem;
    border-radius: 10rem;
    padding: 2.5rem 6rem;
  }
  .home-detail__slide{
    margin: 6rem -3rem 0 -3rem;
  }
  .home-detail__slideItem{
    margin: 0 1.5rem;
    overflow: hidden;
  }
}
	
/* News
--------------------------------------------------*/
.home-news__title02{
  font-weight: bold;
  text-align: center;
}
.home-news__content.-performance{
  padding-bottom: 0;
}
.home-news__content.-art{
  border-top: 1px #ca2374 solid;
}
.home-news__content.-music{
  border-top: 1px #ae4e25 solid;
}
.home-news__content.-media{
  border-top: 1px #579278 solid;
}
.home-news__content.-performance{
  border-top: 1px #617c90 solid;
}
.home-news__listItem:last-child{
  margin-bottom: 0;
}
.home-news__listItemIn{
  background-color: #f2f2f2;
  border-radius: 1rem; 
  font-weight: 500; 
  display: block;
}
.home-news__listItemIn:hover{
  text-decoration: none;
}
.home-news__time{
  font-family: var(--font-en);
  position: relative;
  display: block;
}
.home-news__time:before{
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  display: block;
}
.-art .home-news__time:before{
  background-color: #ca2374;
}
.-music .home-news__time:before{
  background-color: #ae4e25;
}
.-media .home-news__time:before{
  background-color: #579278;
}
.-performance .home-news__time:before{
  background-color: #617c90;
}
.home-news__text{
  display: block;
  overflow: hidden;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-buttons .home-button:last-child{
  margin-bottom: 0;
}
.home-news__content.-art .home-button__item{
  background-color: #ca2374;
}
.home-news__content.-music .-list .home-button__item{
  background-color: #ae4e25;
}
.home-news__content.-music .-new .home-button__item{
  background-color: #ae7225;
}
.home-news__content.-media .-list .home-button__item{
  background-color: #579278;
}
.home-news__content.-media .-new .home-button__item{
  background-color: #60b48f;
}
.home-news__content.-performance .-list .home-button__item{
  background-color: #617c90;
}
.home-news__content.-performance .-new .home-button__item{
  background-color: #6e9bbc;
}
.home-news__content.-performance .-past .home-button__item{
  background: none;
  background-color: #22ac38;
  letter-spacing: 0;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
  .home-news{
    padding: 5rem 3rem 0 3rem;
  }
  .home-news__title01{
    width: 17rem;
    margin:0 auto 4.8rem auto;
  }
  .home-news__title02{
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  .home-news__content{
    padding: 2.5rem 0 6rem 0;
  }
  .home-news__list{
    margin-bottom: 3rem;
  }
  .home-news__listItem{
    margin-bottom: 1rem;
  }
  .home-news__listItemIn{
    border-radius: 1rem; 
    padding: 1.9rem 2.4rem;
    transition: color .3s ease;
  }
  .home-news__listItemIn:hover{
    text-decoration: none;
  }
  .home-news__listItemIn:hover .home-news__text{
    text-decoration: underline;
  }
  .-art .home-news__listItemIn:hover .home-news__text{
    color: #ca2374;
  }
  .-music .home-news__listItemIn:hover .home-news__text{
    color: #ae4e25;
  }
  .-media .home-news__listItemIn:hover .home-news__text{
    color: #579278;
  }
  .-performance .home-news__listItemIn:hover .home-news__text{
    color: #617c90;
  }
  .home-news__time{
    font-size: 1.6rem;
    padding-left: 1.7rem;
    margin-bottom: 0.3rem;
  }
  .home-news__time:before{
    width: 0.7rem;
    height: 0.7rem;
    top: 0.4em;
  }
  .home-news__text{
    font-size: 1.6rem;
  }
  .home-news .home-button__item{
    font-size: 1.8rem;
    padding: 1.65rem 3.5rem;
  }
  .home-buttons .home-button{
    margin-bottom: 2rem;
  }
  .home-news__content.-art .home-button__item:hover{
    background-color: #b51462;
  }
  .home-news__content.-music .-list .home-button__item:hover{
    background-color: #973e18;
  }
  .home-news__content.-music .-new .home-button__item:hover{
    background-color: #975f15;
  }
  .home-news__content.-media .-list .home-button__item:hover{
    background-color: #418466;
  }
  .home-news__content.-media .-new .home-button__item:hover{
    background-color: #4a9f7a;
  }
  .home-news__content.-performance .-list .home-button__item:hover{
    background-color: #436986;
  }
  .home-news__content.-performance .-new .home-button__item:hover{
    background-color: #5284a8;
  }
  .home-news__content.-performance .home-button.-past {
    margin-top: 6rem;
  }
  .home-news__content.-performance .-past .home-button__item{
    padding: 1.65rem 1.5rem;
  }
  .home-news__content.-performance .-past .home-button__item:hover{
    background-color: #189c2e;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-news{
    padding: 5rem 3rem 0 3rem;
  }
  .home-news__title01{
    width: 17rem;
    margin:0 auto 6rem auto;
  }
  .home-news__title02{
    font-size: 3.4rem;
    margin-bottom: 3rem;
  }
  .home-news__content{
    padding: 3.5rem 0 10rem 0;
  }
  .home-news__list{
    margin-bottom: 4rem;
  }
  .home-news__listItem{
    margin-bottom: 2rem;
  }
  .home-news__listItemIn{
    border-radius: 1rem; 
    padding: 2.5rem 3.4rem;
  }
  .home-news__time{
    font-size: 2.6rem;
    padding-left: 2.2rem;
    margin-bottom: 0.4rem;
  }
  .home-news__time:before{
    width: 1.1rem;
    height: 1.1rem;
    top: 0.45em;
  }
  .home-news__text{
    font-size: 2.6rem;
  }
  .home-news .home-button__item{
    font-size: 2.6rem;
    padding: 2.85rem 6rem;
  }
  .home-buttons .home-button{
    margin-bottom: 4rem;
  }
  .home-news__content.-performance .home-button.-past {
    margin-top: 10rem;
  }
  .home-news__content.-performance .-past .home-button__item{
    padding: 2.9rem 3rem;
  }
}

/* 
--------------------------------------------------*/
.home-n img{
  width: 100%;
}
.home-n{
	max-width: 100rem;
	padding: 0 3rem;	
	margin: 0 auto;	
  box-sizing: content-box;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){
}

/*==================================================

ページ名

==================================================*/

/* 
--------------------------------------------------*/
. img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}

/* 
--------------------------------------------------*/
. img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}

/* 
--------------------------------------------------*/
. img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}

/*==================================================

ページ名

==================================================*/

/* 
--------------------------------------------------*/
. img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}

/* 
--------------------------------------------------*/
. img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}

/* 
--------------------------------------------------*/
. img{
  width: 100%;
}

/* PC */
@media print,only screen and (min-width: 768px){ 
}

/* SP */
@media screen and (max-width: 767px){	
}
