@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #323232;
  line-height: 1.7;
  margin: 0 auto;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/
.kvArea {
	position: relative;
}
.kv {
	height: 470px;
	margin: 0;
}
.kvTitWrap {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -40%);
	text-align: center;
	z-index: 5;
}
.kvArea h1 {
	position: relative;
	margin: 30px 0 0;
	font-size: 3.4rem;
    text-align: start;
}
.kvArea h1 img{
    max-width: 520px;
    padding-left: 40px;
}
.kvArea .introTxt {
	margin-top: 10px;
    margin-left: 26px;
	padding: 20px 50px;
	color: #fff;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 85%, rgba(255,255,255,0) 100%);
    max-width: 520px;
}
.kv .slider-item {
	height: 470px;
}
.kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767.98px) {
    
	.kv, .kv .slider-item {
		height: 235px;
	}
    .kv{
        height: 0;
    }
	.kvTitWrap {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
		top: 0;
        left: 0;
		transform: translate(0);
        background-image:  url("../img/kv_bg_sp_img.webp"),url("../img/kv_bg_sp_abs.webp"),url("../img/kv_bg_sp_blu.webp");
        background-repeat: no-repeat,no-repeat,repeat-x;
        background-position:top right,top center,top left;
        background-size: 145px auto,100% auto,auto 100%;
        width: 100%;
        min-height: 235px;
	}
	.kvArea h1 {
    margin: 0;
		padding: 0;
		font-size: 1.5rem;
		font-weight: normal;
        text-align: center;
	}
    .kvArea h1 img{
        text-align: center;
        width: 80%;
        padding-top: 20px;
    padding-left: 0px;
        max-width: 400px;
}
	.kvArea .introTxt {
		margin-top: 5px;
		padding: 8px 5px;
		font-size: 1.2rem;
        margin-left: 5px;
	}
    .kvArea .introTxt br{
        display: none;
    }
    .sp_size{
        width: 80%;
       display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .sp_size{
        
    }
    .kv img{
        object-position: left top;
    }
}
@media screen and (max-width: 509px) {
    .sp_size{
        width: 65%;
    }
}
/*=====================*/


/*menuNav
=======================*/
.menuNav {
	background: #F4EFE6;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 2rem;
	text-align: center;
	background: #d5b47f;
	border-right: 2px solid #fff;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	display: block;
	width: 100%;
	padding: 20px;
  color: #fff;
}
.menuNav .navItem a span {
	position: relative;
}
.menuNav .navItem a span::after {
	position: absolute;
	content: '';
	top: 40%;
	right: -25px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 768px) {
	.menuNav .navItem {
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover {
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
        color: #52473a;
	}
    .menuNav .navItem a:hover span::after {
	border-right: 2px solid #52473a;
	border-bottom: 2px solid #52473a;
}
}

@media screen and (max-width:767.98px) {
	.menuNav .navItem {
		font-size: 1.5rem;
	}
	.menuNav .navItem a {
		padding: 20px 35px 20px 20px;
	}
    .menuNav .navItem:first-child a{
		padding: 10px 35px 10px 20px;
	}
	.menuNav .navItem a span::after {
		top: 30%;
    right: -20px;
		transform: translateY(-30%) rotate(45deg);
	}
}

@media screen and (max-width:359px) {
	.menuNav .navItem {
		font-size: 1.2rem;
	}
}
/*=====================*/


/*pointArea
=======================*/

/*-----pointArea_commonParts-----*/
.pointArea {
	/*margin-top: 90px;*/
	padding-top:90px;
	padding-bottom:90px;
    background-color: #fff;
}
.pointArea_inner {
	max-width: 1160px;
	margin: 0 auto;
}
.pointArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.pointArea h2 span {
	position: relative;
}
.pointArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.pointArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.pointArea .sub_info {
	position: relative;
  margin-left: 3.5em;
  margin-top: 15px;
  font-size: 1.6rem;
}
.pointArea .sub_info.dots::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  top: 14px;
  left: -43px;
  background: #04045b;
  transform: translateY(-50%);
  border-radius: 50%;
}
.pointArea .txt_note {
  font-size: 1.3rem;
  color: #7e7e7e;
}


@media screen and (max-width:767.98px) {
	.pointArea {
		margin-top: 55px;
        padding-top: 0;
	}
	.pointArea h2 {
		font-size: 2rem;
		overflow: hidden;
	}
	.pointArea h2 span::before,
	.pointArea h2 span::after {
		height: 1px;
		width: 100%;
	}
	.pointArea h2 span::before {
		left: -105%;
	}
	.pointArea h2 span::after {
		right: -105%;
	}
	.pointArea .sub_info {
		margin-left: 3.7em;
    font-size: 1.4rem;
  }
	.pointArea .sub_info.dots::after {
    top: 11px;
    left: -40px;
  }
	.pointArea .emphasisTxt {
		font-size: 1.8rem;
	}
}
/*-------------------------------*/


/*-------pointArea_3column-------*/
.pointBox01_wrap {
	display: flex;
	flex-wrap: wrap;
	margin-top: 35px;
	counter-reset: num;
}
.pointBox01 {
	width: 350px;
	margin-right: 55px;
}
.pointBox01:nth-of-type(3n) {
	margin-right: 0;
}
.pointBox01:nth-of-type(n+4) {
	margin-top: 60px;
}
.pointBox01 .pointBox_img {
  max-width: 350px;
  max-height: 210px;
  width: 100%;
  height: 100%;
	border-radius: 5px;
	overflow: hidden;
}
.pointBox01 .pointBox_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pointBox01_txt {
	position: relative;
	margin-top: 25px;
	padding: 0 30px;
	font-size: 1.8rem;
}
.pointBox01_txt::before {
	position: absolute;
	counter-increment: num;
	content: counter(num, decimal-leading-zero);
	top: -40px;
	right: 30px;
	color: #ebebeb;
	font-family: 'Roboto', sans-serif;
	font-size: 10rem;
	z-index: -1;
}

@media screen and (max-width:767.98px) {
	.pointBox01_wrap {
		display: block;
		padding: 0 10px;
	}
	.pointBox01 {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin-right: 0;
	}
	.pointBox01:nth-of-type(n+2) {
		margin-top: 33px;
	}
	.pointBox01 .pointBox_img {
		max-width: 210px;
		width: 42%;
		aspect-ratio: 1 / 1;
		border-radius: 12px;
	}
	.pointBox01_txt {
		width: 58%;
		margin-top: 0;
    padding: 0 10px 0 20px;
		font-size: 1.4rem;
	}
	.pointBox01_txt::before {
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		font-size: 11rem;
	}
}
@media screen and (max-width:767.98px) and (min-width:550px) {
	.pointBox01_txt::before {
		right: 10%;
		transform: translateY(-50%);
		font-size: 15rem;
	}
}
@media screen and (max-width:359px) {
	.pointBox01_txt::before {
		font-size: 9rem;
	}
}
/*-------------------------------*/

/*-----pointArea_flexReverse-----*/
.pointBox02_wrap {
	margin-top: 35px;
}
.pointBox02 {
	display: flex;
	align-items: center;
}
.pointBox02:nth-of-type(2n) {
	flex-direction: row-reverse;
}
.pointBox02:nth-of-type(n+2) {
	margin-top: 40px;
}
.pointBox02 .pointBox_img {
	max-width: 520px;
	max-height: 310px;
	width: 100%;
	aspect-ratio: 1.6774 / 1;
	border-radius: 10px;
	overflow: hidden;
}
.pointBox02:nth-of-type(2n) .pointBox_img {
	margin-left: 120px;
}
.pointBox02:nth-of-type(2n+1) .pointBox_img  {
	margin-right: 120px;
}
.pointBox02 .pointBox_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.pointBox02 .pointBox02_txtWrap {
	max-width: 560px;
}
.pointBox02 .pointBox02_txt {
	text-indent: -3em;
    margin-left: 3em;
    line-height: 2;
    font-size: 1.8rem;
}
.pointBox02 .pointBox02_txt.noLeader {
	text-indent: -3em;
	margin-left: 3em;
}
.pointBox02 .pointBox02_txt:nth-of-type(n+2) {
	margin-top: 40px;
}
.pointBox02 .pointBox02_txt span.num {
	position: relative;
	margin-right: 13px;
	padding: 8px 10px;
	font-size: 1.8rem;
	font-weight: bold;
	background: #04045b;
	border-radius: 50%;
    color: #fff;
}
.pointBox02 .pointBox02_txtWrap .emphasisTxt {
	color: #7e7e7e;
	font-weight: bold;
	font-size: 2.4rem;
}
.pointBox02 .pointBox02_txt span.num:not(.noLeader)::after {
	position: absolute;
	content: '・・・';
	top: 56%;
	right: -140px;
	transform: translateY(-50%);
	color: #04045b;
	font-size: 5rem;
	font-weight: bold;
	letter-spacing: -30px;
}
.pointBox02 .pointBox02_txt span.num.noLeader {
  margin-right: 13px;
}

@media screen and (max-width:767.98px) {
	.pointBox02_wrap {
		padding: 0 45px;
	}
	.pointBox02 {
		display: block;
	}
	.pointBox02:nth-of-type(n+2) {
		margin-top: 35px;
	}
	.pointBox02 .pointBox_img {
		display: inline-block;
		max-width: 100%;
		max-height: 100%;
		overflow: hidden;
	}
	.pointBox02:nth-of-type(2n) .pointBox_img {
		margin-left: 0;
	}
	.pointBox02:nth-of-type(2n+1) .pointBox_img {
		margin-right: 0;
	}
	.pointBox02 .pointBox_img img {
		opacity: 1;
	}
	.pointBox02 .pointBox02_txtWrap {
		margin-top: 25px;
	}
	.pointBox02 .pointBox02_txt {
		text-indent: -3.3em;
		margin-left: 3.3em;
		font-size: 1.4rem;
	}
	.pointBox02 .pointBox02_txt.noLeader {
		text-indent: -3.5em;
		margin-left: 3.5em;
	}
	.pointBox02 .pointBox02_txt:nth-of-type(n+2) {
		margin-top: 25px;
	}
	.pointBox02 .pointBox02_txt span.num {
		margin-right: 10px;
		font-size: 1.4rem;
	}
	.pointBox02 .pointBox02_txt span.num::after {
		display: none;
	}
	/*---iPhone only---*/
	.iPhone .pointBox02 .pointBox02_txt {
		text-indent: -3.5em;
		margin-left: 3.5em;
	}
	.iPhone .pointBox02 .pointBox02_txt.noLeader {
		text-indent: -3.8em;
		margin-left: 3.8em;
	}
	.iPhone .pointBox02 .pointBox02_txt span.num {
		padding: 12px 10px;
	}
	/*-----------------*/
}
/*-------------------------------*/

/*--------pointArea_noImg--------*/
.pointBox03_wrap {
	margin-top: 35px;
}
.pointBox03_wrap .pointBox03_txtWrap {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 145px;
	border-radius: 8px;
	box-shadow: 0 2px 5px 3px rgba(0, 0, 0, .1);
    background-color: #fff;
}
.pointBox03_wrap .pointBox03_txt {
  text-indent: -7.3em;
  margin-left: 7.3em;
	line-height: 2;
	font-size: 1.8rem;
}
.pointBox03_wrap .pointBox03_txt:nth-of-type(n+2) {
	margin-top: 40px;
}
.pointBox03_wrap .pointBox03_txt.noLeader {
	text-indent: -3em;
	margin-left: 3em;
}
.pointBox03_wrap .pointBox03_txt span.num {
	position: relative;
	margin-right: 90px;
	padding: 8px 10px;
	font-size: 1.8rem;
	font-weight: bold;
	background: #04045b;
	border-radius: 50%;
    color: #fff;
}
.pointBox03_wrap .pointBox03_txt span.num:not(.noLeader)::after {
	position: absolute;
	content: '・・・';
	top: 56%;
	right: -135px;
	transform: translateY(-50%);
	color: #04045b;
	font-size: 5rem;
	font-weight: bold;
	letter-spacing: -30px;
}
.pointBox03_wrap .pointBox03_txt span.num.noLeader {
  margin-right: 13px;
}

@media screen and (max-width:767.98px) {
	.pointBox03_wrap {
		padding: 0 10px;
	}
	.pointBox03_wrap .pointBox03_txtWrap {
		max-width: 100%;
		padding: 25px 20px;
	}
	.pointBox03_wrap .pointBox03_txt {
		text-indent: -7.5em;
		margin-left: 7.5em;
		font-size: 1.4rem;
		line-height: 1.8;
	}
	.pointBox03_wrap .pointBox03_txt:nth-of-type(n+2) {
		margin-top: 30px;
	}
	.pointBox03_wrap .pointBox03_txt.noLeader {
		text-indent: -3.7em;
		margin-left: 3.7em;
	}
	.pointBox03_wrap .pointBox03_txt span.num {
		margin-right: 66px;
		font-size: 1.4rem;
	}
	.pointBox03_wrap .pointBox03_txt span.num:not(.noLeader)::after {
		top: 58%;
		right: -100px;
		font-size: 4rem;
		letter-spacing: -23px;
	}
	.pointArea .pointBox03_wrap .sub_info {
    position: relative;
    margin-left: 3.7em;
    margin-top: 15px;
    font-size: 1.4rem;
	}
	.pointArea .pointBox03_wrap .sub_info.dots::after {
		top: 12px;
    left: -40px;
	}
	/*---iPhone only---*/
	.iPhone .pointBox03_wrap .pointBox03_txt span.num {
		padding: 12px 10px;
	}
	.iPhone .pointBox03_wrap .pointBox03_txt span.num::after {
		top: 52%;
		right: -118px;
	}
	/*-----------------*/
}
/*-------------------------------*/

/*=========ポイント下注釈============*/

.annotation {
  color: #666;
  font-size: 1.4rem;
  margin-top: 40px;
  padding: 0 45px;
}

/*--------ナンバリングあり---------*/
.annotation .an_num {
  position: relative;
  padding-left: 2.0em;
}
.annotation_mark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------ナンバリングなし---------*/
.annotation .an_nor {
  position: relative;
  padding-left: 1.8rem;
}
.annotation_mark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.annotation li + li {
  margin-top: 3px;
}
@media screen and (max-width:767.98px) {
  .annotation {
    color: #444;
    font-size: 1.1rem;
  }
}

/*=====================*/


/*courseArea
=======================*/
.courseArea {
	/*margin-top: 100px;*/
	padding-top: 35px;
	background: #F4EFE6;
}
.courseArea_inner {
	max-width: 1160px;
	margin: 0 auto;
}
.courseArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.courseArea h2 span {
	position: relative;
}
.courseArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.courseArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.course_note{
    font-size: 1.7rem;
    text-align: center;
    color: #cf0518;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1;
    margin-top: 10px;
    font-weight: 600;

}
.subnote{
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: center;
    color: #cf0518;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
    font-weight: 600;

}
.course_note .subnote {
    margin: 10px;
   display: block;
}
.course_note .date{
    text-align: center;
    color: #fff;
    padding: 3px 12px;
    font-size: 1.3rem;
    background: rgb(200 0 0 / 100%);
    border-radius: 30px;
}
@media screen and (max-width:767.98px) {
	.courseArea {
		margin-top: 50px;
	}
	.courseArea h2 {
		overflow: hidden;
	}
	.courseArea h2 span {
		font-size: 2rem;
	}
	.courseArea h2 span::before,
	.courseArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.courseArea h2 span::before {
		left: -370%;
	}
	.courseArea h2 span::after {
		right: -370%;
	}
    .course_note , .subnote{
    display: inline-block;
        margin: 10px 10px 0;
        line-height: 1.4;
}
  .subnote {
      font-size: 1.3rem;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;

  }
    .course_note span{
        display: inline-block;
    padding: 3px 12px;
    font-size: 1rem;
        margin-top: -2px;
}
  
}

/*---areaMenu---*/
.areaMenu {
	position: sticky;
	top: 0;
	margin-top: 30px;
	background: #d5b47f;
	box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
	z-index: 10;
}
.areaMenu ul {
	display: flex;
	max-width: 1160px;
	margin: 0 auto;
}
.areaMenu li {
	width: 100%;
	text-align: center;
}
.areaMenu li a {
	display: block;
	width: 100%;
	padding: 12px 0;
	color: #fff;
	font-size: 1.8rem;
}
.areaMenu li a:hover{
	color: #52473a;
}
.areaMenu li a span {
	position: relative;
	padding-left: 10px;
}
.areaMenu li a span::after {
	position: absolute;
	content: '';
	top: 45%;
	left: -8px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-45%) rotate(45deg);
}
.areaMenu li a:hover span::after{
	border-right: 2px solid #52473a;
	border-bottom: 2px solid #52473a;
}
@media (min-width: 768px) {
	.areaMenu li a {
		position: relative;
		overflow: hidden;
		transition: 0.2s ease all;
	}
	.areaMenu li a:hover {
		background: #fff;
		opacity: .8;
		transition: 0.2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.areaMenu ul {
		justify-content: center;
		flex-wrap: wrap;
		overflow: hidden;
	}
	.areaMenu li {
		justify-content: center;
		flex-wrap: wrap;
		width: auto;
	}
	.areaMenu li a {
		position: relative;
		padding: 10px 20px 10px 25px;
		font-size: 1.4rem;
	}
	.areaMenu li:first-of-type a::after {
		position: absolute;
		content: '';
		width: 1000%;
		height: 1px;
		bottom: 0;
		left: -100%;
		background: #a9a9a9;
	}
	.areaMenu li a span {
		padding-left: 0;
	}
	.areaMenu li a span::after {
		top: 35%;
    left: -15px;
    width: 8px;
    height: 8px;
		transform: translateY(-35%) rotate(45deg);
	}
}

/*---courseItemsBox---*/
.areaBlock {
	padding-bottom: 74px;
}
.areaBlock:first-of-type {
	margin-top: 52px;
}
.areaBlock h3 {
	margin: 0;
	padding: 10px 0;
	font-size: 2.4rem;
	text-align: center;
	background: #d5b47f;
    color: #fff;
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.courseItem {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
}
.courseItem:nth-of-type(3n) {
	margin-right: 0;
}
.courseItem:nth-of-type(n+4) {
	margin-top: 30px;
}
.courseItem a {
  display: block;
  border-radius: 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.course__card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.course__card__tagBox {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
}
.course__card__tagBox ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.course__card__tagBox ul li {
	/*margin: 0 10px 10px 0;*/
  margin-bottom: 10px;
	/*padding: 3px 12px 1px 10px;*/
  padding: 3px 12px;
	color: #fff;
	font-size: 1.3rem;
	background: rgb(200 0 0 / 75%);
	border-radius: 30px;
}
.course__card__tagBox ul li + li {
	margin-left: 10px;
}
.tabi_ic_pc {
  background: url("/med/feature/abroad/christmasmarket/img/logo/logo_tabimonogatari.webp") no-repeat!important;
  background-size: contain!important;
  width: 50px!important;
  height: 20px!important;
}
.look_ic_pc {
  background: url("/med/feature/abroad/christmasmarket/img/logo/logo_look.webp") no-repeat!important;
  background-size: contain!important;
  width: 50px!important;
  height: 20px!important;
}
 .course__card__tagBox ul .log_bg {
 background: #fff;
 }
.course__card__img__caption {
  position: absolute;
	right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
  text-align: right;
}
.course__card__body {
	padding: 18px 18px 15px;
	background: #fff;
}
.course__card__codeArea__box {
	display: flex;
}
.course__card__code {
	position: relative;
  display: inline-block;
	min-width: 90px;
  padding: 0 10px 0 15px;;
  border: 1px solid #ddd;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 20px;
}
.course__card__code::after {
	position: absolute;
	content: '';
	top: -1px;
	left: -1px;
	width: 6px;
	height: 22px;
	background: #c51f1f;
}
.course__card__codeArea__box .tabi_ic_sp, 
.course__card__codeArea__box .look_ic_sp {
  height: 22px;
}
.course__card__codeArea__box .tabi_ic_sp img, 
.course__card__codeArea__box .look_ic_sp img {
  height: 22px;
  width: auto;
  margin-left: 5px;
}
.course__card__area__label {
	display: inline-block;
  min-width: 90px;
	margin-left: 10px;
  padding: 1px 10px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 20px;
}
.course__card__title {
  margin-top: 8px;
	color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
	transition: all .3s;
}
.course__card__sub {
	margin-top: 5px;
}
.course__card__area {
  line-height: 1;
  text-align: right;
}
.course__card__unit {
  margin-top: 15px;
  font-size: 1.4rem;
	color: #707070;
	text-align: right;
}
.course__card__price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
	color: #cc0d21;
	text-align: right;
}
main [class*="course__card__head"] {
	padding-top: 52%;
	background-image: url(/med/app-files/img/tabimono_img.png);
  background-size: 60% auto;
  background-position: center;
  background-color: #C1C1C1;
  background-repeat: no-repeat;
  height: 0;
  position: relative;
  overflow: hidden;
}
main [class*="js_rweb2404_img_"] {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
}
main [class*="js_rweb2404_img_"]::after {
	top: 0;
}
main [class*="js_rweb2404_caption_"] {
	z-index: 2;
}
.noCourseTxt {
	margin: 0 auto;
	font-size: 1.6rem;
}

@media (min-width: 768px) {
	.courseItem a:hover .course__card__title {
		color: #cc0d21;
		text-decoration: underline;
		transition: all .3s;
	}
}
@media screen and (max-width:767.98px) {
	.areaBlock {
		padding-bottom: 47px;
	}
	.areaBlock h3 {
		padding: 8px 0;
		font-size: 1.7rem;
	}
	.courseItemsBox {
		display: block;
		margin-top: 24px;
		padding: 0 10px;
	}
	.courseItem {
		width: 100%;
		margin-right: 0;
	}
	.courseItem:nth-of-type(n+2) {
		margin-top: 15px;
	}
	.course__card {
		display: flex;
		background: #fff;
	}
	main [class*="course__card__head"] {
		padding-top: 0;
		padding-left: 34%;
	}
	main [class*="js_rweb2404_img_"]::after {
		background-size: cover;
	}
	main [class*="bgContain js_rweb2404_img_"]::after {
		background-size: contain!important;
	}
	.course__card__img__caption {
		right: 8px;
    bottom: 5px;
		font-size: 1rem;
	}
	.course__card__tagBox {
		position: static;
	}
	.course__card__tagBox ul {
		margin-top: 8px
	}
	.course__card__tagBox ul li {
		/*margin: 0 5px 5px 0;*/
    margin: 0 0 5px;
		padding: 2px 7px;
		font-size: 1rem;
	}
	.course__card__tagBox ul li + li {
		margin-left: 5px;
    background: rgb(200 0 0 / 100%);
	}
	.course__card__body {
		width: 100%;
		padding: 8px 10px;
	}
	.course__card__code {
		min-width: 70px;
		font-size: 1.2rem;
	}
	.course__card__area {
		text-align: left;
	}
	.course__card__area__label {
		min-width: 60px;
		font-size: 1rem;
	}
	.course__card__title {
		font-size: 1.5rem;
	}
	.course__card__unit {
		margin-top: 5px;
		font-size: 1.1rem;
	}
	.course__card__price {
		margin-top: 5px;
		font-size: 1.7rem;
	}
	.noCourseTxt {
		font-size: 1.3rem;
		text-align: center;
	}
}
[class$="-course__card__body"] {
  position: relative;
}
main .look_img {
  content: "";
  display: block;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-color: #C1C1C1;
  background-position: center
}
@media only screen and (min-width:768px) {
  main .look_img .course__card__img__caption {
    right: 3%;
  } 
}
@media screen and (max-width: 767.98px) {
  main .look_img {
    left: 0;
    width: 100%;
    background-position: center;
  }
  main .look_img .course__card__img__caption {
    bottom: 2%;
  } 
}

/*=====================*/

@media screen and (min-width:768px) {
  .tabi_ic_sp,
  .look_ic_sp {
    display: none;
  }
}
@media screen and (max-width:767.98px) {

  .course__card__tagBox ul li:first-of-type {
    display: none;
  }
}
/*=====================*/
/*=====================*/


/*selectdiv(pulldown)
=======================*/
.select_label {
  padding: 28px 0 0;
  font-weight: bold;
}
.form-control {
	background: #ffffff url("../images/pd_black.png") no-repeat 235px 23px / 22px 18px;
}
.selectdiv {
	position: relative;
	top: 0;
	max-width: 250px;
	width: 100%;
  margin: 35px auto;
	transition: .2s ease all;
}
select:focus {
	outline: 0;
	border: 1px solid #cc0d21;
}
select::-ms-expand {
  display: none;
}
.selectdiv::before {
  content: '';
  position: absolute;
  display: block;
  right: 60px;
  width: 1px;
  height: 32px;
  top: 50%;
	transform: translateY(-50%);
	background: #323232;
	cursor: pointer;
	z-index: 10;
    pointer-events: none;
}
.selectdiv::after {
  content: '';
  display: inline-block;
  padding: 0;
  position: absolute;
  pointer-events: none;
}
.selectdiv select {
  pointer-events: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 280px;
  height: 58px;
  margin: 5px auto;
  padding: 0 30px 0 20px;
	color: #232323;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  -ms-word-break: normal;
  word-break: normal;
	border: 1px solid #fff;
	border-radius: 5px;
  cursor: pointer;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.selectdiv .decoration {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.selectdiv .decoration::before,
.selectdiv .decoration::after {
	position: absolute;
	content: '';
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #323232;
  border-bottom: 2px solid #323232;
	 pointer-events: none;
}
.selectdiv .decoration::before {
	top: 20px;
  transform: rotate(-135deg);
}
.selectdiv .decoration::after {
	top: 28px;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
	.selectdiv:hover select {
		border: 1px solid #cc0d21;
		transition: .2s ease all;
	}
}

@media screen and (max-width:767.98px) {
	.selectdiv {
		max-width: 205px;
	}
	.selectdiv select {
		height: 48px;
		padding: 4px 30px 0 20px;
		font-size: 1.5rem;
	}
	.selectdiv .decoration::before {
		top: 17px;
	}
	.selectdiv .decoration::after {
		top: 24px;
	}
	/*---iPhone only---*/
	.iPhone .selectdiv select {
		padding-top: 0;
	}
	/*-----------------*/
}
/*=====================*/


/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap{
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi{
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before,
.area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit{
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li{
  width: 100%;
}
.area_button__link li a{
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before{
	display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after{
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
	.area_button {
		margin-top: 0;
	}
	.area_button__link li{
		max-width: 138px;
	}
	.area_button__link li a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:767.98px) {
	.area_button__link {
		margin: 0 10px 0;
	}
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}

/*=====================*/


/*pageTopBtn
=======================*/
.pageTopBtn {
	position: sticky;
	bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	display: inline-block;
	margin: auto;
	margin-right: 3%;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
	background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
	cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
	opacity: 1;
}
.pageTopBtn.-show a {
	cursor: pointer;
}
.pageTopBtn.-transition500 {
	transition: .2s ease;
}

@media screen and (min-width:768px) {
	.pageTopBtn a:hover {
		background: #c2c2c2;
	}
}

@media screen and (max-width:767.98px) {
  .pageTopBtn a {
    width: 45px;
    height: 45px;
  }
  .pageTopBtn a:before {
    width: 16px;
    height: 16px;
  }
  .over_pkup {
    bottom: 130px !important;
  }
}
/*=====================*/

.relationList {
  display: flex;
  justify-content: center;
  width: 87.4%;
  max-width: 990px;
  margin: 0 auto !important;
}
.relationList li {
  box-sizing: border-box;
  width: 33.3%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .relationList li {
    width: 50%;
  }
}
.relationList li a {
  display: block;
  margin: 0 6%;
  transition: opacity .3s ease-out;
}
.relationList li a:hover {
  opacity: .7;
}
.relationList__nav {
  display: none;
  margin-top: 10px;
  text-align: center;
}

.relationList__nav > div {
  position: relative;
  display: inline-block;
  padding: 0 75px;
}
@media screen and (max-width: 767px) {
  .relationList__nav > div {
    padding: 0 52px;
  }
}


.relationList.slider + .relationList__nav {
  display: block;
}

.relationList.slider + .relationList__nav.add_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .relationList.slider + .relationList__nav.add_none{
    display: block;
  }
	.otherFeaturesBox > li {
		width: 168px;
		margin: 2%;
	}
}
/*=====================*/

/*pick up
=======================*/
.assist-banner {
  position: fixed;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
  transition: right .8s cubic-bezier(.4, 0, .2, 1) 0s;
  z-index: 9997;
}
.assist-banner__inner {
  overflow: hidden;
  background: #fff;
}
.assist-banner__pickup {
  display: flex;
  position: absolute;
  left: 0;
  justify-content: center;
  width: 100%;
}
.assist-banner__pickup__inner {
  border-radius: 50px;
  background: #fc0;
}
.assist-banner__pickup__inner:after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fc0 transparent transparent;
  content: "";
}
button:not([disabled]), input[type=submit] {
	cursor: pointer;
}
.assist-banner__block {
  display: flex;
}
.assist-banner__close {
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
}
.assist-banner__img {
  flex-shrink: 0;
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
/*.assist-banner__detail {
	font-weight: bold;
}*/
.assist-banner__detail .smaller {
  font-size: 1.1rem;
}
.assist-banner__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}
.assist-banner__title {
	transition: color .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.assist-banner__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  padding: 0;
  border: none;
  border-radius: 0 0 0 5px;
  outline: none;
  background: #ba0c1e;
  text-indent: -9999px;
  cursor: pointer;
}
.assist-banner__close:after, .assist-banner__close:before {
  display: block;
  position: absolute;
  height: 1px;
  background: #fff;
  content: "";
}
.assist-banner__close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.assist-banner__close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.assist-banner__text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}

@media print, screen and (min-width: 768px) {
  .assist-banner.is-show {
    right: 22px;
  }
  .assist-banner {
    right: -320px;
    bottom: 230px;
    width: 320px;
    border: 5px solid #ba0c1e;
    border-radius: 5px 0 5px 5px;
  }
  .assist-banner__inner {
    padding: 12px 15px 12px 12px;
  }
	.assist-banner__pickup__inner {
		padding: 0 18px;
	}
	.assist-banner__pickup__inner:after {
    bottom: -7px;
    left: calc(50% - 4.5px);
    border-width: 7px 4.5px 0;
  }
	.assist-banner__close {
    top: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
  }
  .assist-banner__close:after, .assist-banner__close:before {
    top: 50%;
    left: 6px;
    width: 14px;
  }
	.assist-banner__pickup {
		top: -25px;
  }
	.assist-banner__img {
    width: 100px;
    margin-right: 18px;
  }
  .assist-banner__detail {
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
	.assist-banner__title {
		font-weight: 700;
		letter-spacing: -1px;
    line-height: 1.2;
	}
}

@media screen and (max-width:767.98px) {
	.assist-banner.is-show {
		right: 15px;
  }
  .assist-banner {
    right: calc(-100% + 30px);
    bottom: 5px;
    width: calc(100% - 30px);
    border: 4px solid #ba0c1e;
  }
  .assist-banner__inner {
    padding: 10px 33px 10px 10px;
	}
	.assist-banner__pickup {
		top: -17px;
  }
	.assist-banner__pickup__inner {
    padding: 2px 15px 1px;
    font-size: 1.1rem;
  }
	.assist-banner__pickup__inner:after {
    bottom: -7px;
    left: calc(50% - 4.5px);
    border-width: 7px 4.5px 0;
  }
  .assist-banner__close {
    top: -4px;
    right: -4px;
    width: 35px;
    height: 35px;
  }
  .assist-banner__close:after, .assist-banner__close:before {
    top: 50%;
    left: 10px;
    width: 15px;
  }
	.assist-banner__close:after, .assist-banner__close:before {
    display: block;
    position: absolute;
    height: 1px;
    background: #fff;
    content: "";
	}
	.assist-banner__img {
    width: 82px;
    margin-right: 11px;
  }
	.assist-banner__detail {
    margin-top: 5px;
    font-size: 1.2rem;
  }
	.assist-banner__detail span {
    font-size: 1.1rem;
	}
  .assist-banner__title {
    font-size: 1.5rem;
    font-weight: 700;
		line-height: 1.4;
  }
}