@charset "UTF-8";
/******************************************************************************
  Basic Cascading Style Sheets
    Copyright (c) 2017 The Johnan Shinkin Bank. All Rights Reserved.
******************************************************************************/
/*=============================================================================
  Reset
=============================================================================*/
html,body{height:100%}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section{display:block}a,hr{padding:0}abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}ins,mark{background-color:#ff9;color:#000}body{line-height:1}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;font-size:100%;vertical-align:baseline;background:0 0}ins{text-decoration:none}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{height:1px;border:0;border-top:1px solid #ccc;margin:1em 0}input,select{vertical-align:middle}ul,ol{list-style-type:none}

/*** Safari ***/
/* Reset input[type="search"] */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
input[type="search"]:focus {
  outline-offset: -2px;
}
input[type="search"]::-webkit-search-decoration {
  display: none;
}

/*---------------------------------------------------------
  Web Font Setting
---------------------------------------------------------*/
/*@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 200;
    src: url('/common/fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('/common/fonts/NotoSansCJKjp-Light.woff') format('woff'),
    url('/common/fonts/NotoSansCJKjp-Light.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 400;
    src: url('/common/fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('/common/fonts/NotoSansCJKjp-Regular.woff') format('woff'),
    url('/common/fonts/NotoSansCJKjp-Regular.ttf')  format('truetype');
}
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 700;
    src: url('/common/fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('/common/fonts/NotoSansCJKjp-Bold.woff') format('woff'),
    url('/common/fonts/NotoSansCJKjp-Bold.ttf')  format('truetype');
}*/


/*---------------------------------------------------------
  Common Setting
---------------------------------------------------------*/
body {
  min-width: 360px;
  color: #333;
  font-family: meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 400;
  font-size: 87.5%; /*14px*/
  line-height: 1.714285714;
  background-color: #fff;
  letter-spacing: 0.075em;
  -webkit-text-size-adjust: 100%;
  position: relative;
  z-index: 0;
}
*, *:before, *:after { box-sizing: border-box; }
a { color: #333; text-decoration: underline; }
a:hover { color: #aa2123; }
a:focus{ outline: none; }
img { max-width: 100%; height: auto; vertical-align: top; }
a img {
  border: none;
  text-decoration: none;
  -webkit-transform: translatez(0);
  transform: translatez(0);
}
a:hover img { opacity: 0.7; transition: all 0.3s; }
input { font-family: inherit; }
input:focus, select:focus, textarea:focus { outline: 2px solid #aa2123; }
input[type="text"]::-webkit-input-placeholder { color: #bfbfbf; font-weight: normal; opacity: 1; }
input[type="text"]:-ms-input-placeholder { color: #bfbfbf; font-weight: normal; opacity: 1; }
input[type="text"]::-moz-placeholder { color: #bfbfbf; font-weight: normal; opacity: 1; }
.warning-box {
  display: block;
  width: 100%;
  background-color: #aa2123;
  padding: 1em;
}
.warning-box p {
  color: #fff;
  text-align: center;
  font-size: 128.6%;
  font-weight: 700;
}

/*---------------------------------------------------------
  Text Setting
---------------------------------------------------------*/
/*** Font size ***/
.b-fsize-xs { font-size: 71.4% !important; } /*10px*/
.b-fsize-ss { font-size: 85.7% !important; } /*12px*/
.b-fsize-sm { font-size: 87.5% !important; }
.b-fsize-s { font-size: 92.9% !important; } /*13px*/
.b-fsize-m { font-size: 100% !important; } /*14px*/
.b-fsize-l { font-size: 114.3% !important; } /*16px*/
.b-fsize-ll { font-size: 128.6% !important; } /*18px*/
.b-fsize-xl { font-size: 142.9% !important; } /*20px*/
.b-fsize-xxl { font-size: 171.4% !important; } /*24px*/


/*** Font weight ***/
.b-font-normal { font-weight: 400 !important; }
.b-font-bold { font-weight: 700 !important; }

/*** Font color ***/
.b-color01 { color: #333333 !important; }
.b-color02 { color: #777777 !important; }
.b-color03 { color: #ffffff !important; }
.b-color04 { color: #aa2123 !important; }
.b-color05 { color: #013c6e !important; }
.b-color06 { color: #045b27 !important; }

/*** Font Decoration ***/
.b-underline { text-decoration: underline !important; }
.b-deconone { text-decoration: none !important; }

/*=============================================================================
  Layout Setting
=============================================================================*/
/*** ClearFix ***/
.b-cf:after { content: ""; display: block; clear: both; }

/*** Float ***/
.b-float-left { float: left !important; }
.b-float-right { float: right !important; }

/*** Word Wrap ***/
.b-text-break { word-wrap: break-word; word-break: break-all; }
.b-text-wrap { white-space: nowrap; }

/*** Text align ***/
.b-text-left { text-align: left !important; }
.b-text-center { text-align: center !important; }
.b-text-right { text-align: right !important; }

/*** Vertical align ***/
.b-ver-top { vertical-align: top !important; }
.b-ver-middle { vertical-align: middle !important; }
.b-ver-bottom { vertical-align: bottom !important; }
.b-ver-txbtm { vertical-align: text-bottom !important; }

/*** Display ***/
.b-disp-inline { display: inline !important; }
.b-disp-inlblk { display: inline-block !important; }
.b-disp-none { display: none !important; }
.b-disp-pc { display: block !important; }
.b-disp-sp { display: none !important; }
@media screen and (max-width: 767px){
  .b-disp-pc { display: none !important; }
  .b-disp-sp { display: block !important; }
}


/*---------------------------------------------------------
  Margin Padding Setting
---------------------------------------------------------*/
/*** Margin Top ***/
.b-mt0 { margin-top: 0 !important; }
.b-mt5 { margin-top: 5px !important; }
.b-mt10 { margin-top: 10px !important; }
.b-mt15 { margin-top: 15px !important; }
.b-mt20 { margin-top: 20px !important; }
.b-mt25 { margin-top: 25px !important; }
.b-mt30 { margin-top: 30px !important; }
.b-mt35 { margin-top: 35px !important; }
.b-mt40 { margin-top: 40px !important; }
.b-mt45 { margin-top: 45px !important; }
.b-mt50 { margin-top: 50px !important; }
.b-mt55 { margin-top: 55px !important; }
.b-mt60 { margin-top: 60px !important; }

/*** Margin Right ***/
.b-mr0 { margin-right: 0 !important; }
.b-mr5 { margin-right: 5px !important; }
.b-mr10 { margin-right: 10px !important; }
.b-mr15 { margin-right: 15px !important; }
.b-mr20 { margin-right: 20px !important; }
.b-mr25 { margin-right: 25px !important; }
.b-mr30 { margin-right: 30px !important; }
.b-mr35 { margin-right: 35px !important; }
.b-mr40 { margin-right: 40px !important; }
.b-mr45 { margin-right: 45px !important; }
.b-mr50 { margin-right: 50px !important; }
.b-mr55 { margin-right: 55px !important; }
.b-mr60 { margin-right: 60px !important; }

/*** Margin Bottom ***/
.b-mb0 { margin-bottom: 0 !important; }
.b-mb5 { margin-bottom: 5px !important; }
.b-mb10 { margin-bottom: 10px !important; }
.b-mb15 { margin-bottom: 15px !important; }
.b-mb20 { margin-bottom: 20px !important; }
.b-mb25 { margin-bottom: 25px !important; }
.b-mb30 { margin-bottom: 30px !important; }
.b-mb35 { margin-bottom: 35px !important; }
.b-mb40 { margin-bottom: 40px !important; }
.b-mb45 { margin-bottom: 45px !important; }
.b-mb50 { margin-bottom: 50px !important; }
.b-mb55 { margin-bottom: 55px !important; }
.b-mb60 { margin-bottom: 60px !important; }

/*** Margin Left ***/
.b-ml0 { margin-left: 0 !important; }
.b-ml5 { margin-left: 5px !important; }
.b-ml10 { margin-left: 10px !important; }
.b-ml15 { margin-left: 15px !important; }
.b-ml20 { margin-left: 20px !important; }
.b-ml25 { margin-left: 25px !important; }
.b-ml30 { margin-left: 30px !important; }
.b-ml35 { margin-left: 35px !important; }
.b-ml40 { margin-left: 40px !important; }
.b-ml45 { margin-left: 45px !important; }
.b-ml50 { margin-left: 50px !important; }
.b-ml55 { margin-left: 55px !important; }
.b-ml60 { margin-left: 60px !important; }

/*** Padding Top ***/
.b-pt0 { padding-top: 0 !important; }
.b-pt5 { padding-top: 5px !important; }
.b-pt10 { padding-top: 10px !important; }
.b-pt15 { padding-top: 15px !important; }
.b-pt20 { padding-top: 20px !important; }
.b-pt25 { padding-top: 25px !important; }
.b-pt30 { padding-top: 30px !important; }
.b-pt35 { padding-top: 35px !important; }
.b-pt40 { padding-top: 40px !important; }
.b-pt45 { padding-top: 45px !important; }
.b-pt50 { padding-top: 50px !important; }
.b-pt55 { padding-top: 55px !important; }
.b-pt60 { padding-top: 60px !important; }

/*** Padding Right ***/
.b-pr0 { padding-right: 0 !important; }
.b-pr5 { padding-right: 5px !important; }
.b-pr10 { padding-right: 10px !important; }
.b-pr15 { padding-right: 15px !important; }
.b-pr20 { padding-right: 20px !important; }
.b-pr25 { padding-right: 25px !important; }
.b-pr30 { padding-right: 30px !important; }
.b-pr35 { padding-right: 35px !important; }
.b-pr40 { padding-right: 40px !important; }
.b-pr45 { padding-right: 45px !important; }
.b-pr50 { padding-right: 50px !important; }
.b-pr55 { padding-right: 55px !important; }
.b-pr60 { padding-right: 60px !important; }

/*** Padding Bottom ***/
.b-pb0 { padding-bottom: 0 !important; }
.b-pb5 { padding-bottom: 5px !important; }
.b-pb10 { padding-bottom: 10px !important; }
.b-pb15 { padding-bottom: 15px !important; }
.b-pb20 { padding-bottom: 20px !important; }
.b-pb25 { padding-bottom: 25px !important; }
.b-pb30 { padding-bottom: 30px !important; }
.b-pb35 { padding-bottom: 35px !important; }
.b-pb40 { padding-bottom: 40px !important; }
.b-pb45 { padding-bottom: 45px !important; }
.b-pb50 { padding-bottom: 50px !important; }
.b-pb55 { padding-bottom: 55px !important; }
.b-pb60 { padding-bottom: 60px !important; }

/*** Padding Left ***/
.b-pl0 { padding-left: 0 !important; }
.b-pl5 { padding-left: 5px !important; }
.b-pl10 { padding-left: 10px !important; }
.b-pl15 { padding-left: 15px !important; }
.b-pl20 { padding-left: 20px !important; }
.b-pl25 { padding-left: 25px !important; }
.b-pl30 { padding-left: 30px !important; }
.b-pl35 { padding-left: 35px !important; }
.b-pl40 { padding-left: 40px !important; }
.b-pl45 { padding-left: 45px !important; }
.b-pl50 { padding-left: 50px !important; }
.b-pl55 { padding-left: 55px !important; }
.b-pl60 { padding-left: 60px !important; }


/*---------------------------------------------------------
  Layout Setting
---------------------------------------------------------*/
/****************************
  Common
****************************/
#jsIncHeader {
  display: block;
  width: 100%;
  min-height: 115px;
  letter-spacing: normal;
}
.private #jsIncHeader { min-height: 158px; }
.l-head-btm-inner,
.l-main-inner,
.l-sitemap-inner {
  display: block;
  width: 100%;
  max-width: 1286px;
  margin: 0 auto;
}
.l-main-inner, .l-sitemap-inner { padding: 0 35px; }
.l-main-inner::after {
  content: "";
  display: block;
  clear: both;
}
.l-breadcrumb > ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.l-main-contets {
  display: block;
  width: 77.7960526%;
  max-width: -webkit-calc(100% - 250px);
  max-width: calc(100% - 250px);
  float: left;
}
.l-side-nav {
  display: block;
  width: 19.7368421%;
  min-width: 240px;
  float: right;
}
.l-foot,
.l-sitemap { background-color: #4a4a4a; }
.l-sitemap { color: #fff; }
.l-sitemap, .l-foot-link { border-bottom: 1px solid #6e6e6e; }
@media screen and (max-width: 1286px){
  .l-main-inner, .l-sitemap-inner { padding: 0 2.7216174%; /*35px*/ }
}
@media screen and (max-width: 970px){
  .l-main-contets { width: 100%; max-width: 100%; }
  .l-side-nav { display: none; }
}
@media screen and (max-width: 768px){
  .l-sitemap { display: none; }
}

/*** Modal Background ***/
main { height: auto; }
main.is-menuSP-open,
.l-sitemap.is-menuSP-open,
footer.is-menuSP-open {
  -webkit-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}
.l-menuSP-bg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}

/****************************
  Header
****************************/
.public #jsIncHeader { border-bottom: 5px solid #aa2123; }
.business #jsIncHeader { border-bottom: 5px solid #013c6e; }
.about #jsIncHeader { border-bottom: 5px solid #045b27; }

/*** Header Top ***/
.l-head-top {
  background-color: #eee;
  position: relative;
  z-index: 6;
}
.l-head-top a { text-decoration: none; }

.l-head-top > .l-head-top-inner {
  display: table;
  width: 100%;
  max-width: 1286px;
  margin: 0 auto;
  border-collapse: collapse;
}
.l-head-top-inner > .l-head-tit {
  display: table-cell;
  width: 275px;
  vertical-align: middle;
  background-color: #fff;
}
.l-head-top-inner > .l-head-tit img { max-width: 275px; }
.l-head-top-inner > .l-head-menuPC {
  display: table-cell;
  width: 1011px;
  padding-right: 270px;
  vertical-align: top;
  background-color: #eee;
  position: relative;
  z-index: 0;
}
.l-head-top-inner > .l-head-menuPC { display: table-cell; font-size: 14px; }
.l-head-top-inner > .l-head-menuSP { display: none; }
@media screen and (max-width: 1286px){
  .l-head-top-inner > .l-head-tit { width: 21.3841368%; }
  .l-head-top-inner > .l-head-tit img { width: 100%; }
  .l-head-top-inner > .l-head-menuPC {
    width: 78.6158631%;
    padding-right: 265px;
  }
}
@media screen and (max-width: 970px){
  .l-head-top > .l-head-top-inner { display: block; }
  .l-head-top-inner > .l-head-tit {
    display: block;
    width: 100%;
    height: 75px;/*height: 60px;*/
  }
  .l-head-top-inner > .l-head-tit img {
    width: 290px;
    height:75px;
    max-width: 100%;
  }/*height:60px;*/
  .l-head-top-inner > .l-head-menuPC { display: none; }
  .l-head-top-inner > .l-head-menuSP { display: block; }
}
@media screen and (max-width: 430px){
  .l-head-top-inner > .l-head-tit p { padding-top: 8px; }
  .l-head-top-inner > .l-head-tit img {
    width: 230px;
    height: 59px;
  }
}

/*---------------------------------------------------------
  Heder Menu PC
---------------------------------------------------------*/
.l-head-menuPC > .l-menu-top {
  display: table;
  width: 100%;
  height: 55px;
  table-layout: fixed;
}
.l-menu-top > .l-menu-side,
.l-menu-top > .l-text-size {
  display: table-cell;
  vertical-align: middle;
}
.l-menu-top > .l-menu-side { width: 462px; }
.l-menu-top > .l-menu-side > ul {}
.l-menu-top > .l-menu-side > ul > li {
  display: inline-block;
  margin-left: 12px;
  line-height: 1.1;
}
.l-menu-top > .l-menu-side > ul > li a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #4a4a4a;
  padding-right: 6px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.l-menu-top > .l-text-size {
  width: 279px;
  border-left: 1px solid #dcdcdc;
}
.l-menu-top > .l-text-size > .l-text-size-inner {
  display: table;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.l-menu-top > .l-text-size > .l-text-size-inner p,
.l-menu-top > .l-text-size > .l-text-size-inner ul {
  display: table-cell;
  vertical-align: middle;
}
.l-menu-top > .l-text-size > .l-text-size-inner p {
  width: 88px;
  padding-right: 10px;
  text-align: right;
}
.l-menu-top > .l-text-size > .l-text-size-inner ul {
  width: 184px;
  padding-right: 14px;
}
.l-menu-top > .l-text-size > .l-text-size-inner ul > li {
  display: block;
  width: 55px;
  text-align: center;
  float: left;
}
.l-menu-top > .l-text-size > .l-text-size-inner ul > li a {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 3px 0;
}
.l-menu-top > .l-text-size > .l-text-size-inner ul > li+li a {
  border-left: 1px solid #eee;
}
.l-menu-top > .l-text-size > .l-text-size-inner ul > li a:hover,
.l-menu-top > .l-text-size > .l-text-size-inner ul > li.is-active a:hover { background-color: #777; color: #fff; }
.l-menu-top > .l-text-size > .l-text-size-inner ul > li.is-active a { background-color: #4a4a4a; color: #fff; }
@media screen and (max-width: 1286px){
  .l-menu-top > .l-menu-side { width: 45.6973293%; }
  .l-menu-top > .l-menu-side > ul > li { margin-left: 2.5974025%; }
  .l-menu-top > .l-text-size { width: 27.5964391%; }
  .l-menu-top > .l-text-size > .l-text-size-inner p { width: 34.1085271%; padding-right: 3.4364261%; }
  .l-menu-top > .l-text-size > .l-text-size-inner ul { width: 65.8914728%; }
  .l-menu-top > .l-text-size > .l-text-size-inner ul > li { width: 32.3529411%; }
}
@media screen and (max-width: 1250px){
  .l-menu-top > .l-menu-side { width: 46.6666666%; }
  .l-menu-top > .l-text-size { width: 53.3333333%; }
}

.l-menu-btm {
  display: block;
  width: 100%;
  height: 56px;
}
.l-menu-btm > .l-head-search {
  display: block;
  width: 194px;
  height: 100%;
  float: right;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  text-align: center;
  padding-top: 11px;
}
#srchInput,
#srchInputsp {
  display: inline-block;
  width: 124px;
  height: 30px;
  padding: 1px 1px 2px 1px;
  border-width: 0;
  background: #fff url(//i.yimg.jp/images/search/customsearch/yjlogo/yjlogo_type4.gif) 10px center no-repeat;
}
#srchBtn,
#srchBtnsp {
  display: inline-block;
  width: 35px;
  height: 30px;
  border-width: 0;
  background: #4a4a4a url(/common/img/btn_search01.png) no-repeat center;
}
.l-menu-btm > .l-menu-main {
  display: block;
  width: 546px;
  height: 100%;
  float: left;
  overflow: hidden;
}
.l-menu-btm > .l-menu-main > ul {
  display: block;
  width: 100%;
  height: 100%;
}
.l-menu-btm > .l-menu-main > ul > li {
  display: table;
  height: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  float: left;
  line-height: 1.2;
}
.l-menu-btm > .l-menu-main > ul > li:nth-child(1){ width: 170px; }
.l-menu-btm > .l-menu-main > ul > li:nth-child(2){ width: 176px; }
.l-menu-btm > .l-menu-main > ul > li:nth-child(3){ width: 200px; }
.l-menu-btm > .l-menu-main > ul > li a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 0;
}
.l-menu-btm > .l-menu-main > ul > li:nth-child(1) a br { display: none; }
.l-menu-btm > .l-menu-main > ul > li:nth-child(2) a br { display: block; }
.l-menu-btm > .l-menu-main > ul > li+li a {
  border-left: 1px solid #dcdcdc;
}
.l-menu-btm > .l-menu-main > ul > li a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #818181;
  border-right: 1px solid #818181;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 6px;
  margin: 0 auto;
}
.l-menu-btm > .l-menu-main > ul > li.is-active:nth-child(1) a {
  background-color: #aa2123;
  border-bottom: 1px solid #aa2123;
  color: #fff;
}
.l-menu-btm > .l-menu-main > ul > li.is-active:nth-child(2) a {
  background-color: #013c6e;
  border-bottom: 1px solid #013c6e;
  color: #fff;
}
.l-menu-btm > .l-menu-main > ul > li.is-active:nth-child(3) a {
  background-color: #045b27;
  border-bottom: 1px solid #045b27;
  color: #fff;
}
.l-menu-btm > .l-menu-main > ul > li.is-active a::after { border-color: #fff; }

@media screen and (max-width: 1286px){
  .l-menu-btm > .l-head-search { width: 26.3157894%; }
  .l-menu-btm > .l-menu-main { width: 73.6842105%; }
  .l-menu-btm > .l-menu-main > ul > li:nth-child(1){ width: 31.1355311%; }
  .l-menu-btm > .l-menu-main > ul > li:nth-child(2){ width: 32.2344322%; }
  .l-menu-btm > .l-menu-main > ul > li:nth-child(3){ width: 36.6300366%; }
}
@media screen and (max-width: 1140px){
  .l-menu-btm > .l-head-search { width: 31.6211878%; }
  .l-menu-btm > .l-menu-main { width: 68.3788121%; }
  .l-menu-btm > .l-menu-main > ul > li:nth-child(1),
  .l-menu-btm > .l-menu-main > ul > li:nth-child(2),
  .l-menu-btm > .l-menu-main > ul > li:nth-child(3){ width: 33.3333%; }
  .l-menu-btm > .l-menu-main > ul > li:nth-child(1) a br { display: block; }
}
@media screen and (max-width: 1040px){
  .l-menu-btm > .l-menu-main > ul > li:nth-child(2) a br { display: none; }
}
@media screen and (max-width: 1030px){
  .l-menu-btm > .l-head-search { width: 33.8235294%; }
  .l-menu-btm > .l-menu-main { width: 66.1764705%; }
}

.l-menu-right {
  background-color: #fff;
  display: block;
  width: 255px;
  height: 98px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 15px;
  -moz-box-shadow:0px 6px 6px 0px #cbcbcb;
  -webkit-box-shadow:0px 6px 6px 0px #cbcbcb;
  box-shadow:0px 6px 6px 0px #cbcbcb;
  -moz-border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  border-radius:0 0 6px 6px;
}
.l-menu-right > ul { overflow: hidden; }
.l-menu-right > ul > li {
  display: block;
  width: 50%;
  height: 49px;
  float: left;
}
.l-menu-right > ul > li:nth-child(2n+1){
  clear: both;
}
.l-menu-right > ul > li:nth-child(1) { border-right: 1px solid #dcdcdc; border-bottom: 1px solid #dcdcdc; }
.l-menu-right > ul > li:nth-child(2) { border-left: 1px solid #fff; border-bottom: 1px solid #dcdcdc; }
.l-menu-right > ul > li:nth-child(3) { border-right: 1px solid #dcdcdc; }
.l-menu-right > ul > li:nth-child(4) { border-left: 1px solid #fff; }
.l-menu-right > ul > li:last-child {
  line-height: 1.25;
}
.l-menu-right > ul > li:last-child span { display: block; }
.l-menu-right > ul > li a {
  display: block;
  width: 100%;
  padding: 14px 0 14px 20px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 0;
}
.l-menu-right > ul > li a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #4a4a4a;
  position: absolute;
  z-index: 0;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.l-menu-right > ul > li:last-child a { margin-top: -3px; }
@media screen and (max-width: 1260px){
  .l-menu-right { right: 10px; }
}

/*** Header Bottom ***/
.l-head-btm {
  background-color: #f6d4d4;
  border-top: 5px solid #aa2123;
  padding: 8px 0;
}
.l-head-btm p {
  display: inline-block;
  margin-left: 15px;
  font-size: 16px; /*メガメニューは文字拡大機能対象外*/
}
.l-head-btm p a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding-right: 12px;
  padding-left: 27px;
  position: relative;
  z-index: 0;
}
.l-head-btm p a::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background-color: #aa2123;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 7px;
  margin: auto 0;
}
.l-head-btm p a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 13px;
  margin: auto 0;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.l-head-btm p.is-active a { background-color: #aa2123; color: #fff; }
.l-head-btm p.is-active a::before { background-color: #fff; }
.l-head-btm p.is-active a::after { border-color: transparent transparent transparent #aa2123; }
@media screen and (max-width: 970px){
  .l-head-btm { padding-bottom: 0; }
  .l-head-btm p { margin-bottom: 8px; }
}

/*** Mega Drop Down Menu ***/
.l-mega-bg {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.is-blur main,
.is-blur footer {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.l-head-drop {
  display: block;
  width: 100%;
  position: relative;
  z-index: 5;
}
.l-drop-menu { display: block; }
.l-drop-inner {
  display: block;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  position: absolute;
  z-index: 1;
}
.l-drop-tab {
  display: none;
  padding: 22px 0 7px;
  position: relative;
  z-index: 0;
}
.l-drop-tab.is-active { display: block; }
.l-drop-tab > .list {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 14px; /*メガメニューは文字拡大機能対象外*/
}
.l-drop-tab > ul,
.l-drop-inner > ul {
  display: block;
  width: 100%;
  max-width: 1235px;
  padding: 0 10px;
  margin: 0 auto;
}
.l-drop-tab > ul::after,
.l-drop-inner > ul::after {
  content: "";
  display: block;
  clear: both;
}
.l-drop-tab > ul > li,
.l-drop-inner > ul > li {
  display: block;
  width: 15.63786008%;
  height: 100px;
  margin-left: 1.234567901%;
  margin-bottom: 15px;
  float: left;
}
.l-drop-tab > ul > li:nth-child(6n+1),
.l-drop-inner > ul > li:nth-child(6n+1) {
  clear: both;
  margin-left: 0;
}
.l-drop-tab > ul > li p,
.l-drop-inner > ul > li p {
  display: table;
  width: 100%;
  height: 100%;
  font-size: 14px; /*メガメニューは文字拡大機能対象外*/
}
.l-drop-tab > ul > li p a,
.l-drop-inner > ul > li p a {
  display: table-cell;
  width: 100%;
  line-height: 1.3333;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #eeeeee;
  color: #333;
  padding: 5px;
}
.l-drop-tab > ul > li p a:hover,
.l-drop-inner > ul > li p a:hover {
  background-color: #dcdcdc;
}
.l-drop-tab > ul > li p a strong,
.l-drop-inner > ul > li p a strong {
  font-size: 18px; /*メガメニューは文字拡大機能対象外*/
  font-weight: 700;
}
.is-private ul > li p a strong { color: #aa2123; }
.is-business ul > li p a strong { color: #013c6e; }
.is-about ul > li p a strong { color: #045b27; }
.l-drop-tab > ul > li .border-box {
  border: 1px solid #ababab;
  border-radius: 6px;
}
.l-drop-tab > ul > li .border-box a {
  background-color: inherit;
  border-radius: 6px;
  position: relative;
  z-index: 0;
}
.l-drop-tab > ul > li .border-box a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #4a4a4a;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 12px;
  margin: auto 0;
}
@media screen and (max-width: 970px){
  .l-drop-tab > ul > li p a,
  .l-drop-tab > ul > li p a strong,
  .l-drop-inner > ul > li p a,
  .l-drop-inner > ul > li p a strong {
    font-size: 12px;
  }
}


/*---------------------------------------------------------
  Heder Menu SP
---------------------------------------------------------*/
.l-head-menuSP-btn2 { display: none; }
.l-head-menuSP-btn { display: none; }
.l-head-menuSP-cnt { display: none; }
@media screen and (max-width: 970px){
  /* グローバルメニュー */
  .l-head-menuSP {
    padding: 0 10px;
    background-color: #eee;
  }
  .l-head-menuSP > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .l-head-menuSP > ul > li {
    display: table-cell;
    width: 33.3333%;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.125;
    border-right: 1px solid #dcdcdc;
  }
  .l-head-menuSP > ul > li:first-child { border-left: 1px solid #dcdcdc; }
  .l-head-menuSP > ul > li a {
    display: block;
    width: 100%;
    padding: 11px 0 13px;
    position: relative;
    z-index: 0;
  }
  .l-head-menuSP > ul > li a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #818181;
    border-right: 1px solid #818181;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    bottom: 4px;
    margin: 0 auto;
  }
  .l-head-menuSP > ul > li.is-active:nth-child(1) a {
    background-color: #aa2123;
    color: #fff;
  }
  .l-head-menuSP > ul > li.is-active:nth-child(1) a::after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .l-head-menuSP > ul > li.is-active:nth-child(2) a {
    background-color: #013c6e;
    color: #fff;
  }
  .l-head-menuSP > ul > li.is-active:nth-child(2) a::after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .l-head-menuSP > ul > li.is-active:nth-child(3) a {
    background-color: #045b27;
    color: #fff;
  }
  .l-head-menuSP > ul > li.is-active:nth-child(3) a::after {
    border-bottom: 1px solid #fff;
  }

  /* メニューボタン */
  .l-head-menuSP-btn2 {
    display: block;
    width: 70px;
    height: 75px;
    background-color: #fff;
    border-left: 1px solid #dcdcdc;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 70px;
  }
  .l-head-menuSP-btn {
    display: block;
    width: 70px;
    height:75px; /*height: 60px;*/
    background-color: #4a4a4a;
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
  }
  .l-menuSP-btn {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
  }
  .l-head-menuSP-btn2 .l-menuSP-btn img {
    width: 28px;
    height: 28px;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .l-head-menuSP-btn2 .l-menuSP-btn p {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
  }
  .l-menuSP-btn-icon {
    display: block;
    width: 28px;
    height: 4px;
    background-color: #fff;
    transition: .2s;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -14px;
  }
  .l-menuSP-btn-icon::before, .l-menuSP-btn-icon::after {
    content: "";
    display: block;
    width: 28px;
    height: 4px;
    background-color: #fff;
    transition: .3s;
    position: absolute;
    top: 50%;
    left: 0;
  }
  .l-menuSP-btn-icon::before { margin-top: -10px; }
  .l-menuSP-btn-icon::after { margin-top: 6px; }

  /* メニューボタンクローズ */
  .l-menuSP-btn .is-active { background-color: transparent; }
  .l-menuSP-btn .is-active::before, .l-menuSP-btn .is-active::after { margin-top: 0; }
  .l-menuSP-btn .is-active::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-menuSP-btn .is-active::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  /* メニューコンテンツ */
  .l-head-menuSP-cnt {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 75px;/*top: 60px;*/
  }
  .l-menuSP-top {
    background-color: #eee;
  }
  .l-menuSP-top .l-search-form {
    padding: 20px 15px;
    height: 70px;
    overflow: hidden;
  }
  #srchInput,
  #srchInputsp {
    display: block;
    width: 95.6521739%; /*880px*/
    max-width: -webkit-calc(100% - 35px);
    max-width: calc(100% - 35px);
    float: left;
    padding: 0;
  }
  #srchBtn,
  #srchBtnsp {
    display: block;
    width: 3.8043478%;
    min-width: 35px;
    float: left;
  }
  .l-menuSP-mdl, .l-menuSP-btm {
    display: block;
    width: 100%;
    padding: 0 10px;
    background-color: #fff;
  }
  .l-menuSP-btm {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .l-menuSP-close {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  .l-menuSP-close a {
    display: block;
    width: 100%;
    border: 1px solid #ababab;
    border-radius: 6px;
    padding: 10px 0;
    position: relative;
    z-index: 0;
  }
  .l-menuSP-close a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent #4a4a4a;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 12px;
    margin: auto 0;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
  }

  /* 各メニューレイアウト */
  .l-menu1 {
    margin-top: -24px;
    border-bottom: 1px solid #dcdcdc;
  }
  .l-menu1 > li {
    display: table;
    width: 50%;
    max-width: 475px;
    height: 60px;
    float: left;
    font-size: 16px;
    line-height: 1.125;
    border-top: 1px solid #dcdcdc;
  }
  .l-menu1 > li:nth-child(2n+1){
    clear: both;
    border-right: 1px solid #dcdcdc;
  }
  .l-menu1 > li a {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
  }
  .l-menu1 > li a .inner {
    display: block;
    width: 100%;
    padding-left: 33px;
    position: relative;
    z-index: 0;
  }
  .l-menu1 > li a .inner::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background-color: #4a4a4a;
    border-radius: 50%;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 7px;
    margin: auto 0;
  }
  .l-menu1 > li a .inner::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    z-index: 0;
    left: 13px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .l-menu1 > li a .fsize { font-size: 14px; }
  .l-menu2 { padding: 16px 20px 1em; }
  .l-menu2 > p {
    display: inline-block;
    font-size: 16px;
    margin-right: 30px;
    margin-bottom: 0.5em;
  }
  .l-menu2 > p::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.5px 0 3.5px 5px;
    border-color: transparent transparent transparent #4a4a4a;
    vertical-align: middle;
    margin-right: 5px;
  }
  .l-menu3, .l-menu4, .l-menu5 { padding-top: 20px; }
  .l-menu3 p, .l-menu4 p, .l-menu5 p {
    font-size: 16px;
    line-height: 1.25;
  }
  .l-menu3 p a, .l-menu4 p a, .l-menu5 p a {
    display: block;
    width: 100%;
    padding: 15px 20px 15px 0;
    border-bottom: 1px solid #dcdcdc;
    position: relative;
    z-index: 0;
  }
  .l-menu3 p a::after, .l-menu4 p a::after, .l-menu5 p a::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #848484;
    border-right: 1px solid #848484;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-menu-tit {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 0;
    padding-bottom: 9px;
  }
  .l-menu-tit::before {
    content: "";
    display: block;
    width: 11.7647058%; /*40px*/
    height: 4px;
    background-color: #4a4a4a;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
  }
  .l-menu-tit::after {
    content: "";
    display: block;
    width: 88.2352941%; /*300px*/
    height: 4px;
    background-color: #eee;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 11.7647058%; /*40px*/
  }
  .l-menu3 .l-menu-tit::before { background-color: #aa2123; }
  .l-menu3 .l-menu-tit::after { background-color: #f6d4d4; }
  .l-menu4 .l-menu-tit::before { background-color: #013c6e; }
  .l-menu4 .l-menu-tit::after { background-color: #c1d2e0; }
  .l-menu5 .l-menu-tit::before { background-color: #045b27; }
  .l-menu5 .l-menu-tit::after { background-color: #cde2d5; }
}
@media screen and (max-width: 480px){
  .l-head-menuSP > ul > li:nth-child(2) a br { display: none; }
}


/****************************
  Breadcrumb
****************************/
.l-breadcrumb { padding: 14px 0 0; }
.l-breadcrumb a { text-decoration: none; }
.l-breadcrumb ol > li {
  display: inline-block;
  margin-right: 4px;
}
.l-breadcrumb ol > li:first-child {
  background: url(/common/img/ico_home01.png) no-repeat left center;
  background-size: 12px;
  padding-left: 18px;
}
.l-breadcrumb ol > li+li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #848484;
  border-right: 1px solid #848484;
  margin-right: 10px;
  -webkit-transform: rotate(45deg) translateY(-2px);
  transform: rotate(45deg) translateY(-2px);
}

/****************************
  Main Contents
****************************/
.l-main-contets {
  padding-top: 24px;
  background: url(/common/img/bg_ume01.png) no-repeat right top;
}
.l-main-contets.is-nobg { background-image: none; }

/****************************
  Sitemap
****************************/
/*** layout ***/
.l-sitemap-inner { padding-top: 35px; }
.l-sitemap-row3 {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.l-sitemap-row3 > .l-sitemap-col {
  display: table-cell;
  width: 25%;
  vertical-align: top;
}
.l-sitemap-row3 > .l-sitemap-col:first-of-type {
  width: 50%;
}

.l-sitemap-row2 {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.l-sitemap-row2 > .l-sitemap-col {
  display: table-cell;
  width: 50%;
  vertical-align: top;
}

.l-sitemap-box {
  margin-bottom: 25px;
}

/*** Title ***/
.l-sitemap-tit {
  font-size: 142.9%; /*20px*/
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  border-left: 4px solid #aa2123;
  padding-left: 6px;
  margin-bottom: 18px;
}
.l-sitemap-tit a {
  color: #fff;
  text-decoration: none;
}
.l-sitemap-tit a:hover { color: #f6d4d4; }

.l-sitemap-box-tit {
  font-size: 114.3%; /*16px*/
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-sitemap-box-tit a {
  color: #fff;
  text-decoration: none;
}
.l-sitemap-box-tit a:hover { color: #f6d4d4; }

/*** List ***/
.l-sitemap-lst {
  font-size: 85.7%; /*12px*/
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
  padding-right: 10px;
}
.l-sitemap-lst > li::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent #fff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  margin-right: 3px;
}
.l-sitemap-lst > li a {
  color: #fff;
  text-decoration: none;
}
.l-sitemap-lst > li a:hover { text-decoration: underline; }

.l-sitemap-lst-sub {
  display: none;
  padding-left: 10px;
}
.l-sitemap-lst-sub.is-active {
  display: block;
}

/****************************
  Footer
****************************/
/*** Page Top ***/
/***もともとのスクロールやじるし ここから***/
/*.l-btn-top {
  display: none;
  width: 63px;
  height: 63px;
  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 15px;
}/
/***もともとのスクロールやじるし ここまで***/

/*** シナモンちゃんのスクロールやじるし ***/
.l-btn-top {
  display: none;
  width: 120px;
  height: 156px;
  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 15px;
}

/*** visible ***/
.l-visible {
  display: block;
  width: 1px;
  height: 1px;
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px){
  .l-visible { display: none; }
}

/*** Footer Link ***/
.l-foot-link { padding: 22px 0 20px; }
.l-foot-link > ul {
  text-align: center;
  margin-bottom: 4px;
}
.l-foot-link > ul > li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 18px;
}
.l-foot-link > ul > li::before {
  content: "";
  display: inline-block;
  height: 14px;
  vertical-align: middle;
  border-left: 1px solid #9e9e9e;
  margin-right: 23px;
}
.l-foot-link > ul > li a {
  color: #fff;
  text-decoration: none;
}
.l-foot-link > ul > li a:hover { text-decoration: underline; }
.l-foot-link > ul:first-of-type > li:first-child::before { display: none; }
@media screen and (max-width: 768px){
  .l-foot-link {
    display: block;
    padding: 2em 10px 1em;
  }
  .l-foot-link > ul {
    text-align: left;
    margin-bottom: 1em;
  }
  .l-foot-link > ul > li {
    display: block;
    margin-left: 0;
    margin-bottom: 1em;
    line-height: 1.25;
  }
  .l-foot-link > ul > li::before { display: none; }
}

/*** Copyright ***/
.l-foot-copyright { padding: 26px 0; }
.l-foot-copyright p { text-align: center; color: #fff; }
.l-foot-copyright p small { font-size: 85.7%; font-weight: 200; }
@media screen and (max-width: 768px){
  .l-foot-copyright p { padding: 0 6.5104166%; }
}
