@charset "UTF-8";
/*--------------------------------------------
	HTML5 Reset ::style.css
	-------------------------
	We have learned much from/been inspired by/taken code where offered from:
	Eric Meyer:http://ericmeyer.com
	HTML5 Doctor:http://html5doctor.com
	and the HTML5 Boilerplate:http://html5boilerplate.com
---------------------------------------------*/
/* Let's default this puppy out
--------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd,
q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	width: auto;
}


article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}


/* Responsive images and other embedded objects
   Note:keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */

html {
    scroll-behavior: smooth;/*なめらかにスクロール*/
    scroll-padding-top: 130px!important;/*リンク先ズレ修正*/
}

html {
  overflow-y: scroll;
}

/* 追加推奨：全体の初期設定 */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* 横スクロール防止 */
}

body.sp_device {
  --header-height: 120px;
}

img,
object,
embed {
  max-width: 100%;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: top;
}


td {
  font-weight: normal;
  vertical-align: top;
}


hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}


input, select {
  vertical-align: top;
}


pre {
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}


input[type="radio"] {
  vertical-align: text-bottom;
}


input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}


select, input, textarea {
  font: 99% sans-serif;
}


table {
  font-size: inherit;
  font: 100%;
}


a:hover, a:active {
  outline: none;
}


td, td img {
  vertical-align: top;
}


sub, sup {
  font-size: 85%;
  line-height: 0;
  position: relative;
}


sup {
  top: -0.5em;
}


sub {
  bottom: -0.25em;
}


pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}


.clickable,
label,
input[type=button],
input[type=submit],
button {
  cursor: pointer;
}


button, input, select, textarea {
  margin: 0;
}


button {
  width: auto;
  overflow: visible;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}


img {
  vertical-align: bottom;
}


.clear:before, .clear:after {
  content: " ";
  display: table;
}


.clear:after {
  clear: both;
}


.clear {
  *zoom: 1;
}


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

Base Scss

-------------------------------------------*/
/*-------------------------------------------
Base Setting
-------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
	display: none;
}

body {
  width: 100%;
  background: #fff;
  min-width: 990px;
}

body.sp_device {
    min-width: inherit;
}


body, select, input, textarea, button {
  font-size: 1.4rem;
  font-family: "メイリオ", "Meiryo", "Meiryo UI", "ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","HiraKakuPro-W3","ＭＳ Ｐゴシック","MS Pgothic","Osaka",sans-serif;
  line-height: 1.5;
  color: #333333;
  font-size-adjust: none;
  -webkit-font-size-adjust: none;
  -webkit-text-size-adjust: none;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


a {
  color: #333333;
  cursor: pointer;
}


a:link {
  text-decoration: none;
}


a:visited {
  text-decoration: none;
}


a:hover, a:active {
  text-decoration: underline;
}


img {
  vertical-align: middle;
}


input, button, textarea, select {
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


textarea {
  resize: vertical;
}


address {
  font-style: normal;
}


em {
  font-style: normal;
}


strong {
  font-weight: normal;
}


legend {
  display: none;
}


table {
  text-align: left;
  font-weight: normal;
}


th, td {
  font-weight: normal;
}


body {
  word-break: break-all;
  position: relative;
}


p > img {
  vertical-align: middle;
}


ol, li {
  list-style: none;
}


/*js_back-top
----------------------------*/
#js_back-top{
    opacity: 0;
    position: fixed;
    bottom: 45px;
    margin-top: -20px;
    z-index: 2;
    transition: opacity .5s;
    -moz-transition: opacity .5s;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    -ms-transition: opacity .5s;
    pointer-events: none;
    right: 0px;
    padding-right: 50px;
}
#js_back-top.active{
  opacity: 1;
  pointer-events: auto;
}
#js_back-top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: hsla(219,39%,65%,0.70);
  text-align: center;
  /*コレ*/border-radius: 50%;
}

#js_back-top a img{
  position: relative;
  top: 50%;
  width: 25px;
  margin-top: -25px;
}

.sp_device #js_back-top{
    padding-right: 20px;
}

/*js_back-course
----------------------------*/
#js_back-course{
    opacity: 0;
    position: fixed;
    bottom: 110px;
    margin-top: -20px;
    z-index: 2;
    transition: opacity .5s;
    -moz-transition: opacity .5s;
    -webkit-transition: opacity .5s;
    -o-transition: opacity .5s;
    -ms-transition: opacity .5s;
    pointer-events: none;
    right: 0px;
    padding-right: 50px;
}
#js_back-course.active{
  opacity: 1;
  pointer-events: auto;
}

#js_back-course a{
  position: relative;
  display: block;
  width: 100%;/*
  height: 100px;*/
  opacity: 80%;
  text-align: center;
}

#js_back-course a img{
  position: relative;
  top: 50%;
  width: 60px;
  margin-top: -25px;
}

.sp_device #js_back-course{
    padding-right: 20px;
}

/* ツアー一覧参考に */
/*.fixed_Btn3{
    position: fixed;
    bottom: 120px;
    right: 50px;
    background-repeat: no-repeat;
    z-index: 3;
    width: 62px;
}*/


/*modal
----------------------------*/
.modalWindow{
  display:none;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 0);
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(0,0,0,0.75);
  overflow: hidden;
}
#cboxLoadedContent {
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#colorbox {
  outline: 0;
}
#cboxTopLeft,
#cboxTopRight,
#cboxBottomLeft,
#cboxBottomRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxTopCenter,
#cboxBottomCenter {
  display: none;
}
#cboxContent {
  position: relative;
  padding: 15px 15px 70px 15px;
  background: #FFF;
  border-radius: 5px;
  overflow: hidden;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxClose {
  position: absolute;
  bottom: 15px;
  right: 0;
  left: 0;
  width: 50%;
  max-width: 164px;
  margin: 0 auto;
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 8px 1em;
  white-space: nowrap;
  background: #FFF;
  cursor: pointer;
}
#cboxClose:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 8px;
  background: url(../images/ico_close_02.png) center center no-repeat;
  background-size: contain;
}
#cboxClose:active {
  outline: 0;
}
#cboxClose:hover {
  text-decoration:underline;
}
#cboxWrapper .closeIcon{
  position: absolute;
  top: -30px;
  right: 0;
}
#cboxWrapper .closeIcon a {
  display: block;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border: 1px solid #FFF;
  border-radius: 12px;
  text-indent: -9999px;
  background: url(../images/ico_close_01.png) center center no-repeat;
  background-size: 12px;
  overflow: hidden;
  z-index: 1;
}
.sp_device #cboxContent {
  padding: 10px 10px 60px 10px;
}
.sp_device #cboxClose {
  bottom: 10px;
}