@charset "UTF-8";

/* フォント /
/* ゴシック体 */
.font-sans-serif {
    font-family: sans-serif;
}

/* 明朝体 */
.font-serif {
    font-family: serif;
}

/* 筆記体 */
.font-cursive {
    font-family: cursive;
}

/* 装飾系フォント */
.font-fantasy {
    font-family: fantasy;
}

/* タイトル共通 */
.common-title {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 30px 0px;
    background: radial-gradient(rgb(255, 223, 223), white);
}

/* 共通部品 */
/* テキストエリア */
.common-text-area {
    display: inline-block;
    background-color: white;
    margin: 5px 15px;
    border-radius: 5px;
    box-shadow: 0px 14px 30px #666666;
    padding: 5px 10px;
}

.common-text-line {
    height: 50px;
    width: 100%;
    padding-top: 20px;
    background: radial-gradient(rgb(255, 223, 223), white);
}

.common-text-line svg {
    color: #dfbfbf;
    font-size: 1.1em;
}

/* ボタン */
.common-white-button {
    display: inline-block;
    text-align: center;
    width: 110px;
    height: 45px;
    line-height: 45px;
    background-color: rgb(255, 255, 255);
    color: rgb(230, 95, 95);
    font-weight: bold;
    margin: 3px 0.8%;
    border-radius: 5px;
    box-shadow: 0px 2px 3px 1px #474646;
    border-bottom: solid 5px #8b8d8f;
    text-decoration: none;
    cursor: pointer;
}

.common-white-button:active {
    box-shadow: none;
    position: relative;
    border-bottom: none;
    top: 7px;
}

/* テーブル */
.common-grid-table {
    border-collapse: collapse;
    border-spacing: 0px;
}

.common-grid-table td,
th {
    border: 1px outset;
    padding: 10px;
}

.common-grid-table th {
    background-color: #ffe9e9;
    border: 0px;
}

.common-grid-table td {
    background-color: white;
    font-size: 15px;
}

.common-grid-table .vertical-header {
    text-align: left;
}

.common-grid-table .empty-th {
    border-top: 0px;
    border-left: 0px;
    background-color: white;
}

.common-grid-table .center {
    text-align: center;
}

.common-grid-table th.round-top-right {
    border-radius: 0px 15px 0px 0px;
}

.common-grid-table th.round-top-left {
    border-radius: 15px 0px 0px 0px;
}

.common-grid-table th.round-bottom-left {
    border-radius: 0px 0px 0px 15px;
}

.common-grid-table th.round-bottom-right {
    border-radius: 0px 0px 15px 0px;
}

/* オブジェクト 大きさは各自指定 */
.white-object {
    display: inline-block;
    box-shadow: 0px 2px 3px 1px #474646;
    background-color: rgb(255, 255, 255);
    text-align: center;
    vertical-align: middle;
    border-radius: 10px;
}

/* その他 */
/* 注釈 */
.annotation {
    font-size: 0.5em;
    color: rgb(116, 116, 116)
}

.bold {
    font-weight: bold;
}

.space {
    height: 10px;
}

/* inline-block */
.inline-block {
    display: inline-block;
}

.none {
    display: none;
}

/* border */
/* border-right */
.border-right {
    border-right: 1px solid rgb(193 193 193);
}

.border-left {
    border-left: 1px solid rgb(193 193 193);
}

/* inview-js */
.inview-float-up {
    opacity: 0;
    position: relative;
    top: 20px;
    transition: 1s;
}

.inview-float-up.animated {
    opacity: 1;
    top: 0px;
}

.inview-fall-down {
    opacity: 0;
    position: relative;
    bottom: 20px;
    transition: 1s;
}

.inview-fall-down.animated {
    opacity: 1;
    bottom: 0px;
}