@charset "utf-8";
/* CSS Document */
/*-----------------------------------------------------------*/
/*共通*/
section#pagetitle .titlebg {
    background: url("../image/course/pagetitle.webp") 0 0 / cover no-repeat;
}
:root {
    --contentswidth: 1200px;
}
/*-----------------------------------------------------------*/
/*コース一覧*/
#courseList .pinkup {
    max-width: var(--contentswidth);
    margin: 100px auto 0;
    background-color: #dbf1e0;
    border-radius: 15px;
    padding: 50px 0 40px;
    position: relative;
}
#courseList .pinkup::before {
    content: '';
    width: 140px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -105px;
    left: 0;
    right: 0;
    margin: auto;
}
#courseList .pinkup::after {
    content: '';
    background: url("../image/course/course_icon1.svg") 0 center / contain no-repeat;
    width: 64px;
    height: auto;
    aspect-ratio: 64 / 43;
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: auto;
}
#courseList .pinkup h2.hd {
    font-size: 1.688em;/*27*/
    color: #00595c;
    font-weight: 700;
    text-align: center;
}
#courseList .pinkup ul.inn {
	width: 91.7%;/*1000*/
	margin: 0 auto;
    padding: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    counter-reset: listnum;
}
#courseList .pinkup ul.inn li {
    display: flex;
    align-items: center;
    width: calc((100% - (20px * 3)) / 4);
    height: 150px;
    background-color: #fff;
    border-radius: 13px;
    border: 1px solid #00595c;
    box-sizing: border-box;
}
#courseList .pinkup .inn a.post {
    padding: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px 0;
    align-items: center;
    position: relative;
}
#courseList .pinkup .inn a.post::before {
    content: '';
    background: url("../image/course/course_icon6.svg") 0 center / contain no-repeat;
    width: 26px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    bottom: 15px;
    right: 15px;
}
#courseList .pinkup .inn a.post .number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #dbf1e0;
    width: 60px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-left: 5px;
}
#courseList .pinkup .inn a.post .number::before {
    content: 'Course';
    font-size: 1.063em;/*17*/
    color: #06b48f;
    font-weight: 500;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
#courseList .pinkup .inn a.post .number::after {
    counter-increment: listnum;
    content: counter(listnum);
    font-size: 1.875em;/*30*/
    color: #06b48f;
    font-weight: 500;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
#courseList .pinkup .inn a.post .thumb img {
    border-radius: 10px;
}
#courseList .pinkup .inn a.post .txts {
    grid-column: span 2 / span 2;
    font-size: 1.125em;/*18*/
    font-weight: 700;
    color: #00595c;
}
/*-----------------------------------------------------------*/
/*コース詳細*/
#courseList .accordion-area {
    margin: 60px auto 120px;
    display: flex;
    flex-direction: column;
    gap: 35px 0;
    counter-reset: questionnum;
}
#courseList article {
    position: relative;
}
#courseList article::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 100vw;
    height: calc(100% - 80px);
    background: #f0efe9;
    transition: .35s ease;
    z-index: -1;
}
#courseList article:has(.label.close)::before {
    transform: translateX(-50%) scaleY(1);
}
/*アコーディオンタイトル*/
#courseList article .label {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
    border: 1px solid #00595c;
    box-sizing: border-box;
    border-radius: 13px;
    background-color: #fff;
    padding: 20px 100px 20px 40px;
    display: flex;
    align-items: center;
    gap: 0 40px;
}
#courseList article .label::before {
    content: '';
    background: url("../image/campaign/iconplus.svg") 0 center / contain no-repeat;
    width: 40px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 30px;
}
#courseList article .label.close::before {
    background: url("../image/campaign/iconminus.svg") 0 center / contain no-repeat;
}
#courseList article .label .number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #dbf1e0;
    width: 11.6%; /*100*/
    height: auto;
    aspect-ratio: 1 / 1;
}
#courseList article .label .number::before {
    content: 'Course';
    font-size: 1.688em;/*27*/
    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: 3.438em;/*55*/
    color: #06b48f;
    font-weight: 500;
    line-height: 100%;
    position: relative;
    z-index: 2;
}
#courseList article .label .thumb {
    width: 20.9%; /*180*/
}
#courseList article .label .thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
#courseList article .label .txts {
    width: 57.9%; /*500*/
    font-size: 1.688em;/*27*/
    font-weight: 700;
    color: #00595c;
}
/*アコーディオン中身*/
#courseList article .boxWrap {
    display: none;
    max-width: 1000px;
    margin: 35px auto 90px;
}
/*アコーディオン > 概要*/
#courseList .boxWrap .imfomation {
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 55px;
}
#courseList .boxWrap .imfomation .flexColumn {
    display: flex;
    justify-content: space-between;
}
#courseList .boxWrap .imfomation .flexColumn .image {
    width: 53.5%; /*480*/
}
#courseList .boxWrap .imfomation .flexColumn .txts {
    width: 42.3%; /*380*/
    font-weight: 500;
    text-align: justify;
    line-height: 200%;
}
#courseList .boxWrap .imfomation .mapsColumn {
    margin-top: 35px;
}
#courseList .boxWrap .imfomation .mapsColumn h3.hd {
    font-size: 2.188em;/*35*/
    font-weight: 500;
    color: #06c08f;
    text-align: center;
}
#courseList .boxWrap .imfomation .mapsColumn .map {
    margin-top: 15px;
}
#courseList .boxWrap .imfomation .mapsColumn .map iframe {
    width: 100%;
    height: 330px;
}
/*アコーディオン > 道順*/
#courseList .boxWrap .directions {
    margin-top: 60px;
    position: relative;
}
#courseList .boxWrap .directions::before {
    content: '';
    width: 45px;
    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 8px, transparent 8px, transparent 16px);
}
/*スタート地点*/
#courseList .boxWrap .directions .startingPoint, #courseList .boxWrap .directions .goalPoint {
    width: calc(100% - 70px);
    height: 60px;
    padding: 0 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0 55px;
    color: #fff;
    line-height: 100%;
}
#courseList .boxWrap .directions .startingPoint {
    background-color: #ff7470;
}
#courseList .boxWrap .directions .goalPoint {
    margin-top: 45px;
    background-color: #06b7d0;
}
#courseList .boxWrap .directions .startingPoint h4.hd, #courseList .boxWrap .directions .goalPoint h4.hd {
    font-size: 1.875em;/*30*/
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0 20px;
}
#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: 24px;
    height: auto;
    aspect-ratio: 24 / 33;
    display: block;
}
#courseList .boxWrap .directions .startingPoint p {
    font-size: 1.063em;/*17*/
    font-weight: 500;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0 10px;
}
#courseList .boxWrap .directions .startingPoint p::before {
    content: '';
    background: url("../image/course/course_icon3.webp") 0 center / contain no-repeat;
    width: 17px;
    height: auto;
    aspect-ratio: 17 / 24;
    display: block;
}
/*スポット*/
#courseList .boxWrap .directions > .inn > ul {
    counter-reset: listnum;
}
#courseList .boxWrap .directions > .inn > ul li {
    margin-top: 45px;
}
#courseList .boxWrap .directions .vehicles {
    max-width: 270px;
    height: 48px;
    margin: 0 auto;
    padding-left: 8px;
    border: 1px solid #00595c;
    box-sizing: border-box;
    border-radius: 24px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125em;/*18*/
    font-weight: 500;
    color: #00595c;
    letter-spacing: 0.05em;
    position: relative;
}
#courseList .boxWrap .directions .vehicles::before {
    content: '';
    width: 60px;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid #00595c;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: -8px;
}
#courseList .boxWrap .directions .vehicles.car::after {
    content: '';
    background: url("../image/course/course_icon4.svg") 0 center / contain no-repeat;
    width: 36px;
    height: auto;
    aspect-ratio: 36 / 23;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 3px;
    margin: auto;
}
#courseList .boxWrap .directions .vehicles.walk::after {
    content: '';
    background: url("../image/course/course_icon7.svg") 0 center / contain no-repeat;
    width: 23px;
    height: auto;
    aspect-ratio: 23 / 37;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}
#courseList .boxWrap .directions .vehicles.ship::after {
    content: '';
    background: url("../image/course/course_icon8.svg") 0 center / contain no-repeat;
    width: 32px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    margin: auto;
}
#courseList .boxWrap .directions .pointWrap {
    margin-top: 45px;
}
#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: 70px;
    height: 70px;
    background-color: #06c08f;
    border-radius: 50%;
}
#courseList .boxWrap .directions .pointWrap h4.hd::after {
    content: '';
    counter-increment: listnum;
    content: counter(listnum);
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 2.250em;/*36*/
    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% - (80px + 70px));
    background-color: #06c08f;
    border-radius: 10px;
    font-size: 1.688em;/*27*/
    font-weight: 700;
	line-height: 120%;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 17px 35px;
}
#courseList .boxWrap .directions .pointWrap .point {
    margin-top: 20px;
    border: 1px solid #a6a6a6;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px;
	display: flex;
    flex-direction: column;
	position: relative;
}

#courseList .boxWrap .directions .pointWrap .point .flexColumn {
    display: grid;
    grid-template-columns: 1fr 50%;
    align-items: start;
	position: relative;
}

#courseList .boxWrap .directions .pointWrap .point .textColumn {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#courseList .boxWrap .directions .pointWrap .point .flexColumn h5.hd {
    font-size: 1.563em;/*25*/
    font-weight: 700;
    color: #00595c;
}

#courseList .boxWrap .directions .pointWrap .point .flexColumn .txts {
    font-weight: 500;
    line-height: 187.5%;
    text-align: justify;
	padding-bottom: 20px;
}

#courseList .boxWrap .directions .pointWrap .point .swiperColumn {
	width: calc( 100% - 50px );
	margin: 0 0 0 auto;
}
#courseList .boxWrap .directions .pointWrap .point .pointSwiper{
	width: 100%;
}
#courseList .boxWrap .directions .pointWrap .point .pointSwiper .swiper-slide img {
    width: 100%;
    max-height: 270px;
    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: 40px;
    aspect-ratio: 1/1;
    margin-top: 0;
	top: var(--swiper-navigation-top-offset, 43%);
}
#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 {
    right: calc( 50% - 70px );
	left: auto;
}
#courseList .boxWrap .directions .pointWrap .point .swiper-button-next {
    right: -20px;
    transform: scaleX(-1);
}
/*基本情報・詳細ページ*/
#courseList .boxWrap .directions .pointWrap .point .btnsColumn {
    width: 50%;
    display: flex;
    justify-content: space-between;
}
#courseList .boxWrap .directions .pointWrap .point .btnsColumn > a {
    display: flex;
    align-items: center;
    width: calc(50% - 20px);
    height: 55px;
    box-sizing: border-box;
    font-weight: 700;
    padding-left: 20px;
    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: 23px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    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: 7px;
    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: 26px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo {
    display: none;
	width: 100%;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo.is-open {
    display: block;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl {
    display: flex;
    gap: 0 5px;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dt, #courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dd {
    padding: 15px 18px;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dt {
    width: 14%;
    background-color: #e9f5f5;
    font-weight: 700;
    color: #00595c;
}
#courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dd {
    width: calc(100% - 14%);
    border-bottom: 1px solid #a7c9c9;
    box-sizing: border-box;
}
/*-----------------------------------------------------------*/
:root {
    --pageBluebg: #0071b4;
	--pageYellowbg: #F4E621;
	--pageBlackbg: #000;
}

html[class*="page"] #courseList .pinkup::before{
	background-color: unset;
}
html[class*="page"] #courseList .pinkup{
	background-color: unset;
}
html[class*="page"] #courseList .pinkup ul.inn li{
	background: unset;
}
html.pageBlue #courseList .pinkup ul.inn li, html.pageBlack #courseList .pinkup ul.inn li,{
	border-color: #fff;
}
html.pageYellow #courseList .pinkup ul.inn li{
	border-color: #000;
}
html[class*="page"] #courseList .pinkup .inn a.post .number,
html[class*="page"] #courseList article .label .number{
	background-color: unset;
}
html[class*="page"] #courseList .pinkup .inn a.post .number::before, html[class*="page"] #courseList .pinkup .inn a.post .number::after,
html[class*="page"] #courseList article .label .number::before, html[class*="page"] #courseList article .label .number::after{
	color: unset;
}
html[class*="page"] #courseList article .label,
html[class*="page"] #courseList article .imfomation,
html[class*="page"] #courseList .boxWrap .directions .pointWrap .point{
	background-color: unset;
}
html.pageBlue #courseList article .imfomation, html.pageBlack #courseList article .imfomation{
	border: 1px solid #fff;
	box-sizing: border-box;
}
html.pageYellow #courseList article .imfomation{
	border: 1px solid #000;
	box-sizing: border-box;
}

html[class*="page"] #courseList .boxWrap .directions .startingPoint,
html[class*="page"] #courseList .boxWrap .directions .goalPoint{
	background-color: unset;
	border: 1px solid;
}
html.pageBlue #courseList .boxWrap .directions .startingPoint, html.pageBlack #courseList .boxWrap .directions .startingPoint,
html.pageBlue #courseList .boxWrap .directions .goalPoint, html.pageBlack #courseList .boxWrap .directions .goalPoint{
	border-color: #fff;
}
html.pageYellow #courseList .boxWrap .directions .startingPoint, html.pageYellow #courseList .boxWrap .directions .goalPoint{
	border-color: #000;
}

html[class*="page"] #courseList .boxWrap .directions .pointWrap h4.hd::before, html[class*="page"] #courseList .boxWrap .directions .pointWrap h4.hd p{
	background-color: unset;
	border: 1px solid;
}
html.pageBlue #courseList .boxWrap .directions .pointWrap h4.hd::before, html.pageBlue #courseList .boxWrap .directions .pointWrap h4.hd p,
html.pageYellow #courseList .boxWrap .directions .pointWrap h4.hd::before, html.pageYellow #courseList .boxWrap .directions .pointWrap h4.hd p{
	border-color: #fff;
}
html.pageYellow #courseList .boxWrap .directions .pointWrap h4.hd::before, html.pageYellow #courseList .boxWrap .directions .pointWrap h4.hd p{
	border-color: #000;
}
html[class*="page"] #courseList .boxWrap .directions .vehicles, html[class*="page"] #courseList .boxWrap .directions .vehicles::before{
	background-color: unset;
}
html.pageBlue #courseList .boxWrap .directions .vehicles::before{
	background-color: var(--pageBluebg);
}
html.pageYellow #courseList .boxWrap .directions .vehicles::before{
	background-color: var(--pageYellowbg);
}
html.pageBlack #courseList .boxWrap .directions .vehicles::before{
	background-color: var(--pageBlackbg);
}

html[class*="page"] #courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.info,
html[class*="page"] #courseList .boxWrap .directions .pointWrap .point .btnsColumn > a.site,
html[class*="page"] #courseList .boxWrap .directions .pointWrap .point .toinfo .table > dl dt{
	background-color: unset;
}



/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/