/* ==============================
  style
  UPD 2026-02-27
============================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* ------------------------------
   Reset
------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  /*font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  word-break: break-all;
}

/* 見出し（h1〜h6） */
h1, h2, h3, h4, h5, h6 {
  margin: 2.2em 0 1em;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

/* 見出し */
/*h1 { font-size: clamp(20px, 4vw, 36px);}
h2 { font-size: clamp(18px, 1.6vw, 20px);}*/
h1 { font-size: min(6.8vw, 2.4rem); }
h2 { font-size: min(6vw, 1.4rem); }
h3 { font-size: min(5vw, 1.1rem); }
h4 { font-size: min(3.5vw, 1rem); }
h5 { font-size: min(3vw, 1rem); }
h6 { font-size: min(2.5vw, 1rem); }

p {
  margin: 1em 0;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

figure {
  margin: 0;
  padding: 0;
}

picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: #165e83;
  word-break: break-all;
}
button,
header a,
nav a {
  text-decoration: none;
  color: #333;
}

@media screen and (min-width: 768px), print {
	a[href^="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}
}

/* デフォルトスタイルリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 15px;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  font-size: 15px;
}


nav ul, nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 10px 0;
  padding: 0;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

@media screen and (min-width: 768px), print {
  li {
    margin: 5px 0;
  }
}

@media (hover: hover) {
  a:hover,
  button:hover {
    /*color: #468c00;*/
    opacity: 0.6;
  }
}
@media (hover: none) {
  a:active,
  button:active {
    opacity: 0.6;
  }
}

/* ------------------------------
   アンカーリンク位置調整
------------------------------ */
/*:target {
  scroll-margin-top: 110px;
}*/

/* ------------------------------
   固定ヘッダー
------------------------------ */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: url("../img/common/bg_glay_top.png") no-repeat right top rgba(255,255,255,0.95);
  background-size: 320px auto;
  /*background-color: rgba(255,255,255,0.95);*/
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  z-index: 500;
}

#headerInner {
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

#siteLogo img {
  display: block;
  max-height: 42px;
}
#siteLogo .fCap {
  display: block;
  font-size: clamp(9px, 2.6vw, 12px);
  line-height: 1.2;
  margin: 5px 0 0;
}

#contactButton {
  margin-left: auto;
  margin-right: 16px;
  padding: 8px 16px;
  background-color: #0078d4;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

/* ------------------------------
   メニュートグル
------------------------------ */
/* ヘッダーと同じ幅で中央寄せ */
#menuToggleWrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1080px;
  margin: 0 auto;
  height: 90px; /* ヘッダーと同じ高さ */
  pointer-events: none;
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
}
.isMenuOpen #menuToggleWrapper {
  max-width: 100%;
}

/* トグルボタン本体 */
#menuToggle {
  position: relative;
  pointer-events: auto;
  margin-right: 16px; /* headerInner と同じ余白 */
  margin-top: 21px; 
  width: 48px;
  height: 48px;
  border: none;
  background: none;
}

#menuIcon {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 18px;
}

.menuLine {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #333;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.menuLine:nth-child(1) { top: 0; }
.menuLine:nth-child(2) { top: 8px; }
.menuLine:nth-child(3) { bottom: 0; }

#menuLabel {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.08em;
}

/* トグル開閉時の × 表示 */
#menuToggle.isOpen .menuLine:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
#menuToggle.isOpen .menuLine:nth-child(2) {
  opacity: 0;
}
#menuToggle.isOpen .menuLine:nth-child(3) {
  bottom: auto;
  top: 8px;
  transform: rotate(-45deg);
}

/* ------------------------------
   メニューオーバーレイ
------------------------------ */
#menuOverlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 900;
}

#menuOverlay.isVisible {
  opacity: 1;
  visibility: visible;
}

/* ------------------------------
   メニューパネル
------------------------------ */
#menuPanel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 92%;
  max-width: 480px;
  /*background-color: #f7f7f7;*/
  background: url("../img/common/pagetitle_bg.png") no-repeat right 0 #f7f7f7;
  background-size: 100% auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 1001;
  overflow-y: auto;
  overflow-x: hidden;
}

#menuPanel.isOpen {
  transform: translateX(0);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
}

#menuClose {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: none;
  font-size: 40px;
}
.batsu {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
}
.batsu::before, .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #333;
}
.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* ------------------------------
   メニューリスト
------------------------------ */
.menuList {
  padding: 80px 16px 16px;
  font-size: min(3.8vw, 16px);
}
.menuList > li:first-child {
  border-top: 1px solid #dbdbdb;
}
.menuList li {
  line-height: 1.4;
  border-bottom: 1px solid #dbdbdb;
  margin: 0;
  padding: 5px 0;
}
.menuList a {
  position: relative;
  display: block;
  padding: 8px 8px 8px 12px;
  color: #333;
}

.submenuToggle::before,
.menuList a::before {
  position: absolute;
  top: 35%;
  left: 0;
  content: "";
  background-color: #c33;
  width: 2px;
  height: 30%;
}

@media (hover: hover) {
  .menuList a:hover,
  .menuList button:hover {
    background-color: rgba(78,177,227,0.10);
    color: #165e83;
    opacity: 1;
  }
}
@media (hover: none) {
  .menuList a:active,
  .menuList button:active {
    background-color: rgba(78,177,227,0.10);
    color: #165e83;
    opacity: 1;
  }
}



/* ------------------------------
   サブメニュー
------------------------------ */
.hasSubmenu {
  /*position: relative;*/
  overflow: hidden;
}
.submenuToggle {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 8px 32px 8px 12px;
  border: none;
  background: none;
}
.submenuToggle::after {
  position: absolute;
  top: calc(50% - 0.75em);
  right: 8px;
  content: "＋"
}
.submenuPlus {
  float: right;
}
.submenu {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 10px);
  height: 100%;
  /*background-color: #fff*/;
  background: url("../img/common/pagetitle_bg.png") no-repeat 0 0 #fff;
  padding: 80px 16px 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transform: translateX(100vw);
  transition: transform 0.25s ease;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2;
}
.submenu.isOpen {
  transform: translateX(0);
}
.submenuBack {
  padding-bottom: 10px;
}
.submenuBackButton {
  border: none;
  background: none;
  padding: 8px 0;
  font-size: 14px;
}

/* ------------------------------
   ページメイン
------------------------------ */
#pageMain {
  padding-top: 90px;
}
.pageArticle {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-size: 1rem;
}

/* ページタイトル */
.pageHeader {
  margin-bottom: 2rem;
  padding: 2rem 0;
  background: url("../img/common/pagetitle_bg.png") no-repeat right 0 #fadada;
}
.pageHeader .box {
  position: relative;
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
.pageHeader .pageCategory {
  font-size: 14px;
  color: #333;
  margin: 0;
}
.pageHeader h1 {
  margin: 0.2em 0 0;
}
.pageHeader h1 .sub {
  display: inline-block;
  font-size: 0.8em;
}

/* 左右余白 */
.conteSp {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}

/* 上下余白 */
.secBox {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.secSubBox {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* 更新日情報 */
.upDate {
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.upDate.marginB {
  margin-bottom: 0.5em;
}


/**/
.secTitle {
	/*background-color: #e1e1e1;*/
  background: url("../img/common/bg_glay_top.png") no-repeat right 0 #e9e9e9;
  background-size: 320px auto;
  border-radius: 6px;
	margin: 0 0 1rem;
	padding: 0.5rem 1rem 0.6rem;
}

.secTitleBg {
  background: url("../img/common/bg_glay_top.png") no-repeat right 0 #e9e9e9;
  background-size: 320px auto;
  border-radius: 6px;
	margin: 0 0 1rem;
	padding: 0.5rem 1rem;
}
.secTitleBg h2 {
	margin: 0;
	padding: 0;
}
.secTitleBg p.cap {
  color: #097444;
  margin: 0.25rem 0 0;
  padding: 0;
}



.secSubTitle {
  border: 1px solid #ccc;
  border-radius: 6px;
	margin: 0 0 1rem ;
  padding: 0.5rem 1rem;
}

/* contentsList
-------------------------------- */
.contentsList {
border: 5px solid #f0f0e1;
padding: 10px 16px 20px;
}
.contentsList .listTItle {
position: relative;
margin: 10px 0 5px;
padding: 2px 0 0 12px;
line-height: normal;
font-size: min(4vw, 18px);
}
.contentsList .listTItle::before {
position: absolute;
top: 7px;
left: 0;
content: "";
width: 3px;
height: calc(100% - 10px);
background-color: #165e83;
border-radius: 3px;
}

.contentsList .listTItle:nth-of-type(n+2) {
  margin-top: 20px;
}
.contentsList ul {
margin: 0;
padding: 0;
list-style: none;
}
.contentsList li {
margin: 0 0 0 1rem;
padding: 10px 0 0;
font-size: 14px;
}
.contentsList li a {
position: relative;
display: inline-block;
padding: 2px 0;
/*color: #165e83;*/
}
.contentsList li a::before {
content: '';
width: 7px;
height: 7px;
border-top: 2px solid #165e83;
border-right: 2px solid #165e83;
position: absolute;
left: -1em;
top: 0.5em;
transform: rotate(45deg);
}

/* 調整 */
#pageContents.contentsList li a::before {
transform: rotate(135deg);
}
@media screen and (min-width: 768px), print {
  #pageContents.contentsList ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  }
}


/* ボタン装飾
-------------------------------- */
/* .btnArchives */
.btnArchives {
text-align: center;
}
.btnArchives a {
display: inline-block;
background-color: #111;
border: 1px solid #111;
border-radius: 6px;
color: #fff;
margin: 2rem 5px 0 5px;
padding: 0.75em 1.5em;
font-size: 14px;
letter-spacing: 0.05em;
text-decoration: none;
}
.btnArchives a .text {
position: relative;
display: inline-block;
padding: 0 0 0 16px;
}
.btnArchives a .text::before {
content: '';
width: 7px;
height: 7px;
border-top: 2px solid #ccc;
border-right: 2px solid #ccc;
position: absolute;
left: 0;
top: 5px;
transform: rotate(135deg);
}

.btnArchives a.arrowL {
  background-color: #fff;
  color: #111;
}
.btnArchives a.arrowL .text::before {
border-color: currentColor;
top: 7px;
transform: rotate(-135deg);
}

@media screen and (max-width: 479px) {
  .btnArchives a {
    width: 80%;
  }
  .btnArchives a:nth-of-type(n+2) {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 768px), print {
  .btnArchives {
  text-align: right;
  }
  .btnArchives a {
    margin: 2rem 0 0 10px;
  }
}


/* PDFリンク
-------------------------------- */
ul.pdfList {
	list-style: none;
	margin: 0;
	padding: 0;
  width: 100%;
}
ul.pdfList li {
	margin: 10px 0;
	padding: 0;
  font-size: min(4vw, 15px);
  overflow: auto;
  text-align: left;
}

ul.pdfList li img {
	margin: 0 5px 0 0;
	vertical-align: middle;
	float: left;
}

ul.pdfList li span {
	display: block;
	padding: 5px 0 0;
	line-height: 1.5;
}

/*  */
ul.fileList {
	list-style: none;
	margin: 0;
	padding: 0;
  width: 100%;
  overflow: auto;
}
ul.fileList li {
	margin: 10px 0;
	padding: 0;
  font-size: min(4vw, 15px);
  overflow: auto;
  text-align: left;
}
ul.fileList li a {
  display: inline-block;
  background: url("../img/common/pdficon.gif") no-repeat 0 0;
  margin: 0;
  padding: 5px 0 0 35px;
  min-height: 32px;
}
ul.fileList li.iconExcel a {
  background-image: url("../img/common/excelicon.gif");
}
ul.fileList li.iconWord a {
  background-image: url("../img/common/wordicon.gif");
}

ul.fileList .formCap {
  font-size: 13px;
}

/**/
a.linkPdf {
  display: inline-block;
  background: url("../img/common/pdficon.gif") no-repeat 0 0;
  margin: 0;
  padding: 5px 0 0 35px;
  min-height: 32px;
  font-size: min(4vw, 15px);
  text-align: left; 
  overflow: auto;
}

/**/
ul.asteriskList {
  list-style: none;
  margin: 1rem 0;;
  padding: 0;
}
ul.asteriskList li {
  position: relative;
  padding-left: 1.5em;
}
ul.asteriskList li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* リンク矢印
-------------------------------- */
/* 円形右側 */
a.arrowCircleR {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0 1.2em 0 0;
}
a.arrowCircleR::before {
  position: absolute;
  top: 0.38em;
  right: 0;
  content: "";
  background-color: #165e83;
  border-radius: 7px;
  width: calc(1em - 2px);
  height: calc(1em - 2px);
}
a.arrowCircleR::after {
  content: '';
  width: calc(1em - 10px);
  height: calc(1em - 10px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0.62em;
  right: 5px;
  transform: rotate(45deg);
}
/* 円形左側 */
a.arrowCircleL {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 0 0 0 1.2em;
}
a.arrowCircleL::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  content: "";
  background-color: #165e83;
  border-radius: 7px;
  width: calc(1em - 2px);
  height: calc(1em - 2px);
}
a.arrowCircleL::after {
  content: '';
  width: calc(1em - 10px);
  height: calc(1em - 10px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 0.62em;
  left: 3px;
  transform: rotate(45deg);
}



/* -------------------------------- 
  breadcrumbSec
-------------------------------- */
#breadcrumbSec {
width: 92%;
max-width: 1040px;
margin: 0 auto;
padding: 10px 0;
}
#breadcrumbSec ol {
margin: 0;
padding: 10px 0;
list-style: none;
}

#breadcrumbSec li {
display: inline;
color: #a7a7a7;
font-size: 11px;
}

#breadcrumbSec li:after {
content: '>';
color: #555;
padding: 0 0.2em;
}

#breadcrumbSec li:last-child:after {
content: '';
}

#breadcrumbSec li a {
color: #000;
text-decoration: none;
}

#breadcrumbSec li a:hover {
text-decoration: underline;
}

/* ------------------------------
   上部へ戻るボタン
------------------------------ */
#backToTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: none;
  background-color: rgba(255,0,0,0.9);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

#backToTop .arrow {
  position: relative;
  width: 2px;          /* 縦線の太さ */
  height: 18px;        /* 縦線の長さ */
  background-color: #fff; /* 矢印の色（ボタンが赤なので白に変更） */
  border-radius: 9999px;
}

#backToTop .arrow::before {
  content: "";
  position: absolute;
  top: -3px;           /* 斜め線の位置調整 */
  right: -7px;         /* 右側にずらす */
  width: 2px;          /* 斜め線の太さ */
  height: 10px;        /* 斜め線の長さ */
  background-color: #fff;
  border-radius: 9999px;
  transform: rotate(-45deg); /* 右上方向へ伸びる斜め線 */
  transform-origin: bottom center;
}

#backToTop.isVisible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


@media (hover: hover) {
  #backToTop:hover {
    background: #165e83;
    transform: translateY(-3px) scale(1.05);
  }
}
@media (hover: none) {
  #backToTop:active {
    background: #165e83;
    transform: translateY(-3px) scale(1.05);
  }
}


/* ------------------------------
   footer
------------------------------ */
footer {
  width: 100%;
  overflow: auto;
}

#ftSitemap {
  background: url("../img/common/bg_glay_bottom.png") no-repeat right bottom #ededed;
  background-size: 480px auto;
  padding: 2rem 0;
}
#ftSitemap nav {
  width: 92%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0;
}
#ftSitemap #ftHome {
  font-size: min(4vw, 14px);
  margin: 1rem 0 0.5rem;
}
#ftSitemap #ftCateBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#ftSitemap nav ul,
#ftSitemap nav li {
  list-style: none;
  font-size: min(4vw, 14px);
}
#ftSitemap nav .cateText {
  margin-bottom: 0.75rem;
  color: #8a8a75;
  font-size: 14px;
}
#ftSitemap nav ul.mainCateNav > li {
  margin: 1rem 0;
}
#ftSitemap nav ul ul {
  margin: 0 0 1.5rem 1rem;
}

#ftSitemap nav a {
  display: inline-block;
  position: relative;
  padding-left: 1em;
}
#ftSitemap nav a::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}
@media (hover: hover) {
  #ftSitemap nav a:hover {
    color: #165e83;
    font-weight: bold;
    opacity: 1;
  }
  #ftSitemap nav a:hover::before {
    border-color: currentColor;
  }
}
@media (hover: none) {
  #ftSitemap nav a:active {
    color: #165e83;
    font-weight: bold;
    opacity: 1;
  }
  #ftSitemap nav a:active::before {
    border-color: currentColor;
  }
}

/* #ftCopyright */
#ftCopyright {
  width: 92%;
  max-width: 1080px;
  height: 100%;
  margin: 2rem auto;
}
#ftNotes {
  border: 1px dotted #ccc;
  margin: 1rem 0 2rem;
  padding: 0rem 0.75rem 0.5rem;
}
#ftNotes p {
  font-size: min(3.2vw, 12px);
  margin: 0.5rem 0 0;
}

#ftInfo p {
  font-size: min(4vw,13px);
  margin: 0.5rem 0 1rem;
}

#ftInfo small {
  font-size: min(3.2vw,11px);
}

@media screen and (max-width: 767px) {
  #ftSitemap nav li {
    margin: 1rem 0;
  }
}
@media screen and (min-width: 768px), print {
  #ftCopyright {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
  #ftInfo {
    width: 400px;
  }
  #ftNotes {
    flex: 1;
  }
}


/* ------------------------------
   etc
------------------------------ */
.inlineBlk {
  display: inline-block;
}

/* 注意書き
------------------------------ */
main .notes {
	background-color: rgb(250, 218, 218);
  border-radius: 6px;
	margin: 1rem 0;
	padding: 0.7rem 1rem 0.5rem;
	overflow: hidden;
	text-align: center
}
main .notes p {
	color: #c00;
	margin: 0 0 5px;
  padding: 0;
  letter-spacing: 0.05em;
}

main .notes .linkBnr {
  margin-top: 1rem;
}


/* GET Acrobat Reader */
main .notes.getAcrobatReader {
  background-color: transparent;
  border: 1px dashed rgba(204,0,0,0.5);
}


/* ------------------------------
   link
------------------------------ */
/* .btnBox */
.btnBox a {
  color: #333;
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0.5em 1.5em;
  text-decoration: none;  
}
.btnBox a .text {
  display: flex;
  align-items: center;
}
.btnBox a .text::before {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  margin-right: 8px;
}

/* ------------------------------
   common
------------------------------ */

.taR { text-align: right !important;}
.taC { text-align: center !important;}

.red {  color: #f00}
.blue { color: #083da6;}

.cap { font-size: 0.9em;}
.capSmall { font-size: 0.7em;}

.nowrap { white-space: nowrap;}

/* 三点リーダー */
.leader {
font-family: Meiryo;
}

/* JTB */
.fArial {
  font-family: Arial, Helvetica, "sans-serif";
}



/* --------------------------------
  優先調整
-------------------------------- */
@media screen and (max-width: 767px) {
  .pcOn {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .mbOn {
    display: none;
  }
}





/**/
/* アンカーメニュー（ドロップダウン） */
.dropdownContainer {
  background: #f0f0e1;
  border-radius: 6px;
  margin: 2rem auto;
  padding: 5px;
  width: 100%;
  max-width: 480px;
}
.dropdownButton {
  background: #fff;
  padding: 10px 15px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: relative;
}
.dropdownButton::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #165e83;
  border-right: 2px solid #165e83;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease;
}
.dropdownButton.active::after {
  transform: translateY(-50%) rotate(-45deg);
}
.dropdownMenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #333 0%, #444 3%, #444 70%, #333 100%);
  border-radius: 0 0 6px 6px;
  max-height: 0;
  overflow: hidden;
  /*transition: max-height 0.3s ease;*/
  transition: max-height 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}
#dropdownMenu.open {
  max-height: 34vh;
  overflow-y: auto;
}
.dropdownMenu li {
  margin: 0;
  padding: 5px 0;
  border-top: 1px solid rgba(0,0,0,0.3);
}
.dropdownMenu li a {
  display: block;
  padding: 10px 12px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 600px) {
  .dropdownMenu {
    transition-duration: 0.45s;
  }
}

@media (hover: hover) {
  .dropdownMenu li a:hover {
    background: #333;
    opacity: 1;
  }
}
@media (hover: none) {
  .dropdownMenu li a:active {
    background: #333;
    opacity: 1;
  }
}


/* --------------------------------
  .soundBox
-------------------------------- */
dl.soundBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; 
  width: auto;
  margin: 1rem auto;
  padding: 0;
}
dl.soundBox dt {
  background:url(../img/common/icon_sound.gif) left center no-repeat;
  margin: 0 10px 0 0;
  padding: 5px 0 5px 24px;
}
dl.soundBox dd {
  margin: 0;
  padding: 0;
}

/* --------------------------------
  無効
-------------------------------- */
.selectNone {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  
  /* 長押し無効 */
  -webkit-touch-callout:none;
  -moz-touch-callout:none;
  touch-callout:none;
}
.selectNoneLink {
  -webkit-touch-callout:none;
  -moz-touch-callout:none;
  touch-callout:none;
}

/* 画像保護 */
.imgCover {
	position: relative;
}
.imgCover::before {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
}
@media print {
  .imgCoverGuard {
    position: relative;
    overflow: hidden;
  }
  .imgCoverGuard::before {
    background-color: transparent;
    position: absolute;
    top: -50%;
    left: -50%;
    content: "";
    background: url("../img/common/nocopyimg.png") repeat;
    background-size: 75px auto;
    width: 200%;
    height: 200%;
    transform: rotate(-30deg);
    opacity: 0.5;
  }
}


/* ------------------------------
   印刷
------------------------------ */
@media print {
  #siteHeader {
    position: static;
  }
}