@charset "UTF-8";

/**
 * @author TEW Y.Kawada
 * @version 1.0.0
 * @since 2018.06.27 - TEW Y.Kawada - 新規作成。
 * @version 0.181.190619 2019.06.19  customAlertの共通化対応  CEC 内藤 CEC 内藤
 * @version 0.181.190628 2019.06.28  他の画面に影響を与えた為コメント  CEC 内藤
 */

@font-face {
    font-family: "Ubuntu Condensed";
    font-style: normal;
    font-weight: 400;
    src: local("Ubuntu Condensed"), local("UbuntuCondensed-Regular"),
        url(UbuntuCondensed-Regular.woff) format("woff");
}

header .logo, footer .copyright {
    margin: 0;
    color: white;
    font-family: "Ubuntu Condensed";
    font-weight: normal;
    text-align: center;
    letter-spacing: .1em;
    background-color: #f19ec2;
}
/* :::::: contents :::::: */
#wrapper {
    /* overflow: hidden; */
    min-width: 320px;
    height: auto;
    padding: 0;
}

.contents {
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    margin-top: 45px;
    height: 600px;
}

#navTgl:checked ~ .contents {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
}
/* :::::: toggle button :::::: */
#navTgl {
    display: none;
    overflow: hidden;
}

.menuLabel {
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
}

.open {
    z-index: 2147483647;
    width: 50px;
    height: 50px;
    color: white;
    background-color: lightSeaGreen;
    font-size: 2em;
    line-height: 50px;
    text-align: center;
    -webkit-transition: background-color .6s, -webkit-transform .6s;
    transition: background-color .6s, transform .6s;
}

#navTgl:checked+.open {
    background-color: indianRed;
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
}

.close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
}

#navTgl:checked ~ .close {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, .3);
}
/* :::::: drawer menu :::::: */
.menu {
    z-index: 1;
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, .6);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
}

#navTgl:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.menu h2, .menu h3, .menu h4, .menu li a {
    color: white;
}

.menu h2, .menu h3, .menu h4 {
    text-align: center;
}

.menu ul, header nav ul {
    padding: 0;
}

.menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    font-size: 0.9em;
    line-height: 1.4;
}

.menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .6);
}

.menu li a, header nav li a {
    display: block;
    padding: 1em 2em;
    text-decoration: none;
    transition: background-color .6s;
}

.menu li a:hover {
    background-color: black;
}
/* :::::: header, footer :::::: */
header, footer, .menu {
    box-sizing: border-box;
}

header .logo, footer .copyright {
    line-height: 50px;
}

header {
  height: 30px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f19ec2;
  color: white;
  font-size: 20px;
  text-align: center;
  z-index: 2147483646;
}

footer {
    height: 50px;
    width: 100%;
    font-size: 20px;
    position: fixed;
    bottom: 0;
    left: 0px;
    z-index: 2147483645;
}

footer small {
    font-size: 1em;
}
/* :::::: article :::::: */
article {
    width: 100%;
    max-width: 1100px;
    /* margin: 0 auto 100px; */
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

article h1 {
    width: 7em;
    height: 7em;
    margin: 0 auto;
    font-size: 1em;
    line-height: 7em;
    font-weight: normal;
    text-align: center;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 50%;
}
section {
    margin: 75px 0;
}

section h2, figure img, figcaption {
    margin-bottom: 1em;
}

section h2 {
    margin: 0 0 20px;
    /* text-align: center; */
}

figure {
    position: relative;
    padding-bottom: 50px;
}

#wrapper figure img {
    max-width: calc(100% - 10px);
}

figure img {
    height: auto;
    padding: 5px;
    background-color: rgba(255, 255, 255, .6);
}

figcaption {
    font-size: .8em;
    line-height: 1.6;
}

.originalBtn {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1em 2em;
    color: white;
    background: lightSeaGreen;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s;
}

.originalBtn:hover {
    background: indianRed;
}
.required {
    color: red;
    font-size: 25px;
}
.ime-mode-disabled {
    ime-mode: disabled;
}
.ime-mode-active {
    ime-mode: active;
}
header .logo {
    min-width: 500px;
}
.ui-dialog {
    z-index: 2147483647;
}


/* [2019.06.19] 画面修正 CEC 内藤 START */
.customMsg {
    padding-left: 4em !important;
    padding-right: 5em !important;
}

/* [2019.06.28] 画面修正 他の画面に影響を与えた為コメント DEL CEC 内藤 START */
/* .ui-dialog-titlebar{
    border-radius: 20px 20px 20px 20px!important;
    padding: 0.5em 1em 0.3em 1.1em;
}

.ui-dialog-titlebar-close{
    display: none;
}

.ui-dialog .ui-dialog-buttonpane {
    border: none;
}
 *//* [2019.06.28] 画面修正 DEL CEC 内藤 END */

.ui-dialog-buttonset {
    width: 100%;
    text-align: center!important;
}

.ui-widget {
    font-family: "メイリオ", sans-serif;
    font-size: 14px;
}

.ui-dialog .ui-dialog-buttonpane button {
    float: none!important;
    padding: 0.4em 1.5em 0.4em 1.5em!important;
}

/* [2019.06.19] 画面修正 CEC 内藤 END */

