@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;
}
.contents_inner {
  max-width: 1160px;
  margin: 0 auto;
}
section h2 {
	color: #0e2d5e;
	font-size: 3rem;
	text-align: center;
	overflow: hidden;
}
section h2 span {
	position: relative;
}
section h2 span::before {
	position: absolute;
  content: '';
  top: 50%;
  left: -110px;
  width: 80px;
  height: 2px;
  background: #0e2d5e;
  transform: translateY(-50%);
}
section h2 span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -110px;
  width: 80px;
  height: 2px;
  background: #0e2d5e;
  transform: translateY(-50%);
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
  .pcOnly {
  display: block;
  }
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
  .spOnly {
  display: block;
  }
  section h2 {
    font-size: 2rem;
  }
}

/*---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);
}
.readMore__button.anim_scroll {
  transform: translate(-50%, 40px);
}
.readMore__button.anim_scroll.scrollin {
  transform: translate(-50%, 0);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/

/*.kvArea {
	position: relative;
  height: 370px;
	background: url("/med/feature/domestic/summer_resort/img/kv_01.jpg") no-repeat;
}
.kvTitWrap {
	position: absolute;
	top: 50%;
	left: 50%;
  width: 1160px;
	transform: translate(-50%, -50%);
	text-align: center;
}
.kvTitWrap h1 {
  margin: 0;
}
@media screen and (min-width: 768px) { 
  .kvTitWrap h1 {
    height: 350px;
  }
  .kvTitWrap h1 img {
    width: 981px;
    height: 307px;
  }
}
@media screen and (max-width:767.98px) {
	.kvArea {
		height: 192px;
	}
  .kvTitWrap h1 {
    margin: 0;
  }
  .kvTitWrap h1 img {
    margin: 0 auto;
    image-rendering: auto;
    max-width: 100%;
    max-height: 100%;
}
	.kvTitWrap {
		top: 50%;
		transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px;
	}
  
}
@media screen and (max-width:767.98px) and (min-width:581px) {
	.kvTitWrap h1 img {
    max-width: 60%;
  }
}
@media screen and (max-width:580px) and (min-width:441px) {
	.kvTitWrap h1 img {
    max-width: 70%;
  }
}*/

/*=====================*/



/*kvArea
=======================*/
.kvArea {
	position: relative;
}
.kv {
	height: 365px;
	margin: 0;
}
.kvTitWrap {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -40%);
	z-index: 5;
}
.kvArea h1 {
	position: relative;
	/*max-width: 500px;*/
	margin: 0 auto;
  text-align: center;
}
.kv .slider-item {
	height: 365px;
}
.kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767.98px) {
	.kv, .kv .slider-item {
		height: 235px;
	}
	.kvTitWrap {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.kvArea h1 {
		width: 50%;
    margin: 0 auto;
		padding: 0;
		font-size: 1.5rem;
		font-weight: normal;
	}
	.kvArea .introTxt {
		margin-top: 0;
		padding: 8px 30px;
		font-size: 1.1rem;
	}
	.kvTitWrap {
		/*top: 32%;*/
		text-align: center;
	}
}
@media screen and (max-width:580px) {
  .kvArea h1 {
    width: 65%;
  }
}
@media screen and (max-width:400px) {
  .kvArea h1 {
    width: 80%;
  }

}

/*menuNav
=======================*/
.menuNav {
	background: #bbe2d1;
  position: sticky;
  top: 0;
  z-index: 100;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 2rem;
	text-align: center;
	background: #3ea88e;
	border-right: 2px solid #fff;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	display: flex;
  justify-content: center;
	width: 100%;
	padding: 20px;
  color: #fff;
  align-items: center;
}
.note {
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    color: #cc0d21;
    font-size: 1.7rem;
}
@media (max-width: 768px) {
.note {
    padding: 10px;
    font-size: 1.3rem;
  } 
}
  


@media (min-width: 768px) {
  .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);
  }
	.menuNav .navItem {
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover {
		/*background: #fff;*/
    background: #a1d5c9;
    color: #084931;
		/*opacity: .4;*/
		transition: 0.2s ease all;
	}
  .menuNav .navItem a:hover span::after {
    border-right: 2px solid #084931;
    border-bottom: 2px solid #084931;
  }
  
}

@media screen and (max-width:767.98px) {
	.menuNav .navItem {
		font-size: 1.2rem;
    position: relative;
	}
  .menuNav .navItem a span {
    line-height: 1.3;
  }
  .menuNav .navItem a span::after {
    position: absolute;
    content: '';
    bottom: 15%;
    right: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateX(50%) translateY(15%) rotate(45deg);
  }
	.menuNav .navItem a {
		padding: 15px 0 20px;
	}
}

@media screen and (max-width:359px) {
	.menuNav .navItem {
		font-size: 1.2rem;
	}
}
/*=====================*/




/*leadArea
=======================*/
.leadArea {
  background: url("/med/feature/domestic/summer_resort/img/lead_bg.webp") no-repeat;
  height: 290px;
}
.leadArea .l_txt_wrap {
  text-align: center;
  padding: 50px 0;
  font-family: 'Noto Serif JP', serif;
}
.leadArea .l_txt_wrap .l_txt01 span,
.leadArea .l_txt_wrap .l_txt02 span,
.leadArea .l_txt_wrap .l_txt03 span {
  padding: 5px 20px;
  font-weight: 700;
}
.leadArea .l_txt_wrap .l_txt01 span {
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
}
.leadArea .l_txt_wrap .l_txt01 {
  margin-bottom: 50px;
  position: relative;
  background: #226080;
  display: inline-block;
}
.leadArea .l_txt_wrap .l_txt01::before {
  position: absolute;
  content: "";
  background: url("/med/feature/domestic/summer_resort/img/lead_img_pc.webp") no-repeat;
  width: 13px;
  height: 40px;
  bottom: -45px;;
  left: 50%;
}
.leadArea .l_txt_wrap .l_txt02 span,
.leadArea .l_txt_wrap .l_txt03 span {
  font-size: 2.8rem;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 3%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.75) 97%, rgba(255,255,255,0) 100%);
  color: #226080;
}
.leadArea .l_txt_wrap .l_txt03 {
  margin-top: 2px;
}
@media screen and (max-width:767.98px) {
  .leadArea {
    max-height: 230px;
    background-size: cover;
  }
  .leadArea .l_txt_wrap {
    padding: 20px 0;
  }
  .leadArea .l_txt_wrap .l_txt01 {
    padding: 5px 30px;
  }
  .leadArea .l_txt_wrap .l_txt01 span {
    font-size: 1.5rem;
  }
  .leadArea .l_txt_wrap .l_txt01::before {
    background: url("/med/feature/domestic/summer_resort/img/lead_img_sp.webp") no-repeat;
    width: 9px;
    height: 32px;
    bottom: -45px;;
    background-size: contain;
    left: 50%;
  }
  .leadArea .l_txt_wrap .l_txt02,
  .leadArea .l_txt_wrap .l_txt03 {
    padding: 0;
  }
  .leadArea .l_txt_wrap .l_txt02 span,
  .leadArea .l_txt_wrap .l_txt03 span {
    color: #139071;
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
@media screen and (max-width:365px) {
  .leadArea .l_txt_wrap .l_txt01 span {
    padding: 0;
  }
  .leadArea .l_txt_wrap .l_txt01 span {
    font-size: 1.3rem;
  }
  .leadArea .l_txt_wrap .l_txt02 span,
  .leadArea .l_txt_wrap .l_txt03 span {
    font-size: 1.3rem;
  }
  .leadArea .l_txt_wrap .l_txt01 {
    padding: 5px 10px;
  }

}
/*=====================*/

/*bannerBox
=======================*/
.bannersWrap {
	margin: 40px auto 0;
  display: none;
}
.bannerBox {
	display: flex;
	justify-content: space-evenly;
}
/*.bannerBox {
	margin: 0;
}*/
.bannerBox li {
  width: calc( 100% / 3 );
}
.bannerBox li + li {
margin-left: 10px;
}
.bannerBox li a {
	display: inline-block;
	height: 100%;
	transition: .2s;
}

@media (min-width: 768px) {
	.bannerBox li a:hover {
		opacity: .8;
		transition: .2s;
	}
}

@media screen and (max-width:767.98px) {
	.bannerBox {
		justify-content: center;
    gap: 10px;
		padding: 0 10px;
	}
	.bannerBox li {
		max-width: 120px;
	}
}
/*=====================*/



/*focusArea
=======================*/
.focusArea {
	padding: 15px 0 40px;
	background: #e6f5f4;
}
.focusArea .courseBlock {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
  max-width: 1200px;
}

@media screen and (max-width:767.98px) {
	.focusArea {
		padding: 1px 0 40px;
	}
	.focusArea .courseBlock {
		padding: 0 10px;
		background: transparent;
	}
}
/*=====================*/


/*alloverArea
=======================*/
.alloverArea {
  padding: 15px 0 40px;
}
.alloverArea .resort_box {
  width: 100%;
  padding: 40px 0;
}
.alloverArea .resort_onebox:nth-child(even) {
  background: #e6f5f4;
}
.alloverArea .resort_onebox:nth-child(even) .resort_box .resort_wrap {
  background: #fff;
  border-radius: 10px;
}
.alloverArea .resort_wrap {
  max-width: 1200px;
  padding: 20px 10px 10px;
}
.alloverArea .resort_wrap h3 {
  color: #0e2d5e;
  font-size: 2.5rem;
  text-align: center;
  overflow: hidden;
  margin: 15px 0;
}
.alloverArea .resort_wrap h3 span {
	position: relative;
}
.alloverArea .resort_wrap h3 span::before {
	position: absolute;
  content: '';
  top: 50%;
  left: -110px;
  width: 60px;
  height: 2px;
  background: #0e2d5e;
  transform: translateY(-50%);
}
.alloverArea .resort_wrap h3 span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -110px;
  width: 60px;
  height: 2px;
  background: #0e2d5e;
  transform: translateY(-50%);
}
.alloverArea .resort_wrap h4 {
  font-size: 3.5rem;
  line-height: 1.2;
  padding: 10px 0;
  background-color: #bbe2d1;
  margin: 0 10px 35px;
  text-align: center;
}
.alloverArea .resort_wrap p {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 10px 0 20px;
  text-align: center;
}
.alloverArea .resort_wrap .img_box {
  display: flex;
  justify-content: space-around;
  /*align-items: center;*/
  margin: 10px 0;
}
/*.alloverArea .resort_wrap .img_box .img_left {
  width: 45%;
}*/
.alloverArea .resort_wrap .img_box .img_right {
  width: 46%;
  max-height: 250px;
  position: relative;
}
/*.alloverArea .resort_wrap .img_box .img_left img,
.alloverArea .resort_wrap .img_box .img_right img {
  max-width: 100%;
}*/
.alloverArea .resort_wrap .img_box .img_right img {
  max-width: 100%;
}

.alloverArea .resort_wrap .img_box .img_right p {
  position: absolute;
  font-size: 1.3rem;
  bottom: 5px;
  right: 10px;
  margin: 0;
  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;
}

.alloverArea .resort_wrap h5 {
  padding: 5px 0;
  margin: 30px 10px;
  color: #0e2d5e;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid #0e2d5e;
  border-bottom: 1px solid #0e2d5e;
}

.alloverArea .resort_wrap .courseBox {
  display: flex;
  flex-wrap: wrap;
  /*overflow: hidden;*/
  padding: 0 10px 10px;
  /*margin-top: 20px;*/
}
.alloverArea .resort_wrap .courseBox .noCourseTxt {
  margin: 15px auto;
  font-size: 1.6rem;
}

@media screen and (max-width:767.98px) {
  .alloverArea .resort_box {
    padding: 20px 0;
  }
  .alloverArea .resort_onebox:nth-child(even) .resort_box .resort_wrap {
    border-radius: 0;
  }
  .alloverArea .resort_wrap {
  padding: 10px 10px 20px;
  }
  .alloverArea .resort_wrap h3 {
    font-size: 2.0rem;
  }
  .alloverArea .resort_wrap h4 {
    margin: 10px 0;
    font-size: 2.0rem;
  }
  .alloverArea .resort_wrap p {
  font-size: 1.3rem;
  margin: 10px 0;
  }
  .alloverArea .resort_wrap .img_box {
    flex-direction: column-reverse;
    max-width: 540px;
    margin: 0 auto;
  }
  .alloverArea .resort_wrap .img_box .img_right {
    width: 100%;
    margin: 5px auto;
  }
  .alloverArea .resort_wrap h5 {
  font-size: 1.5rem;
  margin: 10px 0;
  }
  .alloverArea .resort_wrap .courseBox .noCourseTxt {
    font-size: 1.3rem;
  }
}



/*=====================*/



/*stayArea
=======================*/
.stayArea {
  padding: 15px 0 40px;
  background: #e6f5f4;
}
.stayArea .courseBlock {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  max-width: 1200px;
}
.stayArea .sty_txt {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 20px auto 30px;
}

@media screen and (max-width:767.98px) {
  .stayArea {
    padding: 1px 0 40px;
  }
  .stayArea .courseBlock {
    padding: 0 10px;
    background: transparent;
  }
  .stayArea .sty_txt {
  font-size: 1.3rem;
  margin: 10px auto 20px;
  padding: 0 10px;
  }
}
/*=====================*/



/*readMoreBtn
=======================*/
.resort_box_list {
  position: relative;
  overflow: hidden;
}
.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 150px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 20%, #fff 100%);
  /*background: linear-gradient(top, rgba(252, 244, 231, 0) 0%, rgba(252, 244, 231, 0.8) 50%, rgba(252, 244, 231, 0.8) 50%, #fff 100%);*/
  z-index: 5;
}
.readMore__button {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  display: none;
  width: 300px;
  margin: 30px auto;
	z-index: 5;
}
.readMore__button__type {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  padding: 0;
  border: 2px solid #317363;
  border-radius: 50px;
  outline: none;
  background-color: #3ea88e;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
  color: #fff;
  cursor: pointer;
	transition: .3s;
}
.readMore__button__label {
  padding: 5px 10px;
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
	font-size: 2rem;
  font-weight: bold;
}
.label_after {
  position: relative;
}
.label_after:after, .readMore__button__label:before {
  right: 16px;
  width: 18px;
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  height: 2px;
  background: #fff;
  content: "";
}
.label_after:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
 
@media screen and (min-width: 768px) {
  .readMore__button__type:hover {
		color: #3ea88e;
		background: #fff;
		border: 2px solid #3ea88e;
    transition: .3s;
    box-shadow: none;
  }
  .readMore__button__type:hover .label_after:after, .readMore__button__type:hover .readMore__button__label:before {
    background: #3ea88e;
    transition: 0.6s;
  }
}
@media screen and (max-width: 767.98px) {
  .readMore__button,
  .readMore__button__type {
    width: 95%;
  }
  .readMore__button {
		margin: 10px 0;
  }
  .readMore__button__type {
    margin: 0 auto;
  }
  .readMore__button__label {
    padding: 5px 20px;
		font-size: 1.7rem;
		font-weight: 700;
		letter-spacing: 1px;
  }
  .readmore-content::before {
    height: 60px;
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 15%, rgba(255,255,255,0.8) 50%, #fff 60%);
  }
}
/*=======================*/





/*report
=======================*/
/*---radioBox---*/
.radioBox {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
  max-width: 1160px;
  margin: 10px auto;
}
.radioBox .input_wrap {
  /*height: 43px;*/
  margin: 0 10px 10px 0;
  color: #3ea88e;
}
.radioBox .input_wrap a{
  color: #3ea88e;
}
.radioBox .input_wrap .all_item{
  position: relative;
}
.radioBox .input_wrap .all_item a{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 1.2;
}
.radioBox input:checked + label a{
    color: #fff;
  background-color: #3ea88e!important;
}
.radioBox .input_wrap:last-of-type {
	margin-right: 0;
}
.radioBox input[name="area_filter"] {
  display: none;
}
.radioBox label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 135px;
  height: 100%;
  padding: 8px 20px 8px 10px;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -1px;
  border: 2px solid #3ea88e;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
  line-height: 1;
  position: relative;
}
.radioBox label::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3ea88e;
  border-bottom: 2px solid #3ea88e;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width:768px) {
  .radioBox .input_wrap .all_item a:hover{
    color: #3ea88e;
    background: #fff;
  }
  .radioBox label:hover {
    color: #fff;
    background-color: #3ea88e;
    transition: .3s;
  }
  .radioBox label:hover::before {
     border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}
@media screen and (max-width:767.98px) {
  .radioBox {
    display: none;
  }
}

.radioBox .input_wrap input:checked + label::before {
  right: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}
.radioBox .input_wrap input:checked + label {
  color: #fff !important;
  background-color: #3ea88e!important;
}

/*.rb_t .input_wrap input:checked + label::before,
.rb_h .input_wrap input:checked + label::before,
.rb_c .input_wrap input:checked + label::before,
.rb_ka .input_wrap input:checked + label::before,
.rb_ky .input_wrap input:checked + label::before {
  right: 4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}
.rb_t .input_wrap input:checked + label,
.rb_h .input_wrap input:checked + label,
.rb_c .input_wrap input:checked + label,
.rb_ka .input_wrap input:checked + label,
.rb_ky .input_wrap input:checked + label {
  color: #fff !important;
  background-color: #3ea88e!important;
}*/

/*--------------*/


#area_btn_sp {
    font-family: "Noto Sans JP", sans-serif;
    background: #3ea88e;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    width: 95%;
    font-size: 1.4rem;
  }
  #area_btn_sp option {
    background: #fff;
    color: #000;
  }
.alloverArea .selectdiv::before,
.alloverArea .selectdiv .decoration::before {
  display: none;
}

.alloverArea .selectdiv .decoration::after {
	position: absolute;
	content: '';
  top: 16px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  pointer-events: none;
}




/*courseArea
=======================*/
.courseArea {
	/*margin-top: 100px;*/
	padding-top: 5px;
	background: #fff;
}
.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%);
}*/

@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%;
	}*/
}

/*---areaMenu---*/
.areaMenu {
	position: sticky;
	top: 0;
	margin-top: 30px;
	background: #d7d7d7;
	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: #323232;
	font-size: 1.8rem;
}
.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 #323232;
	border-bottom: 2px solid #323232;
	transform: translateY(-45%) rotate(45deg);
}
@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: #d7d7d7;
}
.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;
	padding: 3px 12px;
	color: #fff;
	font-size: 1.3rem;
	background: rgb(0 0 0 / .5);
	border-radius: 30px;
}
.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__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;
}
.courseItemsBox .noCourseTxt_all{
    margin: 0 auto;
	font-size: 1.6rem;
    text-align: center;
    padding-bottom: 50px;
}
@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;
		padding: 2px 7px;
		font-size: 1rem;
	}
	.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;
	}
    .courseItemsBox .noCourseTxt_all{
         font-size: 1.3rem;
		text-align: center;
    padding-bottom: 35px;
}
}
/*=====================*/


/*selectdiv(pulldown)
=======================*/
.select_label {
  padding: 28px 0 0;
  font-weight: bold;
}
.selectdiv {
	position: relative;
	top: 0;
	max-width: 250px;
	width: 100%;
  margin: 15px 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;
	pointer-events: none;
	z-index: 10;
}
.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 {
	display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
	left: 93%;
	position: sticky;
	bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	margin: auto;
}
.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 {
    /*bottom: 140px;*/
  }
	.pageTopBtn a {
		width: 45px;
    height: 45px;
	}
	.pageTopBtn a:before {
		width: 16px;
    height: 16px;
	}
}
/*=====================*/


/*themefeaturesArea
=======================*/
.themefeaturesArea {
	margin-top: 50px;
}
.themefeaturesArea_inner {
	max-width: 1160px;
	margin: 35px auto 0;
}
.themefeaturesArea h2 {
	margin: 0;
	text-align: center;
	font-size: 2.4rem;
}
.themefeaturesArea h2 span {
	position: relative;
}
.themefeaturesArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}
.themefeaturesArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #929292;
	transform: translateY(-50%);
}

@media screen and (max-width:767.98px) {
	.themefeaturesArea {
		margin-top: 50px;
	}
	.themefeaturesArea h2 {
		overflow: hidden;
	}
	.themefeaturesArea h2 span {
		font-size: 2rem;
	}
	.themefeaturesArea h2 span::before,
	.themefeaturesArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.themefeaturesArea h2 span::before {
		left: -370%;
	}
	.themefeaturesArea h2 span::after {
		right: -370%;
	}
}

.slider.slick-initialized {
	display: block;
}

/*-----slider-----*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
/*----------------*/

.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__nav .slick-arrow {
  width: 35px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .relationList__nav .slick-arrow {
    width: 40px;
  }
}
.relationList__nav .slick-arrow:before {
  content: '';
  display: block;
  padding-top: 100%;
  background: url(../img/btn_arrow_01.png) no-repeat 0 0/contain;
  opacity: 1;
}
.relationList__nav .slick-next {
  right: 0;
}
.relationList__nav .slick-next:before {
  transform: rotateZ(180deg);
}
.relationList__nav .slick-prev {
  left: 0;
}
.relationList__nav .slick-dots {
  position: static;
  display: inline-block;
  line-height: 1;
}
.relationList__nav .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
  overflow: hidden;
}
.relationList__nav .slick-dots button {
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  text-indent: -9999px;
}
.relationList__nav .slick-dots .slick-active button {
  background: #909090; /*テーマごとの色へ変更*/
}

.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%;
	}
}
/*=====================*/
.scroll-hint-icon{
        z-index: 5;
    }
    
    
/*Vue Chart
=========================*/
.chart_container {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 300px;
  margin-bottom: 20px;
}
.chart_ann {
  font-size: 1.4rem!important;
  margin: 5px 0!important;
}

@media screen and (max-width: 767.98px) {
  .chart_container {
    max-width: 100%;
    height: 250px;
  }
  .chart_ann {
    font-size: 1.1rem!important;
}
}
/*=======================*/

/*otherFeaturesArea
=======================*/
.otherFeaturesArea {
	max-width: 1160px;
	margin: 50px auto 30px;
}
.otherFeaturesArea h2 {
	margin: 0;
	/*color: #47a572;*/
	text-align: center;
	font-size: 3rem;
}
.otherFeaturesArea h2 span {
	position: relative;
}
.otherFeaturesArea h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #0e2d5e;
	transform: translateY(-50%);
}
.otherFeaturesArea h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #0e2d5e;
	transform: translateY(-50%);
}

.featuresBox_wrap {
	margin-top: 30px;
}
.featuresBox {
	display: flex;
  justify-content: center;
  gap: 40px;
}
.featuresBox a {
	display: inline-block;
	height: 100%;
	transition: opacity .2s;
}

@media screen and (min-width:768px) {
	.featuresBox a:hover {
		opacity: .7;
	}
}

@media screen and (max-width:767.98px) {
	.otherFeaturesArea {
		margin: 35px 0 40px;
	}
	.otherFeaturesArea h2 {
		overflow: hidden;
	}
	.otherFeaturesArea h2 span {
		font-size: 2.5rem;
	}
	.otherFeaturesArea h2 span::before,
	.otherFeaturesArea h2 span::after {
		height: 1px;
		width: 350%;
	}
	.otherFeaturesArea h2 span::before {
		left: -370%;
	}
	.otherFeaturesArea h2 span::after {
		right: -370%;
	}
	.featuresBox {
  flex-direction: column;
		gap: 20px;
		padding: 0 20px;
	}
  .featuresBox a picture img {
    border-radius: 5px;
    box-shadow: 1px 0 4px 0 rgba(0, 0, 0, .1);
  }
}
/*=====================*/

/*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;
  }
}
/*=====================*/
