@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;
}
@media screen and (min-width:768px) {
  .spOnly {
    display: none;
  }
}
@media screen and (max-width:767.98px) {
  .pcOnly {
    display: none;
  }
}
/*animation
=======================*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
  .anim_scroll_sp {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
  }
}
/*kvArea
=======================*/
.kvArea {
  position: relative;
}
.kvArea_tit {
  text-align: center;
  font-size: 3.5rem;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  transform: translateY(-20px);
}
.kvArea {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 250px;
}
@media screen and (min-width:768px) {
  .kvArea.is-domestic {
    background: url("../img/dom_kv_bg.webp") center;
  }
  .kvArea.is-abroad {
    background: url("../img/ab_kv_bg.webp") center;
  }
}
@media screen and (max-width:767.98px) {
  .kvArea.is-domestic {
    background: url("../img/dom_kv_bg_sp.webp") center;
  }
  .kvArea.is-abroad {
    background: url("../img/ab_kv_bg_sp.webp") center;
  }
}
.kvArea h1 {
  position: relative;
  font-size: 6.3rem;
  padding-left: 60px;
  margin: 10px 0 0;
}
.kvArea h1::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 47px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/calendar_ic.webp") center;
}
.area-group {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.kvArea .area-menu {
  display: flex;
  justify-content: space-between;
  width: 1160px;
  margin: 0;
}
.kvArea .area-menu li {
  width: 560px;
  height: auto;
  border-radius: 10px 10px 0 0;
}
.kvArea .area-menu li a {
  padding: 10px 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}
.kvArea .area-menu li span {
  position: relative;
  padding-left: 40px;
  font-size: 2.0rem;
}
.kvArea .area-menu li:first-child {
  background-color: #0058a4;
}
.kvArea.is-domestic .area-menu li:first-child:hover {
  background-color: #107ad5;
  cursor: pointer;
}
.kvArea .area-menu li:first-child span::before {
  background: url(/med/app-files/img/cmn_ic45.png) no-repeat;
  background-size: 30px;
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.kvArea .area-menu li:last-child {
  background-color: #009b66;
}
.kvArea.is-abroad .area-menu li:last-child:hover {
  background-color: #11B37B;
  cursor: pointer;
}
.kvArea .area-menu li:last-child span::before {
  background: url(/med/app-files/img/cmn_ic16.png) no-repeat;
  background-size: 34px 30px;
  width: 34px;
  height: 30px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width:767.98px) {
  .kvArea_tit {
    font-size: 1.6rem;
  }
  .kvArea {
    height: 145px;
  }
  .kvArea h1 {
    position: relative;
    font-size: 2.4rem;
    padding-left: 30px;
    margin: 10px 0 0;
  }
  .kvArea h1::before {
    background-size: 25px 24px;
    width: 25px;
    height: 24px;
  }
  .area-group {
    width: 100%;
  }
  .kvArea .area-menu {
    width: 100%;
  }
  .kvArea .area-menu li {
    width: 50%;
    border-radius: 5px 5px 0 0;
  }
  .kvArea .area-menu li a {
    border-radius: 5px 5px 0 0;
    padding: 10px 0 5px;
  }
  .kvArea .area-menu li span {
    position: relative;
    padding-left: 25px;
    font-size: 1.6rem;
  }
  .kvArea .area-menu li:first-child span::before {
    background-size: 20px;
    width: 20px;
    height: 20px;
  }
  .kvArea .area-menu li:last-child span::before {
    background-size: 20px 18px;
    width: 20px;
    height: 18px;
  }
}
/*=====================*/
#abroad {
  border-top: 10px solid #0058a4;
}
#domestic {
  border-top: 10px solid #009b66;
}
/*=====================*/
/*Main
=======================*/
.Main section {
  width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.Main section h2 {
  margin: 50px 0 40px;
  line-height: 1;
}
section h2 span {
  position: relative;
  display: inline-block;
  justify-content: center;
  padding: 0 55px;
  font-size: 2.4rem;
  font-weight: bold;
}
.Main #abroad section h2 span {
  color: #0058a4;
}
.Main #domestic section h2 span {
  color: #009b66;
}
.Main section h2 span:before, .Main section h2 span:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #0058a4;
}
.Main #domestic section h2 span:before, .Main #domestic section h2 span:after {
  background-color: #009b66;
}
.Main section h2 span:before {
  left: -50px;
}
.Main section h2 span:after {
  right: -50px;
}
@media screen and (max-width:767.98px) {
  .Main section {
    width: 100%;
  }
  .Main section h2 {
    width: 100%;
    margin: 45px 0 30px;
    text-align: center;
  }
  section h2 span {
    display: inline-block;
    width: 100%;
    padding: 0;
    font-size: 2rem;
  }
  .Main section h2 span:before, .Main section h2 span:after {
    top: 50%;
    display: inline-block;
    width: 35px;
    height: 1px;
  }
  .Main section h2 span:before {
    left: 0px;
  }
  .Main section h2 span:after {
    right: 0px;
  }
}
/*scroll
=======================*/
.js-scrollable {
  overflow-x: auto;
}
@media screen and (max-width: 767.98px) {
  .js-scrollable img {
    min-width: 700px;
    width: 100%;
    height: auto;
  }
}
/*tab
=======================*/
.tab-item {
  display: none;
}
.tab-contents {
  width: 100%;
}
.tab-container {
  margin-top: 50px;
  width: 100%;
}
a.tab-link {
  display: block;
  padding: 8px 20px 5px;
  text-decoration: none;
  color: #616161;
  font-weight: bold;
  border: 1px solid #ccc;
  font-size: 2.7rem;
  text-align: center;
  line-height: 1.1;
  border-radius: 5px;
}
.tab-link.active {
  color: #ffffff;
}
.tab-nav li:first-child .tab-link.active {
  background-color: #51b053;
  border: 4px solid #1f9321;
  text-shadow: 1px 1px 2px #1f9321, -1px 1px 2px #1f9321, 1px -1px 2px #1f9321, -1px -1px 2px #1f9321;
}
.tab-nav li:nth-child(2) .tab-link.active {
  background-color: #f0c129;
  border: 4px solid #e6af00;
  text-shadow: 1px 1px 2px #dd8500, -1px 1px 2px #dd8500, 1px -1px 2px #dd8500, -1px -1px 2px #dd8500;
}
.tab-nav li:nth-child(3) .tab-link.active {
  background-color: #f17a33;
  border: 4px solid #e95700;
  text-shadow: 1px 1px 2px #e95700, -1px 1px 2px #e95700, 1px -1px 2px #e95700, -1px -1px 2px #e95700;
}
.tab-nav li:last-child .tab-link.active {
  background-color: #478ae7;
  color: #fff;
  border: 4px solid #2850CA;
  text-shadow: 1px 1px 2px #2850CA, -1px 1px 2px #2850CA, 1px -1px 2px #2850CA, -1px -1px 2px #2850CA;
}
@media (min-width: 768px) {
  a.tab-link span {
    display: block;
    font-size: 1.6rem;
  }
  .tab-nav li:first-child .tab-link {
    background-color: #c8ebc8;
    border: 4px solid #9cc89d;
  }
  .tab-nav li:nth-child(2) .tab-link {
    background-color: #fcf1cf;
    border: 4px solid #ffdb6d;
  }
  .tab-nav li:nth-child(3) .tab-link {
    background-color: #f9dece;
    border: 4px solid #f4b48e;
  }
  .tab-nav li:last-child .tab-link {
    background-color: #a6c8f8;
    border: 4px solid #a6c8f8;
  }
  .tab-nav {
    list-style: none;
    display: flex;
    padding: 0;
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    margin: 0px 0 40px;
  }
  .tab-nav li {
    width: calc(100% / 4 - 6px);
  }
}
/*sp_accordion
=======================*/
@media (max-width: 767.98px) {
  a.tab-link span {
    font-size: 1.6rem;
  }
  .tab-nav {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    margin: 0 auto;
  }
  .tab-nav li {
    order: 2;
    display: none;
    width: 100%;
  }
  .tab-nav li .tab-link {
    border-radius: 0;
    border-top: 0;
  }
  .tab-nav li:first-child .tab-link {
    background-color: #EEFFEE;
  }
  .tab-nav li:nth-child(2) .tab-link {
    background-color: #FFFAEE;
  }
  .tab-nav li:nth-child(3) .tab-link {
    background-color: #FFF3ED;
  }
  .tab-nav li:last-child .tab-link {
    background-color: #F3F8FF;
  }
  .tab-nav li .tab-link.active {
    border-radius: 5px;
    position: relative;
  }
  .tab-nav li .tab-link.active::after {
    content: "";
    background: url("../img/arrow_ic.webp") no-repeat;
    background-size: 15px 25px;
    width: 15px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 20%;
    transform: rotate(90deg) translateY(50%);
  }
  .tab-nav.current-spring .nav-item-spring, .tab-nav.current-summer .nav-item-summer, .tab-nav.current-autumn .nav-item-autumn, .tab-nav.current-winter .nav-item-winter {
    display: block !important;
    order: 1;
  }
  .tab-nav.is-open li {
    display: block !important;
  }
  .tab-link {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid #eee;
  }
}
/*tab_contents
=======================*/
.tab-contents ul {
  display: grid;
  grid-template-columns: calc(50% - 5px) calc(50% - 5px);
  gap: 10px;
  line-height: 0;
}
.tab-contents ul li.banner-box {
  order: 1;
  margin: 0;
  padding: 0;
}
.tab-contents ul li.banner-box a {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-radius: 5px;
  background-color: #ffffff;
  line-height: 1.2;
  box-shadow: 0px 4px 10px -5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.banner-box a:hover {
  opacity: 0.7;
  background-color: #fff;
}
.tab-contents ul li.banner-box.close-bn {
  filter: grayscale(100%);
  order: 2;
}
.banner-box.close-bn a {
  opacity: 0.8;
}
.tab-contents #spring ul li.banner-box a {
  border: 2px #1f9321 solid;
}
.tab-contents #summer ul li.banner-box a {
  border: 2px #E6AF00 solid;
}
.tab-contents #autumn ul li.banner-box a {
  border: 2px #E95700 solid;
}
.tab-contents #winter ul li.banner-box a {
  border: 2px #2850CA solid;
}
.tab-contents ul li.banner-box .arrow-ic {
  background: url("../img/arrow_ic.webp") no-repeat #1f9321 center;
  background-size: 13px auto;
  width: 28px;
}
.tab-contents #spring ul li.banner-box .arrow-ic {
  background-color: #1f9321;
}
.tab-contents #summer ul li.banner-box .arrow-ic {
  background-color: #E6AF00;
}
.tab-contents #autumn ul li.banner-box .arrow-ic {
  background-color: #E95700;
}
.tab-contents #winter ul li.banner-box .arrow-ic {
  background-color: #2850CA;
}
.tab-contents ul li.banner-box .bn-img {
  margin: 10px 0 10px 10px;
}
.tab-contents ul li.banner-box .bn-img img {
  width: 120px;
  height: auto;
  border: 1px solid #8d8d8d;
}
.tab-contents ul li.banner-box .bn-cont {
  width: 393px;
  margin: 10px 0;
  color: #323232;
}
.tab-contents ul li.banner-box .bn-cont small {
  font-size: 1.3rem;
  border-radius: 5px;
  padding: 3px 15px 2px;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
}
.tab-contents #spring ul li.banner-box .bn-cont small {
  background-color: #51b053;
}
.tab-contents #summer ul li.banner-box .bn-cont small {
  background-color: #dfae0f;
}
.tab-contents #autumn ul li.banner-box .bn-cont small {
  background-color: #F5782F;
}
.tab-contents #winter ul li.banner-box .bn-cont small {
  background-color: #4B77FF;
}
.tab-contents ul li.banner-box .bn-cont .bn-tit {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  margin: 10px 0;
}
.tab-contents ul li.banner-box .bn-cont .bn-txt {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .tab-container {
    margin-top: 30px;
    padding: 0 10px;
  }
  .tab-contents ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  .tab-contents ul li.banner-box a {
    width: 100%;
    max-width: 350px;
    box-shadow: 0px 2px 5px -3px rgba(0, 0, 0, 0.3);
  }
  .tab-contents ul li.banner-box .arrow-ic {
    background: url("../img/arrow_ic.webp") no-repeat #1f9321 center;
    background-size: 6px auto;
    width: 18px;
  }
  .tab-contents ul li.banner-box .bn-img {
    margin: 10px 0 10px 10px;
  }
  .tab-contents ul li.banner-box .bn-img img {
    width: 100%;
    max-width: 90px;
  }
  .tab-contents ul li.banner-box .bn-cont {
    width: 100%;
    max-width: 210px;
    margin: 10px 0;
  }
  .tab-contents ul li.banner-box .bn-cont small {
    font-size: 1.2rem;
    border-radius: 5px;
    padding: 2px 15px 1px;
  }
  .tab-contents ul li.banner-box .bn-cont .bn-tit {
    font-size: 1.5rem;
    margin: 7px 0 5px;
  }
  .tab-contents ul li.banner-box .bn-cont .bn-txt {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .tab-contents ul li.banner-box .bn-cont .bn-txt br {
    display: none;
  }
}
/*Landscape_banner
=======================*/
.Landscape_bn {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}
.Landscape_bn a:hover {
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .Landscape_bn {
    padding: 0 10px;
  }
  .Landscape_bn a {
    max-width: 400px;
  }
}
/*area_button
=======================*/
.area_button {
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap {
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi {
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before, .area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit {
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li {
  width: 100%;
}
.area_button__link li a {
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after {
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
  .area_button {
    margin-top: 0;
  }
  .area_button__link li {
    max-width: 138px;
  }
  .area_button__link li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width:767.98px) {
  .area_button__link {
    margin: 0 10px 0;
  }
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/
/*pageTopBtn
=======================*/
.pageTopBtn {
  display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
  left: 93%;
  position: sticky;
  bottom: 30px;
  text-align: right;
  opacity: 0;
  z-index: 10;
}
.pageTopBtn_inner {
  margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
  background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
  opacity: 1;
}
.pageTopBtn.-show a {
  cursor: pointer;
}
.pageTopBtn.-transition500 {
  transition: .2s ease;
}
@media screen and (min-width:768px) {
  .pageTopBtn a:hover {
    background: #c2c2c2;
  }
}
@media screen and (max-width:767.98px) {
  .pageTopBtn a {
    width: 45px;
    height: 45px;
  }
  .pageTopBtn a:before {
    width: 16px;
    height: 16px;
  }
}
/*=====================*/
/*themefeaturesArea
=======================*/
.themefeaturesArea {
  margin-top: 50px;
}
.themefeaturesArea_inner {
  max-width: 1160px;
  margin: 35px auto 0;
}
.themefeaturesArea h2 {
  margin: 0;
  text-align: center;
  font-size: 2.4rem;
}
.themefeaturesArea h2 span {
  position: relative;
}
.themefeaturesArea h2 span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: -110px;
  width: 80px;
  height: 2px;
  background: #929292;
  transform: translateY(-50%);
}
.themefeaturesArea h2 span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -110px;
  width: 80px;
  height: 2px;
  background: #929292;
  transform: translateY(-50%);
}
@media screen and (max-width:767.98px) {
  .themefeaturesArea {
    margin-top: 50px;
  }
  .themefeaturesArea h2 {
    overflow: hidden;
  }
  .themefeaturesArea h2 span {
    font-size: 2rem;
  }
  .themefeaturesArea h2 span::before, .themefeaturesArea h2 span::after {
    height: 1px;
    width: 350%;
  }
  .themefeaturesArea h2 span::before {
    left: -370%;
  }
  .themefeaturesArea h2 span::after {
    right: -370%;
  }
}
.slider.slick-initialized {
  display: block;
}
/*slick-slider
=======================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
/*relationList
=======================*/
.relationList {
  display: flex;
  justify-content: center;
  width: 87.4%;
  max-width: 990px;
  margin: 0 auto !important;
}
.relationList li {
  box-sizing: border-box;
  width: 33.3%;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .relationList li {
    width: 50%;
  }
}
.relationList li a {
  display: block;
  margin: 0 6%;
  transition: opacity .3s ease-out;
}
.relationList li a:hover {
  opacity: .7;
}
.relationList__nav {
  display: none;
  margin-top: 10px;
  text-align: center;
}
.relationList__nav > div {
  position: relative;
  display: inline-block;
  padding: 0 75px;
}
@media screen and (max-width: 767.98px) {
  .relationList__nav > div {
    padding: 0 52px;
  }
}
.relationList__nav .slick-arrow {
  width: 35px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .relationList__nav .slick-arrow {
    width: 40px;
  }
}
.relationList__nav .slick-arrow:before {
  content: '';
  display: block;
  padding-top: 100%;
  background: url(../img/btn_arrow_01.png) no-repeat 0 0/contain;
  opacity: 1;
}
.relationList__nav .slick-next {
  right: 0;
}
.relationList__nav .slick-next:before {
  transform: rotateZ(180deg);
}
.relationList__nav .slick-prev {
  left: 0;
}
.relationList__nav .slick-dots {
  position: static;
  display: inline-block;
  line-height: 1;
}
.relationList__nav .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
  overflow: hidden;
}
.relationList__nav .slick-dots button {
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  text-indent: -9999px;
}
.relationList__nav .slick-dots .slick-active button {
  background: #909090;
}
.relationList.slider + .relationList__nav {
  display: block;
}
.relationList.slider + .relationList__nav.add_none {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .relationList.slider + .relationList__nav.add_none {
    display: block;
  }
  .otherFeaturesBox > li {
    width: 168px;
    margin: 2%;
  }
}
/*scroll_hint
=======================*/
@media screen and (max-width: 767.98px) {
  .scroll-hint-icon {
    z-index: 5;
  }
  .js-scrollable {
    overflow-x: auto;
    display: flex;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .calendar-img {
    display: block;
    max-width: none;
    margin-left: 10px;
    margin-right: 10px;
    width: 860px;
    height: auto;
  }
  .js-scrollable::-webkit-scrollbar {
    height: 8px;
  }
  .js-scrollable::-webkit-scrollbar-track {
    background: #eee;
    margin-left: 20px;
    margin-right: 20px;
  }
  .js-scrollable::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
  }
}
section p.note {
  text-align: center;
  margin: 50px 0 0;
  background: #F3F3F3;
  width: 100%;
  padding: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  section p.note {
    font-size: 1.3rem;
    margin: 30px 10px 10px;
  }
}





