﻿/* デフォルト設定 */

/* リンク */
main p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

main h1 {
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
}

main hr {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

main a {
    text-decoration: underline !important;
    padding-bottom:1px;
    color:#0000EE;
}

main a:hover {
    color: -webkit-link;
}

/* テキストボックス */
main input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"] {
    font-family: Arial;
    border: 1px solid rgb(134, 133, 133);
    background-color: #FFFFFF;
    border-radius: 2px;
    padding: 1px 4px;
    /*line-height: 20px;*/
    font-size: 13px;
}

/* ボタン */
main input[type="button"],
input[type="submit"],
input[type="reset"] {
  appearance: none;
  background-color: #eeeeee;
  font-family: Arial;
  border: 1px solid rgb(134, 133, 133);
  border-radius: 3px;
  box-sizing: border-box;
  color: #24292E;
  display: inline-block;
  /*line-height: 20px;*/
  font-size: 13px;
  padding: 2px 8px;
  cursor: auto;
}

main input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
  background-color: rgb(224, 224, 224);
}

main input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active {
  background-color: #EDEFF2;
}

/* セレクトボックス */
main select, option {
    appearance: auto;
    font-family: Arial;
    box-sizing: border-box;
    border: 1px solid rgb(118, 118, 118);
    background-color: #FFFFFF;
    font-size: 13px;
    border-radius: 2px;
}

/* フレーム */
iframe {
    border: none;
    height: 100%;
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* フレーム用高さ設定 */
.v0006__container {
    /*フッター分を引いた高さ*/
    min-height: calc( 100% - 77px);
}
main {
    height:100%;
}
/* フレーム上左右3分割 */
.mainArea {
    width: 100%;
    min-width: 1450px;
    /*ヘッダー分+boeder分1px引いた高さ*/
    height: calc( 100% - 56px);
    display: flex;
    flex-direction: column;
}
.bottomArea {
    display: flex;
    /*mainAreaからmenuTop(border含む)を引いた高さ*/
    height: 100%;
}
.menuTop {
    position: relative;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #bbb;
}

.menuMainLeft {
    width: 450px;
    position: relative;
    border-right: 1px solid #bbb;
}

.menuMainRight {
    width: 100%;
    position: relative;
    flex: 1;
}

/* フレーム上下2分割 */
.column2topArea {
    width: 100%;
    position: relative;
    height: 70%;
    border-bottom: 1px solid #bbb;
}

.column2bottomArea {
    width: 100%;
    position: relative;
    height: 30%;
}

/* フレーム上下3分割 */
.column3topArea {
    width: 100%;
    position: relative;
    height: 80px;
    border-bottom: 1px solid #bbb;
}

.column3middleArea {
    width: 100%;
    position: relative;
    height: 130px;
    border-bottom: 1px solid #bbb;
}

.column3bottomArea {
    width: 100%;
    position: relative;
    height: 100%;
    flex: 1;
}
