@charset "utf-8";

/* ==============================================
    universal reset
============================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==============================================
    html,body and base
============================================== */
html,body {
	height:100%;
}

/* general params
------------------*/
table {
	empty-cells: show;
	font-size: 100%;
	border-collapse: collapse;
}

img {
	border: none;
	height: auto;
	vertical-align: top;
    /* image-rendering: -webkit-optimize-contrast; */
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	font-size: 100%;
}

h1 img,h2 img,h3 img,h4 img,h5 img,h6 img {
}

ul {
	letter-spacing: -.40em;
}
ul li {
	letter-spacing: normal;
}
/* acronyms and abbreviations styles 
-------------------------------------*/
acronym,abbr {
	cursor: help;
}

/* ==============================================
    clear
============================================== */
.cbox {
	zoom: 100%;
}
.cbox:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
}

.clear {
	clear: both;
	height: 1px;
	font-size: 1px;
}
.clear hr {
	display: none;
}

hr.clear {
	zoom: 1;
	clear: both;
	height: 0;
	border: none;
	font-size: 0;
}
*:first-child+html hr.clear {/* for IE7 */
	border-top: 1px solid;
} 

/* ==============================================
    body
============================================== */
body {
    min-width: 1220px;
	text-align: center;
	line-height: 1.1;
	-webkit-text-size-adjust: 100%;
    font-size: 18px;
}
body,
body a {
	color: #3c3c3c;
}
@media screen and (max-width: 700px) {
	body {
		min-width: 300px;
        font-size: 16px;
	}
}
@media print {
	body {
		min-width: 950px;
	}
}
body,
input,
select,
textarea {
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	-webkit-appearance: none;
}

/* ==============================================
    link
============================================== */
a {
	transition: all .4s;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 701px) {
	a:hover,
	#pagetop img:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	a img.rollover:hover {
		opacity: 1;
		filter: alpha(opacity=100);
		-ms-filter: "alpha( opacity=100 )";
	}
}

/* ==============================================
    
============================================== */
.inner {
	width: 1000px;
	margin: 0 auto;
	text-align: left;
}
@media screen and (max-width: 700px) {
    .inner {
        width: calc(100% - 20px);
    }
}

.tab,
.sp {
	display: none;
}
.switch {}
.call {}

/* ==============================================
    container
============================================== */
#container {
	position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}
@media screen and (max-width: 700px) {
    #container {
        padding-bottom: 110px;
    }
}
@media screen and (max-width: 420px) {
    #container {
        padding-bottom: calc(17.6vw + 30px);
    }
}

/* ==============================================
    header
============================================== */
header {
    height: 160px;
    position: relative;
    background: #aacc03;
}
header::before {
    position: absolute;
    left: 0;
    bottom: top;
    content: "";
    display: block;
    width: 100%;
    height: 61px;
    background: rgba(255,255,255,0.85);
}

header .inner {
    position: relative;
    z-index: 1;
    display: flex;
	justify-content: space-between;
}
header p,
header p a {
    color: #007f48;
}
header p {
    margin-top: 13px;
    font-size: 1.875em;
    font-weight: 700;
}
header p::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: url(../images/icn_tel.png) no-repeat left center;
    background-size: 40px auto;
    margin-right: 5px;
    margin-top: -10px;
}
@media screen and (max-width: 700px) {
    header {
        height: 90px;
    }
    header::before {
        height: 37px;
    }
    header .inner {
        width: 100%;
    }
    header h1 img {
        width: 230px;
    }
    header p {
        margin-top: 5px;
        margin-right: 65px;
        font-size: 1.4em;
    }
    header p::before {
        width: 25px;
        height: 25px;
        background-size: 25px auto;
        margin-top: -4px;
    }
}
@media screen and (max-width: 500px) {
    header {
        height: 80px;
    }
    header h1 img {
        width: 200px;
    }
}
@media screen and (max-width: 470px) {
    header p {
        margin-top: 0;
        margin-right: 62px;
    }
    header p::before {
        content: none;
    }
    header p a {
        position: relative;
        display: block;
		width: 60px;
		height: 60px;
        border: 2px solid #007f48;
        border-radius: 8px;
        padding-left: 60px;
        text-align: left;
        background: #fff;
        overflow: hidden;
    }
    header p a::before,
    header p a::after {
        position: absolute;
    }
    header p a::before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        left: 16px;
        top: 5px;
        background: url(../images/icn_tel.png) no-repeat left center;
        background-size: 30px auto;
    }
    header p a::after {
        content: "お電話";
        color: #007f48;
        font-size: 12px;
        left: 12px;
        top: 38px;
    }
}
@media screen and (max-width: 340px) {
    header {
        height: 70px;
    }
    header h1 img {
        width: 180px;
    }
}

header nav {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 3;
    width: 550px;
    text-align: left;
    background: #ddd;
}
header nav ul {
	list-style: none;
}
header nav ul li {
    border-bottom: 1px solid #fff;
}
header nav ul li:nth-child(n+9):not(:last-child) {
    border-bottom-color: #aacc03;
}
header nav ul li a {
    display: block;
    padding: 13px 5px 13px 30px;
    background: #fff;
    color: #000;
}
header nav ul li a:hover {
    text-decoration: none;
}
header nav ul li:nth-of-type(2) a,/* 「登山・ハイキング・歩く旅（国内）」のツアーを探す */
header nav ul li:nth-of-type(4) a {/* 「海外の旅」のツアーを探す */
    text-indent: -0.15em;
}
header nav ul li:nth-of-type(2) a {/* 「登山・ハイキング・歩く旅（国内）」のツアーを探す */
    background: #b6e4d4;
}
header nav ul li:nth-of-type(3) a {/* 観光の旅「彩の旅」のツアーを探す */
    background: #f8c3d1;
}
header nav ul li:nth-of-type(4) a {/* 「海外の旅」のツアーを探す */
    background: #c1d9f7;
}
header nav ul li:nth-of-type(5) a {/* ツアー一覧をみる */
    background: #b9deb7;
}
header nav ul li:nth-of-type(6) a {/* お申し込みの流れ */
    background: #44af35;
}

header nav ul li:nth-of-type(6) {
    display: none;
}

header nav ul li:nth-of-type(7) a {
    background: #eb6877;
}
header nav ul li:nth-of-type(8) a {
    background: #007f41;
}
header nav ul li:nth-of-type(n+6):nth-child(-n+8) a {
    color: #fff;
}
@media screen and (max-width: 700px) {
    header nav ul li a {
        padding: 10px 5px 10px 20px;
    }
    header nav ul li:nth-of-type(2) a,/* 「登山・ハイキング・歩く旅（国内）」のツアーを探す */
    header nav ul li:nth-of-type(4) a {/* 「海外の旅」のツアーを探す */
        text-indent: -0.55em;
    }
}
@media screen and (max-width: 550px) {
    header nav {
        width: 100%;
        top: 60px;
    }
    header nav ul li a {
        padding: 9px 5px 9px 10px;
    }
}

/* ==============================================
    menuBtn span
============================================== */
#menuBtn {
	position: absolute;
	top: 0;
	right: -2px;
	width: 100px;
	height: 100px;
	background: #007f48;
	overflow: hidden;
	cursor: pointer;
	z-index: 10;
    color: #fff;
    padding-top: 72px;
    border-radius: 12px;
    font-weight: 500;
}
#menuBtn span,
#menuBtn:before,
#menuBtn:after {
	display: block;
	position: absolute;
	width: 60px;
	height: 6px;
	margin-left: -30px;
	background: #fff;
	top: 37px;
	left: 50%;
	transition: all .4s;
	opacity: 1;
}
#menuBtn span {
	margin-top: -1px;
	transition: opacity 150ms 50ms;
}

#menuBtn:before,
#menuBtn:after {
	content: "";
}
#menuBtn:before {
	transform: translate(0, -18px);
}
#menuBtn:after {
	transform: translate(0, 16px);
}

#menuBtn.active span {
	
}
#menuBtn.active:before  {
	transform: rotate(45deg);
}
#menuBtn.active:after  {
	transform: rotate(-45deg);
}
@media screen and (max-width: 700px) {
	#menuBtn {
		width: 60px;
		height: 60px;
        padding-top: 43px;
        border-radius: 8px;
        font-size: 11px;
	}
    #menuBtn span,
    #menuBtn:before,
    #menuBtn:after {
        width: 30px;
        height: 3px;
        margin-left: -15px;
        top: 22px;
    }
    #menuBtn:before {
        transform: translate(0, -11px);
    }
    #menuBtn:after {
        transform: translate(0, 9px);
    }
}

/* ==============================================
    contents
============================================== */
#contents {
    margin: 40px auto 80px;
}
@media screen and (max-width: 700px) {
    #contents {
        margin: 20px auto 60px;
    }
}
@media screen and (max-width: 400px) {
    #contents {
        margin: 20px auto 40px;
    }
}

#contents h1 {
    margin-bottom: 45px;
}
#contents h1 span.inner {
    position: relative;
    display: block;
    padding: 20px 0 25px 40px;
    background: #dde7fc;
    border-radius: 45px 0 0 45px;
    letter-spacing: 0.05em;
    font-size: 1.75em;
    color: #007f41;
}
@media screen and (max-width: 700px) {
    #contents h1 {
        margin-bottom: 25px;
    }
    #contents h1 span.inner {
        width: 100%;
        padding: 20px 0 20px 25px;
        border-radius: 30px 0 0 30px;
        font-size: 1.6em;
    }
}
@media screen and (max-width: 450px) {
    #contents h1 span.inner {
        padding: 15px 0 15px 20px;
        font-size: 1.4em;
    }
}

.btn a {
	padding: 10px 40px 10px 40px;
	background: #007f48;
	border: 1px solid #4eaf49;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	text-decoration: none;
    cursor: pointer;
}

.pdf a,
a.pdf {
	position: relative;
	display: inline-block;
	margin-left: 25px;
}
.pdf a::before,
a.pdf::before {
	position: absolute;
	content: "";
	display: inline-block;
	background: url(../images/file_pdf.svg) no-repeat 0 0;
	background-size: contain;
	width: 20px;
	height: 20px;
	margin-left: -25px;
}

/* Youtube レスポンシブ用 */
.movie_wrap {
    position:relative;
    width: 100%;
    max-width: 560px;
}
.movie_wrap::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
}
.movie_wrap iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

#contents p {
	line-height: 1.7;
}
#contents dt,
#contents dd,
#contents th,
#contents td,
#contents li {
	line-height: 1.5;
}
@media screen and (max-width: 700px) {
    #contents p {
        line-height: 1.6;
    }
    #contents dt,
    #contents dd,
    #contents th,
    #contents td,
    #contents li {
        line-height: 1.4;
    }
}


@media screen and (max-width: 700px) {
	table.scroll {
		overflow: auto;
		white-space: nowrap;
		display: block;
		width: auto;
	}
	table.scroll tbody {
		width: 100%;
	}
	table.scroll::-webkit-scrollbar {
		height: 5px;
	}
	table.scroll::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	table.scroll::-webkit-scrollbar-thumb {
		background: #bcbcbc;
	}
}


/* ==============================================
    footer / copyright
============================================== */
footer,
#copyright {
    font-size: 0.88em;
}
@media screen and (max-width: 700px) {
    footer,
    #copyright {
        font-size: 0.95em;
    }
}

/* ==============================================
    footer
============================================== */
footer {
    margin-bottom: 20px;
    padding: 20px 0 12px;
    background: #e8ff96;
}
footer nav {
    float: right;
}
footer nav li {
	list-style: none;
}
footer nav br {
    display: none;
}

footer nav li a,
footer address p > a {
    display: block;
    padding: 2px 0 10px 27px;
    background: url(../images/icn_arrow.png) no-repeat left top;
    background-size: 20px auto;
    font-weight: 500;
    color: #000;
    line-height: 1.1;
}

footer address {
	font-style: normal;
    line-height: 1.4;
}
footer address strong,
footer address p {
    display: inline-block;
    vertical-align: middle;
}
footer address strong {
    margin-right: 20px;
}
footer address span,
footer address span a {
    color: #4e4e4e;
}
footer address span {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.375em;
    font-weight: 700;
}
footer address p > a {
    margin-top: 5px;
}
@media screen and (max-width: 700px) {
    footer {
        margin-bottom: 10px;
    }
    footer nav br {
        display: block;
    }
    footer nav li a,
    footer address p > a {
        padding: 0 0 10px 19px;
        background-size: 15px auto;
    }
    footer address strong {
        margin-right: 5px;
    }
    footer address strong img {
        width: 180px;
    }
    footer address strong,
    footer address p {
        vertical-align: top;
    }
    footer address span {
        display: block;
    }
}
@media screen and (max-width: 660px) {
    footer nav br {
        display: none;
    }
    footer address strong,
    footer address p {
        display: block;
    }
    footer address strong {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 550px) {
    footer nav br {
        display: block;
    }
}
@media screen and (max-width: 470px) {
    footer nav {
        float: none;
        margin-bottom: 15px;
    }
    footer nav br {
        display: none;
    }
}

/* ==============================================
    copyright
============================================== */
#copyright {
	text-align: center;
}

/* ==============================================
    pagetop / btn_reservation / btn_contact
============================================== */
#pagetop,
#sideBtn {
    position: fixed;
}
#pagetop {
    display: none;
    bottom: 10px;
    right: 1px;
    width: 89px;
    height: 89px;
	cursor: pointer;
}
@media screen and (max-width: 700px) {
    #pagetop {
        bottom: 96px;
        width: 75px;
        height: 75px;
    }
    #pagetop img {
        width: 100%;
    }
}
@media screen and (max-width: 420px) {
    #pagetop {
        bottom: calc(17.6vw + 15px);
        width: 65px;
        height: 65px;
    }
}

#sideBtn {
    top: 155px;
    right: 0;
}
#sideBtn li {
    width: 132px;
    list-style: none;
}
#sideBtn li:first-child {
    margin-bottom: 28px;
}
@media screen and (max-width: 700px) {
    #sideBtn {
        top: auto;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 10px 0;
        background: #e8ff96;
        border-top: 1px solid #f2f7d9;
        text-align: center;
    }
    #sideBtn li {
        display: inline-block;
        vertical-align: middle;
        width: auto;
    }
    #sideBtn li:first-child {
        margin-right: 8px;
        margin-bottom: 0;
    }
    #sideBtn li img {
        width: 200px;
    }
}
@media screen and (max-width: 420px) {
    #sideBtn {
        padding: 7px 0;
    }
    #sideBtn li:first-child {
        margin-right: 5px;
    }
    #sideBtn li img {
        width: auto;
        height: 17.6vw;
    }
}

/* ==============================================
    slick style
============================================== */
.slick-dots li button::before {
	font-size: 12px;
	color: #c9c9c9;
	opacity: 1;
	transition: .4s;
}
.slick-dots li.slick-active button::before {
	color: #b0d303;
}
.slick-dots li button:hover::before {
	opacity: 0.8;
}

.slick-prev,
.slick-next {
	width: 45px;
	height: 45px;
	margin-top: -23px;
	z-index: 10;
}
.slick-prev:before,
.slick-next:before {
	content: "";
	display: inline-block;
	width: 45px;
	height: 45px;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	transition: .4s;
}

.slick-prev:before {
	background-image: url(../images/slick_arrow.png);
	transform: rotate(180deg);
}
.slick-next:before {
	background-image: url(../images/slick_arrow.png);
}
.slick-prev
{
    left: -60px;
}
[dir='rtl'] .slick-prev
{
    right: -60px;
    left: auto;
}
.slick-next
{
    right: -60px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -60px;
}
.slick-dots {
    bottom: -35px;
}
@media screen and (max-width: 700px) {
	.slick-prev,
	.slick-next {
        display: none;
    
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
	.slick-prev:before,
	.slick-next:before {
		width: 30px;
		height: 30px;
	}
    .slick-prev
    {
        left: -40px;
    }
    [dir='rtl'] .slick-prev
    {
        right: -40px;
        left: auto;
    }
    .slick-next
    {
        right: -40px;
    }
    [dir='rtl'] .slick-next
    {
        right: auto;
        left: -40px;
    }
}

/* ==============================================
    スクロールアニメーション
============================================== */
.scrollin {}
.fadein {}
.slidein {}

.scrollin.fadein {
	opacity : 0;
	
	transition: 0.5s;
	transform: translateY(100px);
}
.scrollin.fadein.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scrollin.slidein {
	opacity : 0;
	
	transition: 0.5s;
	transform: translateX(300px);
}
.scrollin.slidein.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}


/* ==============================================
    .bnr.inner
============================================== */
.bnr.inner {
    list-style: none;
    text-align: center;
}
.bnr.inner li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}
.bnr.inner li:first-child {
    padding-left: 0;
}

@media screen and (max-width: 700px) {
    .bnr.inner {
        width: calc(100% - 6px);
    }
    .bnr.inner li {
        width: 23%;
        padding-left: 1px;
    }
    .bnr.inner li img {
        width: calc(100% - 1px);
    }
    .bnr.inner li:first-child {
        width: 30%;
    }
    .bnr.inner li:first-child img {
        width: 100%;
    }
}
/* @media screen and (max-width: 400px) {
    .bnr.inner li {
        width: 50%;
        margin-bottom: 1px;
    }
    .bnr.inner li:nth-of-type(3) {
        padding-left: 0;
    }
    .bnr.inner li:nth-of-type(3) img {
        width: 100%;
    }
} */

/* ==============================================
    toursHeader
============================================== */
#toursHeader.inner {
	display: flex;
    justify-content: space-between;
	align-items: flex-start;
    margin-top: 35px;
}

#toursHeader.inner #link li {
    list-style: none;
    margin-bottom: 10px;
}
#toursHeader.inner #link li br {
    display: none;
}
#toursHeader.inner #link a {
    padding-right: 35px;
    background: url(../images/icn_arrow.png) no-repeat right center;
    background-size: 26px auto;
    font-weight: 500;
}
@media screen and (max-width: 700px) {
    #toursHeader.inner {
        display: block;
        text-align: center;
        margin-top: 20px;
    }
    #toursHeader.inner #link {
        margin-bottom: 25px;
    }
    #toursHeader.inner #link a {
        padding-right: 20px;
        background-size: 16px auto;
        font-size: 14px;
    }
    #toursHeader.inner #link li {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 390px) {
    #toursHeader.inner #link li br {
        display: block;
    }
}

.tourSearch {
    width: 300px;
}
#contents .tourSearch p {
    margin-bottom: 5px;
    font-size: 0.85em;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}
.tourSearch #search_text {
    width: 260px;
    border: 1px solid #c9c9c9;
    padding: 7px;
}
.tourSearch #search_btn,
.tourSearch #search_text {
    vertical-align: middle;
}
@media screen and (max-width: 700px) {
    .tourSearch {
        margin: 0 auto;
    }
    #contents .tourSearch p {
        margin-bottom: 3px;
    }
}

/* ==============================================
    tours
============================================== */
#tours {
    margin-top: 50px;
	clear: both;
	letter-spacing: -.40em;
	font-size: 0.8em;
    overflow: hidden;
}
#tours li {
	letter-spacing: normal;
}
#tours ul {
	list-style: none;
}
#tours li {
	display: inline-block;
	vertical-align: middle;
}
#tours .item,
#tours .blank {
	letter-spacing: normal;
}
#tours .item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 324px;
    margin-top: 14px;
    margin-left: 14px;
	padding-bottom: 9px;
	line-height: 1.4;
    background: #fff;
}
#tours .item:nth-of-type(3n + 1) {
    margin-left: 0;
}
@media screen and (max-width: 700px) {
    #tours {
        margin-top: 30px;
    }
    #tours .item {
        margin-top: 10px;
        width: calc(calc(100% - 10px)/2);
    }
    #tours .item,
    #tours .item:nth-of-type(3n + 1) {
        margin-left: 10px;
    }
    #tours .item:nth-of-type(2n + 1) {
        margin-left: 0;
    }
}
@media screen and (max-width: 620px) {
    #tours .item {
        width: 100%;
    }
    #tours .item,
    #tours .item:nth-of-type(3n + 1) {
        margin-left: 0;
    }
}

#tours .item h3 a {
	display: flex;
    justify-content: flex-start;
    min-height: 80px;
    line-height: 1.2;
}
@media screen and (max-width: 620px) {
    #tours .item h3 a {
        min-height: 30px;
    }
}

#tours .item h3 span,
#tours .item h3 strong {
    display: flex;
    align-items: center;
}
#tours .item h3 span {
    align-items: center;
    justify-content: center;
    width: 3em;
	color: #fff;
	font-weight: bold;
}
#tours .item h3 strong {
    width: calc(100% - 3.2em);
	padding: 3px 5px 5px;
}
#tours .item.aruku h3 a { background: #f1f9cb; }
#tours .item.kankou h3 a { background: #f6dce3; }
#tours .item.kaigai h3 a { background: #d3f1fe; }
#tours .item.aruku h3 span { background: #69ac00; }
#tours .item.kankou h3 span { background: #e98499; }
#tours .item.kaigai h3 span { background: #4bb5e2; }
#tours .item.aruku { border: 1px solid #69ac00; }
#tours .item.kankou { border: 1px solid #e98499; }
#tours .item.kaigai { border: 1px solid #4bb5e2; }

#tours .item div {
	position: relative;
	margin: 9px 8px 0;
}
#tours .item div span {
	float: left;
	width: 100px;
    max-height: 100px;
	text-align: center;
    overflow: hidden;
}
#tours .item dl {
	margin-left: 105px;
}
#tours #aruku .item dt { color: #2c7022; }
#tours #kankou .item dt { color: #e64f6f; }
#tours #kaigai .item dt { color: #195ebb; }

#tours .item dd {
	margin-left: 1em;
}
#tours .item p {
	position: absolute;
	right: 0;
}
#tours .item p.days {
	top: 0;
}
#tours .item p.end {
	bottom: 0;
}
#tours .item p.end img {
    vertical-align: bottom;
}
#tours .blank {
	margin: 80px auto 50px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}


