@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
  color: #49403f;
  line-height: 1.7;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
#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;
	}
  .pcOnly {
		display: block;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
  .spOnly {
		display: block;
	}
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/
.kvArea {
  position: relative;
  background-size: auto auto;
  background-color: rgba(242, 182, 182, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(242, 174, 173, 1) 10px, rgba(242, 174, 173, 1) 20px);
  overflow: hidden;
}
.kv {
  height: 470px;
  margin: 0 auto;
}
.kvTitWrap {
  position: absolute;
  top: 40%;
  left: 50%;
  max-width: 1160px;
  width: 100%;
  transform: translate(-50%, -40%);
  text-align: center;
  margin-top: 5px;
  z-index: 5;
}
.kv img {
  position: absolute;
  top: -12%;
  left: 50%;
  transform: translate(-50%, -12%);
}
.kvArea h1 {
  position: relative;
  margin: 10px 0 0;
  font-size: 6.0rem;
  line-height: 1.4;
  font-family: "Kosugi Maru", sans-serif;
}
.kvArea .introTxt {
  padding: 20px 50px;
  font-size: 2.1rem;
  letter-spacing: -1px;
  position: relative;
}
.kvArea .introTxt::before {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/kv_img01.webp") no-repeat;
  bottom: -11%;
  left: 2%;
  width: 197px;
  height: 259px;
}
.kvArea .introTxt::after {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/kv_img02.webp") no-repeat;
  bottom: 12%;
  right: 5%;
  width: 167px;
  height: 172px;
}
@media screen and (max-width:767.98px) {
  .kv {
    height: 235px;
  }
  .kv img {
    top: -6%;
  }
  .kvTitWrap {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .kvArea .kv_txt {
    width: 50%;
    height: auto;
    margin-bottom: 5px;
  }
  .kvArea h1 {
    width: 95%;
    letter-spacing: -0.5px;
    margin: 0 auto;
    font-size: 2.5rem;
  }
  .kvArea .introTxt {
    margin: 5px 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .kvArea .introTxt::before {
    bottom: -13%;
    left: 2%;
    width: 79px;
    height: 104px;
    background-size: contain;
  }
  .kvArea .introTxt::after {
    bottom: 12%;
    right: 2%;
    width: 75px;
    height: 77px;
    background-size: contain;
  }
  .kv img {
    width: 90%;
  }
}
@media screen and (max-width:365px) {
  .kvArea h1 {
    width: 95%;
    font-size: 2.2rem;
  }
  .kvArea .introTxt {
    font-size: 1.1rem;
  }
  .kvArea .introTxt::before {
    bottom: -26%;
    left: 2%;
    width: 61px;
    height: 79px;
  }
  .kvArea .introTxt::after {
    bottom: 12%;
    right: 1%;
    width: 65px;
    height: 67px;
  }
}
/*=====================*/


/*menuNav
=======================*/
.menuNav {
	background: #ff8583;
  position: sticky;
  top: 0;
  z-index: 100;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 1.9rem;;
	text-align: center;
	background: #e55250;
	border-right: 2px solid #fff;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	width: 100%;
	padding: 12px;
  color: #fff;
  line-height: 1.2;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
	position: relative;
}
.menuNav .navItem a::after {
	position: absolute;
	content: '';
	top: 50%;
	right: 4%;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
.menuNav .navItem a span {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
	.menuNav .navItem {
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover {
    background: #f7efef;
    color: #e55250;
    opacity: .8;
    transition: 0.2s ease all;
	}
  .menuNav .navItem a:hover::after {
    border-right: 2px solid #e55250;
    border-bottom: 2px solid #e55250;
  }
}

@media screen and (max-width:767.98px) {
  .menuNav_inner {
    flex-wrap: wrap;
  }
	.menuNav .navItem {
		font-size: 1.5rem;
    width: calc(100% / 3);
	}
  .menuNav .navItem:nth-of-type(1),
  .menuNav .navItem:nth-of-type(2),
  .menuNav .navItem:nth-of-type(3) {
    border-bottom: 2px solid #fff;
  }
  .menuNav .navItem:nth-of-type(3) {
    border-right: none;
  }
  .menuNav .navItem:nth-of-type(4),
  .menuNav .navItem:nth-of-type(5) {
    width: calc(100% / 2);
  }
  .menuNav .navItem a {
    align-items: start;
    text-align: start;
    font-weight: 700;
  }
  .menuNav .navItem a::after {
    top: 45%;
    right: 6%;
    transform: translateY(-45%) rotate(45deg);
  }
  .menuNav .navItem a span {
    font-size: 1.0rem;
  }
}

@media screen and (max-width:365px) {
  .menuNav .navItem {
    font-size: 1.2rem;
  }
  .menuNav .navItem a span {
    font-size: 0.9rem;
  }
  .menuNav .navItem a::after {
    right: 4%;
    width: 8px;
    height: 8px;
  }
}
/*=====================*/

/*contentArea_inner
=======================*/
.col02 {
  background-color: #fff3f3;
}
.contentArea_inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0;
}
.h2_wrap h2 {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.2rem;
  margin: 10px auto;
  position: relative;
  width: fit-content;
  border-top: 2px solid #e55250;
  border-bottom: 2px solid #e55250;
  z-index: 5;
}
.h2_wrap h2::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  rotate: 135deg;
  translate: -50%;
}
.h2_wrap h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  z-index: 3;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #e55250 #e55250 transparent transparent;
  rotate: 135deg;
  translate: -50%;
}
.col01 h2 {
  background-color: #fff;
}
.col01 h2::before, .col01 h2::after {
  background-color: #fff;
}
.col02 h2 {
  background-color: #fff3f3;
}
.col02 h2::before, .col02 h2::after {
  background-color: #fff3f3;
}
.sub_t {
  margin: 40px 0;
  font-size: 1.6rem;
}
.h2_wrap {
  position: relative;
}
.h2_sub {
  position: absolute;
  background: #fff;
  padding: 2px 6px;
  color: #e55250;
  font-size: 1.6rem;
  font-weight: 600;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
@media screen and (max-width:767.98px) {
  .contentArea_inner {
    padding: 10px;
  }
  .h2_wrap h2 {
    font-size: 2.4rem;
    width: 100%;
  }
  .h2_wrap h2::after {
    width: 20px;
    height: 20px;
    bottom: -10px;
  }
  .h2_sub {
    font-size: 1.2rem;
  }
  .sub_t {
    margin: 25px 0;
    font-size: 1.3rem;
  }
}
@media screen and (max-width:365px) {
  .h2_wrap h2 {
    font-size: 2.0rem;
  }
}
/*=====================*/

/*newsletterArea
=======================*/
.newsletterArea h2 {
  padding: 10px 20px 10px 85px;
}
.newsletterArea h2 span {
  position: relative;
}
.newsletterArea h2 span::before {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/icn_h2_01.webp") no-repeat;
  width: 44px;
  height: 29px;
  top: 0;
  left: -18%;
}
.newsletterArea .coupon_wrap {
  background-size: auto auto;
  background-color: rgba(255, 215, 215, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 195, 195, 1) 10px, rgba(255, 195, 195, 1) 20px);
  padding: 15px;
  width: 85%;
  margin: 70px auto 0;
  position: relative;
}
.newsletterArea .ribbon {
  position: absolute;
 width: 275px;
  height: 92px;
  top: -13%;
  left: -3%;
  z-index: 10;
}
.newsletterArea .coupon_wrap .coupon_box {
  background-color: #fff;
  padding: 15px 0 10px;
}
.newsletterArea .coupon_wrap .coupon_box p {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.newsletterArea .coupon_wrap .coupon_box .red {
  color: #e55250;
  font-size: 3.3rem;
}
.newsletterArea .coupon_wrap .coupon_box .cp_date {
  display: flex;
  justify-content: center;
}
.newsletterArea .coupon_wrap .coupon_box .cp_date p {
  font-size: 2.0rem;
}
.newsletterArea .coupon_wrap .coupon_box .cp_date .tour_l {
  font-size: 2.5rem;
}
.newsletterArea .coupon_wrap .coupon_box .cp_date p + p {
  margin-left: 20px;
}
.newsletterArea .coupon_wrap .cp_date p .line {
  font-size: 3.0rem;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(255, 207, 0, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.newsletterArea .coupon_wrap .cp_date p .num_l {
  font-size: 4.0rem;
}
@media (min-width: 768px) {
  .newsletterArea .w_btn li a:hover {
    top: 2px;
    color: #e55250;
    box-shadow: none;
  }
}
@media screen and (max-width:767.98px) {
  .newsletterArea h2 {
    padding: 15px 20px 15px 60px;
  }
  .newsletterArea h2 span::before {
    width: 35px;
    height: 23px;
    background-size: contain;
    left: -16%;
  }
  .newsletterArea .coupon_wrap {
    width: 100%;
    padding: 10px 5px;
    margin: 45px auto 0;
  }
  .newsletterArea .coupon_wrap .ribbon {
    width: 175px;
    height: 59px;
    background-size: contain;
  }
  .newsletterArea .coupon_wrap .coupon_box p {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .newsletterArea .coupon_wrap .coupon_box .red {
    font-size: 2.0rem;
  }
  .newsletterArea .coupon_wrap .coupon_box .cp_date p + p {
    margin-left: 5px;
  }
  .newsletterArea .coupon_wrap .coupon_box .cp_date p {
    font-size: 1.2rem;
  }
  .newsletterArea .coupon_wrap .coupon_box .cp_date .tour_l {
    font-size: 1.3rem;
  }
  .newsletterArea .coupon_wrap .cp_date p .line {
    font-size: 1.3rem;
  }
  .newsletterArea .coupon_wrap .cp_date p .num_l {
    font-size: 1.7rem;
  }
}
@media screen and (max-width:365px) {
  .newsletterArea h2 span::before {
    left: -21%;
  }
  .newsletterArea h2 {
    padding: 15px 2px 15px 42px;
    letter-spacing: 0.9px;
  }
  .newsletterArea .coupon_wrap .coupon_box .cp_date {
    flex-direction: column;
  }
}
/*=====================*/


/*snsArea
=======================*/
.snsArea h2 {
  padding: 10px 30px 10px 68px;
  background-color: #fff3f3;
}
.snsArea h2 span {
  position: relative;
}
.snsArea h2 span::before {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/icn_h2_02.webp") no-repeat;
  width: 26px;
  height: 40px;
  top: -10%;
  left: -35%;
}
.sns_inner {
  padding: 75px 35px;
  background-color: #fff;
  margin: 50px auto 0;
}
.snsArea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.snsArea ul .sns_box {
  text-align: left;
  position: relative;
  border-radius: 10px;
}
.sns_box a {
  color: #49403f;
  display: block;
  height: 100%;
  border: 3px solid #e55250;
  border-radius: 10px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .4);
}
.snsArea ul li .snsbtn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 260px;
}
.snsArea ul li {
  width: 48%;
}
.snsArea ul li .icon_txt_box {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 30px 0px 10px 20px;
  font-weight: 700;
}
.snsArea ul li .icon_txt_box .left_img {
  width: 15%;
}
.snsArea ul li .icon_txt_box .right_t {
  margin-left: 20px;
  width: 80%;
}
.snsArea ul li .icon_txt_box .right_t p {
  font-size: 2.0rem;
}
.snsArea ul li .icon_txt_box .right_t p + p {
  font-size: 1.6rem;
  line-height: 1.2;
}
.sns_box .snsbtn span {
  color: #fff;
  display: block;
  font-size: 2.0rem;
  line-height: 1.5;
  padding: 0 15px 0 10px;
  position: relative;
}
.sns_box .snsbtn span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 4%;
  transform: translateY(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.sns_box .l_link span {
  background-color: #06c755;
  border: 2px solid #06c755;
  border-radius: 10px;
}
.sns_box .x_link span {
  background-color: #282828;
  border: 2px solid #282828;
  border-radius: 10px;
}
.sns_box .i_link span {
  background-color: #ea33a7;
  border: 2px solid #ea33a7;
  border-radius: 10px;
}
.snsArea .coupon_wrap {
  background-size: auto auto;
  background-color: rgba(255, 215, 215, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(255, 195, 195, 1) 10px, rgba(255, 195, 195, 1) 20px);
  padding: 15px;
  position: relative;
}
.snsArea .ribbon {
  position: absolute;
  width: 275px;
  height: 92px;
  top: -13%;
  left: -6%;
}
.snsArea .coupon_wrap::after {
  content: "";
  position: absolute;
  top: 50%;   /* 縦軸をセンタリングする */ 
  left: -6%;
  transform: translateY(-50%);   /* 縦軸をセンタリングする */  
  border: 13px solid transparent;
  border-right: 18px solid #ffc3c3;
}
.snsArea .coupon_wrap .coupon_box {
  background-color: #fff;
  padding: 35px 0;
}
.snsArea .coupon_wrap .coupon_box p {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.snsArea .coupon_wrap .coupon_box .cp_s {
  font-size: 1.4rem;
}
.snsArea .coupon_wrap .coupon_box .red {
  color: #e55250;
  font-size: 2.6rem;
}
.snsArea .coupon_wrap .coupon_box .cp_date {
  display: flex;
  justify-content: center;
}
.snsArea .coupon_wrap .coupon_box .cp_date p {
  font-size: 1.5rem;
}
.snsArea .coupon_wrap .coupon_box .cp_date .tour_l {
  font-size: 1.6rem;
}
.snsArea .coupon_wrap .coupon_box .cp_date p + p {
  margin-left: 20px;
}
.snsArea .coupon_wrap .cp_date p .line {
  font-size: 2.0rem;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(255, 207, 0, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.snsArea .coupon_wrap .cp_date p .num_l {
  font-size: 2.5rem;
}
.snsArea .sm_link {
  text-align: center;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .snsArea ul li:nth-of-type(n+3) {
    margin-top: 50px;
  }
  .sns_box a:hover {
    opacity: 0.55;
    transition: .25s;
    box-shadow: none;
  }
}
@media screen and (max-width:767.98px) {
  .sns_inner {
    padding: 10px 5px 15px;
    margin: 25px auto 0;
  }
  .snsArea ul {
    flex-flow: column;
  }
  .snsArea ul li {
    width: 100%;
  }
  .snsArea ul li + li {
    margin-top: 20px;
  }
  .snsArea ul .sns_box {
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .2);
  }
  .sns_box a {
    padding-bottom: 50px;
  }
  .snsArea ul li .icon_txt_box {
    padding: 10px 7px 5px;
  }
  .snsArea ul li .icon_txt_box .right_t {
    margin-left: 10px;
  }
  .snsArea ul li .icon_txt_box .right_t p {
    font-size: 1.5rem;
  }
  .snsArea ul li .icon_txt_box .right_t p + p {
    font-size: 1.3rem;
  }
  .snsArea ul li .snsbtn {
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    text-align: center;
  }
  .snsArea ul li .l_link span,
  .snsArea ul li .x_link span,
  .snsArea ul li .i_link span {
    border-radius: 30px;
    font-size: 1.5rem;
  }
  .snsArea .coupon_wrap {
    margin-top: 35px;
    padding: 10px;
  }
  .snsArea .coupon_wrap .ribbon {
    width: 165px;
    height: 56px;
    background-size: contain;
    top: -12%;
    left: -3%;
    z-index: 10;
  }
  .snsArea .coupon_wrap::after {
    top: -41px;
    left: 44%;
    transform: rotate(90deg);
    border: 20px solid transparent;
    border-right: 25px solid #ffc3c3;
  }
  .snsArea .coupon_wrap .coupon_box {
    padding: 15px 0;
  }
  .snsArea .coupon_wrap .coupon_box p {
    font-size: 1.4rem;
  }
  .snsArea .coupon_wrap .coupon_box .red {
    font-size: 1.5rem;
  }
  .snsArea .coupon_wrap .coupon_box .cp_date p {
    font-size: 1.1rem;
  }
  .snsArea .coupon_wrap .coupon_box .cp_date .tour_l {
    font-size: 1.2rem;
  }
  .snsArea .coupon_wrap .cp_date p .line {
    font-size: 1.5rem;
  }
  .snsArea .coupon_wrap .cp_date p .num_l {
   font-size: 1.3rem;
  }
  .snsArea .coupon_wrap .coupon_box .cp_s {
    font-size: 1.2rem;
  }
  .snsArea .coupon_wrap .coupon_box .cp_date p + p {
    margin-left: 5px;
  }
}
@media screen and (max-width:374px) {
  .snsArea h2 span::before {
    width: 20px;
    height: 31px;
    background-size: contain;
  }
  .snsArea .coupon_wrap .ribbon {
    width: 130px;
    height: 43px;
    top: -6%;
    left: -6%;
  }
  .snsArea .coupon_wrap .coupon_box .cp_date {
    flex-direction: column;
  }
  
}
/*=====================*/


/*tabinakamaArea
=======================*/
.tabinakamaArea h2 {
  padding: 10px 20px 10px 72px;
}
.tabinakamaArea h2 span {
  position: relative;
}
.tabinakamaArea h2 span::before {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/icn_h2_03.webp") no-repeat;
  width: 40px;
  height: 39px;
  top: -3%;
  left: -14%;
}
.tabinakamaArea .tn_wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
}
.tabinakamaArea .tn_btn {
  position: absolute;
  bottom: 6%;
  right: 1%;
}
.tabinakamaArea .tn_wrap a {
  color: #49403f;
  display: block;
  border: 3px solid #e55250;
  border-radius: 10px;
  padding: 25px 50px 35px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .4);
}
.tabinakamaArea .tn_wrap .tn_box {
  display: flex;
  align-items: center;
}
.tabinakamaArea .tn_wrap .tn_box p {
  font-weight: 700;
  font-size: 2.4rem;
  margin-left: 40px;
}
.tabinakamaArea .tn_wrap .tn_btn span {
  color: #fff;
  font-size: 2.0rem;
  padding: 3px 35px 2px 15px;
  background-color: #399374;
  border-radius: 10px;
  display: block;
  position: relative;
}
.tabinakamaArea .tn_wrap .tn_btn span::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 4%;
  transform: translateY(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media (min-width: 768px) {
  .tabinakamaArea .tn_wrap a:hover {
    opacity: 0.55;
    transition: .25s;
    box-shadow: none;
  }
}
@media screen and (max-width:767.98px) {
  .tabinakamaArea h2 {
    letter-spacing: 0.4px;
    padding: 10px 0 10px 40px;
  }
  .tabinakamaArea h2 span::before {
    width: 30px;
    height: 29px;
    background-size: contain;
    top: -15%;
  }
  .tabinakamaArea .tn_wrap a {
    padding: 20px 20px 50px 20px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .2);
  }
  .tabinakamaArea .tn_wrap .tn_box {
    justify-content: space-around;
  }
  .tabinakamaArea .tn_wrap .tn_box img {
    width: 40%;
  }
  .tabinakamaArea .tn_wrap .tn_box p {
    font-size: 1.2rem;
    margin-left: 15px;
  }
  .tabinakamaArea .tn_wrap .tn_btn {
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    text-align: center;
  }
  .tabinakamaArea .tn_wrap .tn_btn span {
    font-size: 1.5rem;
    border-radius: 30px;
  }
}
@media screen and (max-width:365px) {
  .tabinakamaArea .tn_wrap a {
    padding: 20px 10px 50px 10px;
  }
  .tabinakamaArea .tn_wrap .tn_box p {
    margin-left: 5px;
  }
}
/*=====================*/


/*pamphletArea
=======================*/
.pamphletArea h2 {
  padding: 10px 20px 10px 75px;
}
.pamphletArea h2 span {
  position: relative;
}
.pamphletArea h2 span::before {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/icn_h2_04.webp") no-repeat;
  width: 34px;
  height: 40px;
  top: -18%;
  left: -11%;
}
.pamphletArea ul {
  display: flex;
  max-width: 1130px;
  justify-content: space-between;
  margin: 40px auto 0;
}
.pamphletArea ul li {
  width: 48%;
}
.pamphletArea .pamph_wrap {
  border-radius: 20px;
  background-color: #fff;
  padding-bottom: 25px;
}
.pamphletArea .pamph_wrap .pamph_h {
  background-color: #e55250;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 20px 20px 0 0;
  padding: 5px 0;
}
.pamphletArea .pamph_wrap .pamph_h span {
  font-size: 1.7rem;
}
.pamphletArea .pamph_wrap p:nth-of-type(2) {
  padding: 35px 0 15px;
}
.pamphletArea .siryo_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
.pamphletArea .siryo_wrap .siryo_btn_wrap {
  width: 75%;
}
.pamphletArea .siryo_wrap .siryo_btn_wrap p + p {
  font-size: 1.3rem;
  padding: 0;
  margin: 5px 0;
  text-align: left;
}
.pamphletArea .siryo_wrap .siryo_btn_wrap p + p a {
  color: #467886;
  text-decoration: underline;
}
.pamphletArea .siryo_wrap .siryo_btn a {
  font-size: 2.0rem;
  color: #392e2c;
  border: 3px solid #e55250;
  border-radius: 10px;
  padding: 5px 0;
  display: block;
  width: 100%;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .3);
  position: relative;
}
.pamphletArea .siryo_wrap .siryo_btn a::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 3px solid #e55250;
  border-right: 3px solid #e55250;
}
.pamphletArea .siryo_wrap .ebook_box {
  width: 22%;
  height: auto;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.1));
}

.pamphletArea .dp_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 20px auto;
}
.pamphletArea .dp_btn li {
  width: 30%;
  margin-left: 20px;
}
.pamphletArea .dp_btn li a {
  display: block;
  font-size: 2.0rem;
  color: #333;
  height: 100%;
  border: 3px solid #e55250;
  border-radius: 10px;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .3);
  padding: 3px 40px 3px 2px;
  position: relative;
}
.pamphletArea .dp_btn li a::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 3px solid #e55250;
  border-right: 3px solid #e55250;
}
.pamphletArea .dp_btn li:nth-of-type(3n+1) {
  margin-left: 0;
}
.pamphletArea .dp_btn li:nth-of-type(n+4) {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .pamphletArea .siryo_wrap .siryo_btn_wrap p + p a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width:767.98px) {
  .pamphletArea h2 {
    padding: 10px 0px 10px 20px;
    letter-spacing: -2px;
  }
  .pamphletArea h2 span::before {
    width: 22px;
    height: 26px;
    top: -7%;
    left: -8%;
    background-size: contain;
  }
  .pamphletArea ul {
    flex-direction: column;
  }
  .pamphletArea ul li {
    width: 100%;
  }
  .pamphletArea ul li + li {
    padding-top: 10px;
  }
  .pamphletArea .pamph_wrap {
    border-radius: 10px;
    padding-bottom: 10px;
  }
  .pamphletArea .pamph_wrap .pamph_h {
    font-size: 1.9rem;
    line-height: 1.2;
    border-radius: 10px 10px 0 0;
  }
  .pamphletArea .pamph_wrap .pamph_h span {
    font-size: 1.2rem;
  }
  .pamphletArea .pamph_wrap p:nth-of-type(2) {
    padding: 10px 0;
    font-size: 1.2rem;
  }
  .pamphletArea .siryo_wrap .siryo_btn_wrap {
    width: 100%;
  }
  .pamphletArea .siryo_wrap .siryo_btn a {
    font-size: 1.5rem;
    padding: 3px 0;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .2);
  }
  .pamphletArea .siryo_wrap .siryo_btn_wrap p + p {
    font-size: 1.2rem;
  }
  .pamphletArea .dp_btn {
    flex-direction: unset;
    width: 100%;
    margin: 10px auto;
  }
  .pamphletArea .dp_btn li {
    margin-left: 10px;
  }
  .pamphletArea .dp_btn li + li {
    padding-top: 0;
  }
  .pamphletArea .dp_btn li:nth-of-type(n+4) {
    margin-top: 10px;
  }
  .pamphletArea .dp_btn li a {
    font-size: 1.5rem;
    padding: 3px 15px 3px 0;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .2);
  }
  .pamphletArea .dp_btn li a::before {
    right: 7px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #e55250;
    border-right: 2px solid #e55250;
  }
}
/*=====================*/

/*seminarArea
=======================*/
.seminarArea h2 {
  padding: 10px 20px 10px 65px;
}
.seminarArea h2 span {
  position: relative;
}
.seminarArea h2 span::before {
  position: absolute;
  content: "";
  background: url("/med/sociallinks/img/icn_h2_05.webp") no-repeat;
  width: 34px;
  height: 40px;
  top: -23%;
  left: -28%;
}
@media screen and (max-width:767.98px) {
  .seminarArea h2 span::before {
    width: 28px;
    height: 33px;
    top: -21%;
    left: -27%;
    background-size: contain;
  }
}
/*=====================*/

/*共通ボタンstyle(メルマガ・旅行説明会)
=======================*/
.w_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px auto;
}
.w_btn li {
  width: 19%;
}
.w_btn li a {
  display: block;
  font-size: 2.0rem;
  color: #333;
  height: 100%;
  border: 3px solid #e55250;
  border-radius: 10px;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, .3);
  padding: 3px 90px 3px 2px;
  position: relative;
}
.w_btn li a::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-top: 3px solid #e55250;
  border-right: 3px solid #e55250;
}

@media (min-width: 768px) {
  .w_btn {
    max-width: 1080px;
  }
}
@media screen and (max-width:767.98px) {
  .w_btn {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 10px auto;
  }
  .w_btn li {
    width: 31%;
    margin-left: 5px;
  }
  .w_btn li + li {
    padding-top: 0;
  }
  .w_btn li:nth-of-type(n+4) {
    margin-top: 10px;
  }
  .w_btn li a {
    font-size: 1.5rem;
    padding: 3px 30px 3px 0;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, .2);
  }
  .w_btn li a::before {
    right: 7px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #e55250;
    border-right: 2px solid #e55250;
  }
  
}
/*=====================*/

/*共通テキストstyle(リンクテキスト)
=======================*/
.sm_link {
  font-size: 1.3rem;
}
.sm_link a {
  color: #467886;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .sm_link a:hover {
    text-decoration: none;
  }
}
/*=====================*/

/*共通ボタンホバー(資料請求・デジタルパンフレット・旅行説明会)
=======================*/
@media (min-width: 768px) {
  .cl_link:hover {
    color: #e55250;
    background-color: #f5d6d6;
    cursor: pointer;
  }
  .cl_link:hover::before {
    border-top: 3px solid #e55250;
    border-right: 3px solid #e55250;
  }
}
/*=====================*/

/*ribbonアニメーション
=======================*/
.coupon_wrap .ribbon {
  animation: poyopoyo 2s ease-out infinite;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/*=====================*/

/*miniBanner_wrap
=======================*/
.miniBanner_wrap {
  max-width: 1800px;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}
.miniBanner_box{
  display: flex;
  padding: 0 12px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 5px;
}
.miniBanner_wrap .home-utility-heading__title {
  padding-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin:0;
}
.miniBanner_inner {
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.miniBanner_block {
  display: flex;
}
.miniBanner_img {
  flex-shrink: 0;
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.miniBanner_title {
  transition: opacity .25s cubic-bezier(.4, 0, .2, 1) 0s;
}
.miniBanner_text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #000;
}
@media print, screen and (min-width: 768px) {
  .miniBanner_inner {
    padding: 12px;
    width:calc(100% / 3);
  }
  .miniBanner_block:hover .miniBanner_img {
    opacity: .7;
  }
  .miniBanner_img {
    width: 80px;
    margin-right: 18px;
  }
  .miniBanner_title {
    font-weight: 700;
  }
  .miniBanner_block:hover .miniBanner_title {
    color: #cc0d21;
    text-decoration: underline;
  }
  .miniBanner_detail {
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767.98px) {
  .miniBanner_wrap {
    max-width: 100%;
    padding: 20px 15px 0;
  }
  .miniBanner_wrap .home-utility-heading__title {
    font-size: 2rem;
    margin:0;
  }
  .miniBanner_box {
    flex-wrap: wrap;
  }
  .miniBanner_inner {
    width: 100%;
    padding: 10px;
  }
  .miniBanner_img {
    width: 82px;
    margin-right: 11px;
  }
  .miniBanner_title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
  }
  .miniBanner_detail {
    margin-top: 5px;
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
/*=====================*/




/*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: #e55250;
  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: 58%;
  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 {
    opacity: 0.65;
    transition: .25s;
  }
}

@media screen and (max-width:767.98px) {
  .pageTopBtn a {
    width: 45px;
    height: 45px;
  }
  .pageTopBtn a:before {
    width: 16px;
    height: 16px;
  }
}
/*=====================*/

.scroll-hint-icon{
  z-index: 5;
}