/*-- 共通設定 --*/

p {
  padding:10px 10px;
}

ol li {
  padding:10px 10px;
}

.img__fl-l {
  float: left;
  margin:0 15 0 15;
}

.img__fl-r {
  float: right;
  margin:0 15 0 15;
}

.FntSize-S {
  font-size:1em;
}

.FntSize-M {
  font-size:1.2em;
}

.FntSize-L {
  font-size:1.5em;
}

.FntWet-B {
  font-weight: bold;
}

.Mrg__TB-c {
	margin-top: auto;
	margin-bottom: auto;
}

.Mrg__RL-c {
	margin-right: auto;
	margin-left: auto;
}

.fnt__caution {
  color: #dc143c;
}

.fnt__position-c {
  text-align: center;
}

.BgColor__lightskyblue {
  background: #87cefa ;
}

.BgColor__whitesmoke {
  background: #f5f5f5 ;
}

/*--リンク画像中央へ--*/
.displayed {
  display: block;
  margin: 20px auto 20px auto;
}


/*--タイトル--*/
#cont_toptitle {
  padding: 1rem 2rem;
  border-bottom: 3px solid #000;
  margin-bottom: 30px;
}

/*--グローバルメニュー--*/
#glb-position {
  text-align: center;
}

#glb-container {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}

#glb-container div:hover{
  opacity: 0.6;
}

/*--ご利用ガイド--*/
.gid-li {
  margin:10px 0;
}

.gd_container {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-around;
}

.gd_container a:hover{
  opacity:0.6;
}

/*--h3article--*/
.cont_article {
  position: relative;
  display: inline-block;
  margin: 1rem 0 1rem -10px;
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 0 100vh 100vh 0;
  background: #0075a9;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}

.cont_article:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  content: '';
  border-top: 10px solid #005276;
  border-left: 10px solid transparent;
}



/*--h4section--*/
.cont_section {
  padding: 1rem 2rem;
  border-left: 5px solid #0075a9;
  background: #f4f4f4;
}

#updated-time {
  display: block;
  text-align:right;
}

.cont_container {
  justify-content: space-between;
  align-items: flex-end;
  display: inline-flex;
}

.cont_container__wrap{
  flex-wrap: wrap;
}
.cont_item {
  display: inline-block;
}

/*-- araeruテーブル設定 --*/
.araeru-tbl {
   width: 100%;
}

table.araeru-tbl tbody tr th {
   font-size: 13px;
   padding: 5px;
   background-color: #dcdcdc;
   border-bottom: dotted 1px #fff;
   font-weight: normal;
   text-align: center;
}

table.araeru-tbl tbody tr td.araeru-tbl-h {
   font-size: 13px;
   padding: 5px;
   background-color: #dcdcdc;
   border-bottom: dotted 1px #fff;
   font-weight: normal;
   text-align: center;
}

table.araeru-tbl tbody tr td.araeru-tbl-c {
   font-size: 13px;
   padding: 5px;
   background-color: #f5f5f5;
   border-bottom: dotted 1px #fff;
   font-weight: normal;
   text-align: center;
}

table.araeru-tbl tbody tr td.araeru-tbl-cl {
   font-size: 13px;
   padding: 5px;
   background-color: #f5f5f5;
   border-bottom: dotted 1px #fff;
   font-weight: normal;
   text-align: left;
}

img.rentalftn-img {
    margin-bottom: -5px;
}

/*--umoucleaning--*/
.cln_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/*--アコーディオン--*/
*,
*::after,
*::before {
  box-sizing: border-box;
}

.Acd {
  width: 100%;
  max-width: 100%;
}

/*------------------------------

ここからアコーディオンのCSS

------------------------------*/
/* チェックボックスは非表示 */
.Acd-hidden{
  display: none;
}

/* Question部分 */
.Acd-open {
  display: block;
  padding: 10px;

  cursor: pointer;
  margin: 5px 0;
  font-weight: 700;
  position: relative;/* 変更部分 */
}

/* 開閉状態を示すアイコン+の作成 */
.Acd-open::before,
.Acd-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.Acd-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.Acd-hidden:checked + .Acd-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.Acd-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;/* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.Acd-hidden:checked + .Acd-open + .Acd-close {
  height: auto;
  opacity: 1;
  padding: 10px;

  font-weight: 700;
}



/* グローバルナビ（プルダウン）*/

.ic-menu-wrap {
  z-index: 9999;
  /* 下矢印 */
  /* floatクリア */
}

.ic-menu-wrap div,
.ic-menu-wrap a,
.ic-menu-wrap ul,
.ic-menu-wrap li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
}

.ic-menu-wrap li {
  list-style-type: none;
}

.ic-menu-wrap .menu {
  position: relative;
  width: 100%;
  height: 50px;
  max-width: 3200px;
  margin: 0 auto;
  z-index: 9999;
}

.ic-menu-wrap .menu > li {
  float: left;
  height: 50px;
  line-height: 50px;
  background: #3c93e0;
  text-align: center;
}

.ic-menu-wrap li#icmenu01 {
  width: 8%;
}

.ic-menu-wrap li#icmenu02 {
  width: 20%;
}

.ic-menu-wrap li#icmenu03 {
  width: 16%;
}

.ic-menu-wrap li#icmenu04 {
  width: 16%;
}

.ic-menu-wrap li#icmenu05 {
  width: 16%;
}

.ic-menu-wrap li#icmenu06 {
  width: 16%;
}

.ic-menu-wrap li#icmenu07 {
  width: 8%;
}

.ic-menu-wrap .menu > li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.ic-menu-wrap .menu > li a:hover {
  color: #fff;
}

.ic-menu-wrap ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.ic-menu-wrap ul.menu__third-level {
  visibility: hidden;
  opacity: 0;
}

.ic-menu-wrap ul.menu__fourth-level {
  visibility: hidden;
  opacity: 0;
}

.ic-menu-wrap .menu > li:hover {
  background: #0b3e6d;
  transition: all 0.5s;
}

.ic-menu-wrap .menu__second-level li {
  border-top: 1px solid #867cb6;
}

.ic-menu-wrap .menu__third-level li {
  border-top: 1px solid #867cb6;
}

.ic-menu-wrap .menu__second-level li a:hover {
  background: #0b3e6d;
}

.ic-menu-wrap .menu__third-level li a:hover {
  background: #0b3e6d;
}

.ic-menu-wrap .menu__fourth-level li a:hover {
  background: #0b3e6d;
}

.ic-menu-wrap .init-bottom:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
}

.ic-menu-wrap .menu:before,
.ic-menu-wrap .menu:after {
  content: " ";
  display: table;
}

.ic-menu-wrap .menu:after {
  clear: both;
}

.ic-menu-wrap .menu {
  *zoom: 1;
}

.ic-menu-wrap .menu > li.menu__single {
  position: relative;
}

.ic-menu-wrap li.menu__single ul.menu__second-level {
  position: absolute;
  top: 40px;
  width: 14em;
  background: #3c93e0;
  transition: all 0.2s ease;
}

.ic-menu-wrap li.menu__single:hover ul.menu__second-level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .ic-menu-wrap {
    display: none;
  }
}
/*# sourceMappingURL=nav.css.map */

