@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------*/
/*共通*/
section#pagetitle .titlebg {
    background: url("../image/course/pagetitle.webp") -100px 0 / cover no-repeat;
}
:root {
    --contentswidth: 86.11%; /*620*/
}
/*-----------------------------------------------------------*/
/*コース一覧*/
#courseList .pinkup {
    width: calc( var(--contentswidth) - 40px );
    margin: 55px auto 0;
    background-color: #dbf1e0;
    border-radius: 8px;
    padding: 35px 20px 25px;
    position: relative;
}
#courseList .pinkup::before {
    content: '';
    width: 86px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -65px;
    left: 0;
    right: 0;
    margin: auto;
}
#courseList .pinkup::after {
    content: '';
    background: url("../image/course/course_icon1.svg") 0 center / contain no-repeat;
    width: 36px;
    height: auto;
    aspect-ratio: 36 / 24;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
}
#courseList .pinkup h2.hd {
    font-size: 1.7rem;
    color: #00595c;
    font-weight: 700;
    text-align: center;
}
#courseList .pinkup ul.inn {
    padding: 25px 0px 0;
    display: flex;
	flex-direction: column;
    gap: 13px 0;
    counter-reset: listnum;
}
#courseList .pinkup ul.inn li {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #fff;
    border-radius: 7px;
    border: 1px solid #00595c;
    box-sizing: border-box;
}
#courseList .pinkup .inn a.post {
	padding: 13px 10px;
    width: 100%;
    height: 100%;
    display: flex;
	flex-direction: column;
    justify-content: space-between;
	gap: 3px 0;
    position: relative;
}
#courseList .pinkup .inn a.post::before {
    content: '';
    background: url("../image/course/course_icon6.svg") 0 center / contain no-repeat;
    width: 25px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
	top: 0;
    bottom: 0;
	margin: auto;
    right: 13px;
}
#courseList .pinkup .inn a.post .thumb{
    width: 36.00%;
	display: none;
}
#courseList .pinkup .inn a.post .thumb img {
    border-radius: 10px;
}
#courseList .pinkup .inn a.post .number {
    display: flex;
    gap: 0 5px;
}
#courseList .pinkup .inn a.post .number::before {
    content: 'Course';
    font-size: 1.3rem;
    color: #06b48f;
    font-weight: 700;
    line-height: 100%;
}
#courseList .pinkup .inn a.post .number::after {
    counter-increment: listnum;
    content: counter(listnum);
    font-size: 1.3rem;
    color: #06b48f;
    font-weight: 700;
    line-height: 100%;
}
#courseList .pinkup .inn a.post .txts {
    font-weight: 700;
    color: #00595c;
    line-height: 100%;
}

/*-----------------------------------------------------------*/
/*コース詳細*/
#courseList .accordion-area {
    margin: 25px auto 50px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    counter-reset: questionnum;
}
#courseList article {
    position: relative;
}
#courseList article::before {
    content: "";
    position: absolute;
    top: 55px; 
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 100vw;
    height: calc(100% - 55px);
    background: #f0efe9;
    transition: .35s ease;
    z-index: -1;
}
#courseList article:has(.label.close)::before {
    transform: translateX(-50%) scaleY(1);
}
/*アコーディオンタイトル*/
#courseList article .label {
    width: var(--contentswidth);
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
    border: 1px solid #00595c;
    box-sizing: border-box;
    border-radius: 7px;
    background-color: #fff;
    padding: 12px 15px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#courseList article .label::before {
    content: '';
    background: url("../image/campaign/iconplus.svg") 0 center / contain no-repeat;
    width: 25px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
}
#courseList article .label.close::before {
    background: url("../image/campaign/iconminus.svg") 0 center / contain no-repeat;
}
#courseList article .label::after {
    content: '';
	width: 24px;
	height: auto;
    aspect-ratio: 1 / 1;
    background-color: #dbf1e0;
	border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 115px;
}
#courseList article .label .thumb {
    width: 32.14%; /*180*/
}
#courseList article .label .thumb img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
#courseList article .label .number {
    width: 50.00%; /*280*/
	position: absolute;
	top: 10px;
	left: 120px;
	display: flex;
	align-items: center;
	gap: 0 3px;
}
#courseList article .label .number::before {
    content: 'Course';
    font-size: 1.5rem;
    color: #06b48f;
    font-weight: 500;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
#courseList article .label .number::after {
    counter-increment: questionnum;
    content: counter(questionnum);
    font-size: 2.1rem;
    color: #06b48f;
    font-weight: 500;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
#courseList article .label .txts {
    width: 50.00%; /*280*/
    font-weight: 700;
    color: #00595c;
	line-height: 122.2%;
	position: absolute;
	top: 35px;
	left: 120px;
	font-size: 1.3rem;
}

/*アコーディオン中身*/
#courseList article .boxWrap {
    display: none;
    width: var(--contentswidth);
    margin: 18px auto 33px;
}
/*アコーディオン > 概要*/
#courseList .boxWrap .imfomation {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px 20px;
}
#courseList .boxWrap .imfomation .flexColumn {
    display: flex;
	flex-direction: column;
	gap: 20px 0;
}
#courseList .boxWrap .directions .pointWrap .point .swiperColumn {
	order: 2;
	width: 100%;
	margin-top: 10px;
}
#courseList .boxWrap .directions .pointWrap .point .pointSwiper {
}
#courseList .boxWrap .directions .pointWrap .point .pointSwiper .swiper-slide img {
    width: 100%;
    height: auto;
	aspect-ratio: 400 / 270	;
    object-fit: cover;
}
/* Pagination */
#courseList .boxWrap .directions .pointWrap .point .pointSwiper .swiper-pagination {
    position: static;
    margin-top: 0px;
    text-align: center;
}
#courseList .boxWrap .directions .pointWrap .point .pointSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #00595c;
    opacity: .5;
}
#courseList .boxWrap .directions .pointWrap .point .pointSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}
/* Navigation */
#courseList .boxWrap .directions .pointWrap .point .swiper-button-prev,
#courseList .boxWrap .directions .pointWrap .point .swiper-button-next {
    background: url("../image/common/pager01.svg") center/contain no-repeat;
    width: 28px;
	height: auto;
    aspect-ratio: 1/1;
    margin-top: 0;
	top: var(--swiper-navigation-top-offset, 30%);
}
#courseList .boxWrap .directions .pointWrap .point .swiper-button-prev::after, 
#courseList .boxWrap .directions .pointWrap .point .swiper-button-next::after {
    display: none;
}
#courseList .boxWrap .directions .pointWrap .point .swiper-button-prev {
    left: -10px;
}
#courseList .boxWrap .directions .pointWrap .point .swiper-button-next {
    right: -10px;
    transform: scaleX(-1);
}

#courseList .boxWrap .imfomation .flexColumn .txts {
    text-align: justify;
    line-height: 166.6%;
}
#courseList .boxWrap .imfomation .mapsColumn {
    margin-top: 35px;
}
#courseList .boxWrap .imfomation .mapsColumn h3.hd {
    font-size: 2.0rem;
    font-weight: 500;
    color: #06c08f;
	letter-spacing: 0.05em;
    text-align: center;
}
#courseList .boxWrap .imfomation .mapsColumn .map {
    margin-top: 15px;
}
#courseList .boxWrap .imfomation .mapsColumn .map iframe {
    width: 100%;
    height: 228px;
}
/*アコーディオン > 道順*/
#courseList .boxWrap .directions {
    margin-top: 25px;
    position: relative;
}
#courseList .boxWrap .directions::before {
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
#courseList .boxWrap .directions::after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    background: repeating-linear-gradient(to bottom, #06c08f 0, #06c08f 4px, transparent 4px, transparent 8px);
}
/*スタート地点*/
#courseList .boxWrap .directions .startingPoint, #courseList .boxWrap .directions .goalPoint {
    width: calc(100% - 40px);
    height: 35px;
    padding: 0 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 0 27px;
    color: #fff;
    line-height: 100%;
}
#courseList .boxWrap .directions .startingPoint {
    background-color: #ff7470;
}
#courseList .boxWrap .directions .goalPoint {
    margin-top: 25px;
    background-color: #06b7d0;
}
#courseList .boxWrap .directions .startingPoint h4.hd, #courseList .boxWrap .directions .goalPoint h4.hd {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
#courseList .boxWrap .directions .startingPoint h4.hd::before, #courseList .boxWrap .directions .goalPoint h4.hd::before {
    content: '';
    background: url("../image/course/course_icon2.webp") 0 center / contain no-repeat;
    width: 13px;
    height: auto;
    aspect-ratio: 13 / 17;
    display: block;
}
#courseList .boxWrap .directions .startingPoint p {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0 5px;
}
#courseList .boxWrap .directions .startingPoint p::before {
    content: '';
    background: url("../image/course/course_icon3.webp") 0 center / contain no-repeat;
    width: 9px;
    height: auto;
    aspect-ratio: 9 / 13;
    display: block;
}
/*スポット*/
#courseList .boxWrap .directions > .inn > ul {
    counter-reset: listnum;
}
#courseList .boxWrap .directions > .inn > ul li {
    margin-top: 25px;
}
#courseList .boxWrap .directions .vehicles {
    max-width: 195px;
    height: 33px;
    margin: 0 auto;
    padding-left: 6px;
    border: 1px solid #00595c;
    box-sizing: border-box;
    border-radius: 17px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: #00595c;
    letter-spacing: 0.05em;
    position: relative;
}
#courseList .boxWrap .directions .vehicles::before {
    content: '';
    width: 40px;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #00595c;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: -6px;
}
#courseList .boxWrap .directions .vehicles.car::after {
    content: '';
    background: url("../image/course/course_icon4.svg") 0 center / contain no-repeat;
    width: 24px;
    height: auto;
    aspect-ratio: 24 / 15;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2px;
    margin: auto;
}
#courseList .boxWrap .directions .vehicles.walk::after {
    content: '';
    background: url("../image/course/course_icon7.svg") 0 center / contain no-repeat;
    width: 15px;
    height: auto;
    aspect-ratio: 15 / 29;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    margin: auto;
}
#courseList .boxWrap .directions .vehicles.ship::after {
    content: '';
    background: url("../image/course/course_icon8.svg") 0 center / contain no-repeat;
    width: 22px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
}
#courseList .boxWrap .directions .pointWrap {
    margin-top: 25px;
}
#courseList .boxWrap .directions .pointWrap h4.hd {
    display: flex;
    justify-content: space-between;
	align-items: center;
    position: relative;
}
#courseList .boxWrap .directions .pointWrap h4.hd::before {
    content: '';
    width: 35px;
    height: 35px;
    background-color: #06c08f;
    border-radius: 50%;
}
#courseList .boxWrap .directions .pointWrap h4.hd::after {
    content: '';
    counter-increment: listnum;
    content: counter(listnum);
    width: 35px;
    height: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
#courseList .boxWrap .directions .pointWrap h4.hd p {
    width: calc(100% - (40px + 30px));
    background-color: #06c08f;
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
	letter-spacing: 0.05em;
	line-height: 110%;
    display: flex;
    align-items: center;
    padding: 9px 15px;
}
#courseList .boxWrap .directions .pointWrap .point {
    margin-top: 10px;
    border: 1px solid #a6a6a6;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}

#courseList .boxWrap .directions .pointWrap .point .flexColumn {
	display: flex;
	flex-direction: column;
	position: relative;
}
#courseList .boxWrap .directions .pointWrap .point .textColumn {
    display: contents;
}
#courseList .boxWrap .directions .pointWrap .point .flexColumn h5.hd {
    order: 1;
	font-size: 1.4rem;
    font-weight: 700;
    color: #00595c;
	line-height: 142.8%;
}
#courseList .boxWrap .directions .pointWrap .point .flexColumn .images {
    order: 2;
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}
#courseList .boxWrap .directions .pointWrap .point .flexColumn .images img {
    width: 100%;
    min-height: 182px;
    object-fit: cover;
}
#courseList .boxWrap .directions .pointWrap .point .flexColumn .txts {
	order: 3;
    margin-top: 25px;
    font-weight: 500;
    line-height: 166.6%;
    text-align: justify;
}
/*基本情報・詳細ページ*/
#courseList .boxWrap .directions .pointWrap .point .btnsColumn {
    margin-top: 25px;
    display: flex;
	gap: 0 10px;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a {
    display: flex;
    align-items: center;
    width: calc((100% - (10px * 1)) / 2);
    height: 50px;
    box-sizing: border-box;
	font-size: 1.3rem;
    font-weight: 700;
    padding-left: 14px;
    position: relative;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.info {
    border: 1px solid #787878;
    background-color: #fff;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.info::before {
    content: '';
    background: url("../image/course/icon_plus.svg") 0 center / contain no-repeat;
    width: 15px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.info.is-open::before {
    background: url("../image/course/icon_minus.svg") 0 center / contain no-repeat;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.site {
    border: 1px solid #00595c;
    border-radius: 4px;
    background-color: #e9f5f5;
    color: #00595c;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.site::before {
    content: '';
    background: url("../image/course/icon_tab.svg") 0 center / contain no-repeat;
    width: 15px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo {
    display: none;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo.is-open {
    display: block;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dt, #courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dd {
    padding: 13px;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dt {
    background-color: #e9f5f5;
    font-weight: 700;
    color: #00595c;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dd {
    border-bottom: 1px solid #a7c9c9;
    box-sizing: border-box;
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/