html{
	scroll-behavior: smooth;
	color:#333;
}
h1{
	margin:15px auto 0 auto;
	padding:0;
}
h1 img{
	width:100%;
}

.accordion {
    width: 100%;
    overflow: hidden;
	margin-bottom:40px;
}

.accordion-header {
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: #009944; /* 緑色 */
    color: white;
    padding: 10px;
    cursor: pointer;
    position: relative; /* 矢印用にrelativeを追加 */
    font-weight: bold;
    font-size: 18px;
    margin: 0; /* 隙間を防ぐ */
}

.accordion-content {
    max-height: 0; /* 初期状態で非表示 */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out; /* 開閉時のアニメーションをスムーズに */
    padding: -10px 10px 10px 10px;
    margin: 0;
}
.bg1-area {
    background-color: #e8e1cd;
}
.bg2 {
    background-color: #FFF;
}
.bg1-area{
	padding:10px;
}
.accordion-content p {
    margin:0 5px 10px 5px;
    color: #333;
    padding: 0;
    font-size: 14px;
    text-align: center;
}

.hojyo {
    background: #FFF;
    padding: 10px;
	margin:0 10px 10px 10px;
    text-align: center;
   /* width: 100%; 
    box-sizing: border-box; 
    overflow-wrap: break-word; 
    word-break: break-word; 
    max-width: 100%;*/ 
}

.hojyo strong {
    font-size: 18px;
}

.arrow {
    position: absolute;
    right: 20px; /* 右端に固定 */
    width: 10px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); /* デフォルトの矢印 */
    transition: transform 0.3s ease; /* 矢印の回転もスムーズに */
}

input[type="checkbox"] {
    display: none;
}

/* チェックされたときのスタイル */
input[type="checkbox"]:checked ~ .accordion-header .arrow {
    transform: rotate(-135deg); /* 矢印を下向きに回転 */
}

input[type="checkbox"]:checked ~ .accordion-content {
    max-height: 1000px; /* 十分に大きな値を設定 */
    /*padding: 10px;  開いたときだけ余白 */
    margin: 0;
}

.icon {
    display: inline-block;
    width: 30px; 
    height: 30px; 
    background-size: cover;
    background-position: center;
    margin-right: 10px; 
}

.icon1 {
    background-image: url('../img/icon1.png'); 
}
.icon3 {
    background-image: url('../img/icon3.png'); 
}

.btn-box{
	margin:auto;
	text-align: center;
	margin-bottom:20px;
}
.n-main-btn {
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	color: #FFF;
	font-size: 18px; 
	font-weight: bold;
	padding: 10px 20px; 
	border-radius: 18px;
	text-decoration: none;
	transition: opacity 0.3s ease; 
}
.n-main-btn:hover {
	opacity: 0.7;
	text-decoration: none;
	color: #FFF;
}
.n-main-btn img {
	width: 30px; 
	height: 30px; 
	margin-right: 10px; 
}

.hotel-table a{
	text-decoration: none;	
}

.small-n-main-btn{
	font-size: 15px; 
	width:90%;
	height:44px;
	line-height: 44px;
	text-decoration: none;
}
.small-n-main-btn:visited{
	color:#FFF;
	text-decoration: none;
}
.small-n-main-btn:hover{
	text-decoration: none;
}
.small-n-main-btn:active{
	text-decoration: none;
}
.orange-button {
	background-color: #fc6d51; 
	border-bottom: #cc6633 4px solid; 
}
.green-button{
	background-color: #009944; 
	border-bottom: #01541a 4px solid; 
}
.plan-flow{
 	background: #e8e1cd;
	position: relative;
	width:100%;
	padding:4px 20px 20px 20px;
	margin:30px 0 40px 0;
}
.plan-flow h2 {
	position: relative;
	width: 100%;
	line-height:1.5em;
	padding-bottom:10px;

}
.plan-flow h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px; /* ストライプ全体の高さを低くする */
	background: repeating-linear-gradient(
	-45deg,
	#3c3c3c,
	#3c3c3c 3px, /* ストライプ1本の太さ */
	transparent 3px, /* ストライプの間隔 */
	transparent 6px
	);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
h2{
	color:#333;
	font-weight:bold;
	text-align: center;
	font-size:18px;
	margin-bottom:20px;
}
.pin{
	width:24px;
	position: absolute;
	top:-10px;
	left:5px;
}
.flow{
	background: #FFF;
	padding:10px;
	text-align: center;
}
.flow span{
	color:#009944;
	font-weight:bold;
	font-size:17px;
	padding:0 40px;
	display: block;
	margin-bottom:16px;
}
.flow1{
	background:#FFF url("../img/flag1.webp") no-repeat left 10px top 10px;
	background-size: 30px;
	margin-bottom:10px;
}
.flow2{
	background:#FFF url("../img/flag2.webp") no-repeat left 10px top 10px;
	background-size: 30px;
}
.flow a{
	display: block;
}
.flow a:hover{
	opacity: 0.7;
	text-decoration: none;
	color: #FFF;
}
.small-orange-btn{
	background : #FC6D51;
	border-radius : 16px;
	-moz-border-radius : 16px;
	-webkit-border-radius : 16px;
	border-bottom:#bc4d3f solid 4px;
	padding:10px;
	color:#FFF;
	font-weight:bold;
	font-size:14px;
	margin:0 auto 16px auto;
	width:14em;
}
.small-green-btn{
	background : #009944;
	border-radius : 16px;
	-moz-border-radius : 16px;
	-webkit-border-radius : 16px;
	border-bottom:#01541a solid 4px;
	padding:10px;
	color:#FFF;
	font-weight:bold;
	font-size:14px;
	margin:0 auto 16px auto;
	width:18em;
}
.br460{
	display: none;
}
.basic-p{
	margin:0 0 20px 0;
	padding:0;
	font-size:14px;
}
.highlight {
     background:linear-gradient(transparent 70%, #80ea6a 70%);
}
.circle{
	list-style-type: circle;
	list-style-position: outside;
	margin:0 0 40px 1.5em;
	padding:0;
	font-size:14px;
}
.circle li{
	margin:0 0 5px 0;
}
.arrow_img{
	width:6%;
	display: block;
	margin:10px auto;
}
.center-txt{
	text-align: center;
	margin:0 auto;
	padding:0 auto;
}
.green-txt{
	font-size:16px;
	padding:5px;
	border: #009944 solid 1px;
	color:#009944;
	margin:0 auto 10px auto;
	display: inline-block;
	text-align: center;
}
.txt-indent{
	padding-left:1em;
	text-indent:-1em;
	display:block;
	font-size:14px;
}
.nodai-map{
	width:100%;
	margin-bottom:40px;
}
.abashiri{
	background: #ffe696;
	padding:0 16px 16px 16px;
	margin-bottom:20px;
}
.shari{
	background: #fcd3e4;
	padding:0 16px 16px 16px;
	margin-bottom:20px;
}
.kitami{
	background: #cfc1fa;
	padding:0 16px 16px 16px;
	margin-bottom:40px;
}
.abashiri h3{
	background: #ffc200;
	font-size:18px;
	font-weight:bold;
	color:#FFF;
	text-align: center;
	display: flex;
	justify-content: center;
	padding:5px;
	margin:0 auto 10px auto;
	width:calc(3em + 10px);
}
.shari h3{
	background: #f24e92;
	font-size:18px;
	font-weight:bold;
	color:#FFF;
	text-align: center;
	display: flex;
	justify-content: center;
	padding:5px;
	margin:0 auto 10px auto;
	width:calc(3em + 10px);
}
.kitami h3{
	background: #7d57f3;
	font-size:18px;
	font-weight:bold;
	color:#FFF;
	text-align: center;
	display: flex;
	justify-content: center;
	padding:5px;
	margin:0 auto 10px auto;
	width:calc(3em + 10px);
}
.hotel-block{
	background:#FFF;
	padding:10px 16px 20px 16px;
	margin-bottom:10px;
}
.hotel-block:last-of-type{
	margin-bottom:0;
}
.hotel-img{
	width:100%;
	display: block;
	margin:10px auto;
}
h4{
	font-weight:bold;
	font-size:16px;
	text-align: center;
	line-height: 1.5em
}
table,th,td{
	border-collapse: collapse;
}
.bus-table{
	border: #CCC solid 1px;
	margin:0;
	padding:0;
}
.bus-table td{
	font-size:12px;
	padding:5px 8px;
}
.dotted{
	border-bottom: #CCC dashed 1px;
}
.bus-table th{
	font-size:12px;
	background: #CCC;
	padding:5px 8px;
	text-align: left;
	font-weight: lighter;
}
.bus-table th strong{
	font-size:14px;
}

.hotel-block .accordion {
	margin-bottom:0;
}
.hotel-block p {
	font-size:14px;
}

.floating-btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    color: #FFF;
    font-size: 18px; 
    font-weight: bold;
    padding: 10px 20px; 
    text-decoration: none;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
    position: fixed;
    bottom: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 640px;
    z-index: 1000;
    background:#009944 ;/*#fc6d51　オレンジ*/
    opacity: 0; /* 初期状態は透明 */
    visibility: hidden; /* 初期状態は非表示 */
}

.floating-btn.show {
    opacity: 1; /* 表示時に透明度を1に */
    visibility: visible; /* 表示時に見えるようにする */
}

.floating-btn a:hover {
    text-decoration: none;
    color: #FFF;
}

.floating-btn img {
    width: 30px; 
    height: 30px; 
    margin-right: 10px; 
}

.floating-btn a {
    display: block; 
    color: #FFF;
    text-align: center;
    text-decoration: none !important; 
}

.floating-btn a:link, 
.floating-btn a:visited, 
.floating-btn a:hover, 
.floating-btn a:active {
    color: #FFF;
    text-decoration: none !important; 
}


.koutsuhi{
	color:#FFF;
	font-weight:bold;
	background: url("../img/icon1.png")no-repeat left;
	padding-left:40px;
	background-size: 30px;
	display: inline-block;
	width:14em;
	text-align: center;
	margin:0 auto 10px auto;
}
.bg1{
    background-color:#009944 ;/*#e8e1cd*/
	padding:10px;
	text-align: center;
	margin:40px 0;
}
.bg1 p{
	margin:0 0 10px 0;
	padding:0;
	color: #FFF;
}
.mb60{
	margin-bottom:60px;
}
.txt-inline{
	display: inline !important;
}
a.txt-inline:hover{
	opacity: 1;
	text-decoration: underline;
	color: #ee9131;
}
.abashiri-hotel,.shari-hotel,.kitami-hotel{
	list-style-type: none;
	margin:0;
	padding:0;
}
.abashiri-hotel li,.shari-hotel li,.kitami-hotel li{
	border-left:#ffe696 solid 3px;
	padding:0 0 0 5px;
	margin-bottom:5px;
}
.abashiri-hotel li{
	border-left:#ffe696 solid 3px;
}
.shari-hotel li{
	border-left:#fcd3e4 solid 3px;
}
.kitami-hotel li{
	border-left:#cfc1fa solid 3px;
}
.abashiri-hotel li span,.shari-hotel li span,.kitami-hotel li span{
	font-weight:bold;
	margin-right:5px;
}

/* スライダーコンテナ */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    margin: 0 0 30px 0;
}

/* スライドトラック */
.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* スライドの画像 */
.slider-track img {
    flex-shrink: 0;
    max-width: 100%; /* 縦横比を維持 */
    height: auto; /* 縦横比を維持 */
}

.mail-icon{
	width: 16px;
	/*padding:0 5px 0 0;*/
}

.img100 {
  width: 100%;
  height: auto; /* 縦横比を維持 */
  display: block;
  object-fit: cover; /* 必要に応じて画像の切り抜き */
}
.map-icon{
	width:12px;
	margin:0;
}
.hotel-table {
    width: 100%;
    table-layout: fixed; /* 固定 */
	margin-bottom:0;
}
.hotel-table,.hotel-table th,.hotel-table td{
	border-collapse: collapse;
	border:#ececec solid 1px;
}
.hotel-table th,.hotel-table td{
	text-align: center;
	padding-top:10px;
	padding-bottom:10px;
}
.hotel-table th{
	width:10em;
}
.hotel-table td{
	width: calc(100% - 10em);
}
.gray-button {
	display: inline-flex; 
	align-items: center; 
	justify-content: center; 
	color: #FFF;
	font-size: 15px; 
	line-height: 1.5em;
	font-weight: bold;
	padding: 10px; 
	border-radius: 18px;
	text-decoration: none;
	transition: opacity 0.3s ease; 
	background-color: #999; 
	border-bottom: #333 4px solid;
	width:90%;
	height:60px;
}
.gray-button:hover {
	opacity: 1;
	text-decoration: none;
	color: #FFF;
}
.green-button a,
.green-button a:link, 
.green-button a:visited, 
.green-button a:hover, 
.green-button a:active {
    color: #FFF;
    text-decoration: none !important; 
}
.green-button a,
.small-green-btn a:link, 
.small-green-btn a:visited, 
.small-green-btn a:hover, 
.small-green-btn a:active {
    color: #FFF;
    text-decoration: none !important; 
}
.hotel-map{
	border: #009944 solid 1px;
	color:#009944;
	padding:0 2px;
	font-size:12px;
	border-radius: 2px;
	-webkit-border-radius: 2px; 
	-moz-border-radius: 2px; 
	margin-left:5px;
	display: inline-block;
}
.hotel-map a,
.hotel-map a:link, 
.hotel-map a:visited, 
.hotel-map a:hover, 
.hotel-map a:active {
    color: #009944;
    text-decoration: none !important; 
}
.red-txt{
	color: #F91C4F;
	font-weight:bold;
	text-align: center;
	font-size:16px;
}
.info-box{
	text-align: center;
	margin-bottom:40px;
}
.info-icon{
	background: url("../img/info-icon.jpg") no-repeat center left;
	background-size: 20px;
	font-weight:bold;
	padding-left:26px;
	display: inline-block;
	font-size:16px;
}
.listmark{
    list-style-type: none;
    margin:0;
	padding:0;
	display: flex;
	justify-content: center;
	font-size:16px;
}

.listmark li {
    display: flex;
    align-items: center;
    gap:10px;
    padding: .3em;
}

.listmark li::before {
    transform: rotate(-45deg);
    width: .5em;
    height: .5em;
    border-bottom: 3px solid #009944;
    border-right: 3px solid #009944;
    content: '';
	display: inline-block;
}
/* ------------------------------------------------------------ */
@media (max-width: 460px) {
.br460{
	display: block;
}


}
/* ------------------------------------------------------------ */
@media (max-width: 374px) {
.plan-flow{
	padding:10px 10px 10px 10px;
}	
.small-orange-btn,.small-green-btn{
	font-size:12px;
	position: relative;
}
.flow1{
	background:#FFF url("../img/flag1.webp") no-repeat left 5 top 10px;
	background-size: 30px;
}
.flow2{
	background:#FFF url("../img/flag2.webp") no-repeat left 5 top 10px;
	background-size:30px;
}

}
/* ------------------------------------------------------------ */
@media (max-width: 376px) {

.gray-button {
	font-size: 12px; 
	
}

.small-n-main-btn{
	font-size: 12px;
	padding:10px;
}	
}	
/* ------------------------------------------------------------ */
@media (max-width: 361px) {
.hotel-table td{
	width: calc(100% - 8em);
}
.hotel-table th{
	width: 9em;
}	
.n-main-btn {
	font-size: 16px; 
	padding: 10px 16px; 
}
.small-n-main-btn{
	font-size: 14px; 
}
}	
/* ------------------------------------------------------------ */
@media (max-width: 350px) {
.gray-button {
	font-size: 12px;
	padding:5px;
}
.small-n-main-btn{
	font-size: 12px;
	padding:5px;
}	
.hotel-table th{
	font-size:0.9em;
}
}