@charset "UTF-8";
/* ==================================================
	RWD layout settings
================================================== */
.rwd_disp_xxo,
.rwd_disp_xox,
.rwd_disp_oxx {
  display: none !important;
}

/* SPのみ表示
-------------------------------------------------- */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .rwd_disp_xxo {
    display: block !important;
  }
}
/* ========== end △ */
/* TBのみ表示
-------------------------------------------------- */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .rwd_disp_xox {
    display: block !important;
  }
}
/* ========== end △ */
/* PCのみ表示
-------------------------------------------------- */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .rwd_disp_oxx {
    display: block !important;
  }
}
/* ========== end △ */
/* PC・TABのみ表示
-------------------------------------------------- */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .rwd_disp_oox {
    display: none !important;
  }
}
/* ========== end △ */
/* PC・SPのみ表示
-------------------------------------------------- */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .rwd_disp_oxo {
    display: none !important;
  }
}
/* ========== end △ */
/* TAB・SPのみ表示
-------------------------------------------------- */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .rwd_disp_xoo {
    display: none !important;
  }
}
/* ========== end △ */
/* SPのみ非表示
-------------------------------------------------- */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .sp_none {
    display: none !important;
  }
}
/* ========== end △ */
/* TABのみ非表示
-------------------------------------------------- */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .tb_none {
    display: none !important;
  }
}
/* ========== end △ */
/* PCのみ非表示
-------------------------------------------------- */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .pc_none {
    display: none !important;
  }
}
/* ========== end △ */
/* 印刷時のみ非表示
-------------------------------------------------- */
/* ▽ PRINT layout ========== */
@media print {
  .print_none {
    display: none !important;
  }
}
/* ========== end △ */
/* ==================================================
	■flexbox layout
================================================== */
.flex-sys-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.flex-sys-wrap::before, .flex-sys-wrap::after {
  display: none;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .flex-sys-wrap > .col-2, .flex-sys-wrap > .col-3, .flex-sys-wrap > .col-4 {
    margin-bottom: 5%;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 641px) {
  .flex-sys-wrap > .col-2 {
    width: 48%;
  }
  .flex-sys-wrap > .col-3 {
    width: 31%;
  }
  .flex-sys-wrap > .col-4 {
    width: 23%;
  }
}
/* ========== end △ */
/* SP時 無効 */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .flex-sys-wrap.disp-oox {
    display: block;
  }
}
/* ========== end △ */
/* TAB時 無効 */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .flex-sys-wrap.disp-oxo {
    display: block;
  }
}
/* ========== end △ */
/* PC時 無効 */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .flex-sys-wrap.disp-xoo {
    display: block;
  }
}
/* ========== end △ */
/* SP/TAB 無効（PCのみ有効） */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
  .flex-sys-wrap.disp-oxx {
    display: block;
  }
}
/* ========== end △ */
/* TAB/PC 無効 */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 641px) {
  .flex-sys-wrap.disp-xxo {
    display: block;
  }
}
/* ========== end △ */
/* 水平揃え
-------------------------------------------------- */
/* 全デバイス左揃え */
.flex-sys-wrap.justify-left {
  justify-content: flex-start;
}

/* 全デバイス中央揃え */
.flex-sys-wrap.justify-center {
  justify-content: center;
}

/* SP/TAB 左揃え（PCのみ有効） */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
  .flex-sys-wrap.justify-left-xoo {
    justify-content: flex-start;
  }
}
/* ========== end △ */
/* SP時 左揃え */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .flex-sys-wrap.justify-left-xxo {
    justify-content: flex-start;
  }
}
/* ========== end △ */
/* TAB時 左揃え */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .flex-sys-wrap.justify-left-xox {
    justify-content: flex-start;
  }
}
/* ========== end △ */
/* 垂直揃え
-------------------------------------------------- */
/* 全デバイス中央揃え */
.flex-sys-wrap.item-center {
  align-items: center;
}

/* ==================================================
	■page title
================================================== */
#tt_page {
  background: url(../common_img/pagettl_bg.png) center top;
  padding: 39px 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #tt_page {
    margin-bottom: 8%;
    padding: 8% 3%;
  }
}
/* ========== end △ */
#tt_page h2 {
  margin: 0;
  font-weight: bold;
  font-family: Garamond, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "游明朝体", "Yu Mincho", YuMincho, serif ;
  font-size: 40px;
  line-height: 1.2;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #tt_page h2 {
    font-size: 24px;
  }
}
/* ========== end △ */
/* ==================================================
	■breadcrumb：パンくずリスト
================================================== */
#breadcrumb {
  margin-bottom: 30px;
  padding: 5px 0;
}
#breadcrumb li {
  display: inline-block;
  font-size: 11px;
}
#breadcrumb li::before {
  content: ">";
  margin-right: 0.5em;
}
#breadcrumb li:first-of-type::before {
  display: none;
  margin-left: 0;
}
#breadcrumb li a {
  text-decoration: none;
}
#breadcrumb li a:hover {
  text-decoration: underline;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #breadcrumb {
    display: none;
  }
}
/* ========== end △ */
/* ==================================================
	■contents
================================================== */
#main {
  padding: 0;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  #main {
    width: 740px;
  }
}
/* ========== end △ */
#side {
  display: none;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  #side {
    display: block;
    width: 220px;
  }
}
/* ========== end △ */
.section {
  margin-bottom: 50px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .section {
    margin: 0 3% 8%;
  }
}
/* ========== end △ */
.inner_section {
  margin-top: 4%;
  margin-bottom: 4%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .inner_section {
    margin-top: 8%;
    margin-bottom: 8%;
  }
}
/* ========== end △ */
/* ==================================================
	■pagination
================================================== */
.pagenation::after {
  content: "";
  display: block;
  clear: both;
}

.pagenation {
  margin-top: 50px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .pagenation {
    margin: 8% 5% 0;
  }
}
/* ========== end △ */
.pagenation .page {
  display: none;
}
.pagenation .prev a,
.pagenation .next a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1a509d;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .pagenation .prev a,
  .pagenation .next a {
    width: 100px;
  }
  .pagenation .prev a:hover,
  .pagenation .next a:hover {
    background-color: #0496d9;
  }
}
/* ========== end △ */
.pagenation .prev.current,
.pagenation .next.current {
  display: none;
}
.pagenation .prev a::after {
  content: "前へ";
  margin-left: 10px;
  color: #fff;
}
.pagenation .next a {
  float: right;
}
.pagenation .next a::before {
  content: "次へ";
  margin-right: 10px;
  color: #fff;
}

/* ==================================================
	■contents title
================================================== */
/* default
-------------------------------------------------- */
/* type01
-------------------------------------------------- */
.ttl_style.type01 {
  margin-bottom: 3%;
  font-size: 22px;
  text-align: center;
}
.ttl_style.type01 .en {
  font-size: 12px;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .ttl_style.type01 {
    font-size: 28px;
  }
}
/* ========== end △ */
/* type02
-------------------------------------------------- */
.ttl_style.type02 {
  margin-bottom: 8%;
  padding: 3%;
  background-color: #f2f2f2;
  color: #1a509d;
  font-size: 20px;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .ttl_style.type02 {
    margin-bottom: 4%;
    padding: 12px 20px;
  }
}
/* ========== end △ */
.ttl_style.type02 .inner {
  font-size: 14px;
}

/* type03
-------------------------------------------------- */
.ttl_style.type03 {
  margin-bottom: 8%;
  padding: 3%;
  border-left: 4px solid #1a509d;
  border-bottom: 1px solid #1a509d;
  color: #1a509d;
  font-size: 18px;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .ttl_style.type03 {
    margin-bottom: 4%;
    padding: 3px 15px;
  }
}
/* ========== end △ */
/* type04
-------------------------------------------------- */
.ttl_style.type04 {
  margin-bottom: 8%;
  color: #1a509d;
  font-size: 18px;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .ttl_style.type04 {
    margin-bottom: 4%;
  }
}
/* ========== end △ */
/* ==================================================
	■table
================================================== */
/* default
-------------------------------------------------- */
.table_style table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  word-wrap: break-word;
  word-break: break-all;
}
.table_style th, .table_style td {
  box-sizing: border-box;
}

/* type01
-------------------------------------------------- */
.table_style.type01 table {
  border-top: 1px solid #1a509d;
  border-left: 1px solid #1a509d;
}
.table_style.type01 table th,
.table_style.type01 table td {
  padding: 15px 20px;
  border-right: 1px solid #1a509d;
  border-bottom: 1px solid #1a509d;
  vertical-align: top;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .table_style.type01 table th,
  .table_style.type01 table td {
    display: block;
    width: 100%;
  }
}
/* ========== end △ */
.table_style.type01 table th {
  width: 20%;
  background-color: #f2f6fc;
  color: #0496d9;
  font-weight: bold;
}
.table_style.type01 ul.list_com li{
  text-indent:-2em;
  padding-left:2em;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .table_style.type01 table th {
    width: auto;
  }
}
/* ========== end △ */
.table_style.type01 table td {
  background-color: #fff;
  color: #333;
}

/* ==================================================
	■page lead box
================================================== */
.page_lead_box {
  margin-bottom: 5%;
  border: 1px solid #1a509d;
  padding: 3%;
  background: url(../common_img/bg_ptn01.png);
}
.page_lead_box .catch p {
  margin-bottom: 10px;
  font-family: Garamond, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "游明朝体", "Yu Mincho", YuMincho, serif ;
  color: #1a509d;
  font-size: 20px;
  font-weight: bold;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .page_lead_box .catch p {
    font-size: 24px;
  }
}
/* ========== end △ */
.box_layout .img_col {
  margin-bottom: 5%;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .box_layout .img_col {
    float: right;
    width: 40%;
    margin-bottom: 0;
  }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .box_layout .txt_col {
    float: left;
    width: 55%;
  }
}
/* ========== end △ */
.box_layout .txt_col .catch p {
  margin-bottom: 10px;
  color: #1a509d;
  font-family: Garamond, "Times New Roman", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "游明朝体", "Yu Mincho", YuMincho, serif ;
  font-size: 20px;
  font-weight: bold;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .box_layout .txt_col .catch p {
    font-size: 24px;
  }
}
/* ========== end △ */
/* ==================================================
	■news
================================================== */
.news_wrap {
  margin: 0 5% 8%;
  padding: 3%;
  border: 1px solid #1a509d;
  background-color: #f2f8fc;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .news_wrap {
    margin: 0 0 8%;
  }
}
/* ========== end △ */
.news_wrap .date {
  display: inline-block;
  margin-bottom: 3%;
  padding: 5px 20px;
  background: #1a509d;
  color: #fff;
  font-size: 15px;
  text-align: center;
}
.news_wrap h3 {
  display: block;
  margin-bottom: 5%;
  color: #269ae3;
  font-size: 20px;
  font-weight: bold;
}
.news_wrap h3 a {
  color: inherit;
}
.news_wrap .pic {
  margin-bottom: 5%;
  text-align: center;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .news_wrap .pic {
    float: left;
    width: 280px;
    margin: 0 20px 20px 0;
  }
}

.__cms em, .__cms i { font-style: oblique; }
.__cms strong, .__cms em, .__cms b { font-weight: bold; }
.__cms u { text-decoration: underline; }

/* ========== end △ */
/* ==================================================
	■contact
================================================== */
.contact_lead {
  margin-right: 5%;
  margin-left: 5%;
  padding: 5%;
  border: 1px solid #1a509d;
  border-top: 3px solid #1a509d;
  background-color: #f2f8fc;
  text-align: center;
}
.contact_lead .inner {
  display: inline-block;
  text-align: right;
}
.contact_lead .tel {
  margin-bottom: 5%;
}
.contact_lead .fax img {
  height: 30px;
}

/* ==================================================
	■results_list
================================================== */
.results_list li {
  width: 48%;
  margin-bottom: 4%;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .results_list li {
    width: 23%;
    margin-bottom: 2%;
  }
}
/* ========== end △ */
.results_list li a {
  display: block;
  margin-bottom: 10px;
}

/* ==================================================
	■business
================================================== */
.business_box {
  box-sizing: border-box;
  margin-bottom: 8%;
  border: 1px solid #1a509d;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .business_box {
    width: 48%;
    margin-bottom: 5%;
  }
}
/* ========== end △ */
.business_box .ttl {
  margin-bottom: 10px;
  padding: 3%;
  background-color: #1a509d;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.business_box .ttl .inner {
  font-size: 14px;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .business_box .ttl .inner {
    display: block;
  }
}
/* ========== end △ */
.business_box .txt {
  padding: 3%;
}

/* ==================================================
	■strong
================================================== */
.strong_box {
  position: relative;
  margin-bottom: 8%;
  padding: 3%;
  border: 1px solid #1a509d;
  background: url(../common_img/bg01.png);
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .strong_box {
    margin-left: 12px;
  }
}
/* ========== end △ */
.strong_box .ttl {
  padding: 5px 0;
  background-color: #1a509d;
  color: #fff;
  text-align: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .strong_box .ttl {
    margin-bottom: 5%;
  }
}
/* ========== end △ */
.strong_box .ttl h4 {
  font-size: 24px;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .strong_box .ttl {
    position: absolute;
    top: -11px;
    left: -12px;
    width: 310px;
  }
  .strong_box .ttl .inner {
    position: relative;
  }
  .strong_box .ttl .inner::before {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -17px;
    display: block;
    width: 290px;
    height: 35px;
    border-right: 1px solid #1a509d;
    border-bottom: 1px solid #1a509d;
  }
}
/* ========== end △ */
.strong_box .ttl span {
  margin-right: 10px;
  color: #addbfa;
}
.strong_box .img {
  display: none;
  margin-bottom: 5%;
  border: 1px solid #ccc;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .strong_box .img {
    display: block;
    float: right;
    width: 280px;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
/* ========== end △ */
.strong_box .txt_col {
  overflow: hidden;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .strong_box .txt_col {
    padding-top: 40px;
  }
}
/* ========== end △ */
.strong_box .txt_col .catch p {
  margin-bottom: 10px;
  color: #269AE3;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .strong_box .txt_col .catch p {
    font-size: 20px;
  }
}
/* ========== end △ */
