@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,500,700");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap');
/* ===============================
	base
 =============================== */
html {
  font-size: 62.5%;
}
body {
  /*font-family: "Roboto", 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  font-family: 'Shippori Mincho', 'Noto Serif JP', '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'serif';
	font-size: 1.5rem;
  font-weight: 600;
	line-height: 1.8;
	color: #231815;
  font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
  letter-spacing: 0.1em;
}
a:hover {
  color: #FFB600;
}
.contents-body {
  background-color: #DEC6C1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {

}
/* ===============================
	header
 =============================== */
header {
  width: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 99;
}

header .container {
  display: flex;
  align-items: center;
  overflow: inherit;
}
header h1 {
  padding: 0 25px;
  display: flex;
  align-items: center;
}
header nav {
  margin-left: auto;
  padding: 10px;
}

header nav .drawer-menu {
  display: flex;
}

header nav .drawer-menu li {
  width: 165px;
  position: relative;
}


header nav .drawer-menu a,
header nav .drawer-menu .dropdown span {
  color: #fff;
  display: block;
  background-color: rgba(0,0,0,0.55);
  white-space: nowrap;
  padding: 5px 10px;
  margin: 0 0 0 1px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
header nav .drawer-menu a:hover {
  background-color: rgba(118,128,19,0.70)
}
.nav-link,
.nav-link:link, 
.nav-link:visited, 
.nav-link:active,
.submenu-link,
.submenu-link:link, 
.submenu-link:visited, 
.submenu-link:active {
    display: block;
    position: relative;
    /*font-size: 1.4rem;
    letter-spacing: 1px;*/
    cursor: pointer;
    text-decoration: none;
    outline: none;
}

.nav-link,
.nav-link:link, 
.nav-link:visited, 
.nav-link:active {
/*  font-weight: bold;
  display: inline;*/
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link:hover::before {
  opacity: 1;
  -webkit-transform: translate(0, 5px);
  transform: translate(0, 5px);
}
.nav-link span {
  font-size: 1rem;
}
/*.dropdown .nav-link {
  padding-right: 20px;
}*/
/*.dropdown .nav-link::after {
  content: "";
  position:absolute;
  top: 6px;
  right: 0;
  border: 5px solid transparent;
  border-top-color: #000;
}*/
header.globalNav-w .dropdown .nav-link::after {
  border-top-color: #fff;
}
.dropdown-block {
  position: absolute;
  top: 32px;
  left: 0;
  margin-left: 0;
  transition: .5s;
  z-index: 100;
  display: inline-block;
}
.dropdown-block li {
  height: 0;
  overflow: hidden;
  transition: .5s;
  text-align: center;
}
.dropdown-block li a {
  /*display: block;
  background-color: rgba(0,0,0,0.55);
  white-space: nowrap;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  padding: 0 10px;
  margin: 0;
  font-size: 1.3rem;*/
}
header.globalNav-w .dropdown-block li a {
  border: 1px solid #fff;
  background-color: rgba(255,255,255,0.00);
}
.dropdown-block li a:hover {
  
}
header.globalNav-w .dropdown-block li a:hover {
  
}
.dropdown-block li::after {
  content: '';
  display: none;
}
.gnav li:hover > .dropdown-block > li {
  height: 3.2rem;
  overflow: visible;
}

.sns-nav {
  margin-left: 5px;
}
.sns-nav li {
  margin: 0 3px;
}
@media screen and (max-width: 767px) {
  header {
    position: static;
  }
  header nav ul {
    display: block;
  }
  header nav li {
    position: static;
    padding: 5px 0;
  }
  header nav li a {
    display: block;
    color: #272727;
  }
  header nav li::after {
    content: '';
  }
  .dropdown-block {
    position: static;
    margin: 0;
  }
  .dropdown-block li {
    height: auto;
    text-align: left;
  }
  .dropdown-block li a {
    border: none;
    background: none;
    height: auto;
    line-height: normal;
    padding: 0;
    text-indent: 20px;
  }
  .gnav li:hover > .dropdown-block > li {
    height: auto;
  }
}
/* ===============================
	drawer
 =============================== */
.drawer-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-nav {
    width: 50%;
    padding: 15px;
    background: rgba(255,255,255,0.69);
  }
  header nav li {
    text-align: left;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 50%;
  }
  .drawer--right .drawer-nav {
    right: -50%;
  }
  .drawer-hamburger {
		display: block !important;
    background-color: #014380;
    text-align: center;
	}
  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    background-color: #fff;
  }
  .drawer-txt {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin-top: 10px;
    display: block;
  }
  .drawer-hamburger {
    width: auto;
    z-index: 9999;
    top: 0;
    background-color: #014380;
    padding-top: 12px;
    padding-bottom: 5px;
  }
  .drawer-hamburger:hover,
  .drawer--right.drawer-open .drawer-hamburger {
    background-color: #014380;
  }
}
/* ===============================
	パンくずリスト
 =============================== */
#breadcrumb-list {
  margin-top: 92px;
  border-top: 2px solid #DBDBDB;
}
#breadcrumb-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px 0;
}
#breadcrumb-list li {
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

#breadcrumb-list li::before {
  font-family: 'Material Icons';
  content: "navigate_next";
  font-weight: 400;
  font-size: 2rem;
}
#breadcrumb-list li:first-child::before {
  content: '';
}

/* ===============================
	main
 =============================== */
main {
  width: 100%;
  margin: 0 auto;
  display: block;
}

/* ===============================
	block
 =============================== */
.container {
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
	overflow: hidden;
}
.w1200 {
  width: 1200px;
}
/*2column*/
#col2 {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 2;
  justify-content: space-between;
  padding: 3em 0;
}

#main-col {
  width: 730px;
  max-width: 100%;
}
#side-col {
  width: 310px;
  max-width: 100%;
}
/* ===============================
	見出しutility
 =============================== */
.hTypeA {
  font-size: 3.0rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-feature-settings: "palt" 1;
}
.hTypeA span {
  margin-left: 30px;
  padding: 10px 0 5px;
}
.hTypeB {
  font-size: 2.3rem;
  font-weight: 500;
  text-align: center;
}
/*縦書き右から*/
.text-vertical-rl {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
/*テキスト背景白*/
.text-vertical-rl span {
  background-color: #fff;
  display: table;
}


/* ===============================
	footer
 =============================== */
footer {
  padding: 30px;
}
footer nav {
  margin-left: auto;
  position: relative;
}
footer nav li,
footer nav dd {
  font-size: 1.2rem;
  line-height: normal;
  border-left: 1px solid #231815;
}
footer nav ul {
  margin-bottom: 10px;
}
footer nav li {
  width: 165px;
  text-align: center;
}

footer nav li a {
  display: block;
  padding: 3px 0;
}
footer nav dl {
  align-items: baseline;
}
footer nav dt {
  width: 165px;
  font-size: 2.6rem;
}
footer nav dd {
  padding: 0 10px;
}
footer nav dd:last-child {
  padding-right: 0;
}
#copyright {
  font-size: 1rem;
  letter-spacing: normal;
  text-align: right;
}
#move-page-top {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
}


/* ===============================
	btn
 =============================== */
.btn {
  text-align: center;
  display: inline-block;
  position: relative;
  color: #fff;
}
.btn a {
  display: block;
  padding: 10px 80px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
.btn a::after {
  font-family: 'Material Icons';
  content: "navigate_next";
  font-weight: 400;
  font-size: 2rem;
  position: absolute;
  right: 10px;
}

.btn-typeA {
  background-color: #768013;
}
.btn-typeB {
  background-color: #998096;
}
.btn-typeC {
  background-color: #D38780;
}

.btn-typeA a[target="_blank"]::after,
.btn-typeB a[target="_blank"]::after {
  content: '';
  width: 20px;
  height: 20px;
  background: url("../imgs/common/icon_tab.svg") no-repeat center;
  background-size: 80% auto;
}
.btn-typeB a[target="_blank"]::after {
  background: url("../imgs/common/icon_tab_white.svg") no-repeat center;
}

.btns-block {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}
.btns-block li {
  margin-right: 5px;
}
.btns-block li:last-child {
  margin-right: 0;
}
.btns-block .btn-next {
  background-color: #FFDE55;
  position: relative;
}
.btns-block .btn-prev {
  background-color: #D0D0D0;
}


/* ===============================
	utility
 =============================== */

.new-icon::before {
  content: 'NEW';
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #014380;
  padding: 5px;
  line-height: normal;
  position: absolute;
  top: 0;
}
.smp {
  display: none;
}
.bgColor1 {
  background-color: #F4E8D0;
}
.bgColor2 {
  background-color: #1A8DA8;
}
.bgColor3 {
  background-color: #e2e1e1;
}
.bgColor4 {
  background-color: #EFEFEF;
}

.annotation {
  font-size: 1.2rem;
  color: #636363;
  vertical-align: middle;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
}
.horizon {/* 水平並びリスト 親　*/
  letter-spacing: -1rem;
  list-style: none;
}
.horizon > li,
.horizon > dt,
.horizon > dd,
.horizon_child {/* 水平並びリスト 子 */
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
}

.caption { /* テキストサイズ注釈 */
	font-size: 0.88em;
	line-height: 1.4em;
}

.fxs {
	font-size: 0.88em; /* テキストサイズ小 */
	line-height: 1.6em;
}

.fxl {
	font-size: 1.14em; /* テキストサイズ大 */
	line-height: 1.6em;
}

.mt05em { /* margin top 0.5行 */
	margin-top: 0.5em !important;
}
.mt1em { /* margin top 1行 */
	margin-top: 1em !important;
}
.mt2em { /* margin top 2行 */
	margin-top: 2em !important;
}
.mt3em { /* margin top 3行 */
	margin-top: 3em !important;
}
.mt5em { /* margin top 5行 */
	margin-top: 5em !important;
}
.mb05em { /* margin bottom 0.5行 */
	margin-bottom: 0.5em !important;
}
.mb1em { /* margin bottom 1行 */
	margin-bottom: 1em !important;
}
.mb2em { /* margin bottom 2行 */
	margin-bottom: 2em !important;
}
.mb3em { /* margin bottom 3行 */
	margin-bottom: 3em !important;
}
.mb5em { /* margin bottom 5行 */
	margin-bottom: 5em !important;
}

.pl100 {/*padding left 100px*/
  padding-left: 100px;
}
.rdus { /* 角丸 */
	border-radius: 4px;
}

.alignC {
  text-align: center;
}

.fs-12 {font-size: 1.2rem;}
.fs-16 {font-size: 1.6rem;}
.fs-18 {font-size: 1.8rem;}
.fs-20 {font-size: 2.0rem;}
.fs-22 {font-size: 2.2rem;}
.fs-24 {font-size: 2.4rem;}

.fc000 {
  color: #000 !important;
}
.fcFF0000 {
  color: #FF0000 !important;
}
.fcFF008E {
  color: #FF008E !important;
}
.list-style-disc {
  list-style: disc;
  padding-left: 15px;
}
time::before {
  content: 'query_builder';
  font-family: 'Material Icons';
  display: inline-block;
  vertical-align: bottom;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .smp {
    display: block;
  }
  .w1200 {
    width: 100% !important;
    overflow-x: hidden;
  }
  .pl100 {/*padding left 100px*/
    padding-left: 0;
  }
  .horizon > li,
  .horizon > dt,
  .horizon > dd,
  .horizon_child {
    width: 100% !important;
  }
}
/* ===============================
	Formカスタム
 =============================== */
/*フィールドサイズ*/
.field_mini {
  width: 50px;
}
.field_middle {
  width: 250px;
}
label {
  margin-right: 15px;
}
/* ===============================
	Material iconsを利用する
 =============================== */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* 推奨サイズ */
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  vertical-align: middle;

  /* WebKitブラウザサポート */
  -webkit-font-smoothing: antialiased;
  /* Chrome、Safariサポート */
  text-rendering: optimizeLegibility;

  /* Firefoxサポート */
  -moz-osx-font-smoothing: grayscale;

  /* IEサポート */
  font-feature-settings: 'liga';
}
/* アイコンサイズ */
.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); }

/* ===============================
	ページャー
 =============================== */
.cms-pagination {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
  font-size: 0.813em;
}

.cms-pagination ul {
    position: relative;
    float: left;
    left: 50%;
    margin-bottom: 12px;
}

.cms-pagination ul li {
    position: relative;
    float: left;
    left: -50%;
    width: 34px;
    height: 38px;
    display: table;
    margin: 0 2px;
    display: none;
}

.cms-pagination ul li.pagination-no-num {
    width: 50px;
    display: table;
}

.cms-pagination ul li.pagination-no-num span {
    background: #eee;
    border: 1px solid #ddd;
    color: #ccc;
}

.cms-pagination ul li.pagination-sp {
    display: table;
}

.cms-pagination ul li a,
.cms-pagination ul li span {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
    border: 1px solid #999;
    background: #fff;
}

.cms-pagination ul li a:before,
.cms-pagination ul li span:before {
    position: absolute;
    display: block;
    content: '';
    width: 96%;
    height: 2px;
    background: #ccc;
    bottom: -3px;
    left: 2%;
}

.cms-pagination ul li span {
    background: #555;
    border: 1px solid #555;
    color: #fff;
}

.pagination-txt {
    clear: both;
    text-align: center;
    margin-bottom: 40px;
}

.pagination-txt span {
    color: #999;
}

@media print,screen and (min-width: 1024px) {
    .cms-pagination ul li {
        width: 40px;
        height: 44px;
        margin: 0 3px;
        display: table;
    }
    .cms-pagination ul li a {
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }
    .cms-pagination ul li a:hover {
        background: #ccc;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }
    .cms-pagination ul li.pagination-no-num {
        width: 60px;
    }

    .pagination-txt {
        margin-bottom: 60px;
    }
}

/* ===============================
	SNSオリジナル
 =============================== */
.sns-button-wrap {
  display: flex;
  justify-content: center;
}
.sns-button-wrap a {
  text-decoration: none;
}
.sns-button {
  color: #FFFFFF;
  width: 20%;
  text-align: center;
  padding: 0.5em 0;
  font-size: 0.75em;
}

.sns-twitter {
  background: #55acee;
}

.sns-facebook {
  background: #3B5998;
}

.sns-pocket {
  background: #ef3f56;
}
 
.sns-line {
  background: #1dcd00;
}
 
.sns-hatebu {
  background: #00a5de;
}

/* ===============================
	clearfix
 =============================== */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* メディアクエリサンプル */
/* ===============================
	device setting
 =============================== */
@media screen and (min-width: 1281px) {
  /*画面幅が1281px以上（PC専用スタイル）*/
}
@media screen and (max-width: 1280px) {
  /*画面幅が1280px以下（タブレット・スマホ共通スタイル）*/
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  /*画面幅が768px～1280px（タブレット専用スタイル）*/
}
@media screen and (max-width: 767px) {
  /*画面幅が767px以下（スマートフォン専用スタイル）*/
}
@media screen and (max-width: 414px) {
  /*画面幅が414px以下（スマートフォン縦向き専用スタイル）*/
}

/* 印刷用スタイル */
/* ===============================
	print setting
 =============================== */
@media print {
	.printNl {
		page-break-before: always;
	}
}