@charset "UTF-8";
/* CSS Document */

.itemover {
    background-color: rgba(0, 0, 0, 0.2);
    border: 0 solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    transition: all 0.8s ease 0s;
    z-index: 9;
    cursor: pointer;
    margin-left: 15px;
    margin-right: 15px;
}
.itemover:hover {
    opacity: 1;
}
.itemover .glyphicon-zoom-in {
    color: #FFFFFF;
    position: relative;
    transition: all 0.8s ease 0.5s;
    vertical-align: text-bottom;
}
.increase:hover {
    opacity: 0.6;
    cursor: pointer
}
.color_name_txt {
    background: #ddd;
    border-radius: 6px 6px 0 0;
    padding-left: 6px;
}
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/*Topにもどる*/

/* パソコン・スマホ共通のCSS */
#PageTopBtn {
    position: fixed; /*ボタンの配置場所を固定*/
    bottom: -10px; /*下からのボタンの配置場所を指定*/
    right: 10px; /*右からのボタンの配置場所を指定*/
}
#PageTopBtn a {
    display: block; /*配置の調整*/
    text-decoration: none; /*文字の下線を消す*/
    color: ##6666dd; /*文字の色*/
    background: #d9edf7; /*ボタンの背景色*/
    text-align: center; /*文字を中央に配置*/
    border-radius: 5%; /*ボタンの角を少し丸くする*/
    outline: none; /*クリックしたときの黒い枠を消す*/
}
#PageTopBtn a:hover {
    text-decoration: none;
    background: #87cefa; /*マウスオーバー時の背景色*/
}

/* パソコンで表示する場合のCSS */
@media (min-width: 768px) {
#PageTopBtn {
    font-size: 13px; /*文字のサイズ*/
}
#PageTopBtn a {
    width: 100px; /*ボタンの幅*/
    height: 70px; /*ボタンの高さ*/
    padding: 24px 0; /*文字の配置場所の調整*/
}
}

/* スマホで表示する場合のCSS */
@media (max-width: 767px) {
#PageTopBtn {
    font-size: 10px;
}
#PageTopBtn a {
    width: 70px;
    height: 50px;
    padding: 17px 0;
}
}
/* アンダーライン */
.under {
    background: linear-gradient(transparent 50%, #ffff33 50%);
}
/* 付箋ボタン */
.btn-sticky {
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #f7f7f7;
    border-left: solid 6px #cc6600;/*左線*/
    color: #cc6600;/*文字色*/
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:active {
    box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}
/*アコーディオン*/
/*カーソルをポインターに*/
summary {
    cursor: pointer;
}
/*三角消去*/
details summary {
    list-style: none;
}
details summary::-webkit-details-marker {
 display: none;
}
summary {
    cursor: pointer;
    transition: 0.2s; /* 変化を滑らかに */
}
/* ホバー時のスタイル */
summary:hover {
    cursor: pointer; /* カーソルを指マークに */
    background-color: #EFEFEF;
}
/*オープン時はグレー*/
details[open] summary {
    color: gray;
}
/*
details summary::before {
    font-family: "Font Awesome 5 Free"　;
    content: '\f067';
    font-weight: 900;
    display: inline-block;
    margin-right: 20px;
}
details[open] summary::before {
    font-family: "Font Awesome 5 Free"　;
    content: '\f068';
    font-weight: 900;
    display: inline-block;
    margin-right: 20px;
}
*/

.doubleunderline {
  /*線の種類（二重線）太さ 色*/
  border-bottom: double 5px #5472cd;
}

.twincolorunderline {
  border-bottom: solid 3px #cce4ff;
  position: relative;
}

.twincolorunderline:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #5472cd;
  bottom: -3px;
  width: 20%;
}

.upperline{
  padding: 1rem 2rem;
  border-top: 4px groove #cceeff;
  background: #ffffff;
}

.upperheavyline{
  padding: 1rem 2rem;
  border-top: 6px groove #cceeff;
  background: #dddddd;
}
