@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
=======================*/
.kvArea {
  position: relative;
}
.kv {
  height: 470px;
  margin: 0;
	background: url("../img/kv_bg.webp") no-repeat center;
	display: flex;
	justify-content: center;
}
.kv img {
  width: auto;
  height: 100%;
}
.kv_sub{
	position: relative;
	padding: 60px 0;
	text-align: center;
}
.kv_sub::before, .kv_sub::after{
	content: "";
	position: absolute;
	z-index: -1;
}
@media screen and (min-width:768px) {
	.kv_sub::before, .kv_sub::after{
	width: 880px;
	height: 260px;
}
.kv_sub::before{
	top: 0;
	left: 0;
	background: url("../img/decoration_parts/decoration_wave_L.webp") no-repeat;
}
.kv_sub::after{
	bottom: 0;
	right:0;
	background: url("../img/decoration_parts/decoration_wave_R.webp") no-repeat;
	}
}
@media screen and (max-width:767.98px) {
	
.kv_sub::before{
	top: 0;
	left: 0;
	background: url("../img/decoration_parts/decoration_wave_L_sp.webp") no-repeat;
}
.kv_sub::after{
	bottom: 0;
	right:0;
	background: url("../img/decoration_parts/decoration_wave_R_sp.webp") no-repeat;
	}
	.kv_sub::before, .kv_sub::after{
	width: 315px;
	height: 78px;
	background-size: 315px 78px;
}
}
.kv_sub h2{
	margin: 0 0 25px;
	position: relative;
	padding: 0 50px;
	font-family: 'Noto Serif JP Medium', serif;
	color: #002d74;
	font-weight: bold;
	font-size: 2.8rem;
	z-index: 1;
	display: inline-block;
}
.kv_sub h2::before, .kv_sub h2::after{
	content: "";
	position: absolute;
	width: 40px;
	height: 40px;
	
}
.kv_sub h2::before{
	left: 0;
	bottom: -10px;
	background: url("../img/decoration_parts/decoration_twinkle_L.webp") no-repeat;
	background-size: 40px;
}
.kv_sub h2::after{
	right: 0;
	top: -10px;
	background: url("../img/decoration_parts/decoration_twinkle_R.webp") no-repeat;
	background-size: 40px;
}
@media screen and (max-width:767.98px) {
	.kv_sub h2{
		font-size: 1.8rem;
		padding: 0 31px;
		margin: 0 0 15px;
	}
	.kv_sub h2::before, .kv_sub h2::after{
	width:30px;
	height: 30px;
}
	.kv_sub h2::before{
	background-size: 30px;
}
.kv_sub h2::after{
	background-size: 30px;
}
}

.kv_sub p{
	font-size:1.8rem;
	color: #272833;
	font-weight: bold;
}
@media screen and (max-width:767.98px) {
	.kv_sub p{
		font-size: 1.3rem;
	}
	.kv{
		align-items: center;
	}
	
}
@media screen and (max-width:375px) {
	.kv_sub p{
		padding: 0 5px;
	}
	
	.kv img {
  width: 100%;
  height: auto;
}
}
@media screen and (max-width:320px) {
	.kv_sub p br{
		display: none;
	}
}























@media screen and (max-width:767.98px) {
  .kv{
    height: 210px;
  }
  
}
/*=====================*/


/*menuNav
=======================*/
.menuNav {
  
	
}
.menuNav_inner {
  display: flex;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}
.menuNav .navItem {
  width: 100%;
  font-size: 2rem;
  text-align: center;
  border-right: 1px solid #6e6e6e;
}
.menuNav .navItem:last-of-type {
  border-right: none;
}
.menuNav .navItem a {
  display: block;
  width: 100%;
  padding: 20px;
  color: #ffffff;
	font-weight: bold;
	background: #002d74;
}
.menuNav .navItem a span {
  position: relative;
}
.menuNav .navItem a span::after {
  position: absolute;
  content: '';
  top: 40%;
  right: -25px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}
/* --- 1. 全体・親要素の制御 --- */
.menuNav {
  overflow: visible !important;
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #d1e3ff;
}

.menuNav_inner {
  position: relative;
  display: flex; 
  overflow: visible !important;
}

.menuNav .navItem {
  position: relative;
  width: 50%; 
  z-index: 1;
}

/* --- 2. Pタグ（親ボタン）のデザイン --- */
.menuNav .navItem p,
.menuNav .navItem > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #002d74;
  color: #ffffff;
  padding: 5px;
  margin: 0;
  height: 80px; 
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
}

/* 矢印（↓） */
.menuNav .navItem p span {
  position: relative;
  padding-right: 10px;
	font-weight: bold;
}

.menuNav .navItem p span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -25px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

/* --- 3. ドロップダウンメニュー本体（ul） --- */
.menuNav .navItem ul {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 1001;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid #6e6e6e;
  box-sizing: border-box;
  pointer-events: none;
}

/* --- 4. メニュー内アイテム --- */
.menuNav .navItem ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color: #6e6e6e;
  background: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #6e6e6e;
  position: relative;
}

.menuNav .navItem ul li:last-child a { border-bottom: none; }

.menuNav .navItem ul li a span {
  position: relative;
  padding-right: 10px;
}

.menuNav .navItem ul li a span::after {
  position: absolute;
  content: '';
  top: 50%;
  right: -20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6e6e6e;
  border-bottom: 2px solid #6e6e6e;
  transform: translateY(-50%) rotate(45deg);
}

/* --- 5. スマホ用設定 (768px以下) --- */
@media (max-width: 768px) {
  .menuNav .navItem {
    position: static; 
  }
  
  .menuNav_inner {
    position: relative;
  }

  /* クリックで .is-open が付与された時のみ表示 */
  .menuNav .navItem.is-open ul {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .menuNav .navItem.is-open p {
    background-color: #174a99;
  }

  .menuNav .navItem ul {
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .menuNav .navItem p { width: 100%; }
  .menuNav .navItem p span { width: 100%; }
  .menuNav .navItem p span::after { right: 2px; }

  .menuNav .navItem.is-open p span::after {
    transform: translateY(-20%) rotate(-135deg);
  }

  .menuNav .navItem ul li a span::after { right: 0; }
}

/* --- 6. デスクトップ用設定 (769px以上) --- */
@media (min-width: 769px) {
  /* ホバー時のみ表示。クリックでの固定(is-open)は無視 */
  .menuNav .navItem:hover ul {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
	.menuNav .navItem:last-child ul li a:hover {
		background: #eeeeee;
	}
  .menuNav .navItem:hover p {
    background-color: #174a99;
    font-weight: bold;
  }

  .menuNav .navItem:hover p span::after {
    transform: translateY(-20%) rotate(-135deg);
  }
}























@media (min-width: 768px) {
  .menuNav .navItem {
    transition: 0.2s ease all;
  }
  .menuNav .navItem a:hover {
    opacity: 1;
    transition: 0.2s ease all;
	  background: #174a99;
  }
}

@media screen and (max-width:767.98px) {
  .menuNav .navItem {
    font-size: 1.5rem;
	  display: flex;
	  align-items: stretch;
  }
  .menuNav .navItem a {
	  display: flex;
	  align-items: center;
    padding: 20px 15px 18px 5px;
	  line-height: 1.2;
  }
	.menuNav .navItem a span{
		display: inline-block;
		width: 100%;
	}
  .menuNav .navItem a span::after {
    top: 30%;
    right: -8px;
    transform: translateY(-30%) rotate(45deg);
  }
}

@media screen and (max-width:359px) {
  .menuNav .navItem {
    font-size: 1.2rem;
  }
}
/*=====================*/


/*pointArea
=======================*/

/*-----pointArea_commonParts-----*/
.pointArea {
  margin-top: 60px;
}
.pointArea_inner {
  /*max-width: 1160px;
  margin: 0 auto;*/
}
.pointArea h2,.courseArea h2{
  margin: 0 0 40px;
  text-align: center;
  font-size: 3rem;
	font-family: 'Noto Serif JP Medium', serif;
	font-weight: bold;
	
}
.pointArea h2 span,.courseArea h2 span{
  position: relative;
	display: inline-block;
	padding: 0 70px;
	color: #002d74;
}

.pointArea h2 span::before,.courseArea h2 span::before{
	left: 0;
	background: url("../img/decoration_parts/h_decoration_L.webp") no-repeat;
}
.pointArea h2 span::after,.courseArea h2 span::after{
  right: 0;
 background: url("../img/decoration_parts/h_decoration_R.webp") no-repeat;
}
.pointArea h2 span::before,.pointArea h2 span::after,.courseArea h2 span::before,.courseArea h2 span::after{
	position: absolute;
  content: '';
  top: 50%;
	transform: translateY(-50%);
	width: 60px;
  height: 17px;
	background-size: 60px 17px;
	z-index: 1;
}
.pointArea .sub_info {
  position: relative;
  margin-left: 3.5em;
  margin-top: 15px;
  font-size: 1.6rem;
}
.pointArea .sub_info.dots::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  top: 14px;
  left: -43px;
  background: #cccccc;
  transform: translateY(-50%);
  border-radius: 50%;
}
.pointArea .txt_note {
  font-size: 1.3rem;
  color: #7e7e7e;
}
.pointArea .emphasisTxt {
  color: #7e7e7e;
  font-weight: bold;
  font-size: 2.4rem;
}

@media screen and (max-width:767.98px) {
  .pointArea {
    margin-top: 55px;
  }
  .pointArea h2,.courseArea h2 {
    font-size: 2rem;
    overflow: hidden;
  }
	.pointArea h2 span,.courseArea h2 span{
	padding: 0 50px;	
	}
	.pointArea h2 span::before,.pointArea h2 span::after,.courseArea h2 span::before,.courseArea h2 span::after{
	width: 40px;
  height: 11px;
	background-size: 40px 11px;
}
  .pointArea .sub_info {
    margin-left: 3.7em;
    font-size: 1.4rem;
  }
  .pointArea .sub_info.dots::after {
    top: 11px;
    left: -40px;
  }
  .pointArea .emphasisTxt {
    font-size: 1.8rem;
  }
	.pointArea h2,.courseArea h2{
  margin: 0 0 20px;
	
}
}
/*-------------------------------*/


/*h3
=======================*/
.pointArea h3 {
	padding: 20px 0 40px;
	margin: 0;
	text-align: center;
	font-size: 3.0rem;
  color: #4e4e4e;
	line-height: 1;
}
.pointArea h3 span {
	position: relative;
}
.pointArea h3 span::before {
	position: absolute;
	content: '';
	top: 50%;
	left: -250px;
	width: 220px;
	height: 2px;
	background: #4e4e4e;
	transform: translateY(-50%);
}
.pointArea h3 span::after {
	position: absolute;
	content: '';
	top: 50%;
	right: -250px;
	width: 220px;
	height: 2px;
	background: #4e4e4e;
	transform: translateY(-50%);
}
@media screen and (max-width:767.98px) {
.pointArea h3 {
    overflow: hidden;
	padding-bottom: 20px;
  }
.pointArea h3 span {
    font-size: 2rem;
  }
/*.pointArea h3 span::before,
.pointArea h span::after {
    height: 1px;
    width: 350%;
  }
.pointArea h3 span::before {
    left: -370%;
  }
.pointArea h3 span::after {
    right: -370%;
  }*/
}
/*=====================*/

.pointAreaIN{
	background-color: #f7f1e5;
	padding: 20px;
	width: 100%;
}
.pointAreaIN .spotBlock01{
	background-color: #ffffff;
	padding: 20px 30px 100px;
	width: 1160px;
	margin: 0 auto 30px;
}
.pointArea h4 {
	font-size: 2rem;
	color: #ffffff;
	padding: 10px;
	background: #a18a63;
	margin: 0 0 20px;
	text-align: center;
	line-height: 1;
}


@media screen and (max-width:767.98px) {
.pointAreaIN .spotBlock01{
	width: 100%;
	margin: 0 auto 30px;
}}





/*hontou_spot
=======================*/
/*---arrow---*/
  .spot_slider_wrap {
    position: relative;
  }
	.spot_slider_wrap ul li{
		padding: 0 12px;
		box-sizing: border-box;
	}
  .spot_slider_wrap .slick-arrow {
    position: absolute; 
    bottom: -100px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
  }
  .spot_slider_wrap .prev-arrow {
    left: 2px;
	  background: url("../img/decoration_parts/arrow_L.webp") no-repeat;
	  background-size: 40px;
	  width: 40px;
	  height: 40px;
  }
  .spot_slider_wrap .next-arrow {
    right:2px;
	   background: url("../img/decoration_parts/arrow_R.webp") no-repeat;
	  background-size: 40px;
	  width: 40px;
	  height: 40px;
  }
	.spot_slider_wrap .prev-arrow:hover,.spot_slider_wrap .next-arrow:hover {
		opacity: 0.8;
	}
@media screen and (max-width:768px) {
	.spot_slider_wrap .prev-arrow:hover,.spot_slider_wrap .next-arrow:hover {
		opacity: 0.8;
	}
	.spot_slider_item{
    opacity: .4;
    transition: opacity .5s; 
}

.spot_slider_item.slick-center{
    opacity: 1;
}
}
/*-----------*/

/* Dots */
.spotBlock01 .slick-dotted.slick-slider {
  margin: 0;
}
.spot_slider_wrap {
  position: relative;
  width: auto;
  margin: 0 -12px;
}
.spotBlock01 .slick-dots {
  position: absolute;
  bottom: -74px;
  left: 50%;
  transform: translate(-50%, -10%);
  display: flex;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.spotBlock01 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}

.spotBlock01 .slick-dots li button {
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.spotBlock01 .slick-dots li button:before {
  font-family: 'slick';
  font-size: 5rem;
  line-height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  /*content: '•';*/
	content: '\2022';
  text-align: center;
  color: #d2d2d5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.spotBlock01 .slick-dots li.slick-active button:before {
  color: #ad894b;
}

@media screen and (min-width:768px) {
  .spotBlock01 .slick-dots li button:hover,
  .spotBlock01 .slick-dots li button:focus {
    outline: none;
  }

  .spotBlock01 .slick-dots li button:hover:before,
  .spotBlock01 .slick-dots li button:focus:before {
    opacity: 1;
  }
  .spotBlock01 .slick-dots li button:hover:before {
  color: #ad894b;
  opacity: 0.75;
  transition: .25s;
  }
}
@media screen and (max-width:767.98px) {
  .spot_slider_wrap {
    width: 100%;
  }
}
/*----------------*/

.spotBlock01 .spot_slider_item .slider_txt p{
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.4;
	color: #272833;
	padding: 0 10px;
}
.spotBlock01 .spot_slider_item .slider_txt p.slider_tit{
	font-size: 1.8rem;
	font-weight: bold;
	color: #ad894b;
	height: 66px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	text-align: center;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.spotBlock01 .spot_slider_item .slider_txt p.slider_tit span{
	font-size: 1.5rem;
	line-height: 1;
}

@media screen and (max-width:767.98px) {
	.pointAreaIN{
		padding: 10px;
	}
	.pointAreaIN .spotBlock01{
		padding: 10px 10px 100px;
	}
	.spot_slider_wrap {
		margin: 0;
	}
  .spotBlock01 .spot_slider_item .slider_txt {
    max-width: 350px;
  }
}







































/*-----------coursearea---------------*/
.courseArea{
	width: 1160px;
	margin: 60px auto 0;
}
.courseArea .course_list{
	text-align: center;
}
.courseArea .course_list h3{
	padding: 20px 0;
	border-top: 2px solid #002d74;
	border-bottom: 2px solid #002d74;
	width: 100%;
	font-size:2.5rem;
	color: #002d74;
	line-height: 1;
}
.courseArea .course_list ul{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.courseArea .course_list ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 350px;
	height: 70px;
	border-radius: 5px;
	background-color: #002d74;
	position: relative;
	font-size: 2.4rem;
	box-shadow: 1px 1px 3px #5d5d5d;
}
.courseArea .course_list ul li a:hover{
	background-color: #174a99;
	box-shadow:none;
}
.courseArea .course_list ul li a::before{
	position: absolute;
	content: '';
	top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border-right: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: translateY(-50%) rotate(-45deg);
}
.courseArea .course_list ul li a span{
	color: #ffffff;
	position: relative;
	font-weight: bold;
}
.courseArea .course_list ul li a span::before{
	content: "";
	width: 67px;
	height: 1px;
	background: #d1b27d;
	position: absolute;
	bottom: 0;
	left: 50%;
	 -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


@media screen and (max-width:767.98px) {
	.courseArea{
	width: 100%;
	margin: 30px auto 0;
	padding: 0 20px;
}
	.courseArea .course_list h3{
		padding: 15px 0;
		font-size:1.8rem;
		line-height: 1.4;
		margin: 0 0 20px;
	}
	.courseArea .course_list ul{
		flex-wrap: wrap;
		gap:10px;
		width: 100%;
	}
	.courseArea .course_list ul li{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.courseArea .course_list ul li a{
		width: 100%;
		max-width: 500px;
		font-size: 1.8rem;
		height:50px;
	}
	.courseArea .course_list ul li a::before{
  right: 10px;
  width: 15px;
  height: 15px;
}
}
























/*-------pointArea_3column-------*/
.pointBox01_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 35px;
  counter-reset: num;
}
.pointBox01 {
  width: 350px;
  margin-right: 55px;
}
.pointBox01:nth-of-type(3n) {
  margin-right: 0;
}
.pointBox01:nth-of-type(n+4) {
  margin-top: 60px;
}
.pointBox01 .pointBox_img {
  max-width: 350px;
  max-height: 210px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.pointBox01 .pointBox_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pointBox01_txt {
  position: relative;
  margin-top: 25px;
  padding: 0 30px;
  font-size: 1.8rem;
}
.pointBox01_txt::before {
  position: absolute;
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  top: -40px;
  right: 30px;
  color: #ebebeb;
  font-family: 'Roboto', sans-serif;
  font-size: 10rem;
  z-index: -1;
}

@media screen and (max-width:767.98px) {
  .pointBox01_wrap {
    display: block;
    padding: 0 10px;
  }
  .pointBox01 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-right: 0;
  }
  .pointBox01:nth-of-type(n+2) {
    margin-top: 33px;
  }
  .pointBox01 .pointBox_img {
    max-width: 210px;
    width: 42%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }
  .pointBox01_txt {
    width: 58%;
    margin-top: 0;
    padding: 0 10px 0 20px;
    font-size: 1.4rem;
  }
  .pointBox01_txt::before {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 11rem;
  }
}
@media screen and (max-width:767.98px) and (min-width:550px) {
  .pointBox01_txt::before {
    right: 10%;
    transform: translateY(-50%);
    font-size: 15rem;
  }
}
@media screen and (max-width:359px) {
  .pointBox01_txt::before {
    font-size: 9rem;
  }
}
/*-------------------------------*/

/*-----pointArea_flexReverse-----*/
.pointBox02_wrap {
  margin-top: 35px;
}
.pointBox02 {
  display: flex;
  align-items: center;
}
.pointBox02:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.pointBox02:nth-of-type(n+2) {
  margin-top: 40px;
}
.pointBox02 .pointBox_img {
  max-width: 520px;
  max-height: 310px;
  width: 100%;
  aspect-ratio: 1.6774 / 1;
  border-radius: 10px;
  overflow: hidden;
}
.pointBox02:nth-of-type(2n) .pointBox_img {
  margin-left: 120px;
}
.pointBox02:nth-of-type(2n+1) .pointBox_img  {
  margin-right: 120px;
}
.pointBox02 .pointBox_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.pointBox02 .pointBox02_txtWrap {
  max-width: 560px;
}
.pointBox02 .pointBox02_txt {
  text-indent: -7.5em;
  margin-left: 7.5em;
  line-height: 2;
  font-size: 1.8rem;
}
.pointBox02 .pointBox02_txt.noLeader {
  text-indent: -3em;
  margin-left: 3em;
}
.pointBox02 .pointBox02_txt:nth-of-type(n+2) {
  margin-top: 40px;
}
.pointBox02 .pointBox02_txt span.num {
  position: relative;
  margin-right: 95px;
  padding: 8px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  background: #cccccc;
  border-radius: 50%;
}
.pointBox02 .pointBox02_txt span.num:not(.noLeader)::after {
  position: absolute;
  content: '・・・';
  top: 56%;
  right: -140px;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: -30px;
}
.pointBox02 .pointBox02_txt span.num.noLeader {
  margin-right: 13px;
}

@media screen and (max-width:767.98px) {
  .pointBox02_wrap {
    padding: 0 45px;
  }
  .pointBox02 {
    display: block;
  }
  .pointBox02:nth-of-type(n+2) {
    margin-top: 35px;
  }
  .pointBox02 .pointBox_img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
  }
  .pointBox02:nth-of-type(2n) .pointBox_img {
    margin-left: 0;
  }
  .pointBox02:nth-of-type(2n+1) .pointBox_img {
    margin-right: 0;
  }
  .pointBox02 .pointBox_img img {
    opacity: 1;
  }
  .pointBox02 .pointBox02_txtWrap {
    margin-top: 25px;
  }
  .pointBox02 .pointBox02_txt {
    text-indent: -3.3em;
    margin-left: 3.3em;
    font-size: 1.4rem;
  }
  .pointBox02 .pointBox02_txt.noLeader {
    text-indent: -3.5em;
    margin-left: 3.5em;
  }
  .pointBox02 .pointBox02_txt:nth-of-type(n+2) {
    margin-top: 25px;
  }
  .pointBox02 .pointBox02_txt span.num {
    margin-right: 10px;
    font-size: 1.4rem;
  }
  .pointBox02 .pointBox02_txt span.num::after {
    display: none;
  }
  /*---iPhone only---*/
  .iPhone .pointBox02 .pointBox02_txt {
    text-indent: -3.5em;
    margin-left: 3.5em;
  }
  .iPhone .pointBox02 .pointBox02_txt.noLeader {
    text-indent: -3.8em;
    margin-left: 3.8em;
  }
  .iPhone .pointBox02 .pointBox02_txt span.num {
    padding: 12px 10px;
  }
/*-----------------*/
}
/*-------------------------------*/

/*--------pointArea_noImg--------*/
.pointBox03_wrap {
  margin-top: 35px;
}
.pointBox03_wrap .pointBox03_txtWrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 145px;
  border-radius: 8px;
  box-shadow: 0 2px 5px 3px rgba(0, 0, 0, .1);
}
.pointBox03_wrap .pointBox03_txt {
  text-indent: -7.3em;
  margin-left: 7.3em;
  line-height: 2;
  font-size: 1.8rem;
}
.pointBox03_wrap .pointBox03_txt:nth-of-type(n+2) {
  margin-top: 40px;
}
.pointBox03_wrap .pointBox03_txt.noLeader {
  text-indent: -3em;
  margin-left: 3em;
}
.pointBox03_wrap .pointBox03_txt span.num {
  position: relative;
  margin-right: 90px;
  padding: 8px 10px;
  font-size: 1.8rem;
  font-weight: bold;
  background: #cccccc;
  border-radius: 50%;
}
.pointBox03_wrap .pointBox03_txt span.num:not(.noLeader)::after {
  position: absolute;
  content: '・・・';
  top: 56%;
  right: -135px;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: -30px;
}
.pointBox03_wrap .pointBox03_txt span.num.noLeader {
  margin-right: 13px;
}

@media screen and (max-width:767.98px) {
  .pointBox03_wrap {
    padding: 0 10px;
  }
  .pointBox03_wrap .pointBox03_txtWrap {
    max-width: 100%;
    padding: 25px 20px;
  }
  .pointBox03_wrap .pointBox03_txt {
    text-indent: -7.5em;
    margin-left: 7.5em;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .pointBox03_wrap .pointBox03_txt:nth-of-type(n+2) {
    margin-top: 30px;
  }
  .pointBox03_wrap .pointBox03_txt.noLeader {
    text-indent: -3.7em;
    margin-left: 3.7em;
  }
  .pointBox03_wrap .pointBox03_txt span.num {
    margin-right: 66px;
    font-size: 1.4rem;
  }
  .pointBox03_wrap .pointBox03_txt span.num:not(.noLeader)::after {
    top: 58%;
    right: -100px;
    font-size: 4rem;
    letter-spacing: -23px;
  }
  .pointArea .pointBox03_wrap .sub_info {
    position: relative;
    margin-left: 3.7em;
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .pointArea .pointBox03_wrap .sub_info.dots::after {
    top: 12px;
    left: -40px;
  }
  /*---iPhone only---*/
  .iPhone .pointBox03_wrap .pointBox03_txt span.num {
    padding: 12px 10px;
  }
  .iPhone .pointBox03_wrap .pointBox03_txt span.num::after {
    top: 52%;
    right: -118px;
  }
/*-----------------*/
}
/*-------------------------------*/

/*=========ポイント下注釈============*/

.annotation {
  color: #666;
  font-size: 1.4rem;
  margin-top: 40px;
  padding: 0 45px;
}

/*--------ナンバリングあり---------*/
.annotation .an_num {
  position: relative;
  padding-left: 2.0em;
}
.annotation_mark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------ナンバリングなし---------*/
.annotation .an_nor {
  position: relative;
  padding-left: 1.8rem;
}
.annotation_mark {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.annotation li + li {
  margin-top: 3px;
}
@media screen and (max-width:767.98px) {
  .annotation {
    color: #444;
    font-size: 1.1rem;
  }
}

/*=====================*/


/*---areaMenu---*/
.areaMenu {
  position: sticky;
  top: 0;
  margin-top: 30px;
  background: #d7d7d7;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, .1);
  z-index: 10;
}
.areaMenu ul {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
}
.areaMenu li {
  width: 100%;
  text-align: center;
}
.areaMenu li a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: #323232;
  font-size: 1.8rem;
}
.areaMenu li a span {
  position: relative;
  padding-left: 10px;
}
.areaMenu li a span::after {
  position: absolute;
  content: '';
  top: 45%;
  left: -8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #323232;
  border-bottom: 2px solid #323232;
  transform: translateY(-45%) rotate(45deg);
}
@media (min-width: 768px) {
  .areaMenu li a {
    position: relative;
    overflow: hidden;
    transition: 0.2s ease all;
  }
  .areaMenu li a:hover {
    background: #fff;
    opacity: .8;
    transition: 0.2s ease all;
  }
}

@media screen and (max-width:767.98px) {
  .areaMenu ul {
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .areaMenu li {
    width: calc(100% / 2);
  }
  .areaMenu li a {
    padding: 10px 20px 10px 25px;
    font-size: 1.4rem;
  }
  .areaMenu li a span {
    padding-left: 10px;
  }
  .areaMenu li a span::after {
    top: 40%;
    lright: -16px;
    width: 8px;
    height: 8px;
    transform: translateY(-35%) rotate(45deg);
  }
}

/*---courseItemsBox---*/
.areaBlock {
  padding-bottom: 74px;
}
.areaBlock:first-of-type {
  margin-top: 52px;
}
.areaBlock h3 {
  margin: 0;
  padding: 10px 0;
  font-size: 2.4rem;
  text-align: center;
  background: #d7d7d7;
}
.courseItemsBox {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.courseItem_wrap {
  width: calc((100% - 32px) / 3);
  margin-right: 16px;
  position: relative;
}
.courseItem_wrap:nth-of-type(3n) {
  margin-right: 0;
}
.courseItem_wrap:nth-of-type(n+4) {
  margin-top: 30px;
}
/*LINEへ送るボタン不要の場合は下記をコメントアウト*/
.courseItem_wrap:nth-of-type(n+4) {
  margin-top: 85px;
}

.courseItem_wrap a {
  display: block;
  border-radius: 5px;
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, .1);
}
.course__card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.course__card__tagBox {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
}
.course__card__tagBox ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.course__card__tagBox ul li {
  margin: 0 10px 10px 0;
  padding: 3px 12px;
  color: #fff;
  font-size: 1.3rem;
  background: rgb(0 0 0 / .5);
  border-radius: 30px;
}
.course__card__img__caption {
  position: absolute;
  right: 12px;
  bottom: 9px;
  padding-left: 12px;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: rgba(0, 0, 0, .8) 1px 0 2px, rgba(0, 0, 0, .8) .5403px .84147px 2px, rgba(0, 0, 0, .8) -.41615px .9093px 2px, rgba(0, 0, 0, .8) -.98999px .14112px 2px, rgba(0, 0, 0, .8) -.65364px -.7568px 2px, rgba(0, 0, 0, .8) .28366px -.95892px 2px, rgba(0, 0, 0, .8) .96017px -.27942px 2px;
  text-align: right;
}
.course__card__body {
  padding: 18px 18px 15px;
  background: #fff;
}
.course__card__codeArea__box {
  display: flex;
}
.course__card__code {
  position: relative;
  display: inline-block;
  min-width: 90px;
  padding: 0 10px 0 15px;
  border: 1px solid #ddd;
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  line-height: 20px;
}
.course__card__code::after {
  position: absolute;
  content: '';
  top: -1px;
  left: -1px;
  width: 6px;
  height: 22px;
  background: #c51f1f;
}
.course__card__area__label {
  display: inline-block;
  min-width: 90px;
  margin-left: 10px;
  padding: 1px 10px;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 20px;
}
.course__card__title {
  margin-top: 8px;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all .3s;
}
.course__card__sub {
  margin-top: 5px;
}
.course__card__area {
  line-height: 1;
  text-align: right;
}
.course__card__unit {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #707070;
  text-align: right;
}
.course__card__price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #cc0d21;
  text-align: right;
}
main [class*="course__card__head"] {
  padding-top: 52%;
  background-image: url(/med/app-files/img/tabimono_img.png);
  background-size: 60% auto;
  background-position: center;
  background-color: #C1C1C1;
  background-repeat: no-repeat;
  height: 0;
  position: relative;
  overflow: hidden;
}
main [class*="js_rweb2404_img_"] {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
}
main [class*="js_rweb2404_img_"]::after {
  top: 0;
}
main [class*="js_rweb2404_caption_"] {
  z-index: 2;
}
.noCourseTxt {
  margin: 0 auto;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .courseItem_wrap a:hover .course__card__title {
    color: #cc0d21;
    text-decoration: underline;
    transition: all .3s;
  }
}
@media screen and (max-width:767.98px) {
  .areaBlock {
    padding-bottom: 47px;
  }
  .areaBlock h3 {
    padding: 8px 0;
    font-size: 1.7rem;
  }
  .courseItemsBox {
    display: block;
    margin-top: 24px;
    padding: 0 10px;
  }
  .courseItem_wrap {
    width: 100%;
    margin-right: 0;
  }
  .courseItem_wrap:nth-of-type(n+2) {
    margin-top: 15px;
  }
  /*LINEへ送るボタン不要の場合は下記をコメントアウト*/
  .courseItem_wrap:nth-of-type(n+2) {
    margin-top: 60px;
  }
  .course__card {
    display: flex;
    background: #fff;
  }
  main [class*="course__card__head"] {
    padding-top: 0;
    padding-left: 34%;
  }
  main [class*="js_rweb2404_img_"]::after {
    background-size: cover;
  }
  main [class*="bgContain js_rweb2404_img_"]::after {
    background-size: contain!important;
  }
  .course__card__img__caption {
    right: 8px;
    bottom: 5px;
    font-size: 1rem;
  }
  .course__card__tagBox {
    position: static;
  }
  .course__card__tagBox ul {
    margin-top: 8px
  }
  .course__card__tagBox ul li {
    margin: 0 5px 5px 0;
    padding: 2px 7px;
    font-size: 1rem;
  }
  .course__card__tagBox ul li + li {
    margin-left: 5px;
  }
  .course__card__body {
    width: 100%;
    padding: 8px 10px;
  }
  .course__card__code {
    min-width: 70px;
    font-size: 1.2rem;
  }
  .course__card__area {
    text-align: left;
  }
  .course__card__area__label {
    min-width: 60px;
    font-size: 1rem;
  }
  .course__card__title {
    font-size: 1.5rem;
  }
  .course__card__unit {
    margin-top: 5px;
    font-size: 1.1rem;
  }
  .course__card__price {
    margin-top: 5px;
    font-size: 1.7rem;
  }
  .noCourseTxt {
    font-size: 1.3rem;
    text-align: center;
  }
}
/*=====================*/

/*=======================*/
.line_share {
  position: absolute;
  right: 0;
  display: inline-block;
  background-color: #06c755;
  border-radius: 5px;
  margin-top: 10px;
}
.line_share_link {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 3px 5px;
}
.line_share_link p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}
.line_share_link img {
    max-width: 22px;
    max-height: 22px;
}
@media (min-width: 768px) {
  .line_share_link:hover {
    opacity: 0.75;
    transition: .25s;
  }
}

/*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: 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;
}

/*-----slider-----*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
/*----------------*/

.relationList {
  display: flex;
  justify-content: center;
  width: 87.4%;
  max-width: 990px;
  margin: 0 auto !important;
}
.relationList li {
  box-sizing: border-box;
  width: 33.3%;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .relationList li {
    width: 50%;
  }
}
.relationList li a {
  display: block;
  margin: 0 6%;
  transition: opacity .3s ease-out;
}
.relationList li a:hover {
  opacity: .7;
}
.relationList__nav {
  display: none;
  margin-top: 10px;
  text-align: center;
}

.relationList__nav > div {
  position: relative;
  display: inline-block;
  padding: 0 75px;
}
@media screen and (max-width: 767px) {
  .relationList__nav > div {
    padding: 0 52px;
  }
}
.relationList__nav .slick-arrow {
  width: 35px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .relationList__nav .slick-arrow {
    width: 40px;
  }
}
.relationList__nav .slick-arrow:before {
  content: '';
  display: block;
  padding-top: 100%;
  background: url(../img/btn_arrow_01.png) no-repeat 0 0/contain;
  opacity: 1;
}
.relationList__nav .slick-next {
  right: 0;
}
.relationList__nav .slick-next:before {
  transform: rotateZ(180deg);
}
.relationList__nav .slick-prev {
  left: 0;
}
.relationList__nav .slick-dots {
  position: static;
  display: inline-block;
  line-height: 1;
}
.relationList__nav .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
  overflow: hidden;
}
/*.relationList__nav .slick-dots button {
  width: 100%;
  height: 0;
  padding: 100% 0 0;
  text-indent: -9999px;
}*/
.relationList__nav .slick-dots .slick-active button {
  background: #909090; /*テーマごとの色へ変更*/
}

.relationList.slider + .relationList__nav {
  display: block;
}

.relationList.slider + .relationList__nav.add_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .relationList.slider + .relationList__nav.add_none{
    display: block;
  }
  .otherFeaturesBox > li {
    width: 168px;
    margin: 2%;
  }
}
/*=====================*/
.scroll-hint-icon{
        z-index: 5;
    }

/*-----------------------*/
/*-----------------------*/
/*-----------------------*/
.guestroom_area{
	margin-top: 40px;
}
.guestroom_area_txt{
	text-align: center;
	margin-bottom: 30px;
}
.dropdown-tab-container {
    position: relative;
    width: 100%;
	max-width: 1160px;
	margin: 0 auto;
}
.dropdown-toggleBox{
	display: flex;
	justify-content: center;
	position: relative;
}
.dropdown-toggle {
    padding: 10px;
    width:600px;
    background-color: #ffffff;
    border: 2px solid #002d74;
    cursor: pointer;
	position: relative;
	border-radius: 5px;
	box-shadow: 0px 0px 4px #858585;
	z-index: 4;
	text-align: center;
	color: #002d74;
	font-weight: bold;
	font-size: 2.4rem;
}
.dropdown-toggle::after{
	position: absolute;
	content: '';
	top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border-right: 4px solid #002d74;
  border-bottom: 4px solid #002d74;
  transform: translateY(-68%) rotate(45deg);
}
.dropdown-toggle:hover{
	background-color: #d5deed;
	box-shadow: none;
}
.dropdown-menu {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
    border: 1px solid #ccc;
    border-top: none;
    position: absolute;
    width: 600px;
    background-color: white;
	border-radius: 0 0 5px 5px;
    display: none;
	top: calc(100% - 10px);
	left: 50%;
	 transform: translateX(-50%) !important;
	z-index: 2;
	text-align: center;
	font-size: 2.0rem;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
	border-bottom: 1px solid #D9D9D9;
}
	.dropdown-menu li:last-child{
		border: none;
	}
.dropdown-menu li:hover {
    background-color: #002d7438;
}

.tab-content {
    padding: 20px;
    margin-top: 10px;
    display: none; 
}

.tab-content.active {
    display: block; 
}
.tab-content h4{
	margin: 0;
	padding: 5px;
	width: 100%;
	background-color: #002d74;
	font-weight: bold;
	color: #ffffff;
}
.tab-content .tab-content-inner{
	display: flex;
	justify-content: space-between;
	gap:15px;
	margin: 30px 0 0;
}
.tab-content .tab-content-inner .tab-img{
min-width: 480px;
}
.tab-content .tab-content-inner-txtbox{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: space-between;
}
.tab-content .tab-content-inner-txtbox h5{
	font-size: 2rem;
	color: #002d74;
	text-align: center;
	margin: 0 0 5px;
	width: 100%;
}
.tab-content .tab-content-inner-txtbox .tab-content-inner-txt{
	text-align: center;
	font-size: 1.6rem;
	min-height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.tab-content .tab-content-inner-txtbox .tablewrap{
	width: 100%;
}
.tab-content .tab-content-inner-txtbox table{
	font-size: 1.6rem;
	color: #272833;
	width: 100%;
	border:none;
	font-weight: bold;
}
.tab-content .tab-content-inner-txtbox table tr td{
	-webkit-box-shadow: none;
	box-shadow: none;
}
.tab-content .tab-content-inner-txtbox table tr td:first-child{
	background: #f0f0f0;
	text-align: center;
	width: 13%;
	border-color:#cacaca;
}
.tab-content .tab-content-inner-txtbox table tr td:last-child{
	padding-left: 5px;
	border-color:#cacaca;
}
.guestroom_area_note{
	font-size: 1.6rem;
	text-align: left;
	margin-top: 40px;
	max-width: 1160px;
    margin: 0 auto;
	line-height: 1.2;
}

@media screen and (max-width: 767px) {
	
	.guestroom_area{
	margin-top: 40px;
		padding: 0 10px;
}
.guestroom_area_txt{
	margin-bottom: 30px;
	font-size: 1.3rem;
	padding: 0 10px
}
.dropdown-tab-container {
	max-width: 100%;
}
.dropdown-toggleBox{
	display: flex;
	justify-content: center;
	position: relative;
	flex-wrap: wrap;
}
.dropdown-toggle {
    padding: 10px;
    width:100%;
	max-width: 355px;
	font-size: 1.5rem;
}
	.dropdown-toggle::after {
    right: 10px;
    width: 10px;
    height: 10px;
    border-right: 3px solid #002d74;
    border-bottom: 3px solid #002d74;
}
.dropdown-menu {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
    width: 100%;
	max-width: 355px;
    background-color: white;
	left: 50%;
	text-align: center;
	font-size: 2.0rem;
}

.dropdown-menu li {
    padding: 10px;
    cursor: pointer;
	font-size: 1.5rem;
	
}


.tab-content {
    padding:0 20px;
    margin-top: 10px;
    display: none; 
}

.tab-content h4{
	margin: 0;
	padding: 10px;
	width: 100%;
	font-size:1.5rem;
	line-height: 1.0;
}
.tab-content .tab-content-inner{
	gap:15px;
	margin: 10px 0 0;
	flex-wrap: wrap;
}
.tab-content .tab-content-inner .tab-img{
min-width: 100%;
	max-width: 480px;
	display: flex;
	justify-content: center;
}
.tab-content .tab-content-inner-txtbox{
	width: 100%;
}
.tab-content .tab-content-inner-txtbox h5{
	font-size: 1.3rem;
	width: 100%;
}
.tab-content .tab-content-inner-txtbox .tab-content-inner-txt{
	font-size: 1.2rem;
	min-height: auto;
	padding: 10px 0;
}
.tab-content .tab-content-inner-txtbox .tablewrap{
	width: 100%;
}
.tab-content .tab-content-inner-txtbox table{
	font-size: 1.2rem;
}
.tab-content .tab-content-inner-txtbox table tr td:first-child{
	width: 20%;
}
.tab-content .tab-content-inner-txtbox table tr td:last-child{
	padding-left: 5px;
}
.guestroom_area_note{
	font-size: 1.3rem;
	text-align: left;
	margin-top: 40px;
	padding: 0 5px;
	font-weight: bold;
}
	
}
/*-----------------------*/
/*-----------------------*/

.cruiseship{
	margin-top: 80px;
}
.cruiseship .tablewrap{
	width: 1160px;
	margin: 0 auto;
	padding: 30px 0;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.cruiseship table{
	font-size: 1.8rem;
	color: #272833;
	border:none;
	font-weight: bold;
}
.cruiseship table tr td{
	padding: 10px;
	line-height: 1;
	height: 44px;
	border-color:#ecd3a8;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.cruiseship table tr td span{
	display: inline-block;
	padding: 5px 10px 3px;
	border-radius: 15px;
	background-color: #d70e18;
	text-align: center;
	margin-left: 10px;
	font-size: 1.3rem;
	color: #ffffff;
}
.cruiseship table tr td p{
	display: flex;
	justify-content: flex-start;
align-items: center;
	line-height: 1;
	padding-top: 2px;
}

.cruiseship table tr td:first-child{
	background: #f8eede;
	text-align: center;
	width: 190px;
	border-color:#ecd3a8;
}
.cruiseship table tr td:last-child{
	width: 320px;
	background-color: #ffffff;
	border-color:#ecd3a8;
}
.cruiseship table:last-child tr td:first-child{
	border-left: none;
}
@media screen and (max-width: 767px) {
	
.cruiseship{
	margin-top: 80px;
}
.cruiseship .tablewrap{
	width: 100%;
	padding: 30px 10px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.cruiseship table:last-child{
	border-top: none;
	border-left: solid 1px #ecd3a8;
}
.cruiseship table:last-child tr td:first-child{
	border-left: solid 1px #ecd3a8;
}
	.cruiseship table:last-child tr:first-child td{
		border-top:none;
	}
.cruiseship table{
	font-size: 1.4rem;
	width: 100%;
	max-width: 500px;
}
.cruiseship table tr td{
	padding: 8px;
	height: 30px;
}
.cruiseship table tr td span{
	display: inline-block;
	padding: 5px 10px 3px;
	margin-left: 10px;
	font-size: 1.2rem;
}

.cruiseship table tr td:first-child{
	background: #f8eede;
	text-align: center;
	border-color:#ecd3a8;
	width: 25%;
}
.cruiseship table tr td:last-child{
	padding-left: 5px;
	width: 75%;
	max-width: 400px;
	background-color: #ffffff;
	border-color:#ecd3a8;
}

}