@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
=======================*/
.kvTitWrap {
	top: 40%;
	left: 50%;
	width: 100%;
	text-align: center;
	z-index: 5;
}
.kvArea h1 {
	margin: 0;
}

@media screen and (max-width:767.98px) {
	.kvArea h1 {
    margin: 0 auto;
	}
	.kvArea .introTxt {
		margin-top: 18px;
		padding: 8px 30px;
		font-size: 1.2rem;
	}
}
/*=====================*/
.note {
    display: flex;
    text-align: center;
    justify-content: center;
    font-weight: bold;
    color: #cc0d21;
	padding-top: 20px;
}
@media screen and (max-width:767.98px) {
	.note {
    padding: 10px;
    font-size: 1.3rem;
	}
}
.holidays {
  display: flex;
  justify-content: center;
  background: #f8f4ea;
  padding: 20px 0 50px;
}
@media screen and (max-width:767.98px) {
  .holidays {
    padding: 10px 0 10px; 
  }
}
/*ab_dom_tabBox
=======================*/
.ab_dom_tabBox {
	display: flex;
	gap: 50px;
  justify-content: center;
  width: 100%;
  background: #f8f4ea;
  text-align: center;
  border-bottom: 2px solid #3568ad;
  z-index: 10;
}
.dom_tabBox {
  border-bottom: 2px solid #47a572;
}
.ab_dom_tabBox .tab_item {
	position: relative;
}
.ab_dom_tabBox .tab_item.current a {
  background: #fff;
}
.ab_dom_tabBox .tab_item.type_ab::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 2px;
	background: #fff;
	transition: all .3s;
}
.dom_tabBox .tab_item {
	position: relative;
}
.dom_tabBox .tab_item.type_dom::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 2px;
	background: #fff;
	transition: all .3s;
}
.dom_tabBox .tab_item.type_ab::after {
	background: none;
}
.ab_dom_tabBox .tab_item a {
  width: 360px;
  height: 50px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ab_dom_tabBox .tab_item.type_ab a {
  color: #3470bf;
	border: 2px solid #3568ad;
	border-bottom: none;
}
.dom_tabBox .tab_item.type_ab a {
  color: #fff;
  background: #3568ad;
}
.ab_dom_tabBox .tab_item.type_dom a {
  color: #fff;
  background: #47a572;
	border: 2px solid #47a572;
	border-bottom: none;
}
.dom_tabBox .tab_item.type_dom a {
  color: #47a572;
  background: #fff;
}
.ab_dom_tabBox .tab_item .tab_item-txt {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: bold;
}

@media screen and (min-width:768px) {
	.ab_dom_tabBox .tab_item.current a {
		cursor: auto;
	}
	.ab_dom_tabBox .tab_item.type_ab:not(.current) a:hover {
		color: #3568ad;
		background: #fff;
	}
	.ab_dom_tabBox .tab_item.type_dom:not(.current) a:hover {
  	color: #47a572;
		background: #fff;
	}
	.ab_dom_tabBox .tab_item.type_ab:not(.current):hover::after {
		/*background: #3568ad;*/
	}
}

@media screen and (max-width:767.98px) {
	.ab_dom_tabBox {
		gap: 14px;
		border-bottom: 1px solid #3568ad;
	}
  .dom_tabBox {
    border-bottom: 1px solid #47a572;
  }
	.ab_dom_tabBox .tab_item {
		width: 45%;
	}
  .ab_dom_tabBox .tab_item a {
    width: 100%;
    height: 35px;
  	border-radius: 5px 5px 0 0;
  }
	.ab_dom_tabBox .tab_item.type_ab a {
		border: 1px solid #3568ad;
		border-bottom: none;
	}
	.ab_dom_tabBox .tab_item.type_dom a {
		border: 1px solid #47a572;
    border-bottom: none;
	}
	.ab_dom_tabBox .tab_item .tab_item-txt {
		font-size: 1.4rem;
	}
}
/*=====================*/



/*bannerBlock
=======================*/
.bannerBlock {
	margin: 40px 0;
	text-align: center;
}
.bannerWrap {
	display: inline-block;
  box-shadow: 0 1px 3px 2px rgba(0, 0, 0, .15);
  border-radius: 5px;
	transition: opacity .2s;
}
.bannerWrap a {
	display: inline-block;
	height: 100%;
}
.bannerBlock .banner_txt {
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #cc0d21;
}
@media screen and (min-width:768px) {
	.bannerWrap:hover {
		opacity: .7;
	}
}

@media screen and (max-width:767.98px) {
	.bannerBlock {
		margin: 20px 0;
		padding: 0 10px;
	}
  .bannerBlock .banner_txt {
    font-size: 1.4rem;
  }
}
/*=====================*/



/*cond_search
=======================*/
.searchArea {
  margin-top: 40px;
	height: auto;
  background-color: #e7ebf6;
  padding: 30px 0;
	/*padding-top: 35px;*/
	/*background: url("../images/bg01.webp") no-repeat;*/
}
.area_dom {
  background-color: #def3eb;
}
.silverweek .searchArea {
	height: auto;
  /*padding-top: 35px;*/
	/*background: url("../images/bg01.webp") no-repeat;*/
  background-size: auto 100%;
}

.searchArea .searchtitle {
	color: #5e5e5e;
	font-size: 2.6rem;
	text-align: center;
  z-index: 1;
	margin: 0 auto 13px;
}
.searchArea .searchtitle .titletxt {
  position: relative;
  font-weight: bold;
}
.searchArea .searchtitle .titletxt::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  right: -28px;
  top: 2px;
  background-image: url("/med/feature/sw/abroad/img/ic01.webp");
}
.smallxt {
  font-size: 2rem;
}
@media screen and (max-width:767.98px) {
	.silverweek .searchArea {
		height: auto;
		/*background: url("../images/bg01_sp.webp") no-repeat;*/
		background-size: cover;
		background-position: 50%;
		padding-top: 0;
	}
	.searchArea .searchtitle {
		margin: 0;
		font-size: 1.8rem;
    padding: 0;
	}
	.searchArea .searchtitle span {
    font-size: 1.6rem;
		padding-right: 0;
	}
    .searchArea .searchtitle .titletxt::after {
      position: absolute;
      content: "";
      width: 18px;
      height: 18px;
      right: -21px;
      top: 31px;
      background-image: url("/med/feature/sw/abroad/img/ic01_sp.webp");
}
}

/*---search（search.cssと併用）---*/
.searchArea .home-main-search-condition {
	position: relative;
	width: 100%;
	padding: 0;
	z-index: 15;
}
.searchArea .home-main-search-detail__inner {
	overflow: visible;
}
.searchArea .home-main-search-condition__body {
	max-width: 933px;
	margin: 0 auto;
	padding: 40px 50px;
	background: #fff;
}
.searchArea .home-main-search-condition-departure>dt,
.searchArea .home-main-search-condition-destination>dt,
.searchArea .home-main-search-condition-date>dt {
	width: 130px;
	font-size: 1.8rem;
}
.searchArea .home-main-search-condition-country>dt,
.searchArea .home-main-search-condition-stay>dt {
	width: 120px;
	font-size: 1.8rem;
}
.searchArea .home-main-search-condition-require {
	width: 55px;
	height: 22px;
	font-size: 1.4rem;
}
.searchArea .home-main-search-condition__submit {
	width: 100%;
	height: 46px;
	font-size: 2.1rem;
	background: #cc0d21;
}
@media screen and (max-width:767.98px) {
	.searchArea .home-main-search-detail__inner {
		padding: 5px 9px 0;
	}
	.searchArea .home-main-search-condition__body {
		padding: 15px;
	}
	.searchArea .home-main-search-condition-departure>dt,
	.searchArea .home-main-search-condition-destination>dt,
	.searchArea .home-main-search-condition-date>dt,
	.searchArea .home-main-search-condition-country>dt,
	.searchArea .home-main-search-condition-stay>dt {
		width: 100px;
		font-size: 1.4rem;
	}
	.searchArea .home-main-search-condition-require {
		width: 40px;
		height: 18px;
		font-size: 1rem;
	}
	.searchArea .home-main-search-condition-destination__button:after {
		top: calc(50% - 6px);
	}
	.searchArea .home-main-search-condition-departure__button,
	.searchArea .home-main-search-condition-destination__button,
	.searchArea .home-main-search-condition-destination__selected,
	.searchArea .home-main-search-condition-country__button,
	.searchArea .home-main-search-condition-date__button,
	.searchArea .home-main-search-condition-date__selected,
	.searchArea .home-main-search-condition-stay__button,
	.searchArea .home-main-search-condition-stay__selected {
		height: 43px;
	}
	.searchArea .home-main-search-condition-departure__selected,
	.searchArea .home-main-search-condition-country__selected,
	.searchArea .home-main-search-condition-stay__selected
	{
		line-height: 37px;
	}
	.searchArea .home-main-search-condition__submit {
		height: 40px;
		font-size: 1.4rem;
	}
}
/*------------*/
/*=====================*/


.notetxt {
  text-align: center;
  color: #C0191B;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 10px 10px 0;
}
.notetxt:first-of-type {
  margin-top: 34px;
}
.notetxt + .notetxt {
  margin-top: 10px;
  font-size: 1.6rem;
}
.departure {
  color: #fff;
  background: #C0191B;
  border-radius: 25px;
  padding: 3px 14px;
  font-size: 1.4rem;
}
@media screen and (max-width:767.98px) {
  .notetxt {
    font-size: 1.6rem;
  }
  .notetxt + .notetxt {
    font-size: 1.2rem;
  }
}
/*anchorlink
=======================*/
.anchorlink{
  display: flex;
  justify-content: center;
  margin-top: 20px;
  background-color: #4c66a8;
  position: sticky;
  top: 0;
  z-index: 10;
}
.anc_dom {
  background-color: #47a572;
}
.anchorlink ul{
    display: flex;
    gap: 60px;
    justify-content: center;
}
.anchorlink ul li{
    position: relative;
}
.anchorlink ul li a{
    position: relative;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #4c66a8;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.6rem;
}
.anc_dom ul li a {
  background-color: #47a572;
}
.anchorlink ul li a span{
    position: relative;
}
.anchorlink ul li a span::before,
.anchorlink ul li a span::after {
  content: "";
  width: 12px;
  height: 3px;
  display: inline-block;
  border-radius: 2px;
  background: #ffffff;
  position: absolute;
  left: -20px;
}
.anchorlink ul li a span::after {
     left: -27px;
}
.anchorlink ul li a span::before {
  top: calc(50% - 0px);
  transform: rotate(135deg);
}
.anchorlink ul li a span::after {
  bottom: calc(50% - 3px);
  transform: rotate(45deg);
}
.anchorlink ul li a{
    display: flex;
    justify-content: center;
}
.anchorlink ul li a p{
    position: relative;
}
.anchorlink ul li a p::before{
    content: "";
    position: absolute;
    left: -26px;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
}




@media screen and (min-width:768px) {
	.anchorlink ul li a:hover span::before{
		top: calc(64% - 0px);
	}
    .anchorlink ul li a:hover span::after{
   bottom: calc(35% - 3px);
	}
}

@media screen and (max-width:767.98px) {
.anchorlink{
    display: flex;
    justify-content: center;
    top:0;
    z-index: 10;
}
.anchorlink ul{
    flex-wrap: wrap;
    gap: 0px;
    grid-row-gap: 5px;
    margin: 0;
    padding: 5px 0;
}
.anchorlink ul li{
    position: relative;
    display: flex;
    justify-content: center;
    width: 114px;
}
    /*.anchorlink ul li:nth-last-child(-n+2){
    position: relative;
    width: 50%;}
    .link_3 ul li:nth-last-child(-n+2){
    width: 33%;}*/
.anchorlink ul li a{
    font-size: 1.3rem;
    padding: 0;
}
.anchorlink ul li a span{
    position: relative;
    padding-left: 11px;
    letter-spacing: -0.5px;
}
.anchorlink ul li a span::before,
.anchorlink ul li a span::after {
  content: "";
  width: 8px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  position: absolute;
  top: 50%;
}
.anchorlink ul li a::before {
  right:calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
}
.anchorlink ul li a::after {
    left:calc(50% - 2px);
    transform: translateY(-50%) rotate(135deg);
}
.anchorlink ul li a{
    display: flex;
    justify-content: center;
}
.anchorlink ul li a p::before{
    content: "";
    position: absolute;
    left: -5px;
    width: 15px;
    height: 15px;
    top: calc(50% - 8px);
}
main .anchorlink ul li:nth-child(n+1) a p::before{
    background-size: 15px;
}
    .natsu_min .anchorlink ul li:nth-child(2) a p::before,.natsu_kyu .anchorlink ul li:nth-child(3) a p::before{
    background-size: 15px;
}
.anchorlink ul li a span::after {
   left: -5px;
}
.anchorlink ul li a span::before {
   left: 0;
}
.anchorlink ul li:nth-child(1)::after,
.anchorlink ul li:nth-child(3)::before,
.anchorlink ul li:nth-child(5)::before{
    width: 0;
    }
}
@media screen and (max-width:359.98px) {
	.anchorlink ul li a {
    font-size: 1.2rem;
  } 
}
/*=====================*/



/*courseArea
=======================*/
.area_course_section {
  background: #e7ebf6;
}
.dom_course_area {
  background: #def3eb;
}
.area_course_list_wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0;
}
.area_course_list_wrap_inner {
	max-width: 1160px;
	margin: 0 auto;
}
 h2 {
	margin: 0;
	color: #3051a4;
	text-align: center;
	font-size: 3rem;
}
.dom_h2 {
  color: #47a572;
}
 h2 span {
	position: relative;
}

 h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #3051a4;
	transform: translateY(-50%);
}
 h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #3051a4;
	transform: translateY(-50%);
}
.dom_h2 span {
	position: relative;
}
 .dom_h2 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -110px;
	width: 80px;
	height: 2px;
	background: #47a572;
	transform: translateY(-50%);
}
 .dom_h2 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -110px;
	width: 80px;
	height: 2px;
	background: #47a572;
	transform: translateY(-50%);
}
@media screen and (max-width:767.98px) {
	.area_course_list_wrap {
		margin-top: 0;
		padding: 35px 0 0;
	}
	 h2 {
		overflow: hidden;
	}
	 h2 span {
		font-size: 2.4rem;
	}
	h2 span::before,
  h2 span::after {
		height: 1px;
		width: 30px;
	}
	h2 span::before {
		left: -36px;
	}
	h2 span::after {
		right: -36px;
	}
}

/*---courseItemsBox---*/
.silverweek h3 {
  margin: 0;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #3051a4;
}
.silverweek .dom_h3 {
  color: #47a572;
}
.area_course_list_wrap h3{
  position:relative;
  z-index:1;
  padding:10px 0;
}

.area_course_list_wrap h3::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  height:100%;
  background:#fff;
  z-index:-1;
}
.courseItemsBox {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 20px;
	border-radius: 5px;
}
.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 {
  background-color: #f2f2f2;
  font-size: 1.2rem;
  color: #707070;
  text-align: right;
  padding-right: 5px;
}
.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;
}
.day_trip {
  display: inline-block;
  color: #fff;
  background: #00ABAA;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 20px;
  padding: 1px 10px;
}
.Departure_date {
  display: inline-block;
  margin-top: 10px;
  padding: 1px 16px;
  background: #cc0d21;
  color: #fff;
  border-radius: 12px;
  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: #000;
	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.webp");
  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 30px;
	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;
	}
	.silverweek h3 {
		padding: 8px 0;
		font-size: 1.7rem;
	}
  .area_course_list_wrap h3::before {
    border-radius: 10px 10px 0 0;
  }
	.courseItemsBox {
		display: block;
		margin-top: 24px;
		padding: 0 10px;
		background-color: transparent;
	}
	.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*="course__card__head"] {
		padding-top: 48%;
	}
	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;*/
    top: 5px;
	}
	.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;
	}
  .day_trip {
    font-size: 1.2rem;
  }
  .Departure_date {
    font-size: 1.2rem;
  }
	.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;
    margin: 0 auto;
	}
    .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: 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;
	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: 93%;
	position: sticky;
	/*bottom: 130px;*/
  bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 20;
}
.pageTopBtn_inner {
	margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  cursor: default;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: .3s;
}
.pageTopBtn.-show {
  opacity: 1;
}
.pageTopBtn.-show a {
  cursor: pointer;
}
.pageTopBtn.-transition500 {
  transition: .2s ease;
}

@media screen and (min-width:768px) {
  .pageTopBtn a:hover {
    transform: translateY(2px);
    box-shadow: none;
  }
}

@media screen and (max-width:767.98px) {
  .pageTopBtn a {
    width: 48px;
    height: 48px;
  }
  .over_pkup {
    bottom: 135px !important;
  }
}
/*=====================*/



/*otherFeaturesArea
=======================*/
.otherFeaturesArea {
	max-width: 1160px;
	margin: 50px auto 30px;
}

.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;
	}
	.featuresBox {
		gap: 20px;
		padding: 0 20px;
	}
}
/*=====================*/



/*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;
  }
}
/*=====================*/



/*search box
=======================*/
.swiper-slide:nth-of-type(n+5) {
	display: none;
}
/*=====================*/