@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.8rem;
  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 {
	width: 1160px;
	margin: 0 auto;
}
.list .contents_inner section {
	margin-top: 50px;
}
.list section h2 {
	margin: 0;
	color: #5f5f5f;
	font-size: 3rem;
	border-bottom: 2px solid #5f5f5f;
}
.list section h3 {
	margin: 0;
	padding: 15px 22px;
	font-size: 1.8rem;
	border-bottom: 1px dashed #8a8a8a;
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
	.contents_inner {
		width: 100%;
		padding: 0 10px;
	}
	.list .contents_inner section {
		margin-top: 35px;
	}
	.list section h2 {
		margin: 0;
		font-size: 2rem;
	}
	.list section h3 {
		margin: 0;
		padding: 5px 0;
		font-size: 1.5rem;
	}
}

/*---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);
}
.list .kvTitWrap.anim_scroll {
  transform: translate(-50%, -20%) scale(.7);
}
.list .kvTitWrap.anim_scroll.scrollin {
  transform: translate(-50%, -50%) scale(1);
}
.list .readMore__button.anim_scroll {
  transform: translate(-50%, 40px);
}
.list .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
=======================*/
.list .kvArea {
	position: relative;
}
.list .kv {
	position: relative;
	height: 200px;
	margin: 0;
}
/*.kv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}*/
.list .kvTitWrap {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 5;
}
.list .kvArea h1 {
	position: relative;
	display: inline-block;
	margin: 0;
	color: #fff;
	font-size: 4rem;
}
.list .kvArea h1::before {
  position: absolute;
  content: "";
  background: url(/med/feature/abroad/kaigai_guide/report/cmn/img/icon_title.png) no-repeat;
  width: 30px;
  height: 35px;
  top: 20%;
  left: -18%;
}
.list .kvTitWrap p {
	color: #fff;
	font-size: 1.4rem;
}
.list .kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767.98px) {
	.list .kv, .list .kv .slider-item {
		height: 100px;
	}
	.list .kvTitWrap {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.list .kvArea .nationalFlag {
		max-width: 45px;
	}
	.list .kvArea h1 {
		max-width: 265px;
    margin: 0;
		padding: 0;
		font-size: 3rem;
		font-weight: normal;
		line-height: 1.4;
	}
	.list .kvArea h1::before {
    top: 50%;
    left: -10%;
		transform: translateY(-50%);
		width: 15px;
		height: 17px;
		background-size: contain;
	}
	.list .kvTitWrap p {
		font-size: 1.2rem;
	}
}
/*=====================*/



/*report
=======================*/
/*---radioBox---*/
.radioBox {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}
.radioBox .input_wrap {
	/*height: 43px;*/
	margin: 0 8px 8px 0;
	color: #6cb0f4;
}
.radioBox .input_wrap a{
    color: #6cb0f4;
}
.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_wrap .all_item a:hover{
    color: #ffffff;
}
.radioBox input:checked + label a{
    color: #ffffff;
}
.radioBox .input_wrap:last-of-type {
	margin-right: 0;
}
.radioBox input[name="area_filter"] {
  display: none;
}
.radioBox input:checked + label {
  color: #fff !important;
  background-color: #6cb0f4;
}
.radioBox label {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 135px;
    height: 100%;
	padding: 8px 10px;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: -1px;
	border: 2px solid #cddef3;
	cursor: pointer;
	transition: .3s;
    line-height: 1;
}


@media screen and (min-width:768px) {
	.radioBox label:hover {
		color: #fff;
		background-color: #6cb0f4;
		transition: .3s;
	}
}
@media screen and (max-width:767.98px) {
	.radioBox {
		margin-top: 20px;
        gap:5px;
	}
    .radioBox .input_wrap {
        width: 147px;
        margin: 0;
    }
	.radioBox .input_wrap:nth-of-type(2n) {
		margin-right: 0;
	}
	.radioBox label {
        width: 100%;
		padding: 10px 10px;
		font-size: 1.3rem;
	}
}
/*--------------*/


.reportItem_wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	padding: 0 20px 0;
	overflow: hidden;
}
.reportItem {
	max-width: 360px;
	margin: 0 20px 20px 0;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
	border-radius: 5px;
	overflow: hidden;
}
.reportItem:nth-of-type(3n) {
	margin-right: 0;
}
.reportItem a {
	color: #5f5f5f;
}
.reportItem .imgBlock {
	position: relative;
	width: 360px;
	height: 236px;
  min-height: 150px;
	text-align: center;
	background: #c1c1c1;
}
.reportItem .imgBlock img {
	height: 100%;
	object-fit: cover;
	background: #c1c1c1;
}
.reportItem .imgBlock .imgCaption {
  position: absolute;
  right: 3px;
  bottom: 3px;
  padding: 4px;
  color: #ffffff;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
  border-radius: 0 0 5px 5px;
  overflow-wrap: break-word;
  text-shadow: 1px 1px 1px #333, -1px 1px 1px #333, 1px -1px 1px #333, -1px -1px 1px #333, 1px 0px 1px #333, 0px 1px 1px #333, -1px 0px 1px #333, 0px -1px 1px #333;
}
.reportItem .imgBlock .newMark {
	margin-right: 5px;
	padding: 4px 7px 1px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	background: #d13839;
}
.reportItem .imgBlock .postDate {
	padding: 4px 7px 1px;
	font-size: 1.4rem;
	font-weight: bold;
	background: #f5f6f7;
}
.reportItem .imgBlock .dateBox {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
}
.reportItem .txtBlock {
	padding: 10px;
}
.reportItem .dateBox,
.reportItem .tagBox,
.reportItem .bottomTxtBox,
.reportItem .conductorBox {
	display: flex;
}
.reportItem .tagBox {
	flex-wrap: wrap;
    line-height: 1.2;
    gap: 0 5px;
   /* height: 100%;
    max-height: 30px;*/
}
.reportItem .reportItem_tag {
	/*margin-right: 7px;*/
	color: #a3a3a3;
	font-size: 1.3rem;
    line-height: 1;
}
.reportItem .reportItem_tag:last-of-type {
	margin-right: 0;
}
.reportItem .reportItem_tit {
	/*margin-top: 5px;*/
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4;
}
.reportItem .reportItem_introduction {
	margin-top: 3px;
	font-size: 1.4rem;
    max-height: fit-content;
}
.reportItem .bottomTxtBox {
	justify-content: space-between;
	align-items: center;
	margin-top: 10px;
	font-size: 1.3rem;
	font-weight: bold;
}
.reportItem .conductorBox {
	align-items: center;
}
.reportItem .conductorBox .conductorImg {
  max-width: 45px;
  max-height: 45px;
	margin-right: 8px;
}
.reportItem .bottomTxtBox .areaName {
	position: relative;
}
.reportItem .bottomTxtBox .areaName::after {
	content: '';
  position: absolute;
  width: 17px;
  height: 22px;
  background: url(/med/feature/abroad/kaigai_guide/report/cmn/img/list/ic_area.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
}
.no_report {
	margin: 0 auto;
  color: #5F5F5F;
  font-size: 3rem;
  font-weight: bold;
    text-align: center;
}

@media screen and (min-width:768px) {
	.reportItem a:hover {
		opacity: .7;
	}
    .reportItem .txtBlock {
   border-top: 1px solid #eeeeee;
}
}
@media screen and (max-width:767.98px) {
     .reportItem .txtBlock {
   border-left: 1px solid #eeeeee;
}
    .reportItem .tagBox {
    max-height: max-content;
}
	.reportItem_wrap {
		margin-top: 15px;
		padding: 2px 3px 10px;
        justify-content: center;
	}
	main .reportItem {
		width: 100%;
        max-width: 550px;
		margin-right: 0;
		margin-bottom: 12px;
	}
    main .ranking .reportItem {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0;
        max-width: 300px;
	}
	.reportItem a {
		display: flex;
	}
	.reportItem .imgBlock {
    width: 35%;
		height: auto;
    min-height: 150px;
    display: grid;
    align-items: center;
    background-color: #f3f3f3;
	}	
	.reportItem .imgBlock img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
    /*max-height: 150px;*/
	}
	.reportItem .imgBlock.dummy img {
		object-fit: contain;
	}
	.list .reportItem .imgBlock {
		/*max-height: 142px;*/
	}
	.reportItem .imgBlock .imgCaption {
		right: 2px;
		bottom: 2px;
		padding: 3px;
		font-size: 1rem;
		line-height: 1.2;
	}
	.reportItem .imgBlock .postDate,
	.reportItem .imgBlock .newMark {
		padding: 2px 4px 1px;
		font-size: 1rem;
		letter-spacing: -.5px;
	}
	.reportItem .txtBlock {
    width: 65%;
	}
	.reportItem .reportItem_tag {
    /*margin-right: 5px;*/
    font-size: 1.1rem;
	}
	.reportItem .reportItem_tit {
    font-size: 1.5rem;
        margin-top: 5px;
	}
	
	
	.reportItem .bottomTxtBox .areaName {
		font-size: 1rem;
	}
	.reportItem .bottomTxtBox .areaName::after {
		width: 11px;
		height: 14px;
		left: -11px;
	}
	.no_report {
    margin: 20px auto;
    font-size: 2.5rem;
	}
}
@media screen and (max-width:359px) {
	.reportItem .imgBlock .postDate,
	.reportItem .imgBlock .newMark {
		letter-spacing: -1.5px;
	}
}
/*=====================*/



/*readMoreBtn
=======================*/
#index {
  position: relative;
}
.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 105px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #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: 2;
}
.readMore__button {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
  display: none;
  width: 200px;
  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: 200px;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 50px;
  outline: none;
  background-color: #f8f8f8;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .1);
  color: #818181;
  cursor: pointer;
  transition: color .25s cubic-bezier(.4, 0, .2, 1) 0s, border-color .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.readMore__button__label {
  padding: 5px 10px;
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
}
.label_after {
  position: relative;
}
.label_after:after, .readMore__button__label:before {
  right: 16px;
  width: 12px;
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  height: 1px;
  background: #6f6f6f;
  content: "";
}
.label_after:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
 
@media screen and (min-width: 768px) {
  .readMore__button__type:hover {
    border-color: #fff;
    color: #fff;
    background: #9c9c9c;
    transition: .3s;
    box-shadow: none;
  }
  .readMore__button__type:hover .label_after:after, .readMore__button__type:hover .readMore__button__label:before {
    background: #fff;
    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.4rem;
    font-weight: 700;
  }
  .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%);
  }
}
/*=======================*/




/*snsArea
=======================*/
.snsBox_wrap,
.snsBox > a,
.snsBox .titBox {
	display: flex;
}
.snsBox > a,
.snsBox .titBox {
	align-items: center;
}
.snsBox_wrap {
	padding: 20px 22px;
}
.snsBox {
	width: 100%;
	margin-right: 20px;
	box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .2);
	border-radius: 5px;
}
.snsBox > a {
	padding: 10px;
	justify-content: space-between;
	transition: .3s;
}
.snsBox:nth-of-type(3n) {
	margin-right: 0;
}
.snsBox .snsTit {
	margin-left: 8px;
	font-size: 2rem;
	font-weight: bold;
}
.snsBox .snsTit.line {
	color: #4cc764;
}
.snsBox .snsTit.instagram {
	color: #dd2250;
}
.snsBox .snsTit.xTwitter {
	color: #000000;
}

@media screen and (min-width:768px) {
	.snsBox > a:hover {
		opacity: .7;
		transition: .3s;
	}
}

@media screen and (max-width:767.98px) {
	.snsBox_wrap {
		padding: 10px 0;
	}
	.snsBox {
		margin-right: 5px;
	}
	.snsBox > a {
		padding: 10px 7px;
	}
	.snsBox .snsIcon {
		width: 31px;
	}
	.snsBox .snsTit {
		margin-left: 5px;
		font-size: 1.3rem;
	}
	.snsBox .snsTit.instagram {
		font-size: 1.1rem;
	}
	.snsBox .snsQrCode {
		display: none;
	}
}

@media screen and (max-width:374px) {
	.snsBox .snsTit.instagram {
		font-size: 1rem;
	}
}
/*=====================*/


/*searchArea
=======================*/
.searchArea {
	line-height: 1.4;
}
.searchArea .tab__detail {
	position: relative;
	z-index: 3;
}
/*---search（search.cssと併用）---*/
.searchArea .home-main-search-condition {
	position: relative;
	width: 100%;
	padding: 0;
	z-index: 6;
}
.searchArea .home-main-search-detail__inner {
	overflow: visible;
}
.searchArea .home-main-search-condition__body {
	max-width: 933px;
	margin: 0 auto;
	padding: 30px 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 {
	height: 46px;
	font-size: 2.1rem;
	width:50%;
	background: #000;
}
@media screen and (max-width:767.98px) {
	.searchArea .home-main-search-detail {
		margin-top: 10px;
	}
	.searchArea .home-main-search-detail__inner {
		padding: 18px 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;
		margin-top: 30px;
		font-size: 1.4rem;
	}
}
/*------------*/
/*=====================*/


/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0 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: 50px;
	}
	.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;
  }
}
/*=====================*/


/*stickyBar
=======================*/
.stickyBar {
	display: inline-block;
	position:sticky;
	bottom: 60%;
	left: 100%;
	transform: translateY(50%);
  opacity: 0;
  visibility: collapse;
	z-index: 10;
}
.stickyBar.-transition500 {
	transition: .2s ease;
}
.stickyBar.-show {
	opacity: 1;
  visibility: visible;
}
.stickyBar .accordion {
  position: relative;
}
.stickyBar .accordion_flex{
	display: flex;
}
.stickyBar .accordionTitle {
  cursor: pointer;
	color: #4181d3;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px 50px 5px 20px;
	background: #fff;
	border: 1px solid #4181d3;
	border-radius: 50px 0 0 50px;
	transition: .3s;
}
.stickyBar .accordionItem.topLink {
	background: #4181d3;
	border: 1px solid #4181d3;
	border-radius: 50px 0 0 50px;
}
.stickyBar .topLink a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 5px 50px 5px 20px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
}
.stickyBar .topLink a::after {
	position: absolute;
  content: '';
  top: 35%;
  right: 6%;
  transform: rotate(-45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  cursor: pointer;
}
.stickyBar .accordionItem.pamphletLink {
	background: #fff;
	border: 1px solid #4181d3;
	border-radius: 50px 0 0 50px;
}
.stickyBar .pamphletLink a {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 5px 30px 5px 20px;
  color: #4181d3;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
}
.stickyBar .pamphletLink a .pcOnly {
    font-size: 1.3rem;
}
.stickyBar .pamphletLink a::after {
	position: absolute;
  content: '';
  top: 35%;
  right: 6%;
  transform: rotate(-45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid #4181d3;
  border-bottom: 2px solid #4181d3;
  cursor: pointer;
}
.stickyBar .accordionItem {
	position: relative;
}
.stickyBar .accordionContent {
  display: none;
  width: 90%;
  margin-left: auto;
  padding: 0px 25px 0 0;
  color: #4181d3;
  font-weight: bold;
  background: #e3ecf8;
  border-left: 1px solid #4181d3;
}
.stickyBar .accordionContent p {
  margin-bottom: 1px;
  line-height: 1.5;
}
.stickyBar .accordionContent .icon_movie{
  background: #FDF9FF url("../images/recruit_ic_04.png") no-repeat 319px 17px;
}
.stickyBar .accordionContent p:last-of-type{
  margin-bottom: 0;
}
.stickyBar .accordionContent > p > a{
	display: inline-block;
	width: 100%;
  padding: 5px 0 8px 20px;
	color: #4181d3;
	transition: .3s;
}
/* 矢印 */
.stickyBar .accordionTitle {
  position: relative;
}
.stickyBar .accordionTitle::before,
.stickyBar .accordionTitle::after {
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  height: 0.2rem;
  background-color: #4181d3;
  border-radius: 5px;
  top: 50%;
  right: 2%;
  bottom: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.stickyBar .accordionTitle::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.stickyBar .accordionTitle.open::after {
  transform: rotate(0deg);
}

.stickyBar .accordionContent p {
	position: relative;
}
.stickyBar .accordionContent p::after {
	position: absolute;
  content: '';
  top: 45%;
  right: -13px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #4181d3;
  border-bottom: 2px solid #4181d3;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width:768px) {
	.stickyBar .accordionTitle:hover,
	.stickyBar .accordionContent > p > a:hover,
	.stickyBar .pamphletLink a:hover {
		color: #cc0d21;
		transition: .3s;
	}
}

@media screen and (max-width:767.98px) {
	.stickyBar {
		display: block;
		bottom: 0;
		transform: translateY(0);
		margin-top: 20px;
	}
	.stickyBar .accordionContainer {
		display: flex;
		flex-wrap: wrap;
		/*flex-direction: row-reverse;*/
	}
	.stickyBar .topLink a,
	.stickyBar .pamphletLink a,
	.stickyBar .accordionTitle {
		padding: 7px 25px 4px 15px;
		font-size: 1.3rem;
	}
	.stickyBar .topLink a::after {
		top: 35%;
    right: 7%;
	}
	.stickyBar .pamphletLink a::after {
		right: 7%;
	}
	.stickyBar .accordionItem.topLink,
	.stickyBar .accordionTitle,
	.stickyBar .accordionItem.pamphletLink {
		border-radius: 0;
	}
	.stickyBar .accordionItem.topLink,
	.stickyBar .accordionItem,
	.stickyBar .accordionItem.pamphletLink {
		width:  calc(100% / 2);
		margin-top: auto;
  }
  .stickyBar .accordionItem.topLink a, 
  .stickyBar .accordionItem.pamphletLink a {
    height: 35px;
  }
  .stickyBar .accordionItem.pamphletLink a {
    padding: 9px 25px 3px 15px;
  }
	/*.stickyBar .accordionItem:nth-of-type(n+4) {
		width: 50%;
	}*/
	/*.stickyBar .accordionItem.topLink,
	.stickyBar .accordionItem.pamphletLink {
		height: 37.1px;
	}*/
	.stickyBar .accordionContent {
		width: 100%;
  	border: 1px solid #4181d3;
	}
	.stickyBar .accordionContent > p > a {
		font-size: 1.3rem;
	}
	.stickyBar .accordionTitle::before,
	.stickyBar .accordionTitle::after {
		width: 1.6rem;
		right: 3%;
	}
}
/*=====================*/


/*otherParts
=======================*/
.newMark_hidden { 
	display: none;
}
.newMark_visible {
	display: block;
}
.Footer {
	margin-top: 0;
}
/*=====================*/
/*rankingArea
=======================*/
.report_rankingArea .ranking{
    display: flex;
    justify-content: space-between;
    gap:20px;
    margin: 30px 20px 0;
}
.report_rankingArea .ranking .rank{
    width: calc(100% / 5);
}
.report_rankingArea .reportItem .imgBlock,.home .reportArea .reportItem .imgBlock{
    width: 100%;
    height: 110px;
    min-height: 110px;
}
.report_rankingArea .reportItem .conductorBox .conductorImg {
  max-width: 35px;
  max-height: 35px;
	margin-right: 8px;
}

.report_rankingArea {
    max-width: 1160px;
    margin: 20px auto;
	padding: 15px 0;
	background: #fff;
}
.report_rankingArea .rank{
    flex: 1;
    position: relative;
     
}
.report_rankingArea .reportItem {
    width: 100%;
   
}
.report_rankingArea .reportItem .reportItem_tit {
  flex: 1;
}
main section.report_rankingArea h2 {
	color: #3f80d2;
	text-align: center;
	border-bottom: none;
    border-bottom: 1px dashed #bdbdbd;
    padding-bottom: 10px;
}
main section.report_rankingArea h2 span {
	position: relative;
}
main section.report_rankingArea h2 span::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -40px;
	transform: translateY(-60%);
	width: 34px;
	height: 29px;
	background: url("/med/feature/abroad/kaigai_guide/cmn/img/home/ic_ranking.png") no-repeat;
	background-size: 34px 29px;
}
.report_rankingArea .tit_description {
	padding-bottom: 10px;
	color: #3f80d2;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	border-bottom: 1px dashed #bdbdbd;
}
.report_rankingArea .reportItem .tagBox,
.report_rankingArea .reportItem .reportItem_introduction,
.report_rankingArea .reportItem .imgBlock .postDate,
.home .reportArea .reportItem .tagBox,
.home .reportArea .reportItem .reportItem_introduction,
.home .reportArea .reportItem .imgBlock .postDate,
.report_rankingArea .reportItem .imgBlock .newMark
{
    display: none;
}
.report_rankingArea .reportItem .reportItem_tit,
.home .reportArea .reportItem .reportItem_tit{
    font-size: 1.5rem;
    margin-top: 0px;
}
.report_rankingArea .reportItem .bottomTxtBox,
.home .reportArea .reportItem .bottomTxtBox{
    flex-wrap: wrap;
    justify-content: flex-end;
}
.report_rankingArea .reportItem .conductorBox,
.home .reportArea .reportItem .conductorBox{
    width: 100%;
}

.reportItem .conductorBox .conductorImg {
  max-width: 35px;
  max-height: 35px;
	margin-right: 8px;
}
@media screen and (max-width:767.98px) {
    .report_rankingArea .reportItem .imgBlock,.home .reportArea .reportItem .imgBlock{
    height: auto;
}
    .reportItem .conductorBox .conductorImg,.report_rankingArea .reportItem .conductorBox .conductorImg{
    width: 21px;
    margin-right: 4px;
	}
    .report_rankingArea .reportItem .txtBlock,
    .home .reportArea .reportItem .txtBlock {
  display: flex;
        flex-wrap: wrap;
        align-items: stretch;
}
    .report_rankingArea .reportItem .bottomTxtBox,
    .home .reportArea .reportItem .bottomTxtBox{
        width: 100%;
    }
    .report_rankingArea .reportItem .imgBlock,
    .home .reportArea .reportItem .imgBlock{
    width: 40%;
    max-width: 110px;
}
	.report_rankingArea {
		margin: 20px auto 0!important;
		padding: 15px 10px;
	}
	main section.report_rankingArea h2 span::after {
		top: 45%;
    left: -20px;
    transform: translateY(-45%);
		width: 15px;
		height: 16px;
		background-size: contain;
	}
	.report_rankingArea .tit_description {
		font-size: 1.2rem;
    }
    .report_rankingArea .ranking{
        flex-wrap: wrap;
        justify-content: center;
    margin: 30px 0 0;
    }
    #rankingarea{
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .report_rankingArea .ranking .rank{
        width: 100%;
        max-width: 300px;
        flex:auto;
    }
    .report_rankingArea .reportItem .reportItem_tit{
        flex:auto;
    }
}

.report_rankingArea .first,
.report_rankingArea .second,
.report_rankingArea .third,
.report_rankingArea .fourth,
.report_rankingArea .fifth{
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background-size: 40px;
    z-index: 1;
}

.report_rankingArea .first,.report_rankingArea .second,.report_rankingArea .third{
     width: 55px;
    height: 45px;
    top: -18px;
    left: -10px;
    background-size: 55px 45px;
}
@media screen and (max-width:767.98px) {
    .report_rankingArea .first,
.report_rankingArea .second,
.report_rankingArea .third,
.report_rankingArea .fourth,
.report_rankingArea .fifth{
    left: -10px;
}

.report_rankingArea .first,.report_rankingArea .second,.report_rankingArea .third{
    left: -15px;
}
    .report_rankingArea .ranking .reportItem .imgBlock .dateBox{
    left: 60px;
    }
    .ranking:after,.reportItem_wrap:after{
    content: "";
    display: block;
    width: 300px;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}
}

.report_rankingArea .reportItem .imgBlock .dateBox{
    left: auto;
    right: 5px;
}
main .report_rankingArea .reportItem .conductorBox .conductorName {
		font-size: 1.5rem;
	}
main .reportItem .conductorBox .conductorName {
    font-size: 1.5rem;
}
@media screen and (max-width:767.98px) {
main .reportItem .reportItem_introduction,
	main .reportItem .bottomTxtBox .conductorBox .conductorName ,main .report_rankingArea .reportItem .conductorBox .conductorName{
    font-size: 1.2rem;
    }}
#rankingarea .reportItem{
    display: block !important;
}