@charset "utf-8";
/**
 * jtb common.css 0.0.1
 * Released on: 04,2025
 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

@font-face{
	font-family:'kkrs-dp';
	src:url("/kokunai/___common/fonts/kkrs-dp.ttf") format("truetype"),url("/kokunai/___common/fonts/kkrs-dp.woff") format("woff"),url("/kokunai/___common/fonts/kkrs-dp.svg#kkrs-dp") format("svg");
	font-weight:normal;
	font-style:normal;
}
@font-face {
  font-family: 'jtb-dom';
  src: url("/kokunai/_common/fonts/jtb-dom.ttf") format("truetype"), url("/kokunai/_common/fonts/jtb-dom.woff") format("woff"), url("/kokunai/_common/fonts/jtb-dom.svg#jtb-dom") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 62.5%;
}

section{
	margin: 0px;
	padding: 0px;
}
#container{
	margin: 0px;
	padding: 0px;
    width: 100%;
	font-feature-settings: "palt";
}

main a:link,
main a:visited,
main a:active,
nav a:link,
nav a:visited,
nav a:active{
	color: #323743;
	text-decoration: none;
}
main a:hover,
nav a:hover{
	color: #009b93;
}
#flexbox_at{
	display: flex;
	flex-direction: column;
}
@media screen and (max-width:767px){
#flexbox_at{
	display: flex;
	flex-direction: column-reverse;
}
    #container{
    width: 100%;
    
    }
}
/*--------------------------------------------------------------
# アイコン
--------------------------------------------------------------*/
/* アイコンのサイズ */
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* 明るい背景の場合に黒色でアイコンを表示 */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* 暗い背景の場合に白色でアイコンを表示 */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/*--------------------------------------------------------------
# loader
--------------------------------------------------------------*/

body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
}
.jtb-nav-breadcrumb {margin: 1px auto 5px;max-width: 1236px;padding: 0 5px;text-align: left;}
.jtb-nav-breadcrumb li {font-size: 12px;}
.jtb-nav-breadcrumb a {color: #125687;text-decoration: none;}
.jtb-nav-breadcrumb li:before {font-size: 12px;}
.l-page { font-size: 16px; line-height: 1.6;}
.l-page * { -ms-box-sizing: border-box; box-sizing: border-box; }
.l-page h1 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	margin: 0 auto 25px;
	max-width: 1236px;
	padding-left: 10px;
	text-align: left;
}

@media screen and (max-width:600px){
	.js-btn-page-top { bottom: 20px; right: 20px; }
	.js-btn-page-top a { background-color: #999; border-radius: 6px; display: block; height: 30px; width: 30px; }
	.js-btn-page-top a::before { color: #fff; content: "\f106"; display: inline-block; font-family: "icon"; position: absolute; left:30%; line-height:29px;}
	.l-page h1 { margin-bottom: 20px; }
	#page_footer-sp { margin-top: 0 !important; }
}
/*--------------------------------
PAGE TOP
---------------------------------*/

#page-top {
    position: fixed; 
    bottom: 0px; /* 画面下端からの距離 */
    right: 0px; /* 画面右端からの距離 */
    oppacity: 0;
    z-index: 10000;
}

#page-top:not(.page-top-img) a {
	text-decoration: none;
	background: #68272d;
	color: #fff;
	text-align: center;
	display: block;
	-moz-opacity: 0.8;
	opacity: 0.8;
	cursor:pointer;
	padding:15px;
}
#page-top a:hover {
	text-decoration: none;
	color: #fff;
}
@media screen and (max-width:680px){

#page-top:not(.page-top-img) a {
	cursor:pointer!important;
	padding:2px;
}
}

/*--------------------------------
見出し
---------------------------------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    padding: 0px;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}
header,
main,
section{
	width: 100%;
	margin: 0px;
	padding: 0px;
	font-family: 'Noto Sans Japanese', sans-serif;
	color: #323743;
}
footer{
    width: 100%;
    margin: 0px!important;
    padding: 0px!important;
}
ul{
	list-style: none
}
/*--------------------------------
clearfix
---------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
 
.clearfix:before {
　　　　content: "";
	display: block;
	clear: both;
}
 
.clearfix {
	display: block;
}
.txt_red{
	color: #FF0004;	
}
/*--------------------------------
flex
---------------------------------*/
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: stretch; /* 高さ揃える */
	flex-wrap: wrap; /* 折返し指定 */
}
.flex_list{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap; /* 折返し指定 */
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■パンくず
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.kkrs-breadcrumb-bg{
	width: 100%;
	background-color: #f5f5f5;
}
.kkrs-breadcrumb{
  padding: 1rem 0;
  max-width: 1236px;
  margin-left: auto;
  margin-right: auto;
}

.kkrs-breadcrumb__fix{
  display: none;
}

.kkrs-breadcrumb__list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #656972;
}

.kkrs-breadcrumb__list > li {
  margin-right: 2rem;
  position: relative;
}

.kkrs-breadcrumb__list > li a {
  color: #125687;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li a:hover {
  text-decoration: underline;
}

.kkrs-breadcrumb__list > li a.kkrs-breadcrumb__current-link {
  color: #656972;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li:not(:last-child):before {
  display: inline-block;
  font-family: "Material Icons Round";
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  content: ">";
  position: absolute;
  top: 50%;
  right: -1.5rem;
  font-size: 1rem;
  color: #989ba1;
  margin-top: -0.5em;
}

.kkrs-breadcrumb__list > li:last-child {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
	.kkrs-breadcrumb-bg{
	background-color: #fff;
}
  .kkrs-breadcrumb {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #d7d7d7;
    line-height: 3rem;
    padding: 0;
    background: #fff;
    /*margin: 0 -1rem*/
  }
  .kkrs-breadcrumb__fix {
    display: block;
    -webkit-box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
  .kkrs-breadcrumb__fix a {
    padding: 0 0.5rem 0 1rem;
    font-size: 1.2rem;
    color: #125687;
    -webkit-transition: none;
    transition: none;
    text-decoration: none;
  }
  .kkrs-breadcrumb.kkrs-top .kkrs-breadcrumb__fix {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .kkrs-breadcrumb__scroll {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
  }
  .kkrs-breadcrumb__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 3rem;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .kkrs-breadcrumb__list > li {
    margin: 0;
    padding: 0 0.5rem 0 1.8rem;
  }
  .kkrs-breadcrumb__list > li:nth-child(1) {
    display: none;
  }
  .kkrs-breadcrumb__list > li:not(:last-child):before {
    content: "";
    margin: 0;
    top: -0.5rem;
    right: -0.9rem;
  }
  .kkrs-breadcrumb__list > li:last-child {
    padding: 0 1rem 0 1.8rem;
  }
  .kkrs-breadcrumb__list > li:last-child:after,
  .kkrs-breadcrumb__list > li:last-child:before {
    display: none;
  }
  .kkrs-breadcrumb__fix a,
  .kkrs-breadcrumb__list > li {
    display: block;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
  }
  .kkrs-breadcrumb__fix a:after,
  .kkrs-breadcrumb__fix a:before,
  .kkrs-breadcrumb__list > li:after,
  .kkrs-breadcrumb__list > li:before {
    content: "";
    border-style: solid;
    border-width: 2rem 0 2rem 1rem;
    position: absolute;
    top: -0.5rem;
  }
  .kkrs-breadcrumb__fix a:before,
  .kkrs-breadcrumb__list > li:before {
    right: -0.9rem;
    border-color: transparent transparent transparent #fff;
    z-index: 2;
  }
  .kkrs-breadcrumb__fix a:after,
  .kkrs-breadcrumb__list > li:after {
    right: -1rem;
    border-color: transparent transparent transparent #d7d7d7;
    z-index: 1;
  }
}
/* ==================================================
   main
================================================== */
main{
	width: 100%;
	margin: 0px auto;
}
/* ==================================================
   font
================================================== */
.fn_400{
	font-size:400%;
}
.fn_300{
	font-size:300%;
}
.fn_200{
	font-size:200%;
}
.fn_150{
	font-size:150%;
}
.fn_120{
	font-size:120%;
}

/* ==================================================
   レスポンシブ
================================================== */

.jtb_pc{
    display: block;
  }
.jtb_tb{
    display: none;
  }
.jtb_sp{
    display: none;
  }
.jtb_pc1130{
    display: block;
  }
.jtb_sp1130{
    display: none;
  }
.jtb_pc1230{
    display: block;
  }
.jtb_sp1230{
    display: none;
  }
.jtb_pc680{
    display: block;
  }
.jtb_sp680{
    display: none;
  }
.jtb_pc420{
    display: block;
  }
.jtb_sp420{
    display: none;
  }

@media only screen and (max-width:1230px) {
	.jtb_pc{
    display: block;
	}
	.jtb_tb{
    display: none;
  }
	.jtb_sp{
    display: none;		
  }
.jtb_pc1230{
    display: none;
  }
.jtb_sp1230{
    display: block;
  }
}
@media only screen and (max-width:1130px) {
	.jtb_pc1080{
    display: none;
	}
	.jtb_pc{
    display: block;
	}
	.jtb_tb{
    display: block;
  }
	.jtb_sp{
    display: none;		
  }
.jtb_pc1130{
    display: none;
  }
.jtb_sp1130{
    display: block;
  }
}
@media only screen and (max-width:680px) {
	.jtb_pc{
    display: none;
	}
	.jtb_tb{
    display: none;
  }
	.jtb_sp{
    display: block;		
  }
.jtb_sp680{
    display: block;		
  }
.jtb_pc680{
    display: none;
  }
}
@media only screen and (max-width:420px) {
	.jtb_pc420{
    display: none;
	}
	.jtb_sp420{
    display: block;		
  }
}

/*--------------------------------------------------------------
# jtb_head
--------------------------------------------------------------*/
#jtb_head{
    width: 1230px;
    margin: 0px auto;
    padding: 10px;
}
header .pagetitle{
    font: bold 240%/120% YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    width: 100%;
    font-weight: bold;
    margin: 10px auto 10px;
    padding: 10px 5px 5px 15px;
    border-left: 10px solid #c60f28;
    text-align: justify;
}
@media screen and (max-width: 1229px) {
/*--------------------------------------------------------------
# jtb_head
--------------------------------------------------------------*/
#jtb_head{
    width: 95%;
    margin: 0px auto;
    padding: 10px;
}
header .pagetitle{
    font: bold 200%/120% YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
}

@media screen and (max-width: 680px) {
	#jtb_head{
    width: 95%;
    margin: 0px auto;
    padding: 0px;
}
header .pagetitle{
    font: bold 180%/120% YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    margin: 5px auto 5px;
    border-left: 5px solid #c60f28;
}
}

@media screen and (max-width: 420px) {
header .pagetitle{
    font: bold 160%/120% YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
}
}

/*--------------------------------------------------------------
# 追従
--------------------------------------------------------------*/
.cts_plan_btn{
    position: fixed;
    bottom: 80px;
    left: 0;
    z-index: 1000;
}

.cts_plan_btn a{
    display: inline-block;
    background: rgba(255, 125, 143, 0.9); /* 透過 */
    background-size: 45px;
    border-radius: 0vh 1vh 1vh 0vh;
    color: #fff !important;
    padding: 20px 55px 20px 45px;
    text-align: left;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    transform: translate(0px, 15px);
    margin-left: 0px;
    text-decoration: none;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}
.cts_plan_btn a:hover{text-decoration:none !important;transform:translate(0, 0)}


.cts_plan_btn ::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
/* ===========================
   Back to Top ボタン
=========================== */
.cts_backtotop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 40px;
    width: 120px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cts_backtotop img{
    width: 100%;
}
.cts_backtotop a {
    display: block;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.cts_backtotop a:hover {
    transform: scale(1.1);
}

.cts_backtotop.active {
    display: block;
    opacity: 1;
}
/* スマホ・タブレット */
@media (max-width: 680px) {

  /* 追従ボタン（予約ボタン） */
  .cts_plan_btn {
      bottom: 55px;   /* ← backtotop と揃える */
      left: 0;
  }

  .cts_plan_btn a {
      font-size: 14px;
      line-height: 16px;
      padding: 10px 25px 10px 20px;
      border-radius: 0vh 0.5vh 0.5vh 0vh;
  }

  .cts_plan_btn::after {
      width: 6px;
      height: 6px;
      right: 6px;
  }

  /* Back to Top ボタン */
  .cts_backtotop {
      width: 70px;   /* 半分サイズ */
      right: 30px;
      bottom: 30px;  /* plan_btn と揃える */
  }

  .cts_backtotop img {
      width: 100%;
      height: auto;
  }
}
/*--------------------------------------------------------------
# アニメーション
--------------------------------------------------------------*/
/* 初期状態 */
.fade-in-left,
.fade-in-right,
.fade-in-up {
  opacity: 0;
  transform: translateY(50px); /* 下からの場合 */
  transition: transform 1.2s ease-out, opacity 1.2s ease-out; /* 位置と透過を同じ速度でゆっくり */
}

/* 左右 */
.fade-in-left { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }

/* 表示時 */
.fade-in-left.show,
.fade-in-right.show,
.fade-in-up.show {
  transform: translate(0,0); /* 位置を元に戻す */
  opacity: 1;                /* 透過もゆっくり上がる */
}