/*

【CSS記述ルール】

① font-sizeはpxで指定してください
　（rem、%等の指定はしないようお願いいたします）

② xxxxxx はディレクトリ名に変更してください

③ 必ずディレクトリ名が付いたidセレクタを先頭に記述した後に、要素を記述してください
　（例：#oneday .inner、#oneday .page-title 等）

④ CSS内の画像指定パスは、CSSファイルから見た相対パスで指定してください
　（例：../images/ディレクトリ名/画像名.拡張子）

*/

/*------------------------------------------------------------
common
------------------------------------------------------------*/
body.fixed{
	overflow: hidden;
}
.session {
  font-family:"noto-sans-cjk-jp", 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

#session * {
  box-sizing: border-box;
}


#session a[href^="tel:"] {
  display: inline-block;
  transition: none;
}

#session a:hover {
  text-decoration: none;
}

#session a:focus-visible {
  outline: none;
}

#session img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#session .js-fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition-property: opacity, transform;
  transition-duration: 1s;
}

#session .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

#session .text {
  margin-bottom: 2em;
}

#session .text:last-of-type {
  margin-bottom: 0;
}

#session .pc-br {
  display: none;
}

#session .notes {
  display: inline-block;
  position: relative;
  margin-left: 1em;
}

#session .notes::before {
  content: '\0203B';
  display: block;
  position: absolute;
  top: 0;
  left: -1em;
}

#session .inner {
  width: calc(100% - 24px);
  margin: 0 auto;
}

#session .inline-block{
  display: inline-block;
}

#session .pc-top-container,
#session .pc-top-left,
#session .pc-top-right{
  display: none;
}

#session .container{
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}



#session .sp-follow{
  position: fixed;
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin: 0 auto;
	padding: 9px 0 18px;
  background: url("../images/session/forrrow_bg.png")no-repeat center center/cover;
  bottom: 0;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
	opacity: 1;
	transition: .3s;
}

#session .follow-txt{
	font-size: 9px;
	text-align: center;
}

#session .follow-txt span{
	display: flex;
	justify-content: center;
	align-items: baseline;
	font-size: 16px;
	font-weight: 600;
}


#session .follow-txt span::before{
	content: "";
	display: block;
	width: 26px;
	height: 20px;
	background: url("../images/session/forrow-line.png")no-repeat center center/cover;
}

#session .follow-txt span::after{
	content: "";
	display: block;
	width: 26px;
	height: 20px;
	background: url("../images/session/forrow-line.png")no-repeat center center/cover;
}


#session .link-btn {
    position: relative;
    display: block;
    width: 61.5%;
    margin: 4px auto 0;
    padding: 15px;
    border-radius: 50px;
    background: #fff;
    text-align: center;
    color: #D5000C;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 1px 3px #B5000A;
}

#session .link-btn::after {
	content: "";
	display: block;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: url("../images/session/forrow-entry-arrow.png")no-repeat center center/cover;

}


#session .sp-follow::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(30vw, 104px);
    height: min(35vw, 126px);
    background: url(../images/session/forrow-man.png) no-repeat bottom left / cover;
    z-index: 3;
}




@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
  .session {
    font-size: 16px;
  }
  
  #session a[href^="tel:"] {
    color: inherit;
    pointer-events: none;
  }
  
	#session .inner {
    width: calc(100% - 28px);
    margin: 0 auto;
}
 
  
  #session .sp-br {
    display: none;
  }
  
  #session .pc-br {
    display: inline;
  }
  
  #session .sp-follow{
display: none;
  }

  #session .pc-top-container{
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    background: #ddc;
  }
  
  #session .pc-top-left{
    position: fixed;
    display: block;
    width: calc((100% - 375px) / 2);
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #cee;
  }
  
  #session .pc-top-right{
    position: fixed;
    display: block;
    width: calc((100% - 375px) / 2);
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background: #ece;
  }
  
  #session .container{
    position: absolute;
    width: 375px;
    left: calc((100% - 375px) / 2);
    z-index: 999999;
  }
}

/*------------------------------------------------------------
content
------------------------------------------------------------*/

#session .movie-container{
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000000b3;
	z-index: -99999999;
	transform: scale(0);
	transition: .3s;
}

#session .movie-container.show{
	background: #000000b3;
	z-index: 99999999;
	transform: scale(1);
}

#session .movie-container .inner{
	width: calc(100% - 24px);
	max-width: 1200px;
	margin: 0 auto;
}

#session .close-btn{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

#session .header-wrapper {
    height: 32px;
    padding: 4px 0 3px;
    text-align: center;
}

#session .header-wrapper img{
	width: 150px	
}

#session .top {
	position: relative;
    height: calc(100vw / 375* 564);
    padding: 50px 0 0;
    background: #FCF7F3 url(../images/session/mv_sp.png) no-repeat top center / auto 100%;
    color: #fff;
}

#session .top .inner,
#session .top-msg.inner,
#session .flow-content-wrap,
#session .contact-btn{
	width: calc(100% - 74px);
	
}

#session .top .h02 {
    font-family: "senobi-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #FFFFFF;
    font-size: 40px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -11px;
}

#session .top .h02 .ptt01 {
    font-size: 60px;
    letter-spacing: -10px;
    background-image: radial-gradient(circle at center, #fff 13%, transparent 13%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 0.8em 0.3em;
    padding-top: 0.25em;
}

#session .top .h02 .ptt02 {
    font-size: 36px;
	    letter-spacing: -5px;
}


#session .top-feature-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
    color: #D5000C;
    font-family: "senobi-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
}

#session .feature-itm {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 84px;
    background: url(../images/session/mv_cp_02.png) no-repeat center center / cover;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -3px;
    font-weight: 600;
    font-size: 16px;
}

#session .fi02, #session .fi03 {
    font-size: 16px;
    line-height: 1.1;
	
}



#session .fi02{
	margin: 0 6px 0;
}

#session .fi02, #session .fi03 {
    padding: 3px 0 0;
    line-height: 1.1;
    font-size: 14px;
}

#session .top .txt {
    margin: 30px auto 0;
    font-size: 18px;
}

#session .online-introduction-wrap{
	display: none
}


#session .top-msg {
    margin-top: -20px;
    background: #FCF7F3;
}

#session .top-msg .inner {
    font-weight: 500;
    width: calc(100% - 74px);
    line-height: 1.2;
    letter-spacing: 1.4px;
}


#session .top-msg::before {
    content: "";
    display: block;
    position: relative;
    width: 62px;
    height: 74px;
    background: url(../images/session/kameko01.png) no-repeat center center / cover;
    margin: 0 auto 12px;
}

#session .top-msg .note {
    display: block;
    margin-top: 1em;
    font-size: 12px;
    line-height: 1.4;
}

#session .top-msg .note{
	display: block;
	margin-top: 1em;
	font-size: 12px;
}

#session .flow-container {
    padding: 40px 0 6px;
	background: #FCF7F3;
}


#session .content-container .h02{
font-family: "montserrat", sans-serif;
font-weight: 600;
	font-size: 50px;
    color: #D5000C;
	text-align: center;
	line-height: 1.2;
}

#session .content-container .h02-ja {
    display: block;
    font-family: "noto-sans-cjk-jp", 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    letter-spacing: 1px;
}

#session .movie-img{
	margin: 16px auto 0;
}

#session .band {
    padding: 14px 0;
    text-align: center;
    color: #fff;
		background: url(../images/session/band-bg_sp.png) no-repeat center center / 100% auto;
	font-size: 18px;
    letter-spacing: 0.5px;
}

#session .flow-container .band{
margin-top: 36px;
}


#session .flow-content-wrap {
    width: 100%;
    padding: 24px 0 0;
    background: #fff;

}

#session .flow-content-wrap .inner {
    width: 100%;
    padding: 0 0 22px;
}

#session .flow-content-wrap .inner .txt {
    line-height: 1.4;
    padding: 0 26px;
	font-weight: 500;
}


#session .check-list01 {
    margin: 12px auto 0;
    padding: 0 26px;
    font-weight: 700;
}

#session .check-itm{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 8px 0;
	font-size: 13px;
	border-bottom: 1px solid #D1D1D1;
}

#session .check-itm img{
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

#session .flow-content-wrap .txt02{
	margin: 20px auto 0;
		padding: 0 26px;
	font-size: 12px;
	font-weight: 500;
}

#session .contact-btn {
    position: relative;
    display: block;
    width: 85.424%;
    text-align: center;
    color: #fff;
    background: #D5000C;
    margin: -20px auto 0;
    padding: 20px 0 17px;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 2px 4px #AA1B1B;
    letter-spacing: 1px;
}

#session .contact-btn {
    position: relative;
    display: block;
	width: 85.424%;
    text-align: center;
    color: #fff;
    background: #D5000C;
    margin: -20px auto 0;
    padding: 18px 0 16px;
    font-size: 15px;
    border-radius: 50px;
    box-shadow: 2px 4px #AA1B1B;
    letter-spacing: 1px;
}

#session .contact-btn::after {
    content: "";
    position: relative;
    top: 1px;
    right: -25px;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../images/session/white-arrow.png) no-repeat center center / cover;
	transition: .3s
}

#session .contact-btn:hover::after {
    content: "";
    position: relative;
    top: 1px;
    right: -35px;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../images/session/white-arrow.png) no-repeat center center / cover;
}


#session .business-container::before,
#session .business-container::after{
	content: "";
	display: block;
	width: 100vw;
	height: calc(100vw / 750 * 180);
}

#session .business-container::before{
	background: url("../images/session/bg_oblique_bottom.png")no-repeat center center/cover;
}

#session .business-container::after{
	background: url("../images/session/bg_oblique_top.png")no-repeat center center/cover;
}

#session .business-container .inner{
	position: relative;
	padding: 20px 0;
}




#session .business-list{
	position: relative;
	margin: 30px auto 0;
}

#session .business-item{
	padding: 12px 24px 50px;
	border: 2px solid #D5000C;
	border-top: 10px solid #D5000C;
}

#session .slick-prev, #session .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 22px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
	z-index: 2
}

#session .business-container .slick-prev, #session .business-container .slick-next {
	top: 25%;
}


#session .business-container .slick-prev{
	width:30px;
	height: 30px;
    left: 10px;

}

#session .business-container .slick-next{
	width:30px;
	height: 30px;
    right: 16px;

}

#session .slick-prev:before, #session .slick-next:before {
	display: block;
	width: 30px;
	height: 30px;
    font-family: 'slick';
    font-size: 30px;
    line-height: 1;
	opacity: 1;
    color: transparent;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#session .domitry-container .slick-prev,
#session .domitry-container .slick-next{
	top: 104px;
}

#session .training-img-list .slick-prev,
#session .training-img-list .slick-next{
	top: 128px;
}


#session .support-container .slick-prev{
	width: 30px;
	height: 30px;
    left: -10px;

}

#session .support-container .slick-next{
	width: 30px;
	height: 30px;
    right: -10px;

}


#session .slick-prev:before {
	background: url("../images/session/slide_arrow_left.png")no-repeat center center/95% 95%;
}

#session .slick-next:before {

	background: url("../images/session/slide_arrow_right.png")no-repeat center center/95% 95%;
}




#session .business-container .h03{
	font-size: 16px;
	font-weight: 500;
}


#session .business-container .h03 span{
	font-size: 20px;
font-family: "montserrat", sans-serif;
	font-weight: 600;
}

#session .business-img {
    margin: 14px auto 0;
}

#session .business-dl {
    margin-top: 1.3em;
    font-size: 12px;
    font-weight: 500;
}

#session .support-container{
	position: relative;
	padding: 20px 0 0;
	background: #FCF7F3;

}

#session .support-container::after{
	content:"";
	display: block;
	width: 100vw;
	height: calc(100vw / 750 * 180);
	background: #fff url("../images/session/bg_oblique_bottom.png")no-repeat center center/cover;

}
#session .tab-list {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

#session .tab-itm{
	width: 90px;
	padding: 10px;
		border-radius: 50px;
		background: #9C928A;
	box-shadow: 1px 3px #726962;
	text-align: center;
	cursor: pointer;
}
#session .tab-itm.active{
		background: #D5000C;
	box-shadow: 1px 3px #AA000A;
}

#session .ti02{
	margin: 0 16px;
}


#session .welfare-list {
    position: relative;
    margin: 0 auto;
    padding: 0 0 16px;
}


#session .welfare-itm {
    margin: 36px auto 0;
    position: absolute;
    opacity: 0;
    z-index: -999999;
}

#session .welfare-itm.show {
    position: relative;
    opacity: 1;
    z-index: 1;
}


#session .welfare-itm::before{
	content: "";
	position: absolute;
    top: -178px;
    right: 20px;
	display: block;
}

#session .wi01::before{
	width: 100px;
	height: 86px;
	background: url("../images/session/domitory-kameko.png")no-repeat center center/cover;	
}

#session .wi02::before{
	width: 68px;
	height: 82px;
	background: url("../images/session/training-kameko.png")no-repeat center center/cover;	
}

#session .wi03::before{
	width: 60px;
	height: 78px;
	background: url("../images/session/support-kameko.png")no-repeat center center/cover;	
}

#session .wi01 .h02{
	font-size: 44px;
}

#session .wi01 .h02,
#session .welfare-txt{
		width: calc(100% - 44px);
	margin: 0 auto;
}

#session .si04 .schedule span{
	font-size: 14px;
}

#session .welfare-txt {
    margin: 30px auto 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

#session .welfare-itm .check-list01 {
    margin: 20px auto 0;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 600;
}
#session .wi01 .check-itm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 56px;
    padding: 0 10px 0 20px;
    border-bottom: none;
    border-left: 5px solid #D5000C;
    background: #fff;
    line-height: 1.2;
    font-weight: 500;
}

#session .wi01 .check-itm .note {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

#session .wi01 .ci02 ,
#session .wi01 .ci03 ,
#session .wi01 .ci04 ,
#session .wi01 .ci05 {
	margin: 10px auto 0;
}

#session .wi01 .ci05 {
	height: 76px;
}

#session .ci01 span,
#session .support-conainer .note{
	font-size: 12px;
}

#session .domitory-img-list{
	position: relative;
	width: calc(100% - 24px);
	margin: 26px auto 0;
}

#session .domitory-img-list::after,
#session .training-img-list::after,
#session .support-img::after {
    content: "";
    position: absolute;
    bottom: -43px;
    left: 10px;
}

#session .domitory-img-list::after{
	width: 162px;
	height: 100px;
	background: url("../images/session/domitory-ilust.png")no-repeat center center/cover;
}

#session .training-img-list::after{
	width: 102px;
	height: 116px;
	background: url("../images/session/training-img.png")no-repeat center center/cover;
}

#session .support-img::after{
	width: 120px;
	height: 108px;
	background: url("../images/session/support_ilust.png")no-repeat center center/cover;
}
#session .example {
    position: relative;
    margin: 36px auto 0;
    border: 3px solid #D5000C;
    padding: 8px 0 11px;
    text-align: center;
    color: #D5000C;
    background: #fff;
    font-size: 20px;
    font-weight: 500;
}

#session .example::after {
    content: "";
    position: absolute;
    top: 40px;
    left: calc(50% - 20px);
    display: block;
    width: 24px;
    height: 24px;
    background: #fff;
    border-left: 3px solid #D5000C;
    border-bottom: 3px solid #D5000C;
    transform: rotate(-45deg);
}

#session .schedule-itm{
	margin: 25px auto 0;
}

#session .si01{
	margin: 40px auto 0;
}

#session .schedule {
    padding: 6px 0 5px;
    background: #D5000C;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 1px;
}


#session .schedule-dd-wrap {
	padding: 16px 24px 22px ;
    font-size: 12px;
    border: 2px solid #D5000C;
	font-weight: 500;
}
#session .schedule-dd.top-dd {
	display: flex;
	align-items: center;
}


#session .red-num {
    display: inline-block;
    font-family: "montserrat", sans-serif;
    font-size: 15px;
    color: #D5000C;
    font-weight: 700;
    width: 28px;
}


#session .si04 .check-txt01{
	margin: 8px auto 0;
}

#session .si04 .check-txt02{
	margin: 28px auto 0;
	font-size: 8px;
}

#session .check-graph{
	margin: 16px auto 0;
}

#session .check-graph {
    margin: 16px auto 0;
}

#session .excerpt{
	font-size: 8px;
}

#session .training-img-list {
    width: calc(100% - 24px);
    margin: 26px auto 0;
}

/*#session .training-img{
	width: calc(100% - 24px)!important;
}*/


#session .wi03 .check-list02{
	margin: 20px auto 0;
}

#session .wi03 .check-list02 .check-itm{
	height: 58px;
	margin-top: 10px;
	padding: 8px 24px;
	border: 2px solid #D5000C;
	color:#D5000C;
	font-size: 14px;
	background: #fff;
}

#session .wi03 .check-list02 .ci02{
	    line-height: 1.3;
}

#session .wi03 .check-list02 img{
	width: 22px;
	height: 18px;
}

#session .support-img{
	margin: 26px auto 0;
	}

#session .voice-container{
	padding: 20px 0 0;
}

#session .voice-list {
    margin: 30px auto 0;
    padding: 0 24px;
}


#session .voice-item{
	height: 370px;
	background: url("../images/session/voice_waku.png")no-repeat center center/100% 100%;
    padding: 30px 16px 0;
}

#session .voice-content{
	display: flex;
	justify-content: center;
	align-items: center;
}


#session .voice-content-inner{
    width: calc(100% - 102px);

}

#session .voice-icon {
    width: 86px;
    height: 86px;
    margin-right: 16px;
}

#session .statue{
	font-size: 10px;
}

#session .thoughts {
    padding: 4px 0 8px;
    border-bottom: 1px solid #000;
    line-height: 1.4;
	font-size: 15px;
}

#session .voice-txt {
    margin: 20px auto 0;
    padding: 0 12px;
    font-size: 12px;
    line-height: 1.4;
}


#session .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
}

#session .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #D5000C;
}

#session .slick-dots li button:before {
    font-family: 'slick';
    font-size: 10px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #2D2D2D;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


#session .orientation-container{
	padding: 20px 0 0;
}


#session .orientation-container .h02{
	font-size: 40px;
}

#session .orientation-list{
	margin: 30px auto 0;
}

#session .orientation-list .band{
	font-size: 18px;
}

#session .orientation-dd-wrap{
	font-size: 13px;
	padding: 20px 18px;
	font-weight: 500;
}

#session .orientation-dd{
	line-height: 1.9;
}

#session .ori-dl01 .ori-dd06 ,
#session .ori-dl04 .ori-dd01 ,
#session .ori-dl04 .ori-dd02 ,
#session .ori-dl04 .ori-dd03 ,
#session .ori-dl05 .ori-dd01 ,
#session .ori-dl05 .ori-dd02 ,
#session .ori-dl05 .ori-dd03 {
    margin-top: 18px;
    line-height: 1.4;
}

#session .ori-dl05 .ori-dd01 ,
#session .ori-dl04 .ori-dd01{
	margin-top: 0;
}


#session .online-txt02{
	font-size: 12px;
}

#session .ori-dl05 .ori-dd03{
	margin: 0 auto 20px;
	padding: 10px 16px;
	background: #FCF7F3;
	border: 2px solid #D5000C;
	border-radius: 10px;
	text-align: center;
}

#session .ori-dl05 .ori-dd03 .online-txt01{
	font-size: 19px;
	color: #D5000C;
}

#session .ori-dl05 .ori-dd03 .online-txt02{
	margin-top: 6px;
}

#session .ori-dl06 .ori-dd01 {
	    line-height: 1.4;
}

#session .entry-container{
	background: #FCF7F3;
		height: 100%;
}

#session .entry-container::before{
	content: "";
	display: block;
	width: 100vw;
	height: calc(100vw / 750 * 180);
	background:#fff url("../images/session/bg_oblique_top.png")no-repeat center center/cover;

}

#session .entry-txt {
    margin: 24px auto 0;
    text-align: center;
    font-weight: 500;
}



#session .footer-wrapper{
  background-color: #D6000C;
}

#session .footer-wrapper::before{
	content: "";
	display: block;
	width: 100vw;
	height: calc(100vw / 750 * 180);
  background: #D6000C url("../images/session/footer_bg.png")no-repeat center center/cover;
}

#session .footer-wrapper .inner{
	width: calc(100% - 74px);
	margin: 0 auto;
}

#session .link{
	font-size: 9px;
	color: #fff;
}

#session .link-list {
    width: max-content;
    margin: 0 0 0 auto;
}

#session .footer-copyright{
	padding: 22px 0 20px;
  color: #fff;
  font-size: 7px;
	text-align: center;
}

#session .external_link{
	width: 9px;
	margin-left: 5px;
}

@media print, screen and (min-width: 375px) {
	#session .top .h02 {
    font-size: 32px;
}
	
#session .top .h02 {
    font-size: 44px;
    letter-spacing: -12px;
    font-weight: 500;
}
	
#session .feature-itm {
    width: 95px;
    height: 91px;
    line-height: 1.2;
    letter-spacing: -2px;
    font-weight: 600;
}
	
#session .fi02, #session .fi03 {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -3px;
}
	
	#session .fi03 {
    padding-top: 8px;
    letter-spacing: -4px;
}
	
	
#session .voice-item {
    padding: 30px 24px 0;
}
	
	#session .ori-dl05 .ori-dd03{
	padding: 10px 16px;
}
	
	#session .orientation-dd-wrap{
	padding: 20px 22px;
}
	
		#session .wi01 .check-itm {
    font-size: 14px;
}
	
	
	#session .wi03 .check-list02 .check-itm{
	font-size: 15px;
		font-weight: 600;
}
	
	
}


@media print, screen and (min-width: 768px) {/* ---------- タブレット・PC以上 ---------- */
	
	#session .pc-top-left{
		padding: min(26vh, 350px) 0 0 ;
		background: url("../images/session/mv_bg.jpg")no-repeat top center/cover;
		font-family: "senobi-gothic", sans-serif;	
		color: #fff;
	}
#session .pc-top-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 250px;
    background: url(../images/session/mv_left.png) no-repeat top right /  auto 100%;
}

	
	#session .pc-top-right{
		background: url("../images/session/mv_bg.jpg")no-repeat top center/cover;
	}
	
#session .pc-top-right::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background: url(../images/session/mv_right.png) no-repeat left top /  auto 100%;
}
	
	#session .pc-top-right-txt{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);


	}
	
#session .pc-logo {
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 340px);
}
#session .pc-top-txt-wrap {
				display: none;
    position: relative;
    width: calc(100% - 24px);
	max-width: 510px;
    margin: 0 auto;
    z-index: 2;
}
	
	
#session .pc-top-txt01 {
    font-size: 60px;
    letter-spacing: -10px;
    text-align: center;
    line-height: 1.2;
}
	
#session .pc-top-txt01 {
    font-size: min(3.9vw, 75px);
    letter-spacing: -12px;
    text-align: center;
    line-height: 1.2;
	font-weight: 500;
}
#session .pc-top-txt01 .ptt01 {
    font-size: min(4.7vw, 90px);
    letter-spacing: -14px;
}
#session .pc-top-txt01 .ptt02{
    font-size: min(3.7vw,70px);
    letter-spacing: -14px;
}
#session .pc-top-txt02 {
    margin-left: 16px;
    font-size: min(2.3vw, 43px);
	letter-spacing: -8px;
    text-align: center;
}
	
	#session .session-method-list{
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		    margin-top: 2px;
	}
	
#session .session-method-list::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 12%;
    display: block;
    height: 48px;
    width: 30px;
    margin: -4px auto;
    background: url(../images/session/pc_mv_arw.png) no-repeat top center / auto;
}
	
#session .session-method-itm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: min(9.9vw, 190px);
    height: min(9.4vw, 180px);
    margin: 0 min(0.9vw, 14px);
    padding-right: 8px;
    font-size: min(1.6vw, 40px);
    line-height: 1.2;
    background: url(../images/session/pc_mv_maru.png) no-repeat top center / cover;
}
		
#session .smi01 {
    padding-top: 16px;
letter-spacing: -0.34em;
}
	
	#session .smi02{
		    letter-spacing: -4px;
	}
	
	#session .top-feature-list {
    margin: 12px auto 0;
}
	
	
#session .top .txt {
    margin: 14px auto 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}
	
#session .auxiliary {
    margin: 10px auto 0;
    text-align: center;
    font-size: min(2vw, 30px);
    letter-spacing: -4px;
}
	

	
#session .auxiliary::after {
    content: "";
    display: block;
    height: 8px;
    width: 80%;
    margin: -4px auto;
    background: url(../images/session/pc_mv_line.png) no-repeat top center / auto;
}


	
#session .pc-top-left .link-btn {
	position: relative;	
    font-family: "noto-sans-cjk-jp", 'Noto Sans JP', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック体, YuGothic, "Yu Gothic Medium", 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif;
    font-size: min(1.5vw, 28px);
    width: min(100%, 500px);
    margin: 26px auto 0;
    padding: min(2.3vw, 44px) 2.3vw min(2.3vw, 44px) 0;
    border-radius: 180px;
    box-shadow: 1px 8px #B5000A;
}
	
	#session .pc-top-left .link-btn::after {
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
		transition: .3s;
}
	#session .pc-top-left .link-btn:hover::after {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
		opacity: 1;
}

#session .session-method-itm span {
    display: block;
    letter-spacing: -2px;
    font-size: min(1.5vw, 28px);
}
	
	#session .header-wrapper{
		display: none;
	}
#session .top {
    height: unset;
    padding: 54px 0 68px;
    background: #FCF7F3 url(../images/session/mv_pc.png) no-repeat top center / 100%;
    color: #fff;
}
	
	#session .top-msg{
		margin-top: -30px;
		background: #FCF7F3;
	}
	
#session .top-msg .inner {
    width: calc(100% - 62px);
    line-height: 1.5;
}
	
	#session .top-msg .note {
    margin-top: 0.2em;
    font-size: 15px;
		    line-height: 1.5;

}
	
	#session .flow-container {
    padding: 20px 0 6px;
}
	
	#session .flow-content-wrap .inner .txt {
    padding: 0 20px;
}
	
	#session .check-itm {
    font-size: 14px;
}
	
	#session .flow-content-wrap .txt02 {
    margin: 20px auto 0;
    padding: 0 26px;
    font-size: 16px;
}
	
	
	#session .business-dl {
    font-size: 14px;
}
	
	#session .si04 .check-txt02 {
    font-size: 16px;
}

	
#session .online-introduction-wrap {
    display: block;
    margin: 26px auto 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    color: #000;
		font-weight: 700;
}
	
	#session .online-introduction-txt{
		font-size: 15px;
		color: #D5000C;
		text-align: center;
		border-bottom: 1px solid #000;
	}
	
	#session .introduction-list{
		margin: 10px auto 0;
	}
	
	#session .introduction-itm{
		display: flex;
		justify-content: flex-start;
		align-items: center;
		font-size: 12px;
	}
	
	#session .introduction-itm img{
		width: 12px;
		height: 12px;
		margin-right: 4px;
	}
	
	#session .business-container .slick-prev, #session .business-container .slick-next {
    top: 23%;
}
	
	#session .business-container::before ,	
	#session .business-container::after ,
	#session .support-container::after ,
	#session .entry-container::before ,
	#session .footer-wrapper::before {
		width: 375px;
    height: 90px;
}
	
	
#session .feature-itm {
    width: 95px;
    height: 91px;
    line-height: 1.2;
    letter-spacing: -0.21em;
	font-weight: 500;
    background: url(../images/session/pc_cp_wht.png) no-repeat top center / cover;
    color: #fff;
}
	
#session .fi02 {
    margin: 0 4px;
    line-height: 1.1;
    padding-bottom: 6px;
}
	
#session .fi02 {
    padding-top: 8px;
}
	
	#session .schedule-dd-wrap {
	padding: 16px 18px 26px ;
    font-size: 18px;
}
#session .si04 .schedule-dd-wrap {
    font-size: 16px;
    padding: 16px 20px 26px;
}
	#session .si04 .check-txt01 span {
    font-size: 14px;
}
	
	
	
	#session .voice-list {
    margin: 30px auto 0;
    padding: 0;
}
	
	#session .welfare-txt {
    margin: 26px auto 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

#session .schedule-dd {
    display: flex;	
    justify-content: flex-start;
    align-items: center;
}

#session .red-num {
    width: 38px;
    font-family: "montserrat", sans-serif;
    font-size: 26px;
    color: #D5000C;
    font-weight: 700;
    margin-right: 6px;
}
	#session .statue {
    font-size: 15px;
}
	
	#session .thoughts {
    padding: 4px 0 8px;
    border-bottom: 1px solid #000;
    line-height: 1.4;
    font-size: 18px;
}
	
	#session .remarks{
		font-size: 15px;
	}
	
	#session .remarks.occ {
    position: relative;
    top: -6px;
    font-size: 15px;
}
	
	#session .wi03 .check-list02 .check-itm {
    font-size: 20px;
    font-weight: 500;
}
	
	#session .wi03 .check-list02 .check-itm {
    height: 115px;
}
	
#session .voice-item {
    height: 440px;
	    padding: 30px 18px 0;
}
	
	#session .voice-txt {
    font-size: 15px;
}
	
	#session .orientation-dd-wrap {
    font-size: 15px;
}
	
	#session .ori-dl01 .ori-dd06, #session .ori-dl05 .ori-dd03 {
		font-size: 13px;
    margin-top: 18px;
    line-height: 1.4;
}
	
	#session .ori-dl05 .ori-dd02 span{
		font-size: 13px;
	}
	
	#session .ori-dl05 .ori-dd03 .online-txt02 {
    font-size: 14px;
}
	
	
#session .schedule-dd.top-dd {
    align-items: flex-start;
}
	#session .top-dd div{
    position: relative;
    top: 5px;
}
		
#session .excerpt {
    margin-top: 10px;
    font-size: 15px;
}
	
	#session .wi01 .check-itm {
    font-size: 14px;
}
	
	
}
	



	@media print, screen and (min-width: 1220px) {
		#session .pc-top-txt-wrap {
			display: block;
	}
#session .pc-top-left::before {
    width: 100%;
    height: calc(100% / 777* 454);

    background: url(../images/session/mv_left.png) no-repeat top right / 100%;
}
		
#session .pc-top-left::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(300px, 23vw, 432px);
    height: clamp(340px, 25vw, 480px);
    background: url(../images/session/man-pc.png) no-repeat bottom left / auto 100%;
}
		
		#session .pc-top-right::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    background: url(../images/session/mv_right.png) no-repeat left top /cover;
}
		
				
#session .smi01 {
    padding-top: 16px;
}
		
#session .smi02 {
    letter-spacing: -0.24em;
}
	}