@charset "utf-8";

/**************************************
    フォント
***************************************/

@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*@import url(//fonts.googleapis.com/css?family=Roboto:400,300,500,700|Oswald:400,300,700);*/

/**************************************
    アイコン類
***************************************/

.icon  {
    display: inline-block;
}

/* 虫眼鏡アイコン //cssicon.space/#/icon/magnify */
.magnify.icon {
  color: #777;
  position: absolute;
  margin-top: 2px;
  margin-left: 3px;
  width: 12px;
  height: 12px;
  border: solid 1px currentColor;
  border-radius: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.magnify.icon:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10px;
  height: 10px;
  width: 1px;
  background-color: currentColor;
}
.magnify.icon i {
  position: absolute;
  left: 7px;
  top: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.magnify.icon i:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: currentColor;
}
.magnify.icon i:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* 汎用アイコン */
.new,
.update {
    display: inline-block;
    text-align: center;
    font-size: 0.5em;
    font-weight: 200;
    color: #fff;
    height: 15px;
    width: auto;
    padding: 0 10px;
    line-height: 14px;
    border-radius: 10px;
}
/* NEWアイコン */
.new {
    background: #ffa726;
}
/* UPDATEアイコン */
.update {
    background: #6183CC;
}

/**************************************
    共通
***************************************/

html {
    height: 100%;
}
body {
    height: auto;
    color: #333; /* 基本文字色 */
    font-family: "Noto Sans Japanese", serif;
}

/* aタグ */
a:link {
    outline: none; /* firefoxで点線が出るため */
}

/* PC版表示コンテンツ */
.pc {
    display: block;
}
table.pc {
    display: table;
}
/* SP版表示コンテンツ */
.sp {
    display: none;
}
table.sp {
    display: none;
}

/* 角丸ボックス */
.round-box {
    border-radius: 30px;
    border: 0px solid #fff;
    background: #fff;
    display: inline-block;
}

/* 枠線ボタン */
.border-btn {
    border: 1.5px solid #777777;
    background: #ffffff;
    width: 160px;
    height: 50px;
    /* 線、パッディングを含める */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.border-btn a {
    color: #777777;
    display: table;
}
.border-btn a > span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
}
.item-selection .plan-panel .links-inner .border-btn a > span {
    font-size: 14px;
}
.border-btn.arrow-right a > span {
    padding-right: 20px;
}
/* ボタン無効化 */
.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
}

/* 四角ボタン（上矢印） */
.square-box {
    background: #ffffff;
    border: 2px solid #777777;
    height: 50px;
    width: 50px;
    /* 線、パッディングを含める */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* 矢印 - 左*/
.arrow-left {
    position: relative;
}
.arrow-left::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-left: solid 2px #777777;
    border-bottom: solid 2px #777777;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
/* 矢印 - 右 */
.arrow-right {
    position: relative;
}
.arrow-right::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #777777;
    border-right: solid 2px #777777;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
/* 矢印 - 上 */
.arrow-up a{
    position: relative;
}
.arrow-up a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #777777;
    border-right: solid 2px #777777;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: calc(50% - 2px) auto auto;
}
/* 矢印 - 下 */
.arrow-down a{
    position: relative;
}
.arrow-down a::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 2px #777777;
    border-right: solid 2px #777777;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

/* ボタン矢印 - 左 */
.border-btn.arrow-left::before {
    top: 50%;
    left: 15px;
    right: auto;
    margin-top: -4px;
}

/* ボタン矢印 - 右 */
.border-btn.arrow-right::after {
    top: 50%;
    left: auto;
    right: 15px;
    margin-top: -4px;
}
.item-selection .plan-panel .links-inner .border-btn.arrow-right::after {
    right: 10px;
}
/* リンク */
.link {
    /* 線、パッディングを含める */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.link a {
    color: #777777;
    display: table;
}
.link a > span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
}
/* リンク矢印 - 右 */
.link.arrow-right::after {
    top: 50%;
    left: auto;
    right: 15px;
    margin-top: -4px;
}

/* メッセージ枠 */
.msg-frame {
    margin: 0 40px 0px;
    padding: 0px 20px;
    text-align: left;
}
section.plan-msg-section {
    margin-bottom: 10px!important;
    padding: 0px 10px;
}

/* メッセージヘッダー */
.msg-frame.msg-header {
}
.msg-frame.msg-header > .error {
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1.5em;
    color: #ff675d;
}
/* メッセージフッター */
.msg-frame.msg-footer {
}

/* コンテンツ内メッセージ枠 */
.inner-msg-frame {
    display: block;
    text-align: left;
    padding: 10px;
}
/* コンテンツ内メッセージ */
.inner-msg {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    font-size: 16px;
}
.inner-msg > span {
    display: block;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.2em;
}
.inner-msg > small {
    font-size: 0.8em;
    line-height: normal;
}

/* aタグボタン */
body p > a {
    text-decoration: none;
    text-align: center;
    display: table;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    color: #0066cc;
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
body p > a > * {
    display: table-cell;
    vertical-align: middle;
}
body p > a > span {
    font-size: 8px;

}
body p > a > img {
    position: absolute;
    top: calc(50% - 7px);
    left: 87%;
}

/* inputタグ テキストボックス */
input[type=text] {
    background: #f7f3e8;
    border: none;
    text-align: center;
    font-size: 32px;
    padding: 5px;
    height: 50px;
    width: 100%;
    /* 枠調整のため */
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/* inputタグ　セレクトボックス */
select {
    background: #f7f3e8;
    border: none;
    /* 標準の下三角を非表示 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    font-size: 32px;
    padding: 0 5px; /* 他ブラウザで上下に余裕が出来なくなるため、上下パディングなし */
}
label.select-label {
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: inline-block;
    height: 50px;
    /* 枠調整のため */
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
/* 下三角の表示 */
label.select-label:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 4px;
    border-style: solid;
    border-color: #333 transparent transparent;
    z-index: 0;
}
/* IEの下三角非表示 */
label.select-label select::-ms-expand {
    display: none;
}

/* インライン要素 - 上下中央 */
.inline-middle {
    vertical-align: middle;
}

/* タブ切り替え全体のスタイル */
.tabs {
    padding-top: 20px;
    background-color: #fff;
}
.tabbar {
    padding: 0 40px;
}

/* タブのスタイル */
.tab-item {
    width: calc(50% - 5px);
    height: 50px;
    border-top: 1px solid #aaa;
    border-left: 1px solid #aaa;
    border-right: 1px solid #aaa;
    background-color: #fff;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    /* 角丸 */
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    /* ポインター */
    cursor: pointer;
}
.tab-item:last-child {
    margin-left: 5px;
}

/* ラジオボタンを全て消す */
input[name="tab_item"] {
    display: none;
}

/* タブ切り替えの中身のスタイル */
.tab-content {
    display: none;
    padding: 20px 40px 0;
    border-top: 2px solid #777777;
}
.tab-content.active {
    display: block;
}

/* 選択されているタブのスタイルを変える */
.tabs input:checked + .tab-item {
    background: #777777;
    color: #fff;
    border-color: #777777;
    position:relative;
}
/* 下線を塗りつぶす */
.tabs input:checked + .tab-item::before {
    content:'';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    border-bottom: 2px solid #777777;
}

/* アンカーボタン */
p.anchor-btn {
    position: relative;
    display: inline-block;
    padding-right: 25px;
    margin-right: 20px;
    height: 18px;
}
p.anchor-btn a > span {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}
p.anchor-btn a:before {
    content: '';
    width: 18px;
    height: 18px;
    background: #777777;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -9px;
}
p.anchor-btn a:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 5.8px;
    margin-top: -1px;
    border-style: solid;
    border-width: 4.3px 3.5px 0 3.5px;
    border-color: #fff transparent transparent transparent;
}
/* セクションヘッダー */
.table-sheet-header {
    border-bottom: 2px solid #777;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
/* セクション */
section {
    margin-bottom: 30px;
}
section:last-child {
    margin-bottom: 10px;
}
/* テーブル */
table, td, th { border: 1px #ccc solid; }
table {
    width: 100%;
}
/* テーブルヘッダー */
th {
    background: #eee;
    font-size: 14px;
    min-width: 30px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    padding: 0 5px;
    font-weight: 700;
}
body.item-detail th {
    text-align: left;
}
td {
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
    padding: 13px 10px;
}
tr {
    border-bottom: 1px solid #aaa;
}
/* 見出し - h1 */
h1 {
    border-left: 5px solid #777777;
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px;
    margin-bottom: 20px;
}
/* テーブルスクロール */
.table-scroll {
    overflow: auto; /* tableをスクロールさせる */
    white-space: nowrap; /* tableのセル内にある文字の折り返しを禁止 */
}
.table-scroll::-webkit-scrollbar { /* tableにスクロールバーを追加 */
    height: 5px;
}
.table-scroll::-webkit-scrollbar-track { /* tableにスクロールバーを追加 */
    background: #F1F1F1;
}
.table-scroll::-webkit-scrollbar-thumb { /* tableにスクロールバーを追加 */
    background: #BCBCBC;
}

/* テーブル TableSorterレイアウト */
table.tablesorter thead .header,
table.tablesorter thead .tablesorter-header {
    background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
    background-repeat: no-repeat;
    background-position: center right;
    cursor: pointer;
}
table.tablesorter thead .headerSortUp,
table.tablesorter thead .tablesorter-headerSortUp,
table.tablesorter thead .tablesorter-headerAsc  {
    background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}
table.tablesorter thead .headerSortDown,
table.tablesorter thead .tablesorter-headerSortDown,
table.tablesorter thead .tablesorter-headerDesc {
    background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}
table.tablesorter thead .sorter-false {
    background-image: none;
    cursor: default;
}

/* ヘッダーセル中央 */
table .thead-center > th {
    text-align: center;
}

/* セル中央 */
table .table-center {
    text-align: center;
}

/* 数値 */
table th.number,
table td.number {
    text-align: right;s
}

/* タイプ選択 */
.type-list {
    background: #f7f3e8;
    padding: 0 0 20px;
    /* 要素のセンタリング */
    text-align: center;
    vertical-align: middle;
}
.type-list li {
    background: #fff;
    min-width: 320px;
    min-width: 400px;
    display: inline-block;
    margin: 20px 25px 0;
    text-align: center;
}
.type-list li input {
    display: none;
}
.type-list li label {
    background: #fff;
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
/* IEのみ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .type-list li label {
        display: inline-block;
    }
    .type-list li label img {
        pointer-events: none;
    }
}
.type-list li label > div {
    padding: 20px 0;
}
/* ボタン画像 */
.type-list li label .type-icon {
    box-sizing: border-box;
    display: inline-block;
}
.type-list li :checked + label > div {
    border: 3px solid #777;
    border-bottom: none;
}
/* 型名 */
.type-list li label .type-name {
    color: #777;
    font-size: 40px;
}
/* テキスト */
.type-list li label .text {
    background: #777;
    color: #fff;
    padding: 20px 30px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}
.type-list li label p {
    letter-spacing: 0;
    font-size: 10px;
}
.type-list li label > div {
    border: 3px solid #fff;
    border-bottom: none;
}
/* 矢印アイコン */
.type-list li {
    position: relative;
}
.type-list label.arrow-right:before {
    content: '';
    width: 40px;
    height: 40px;
    background: #777;
    border-radius: 50%;
    position: absolute;
    top: 40%;
    right: -20px;
}
.type-list label.arrow-right:after {
    border-color: #fff;
    top: 44%;
    bottom: auto;
    left: auto;
    right: -3px;
    width: 7px;
    height: 7px;
    border-width: 3px;
}

/* 線、パッディングを含める */
.box-sizing {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/**************************************
    コンテンツ BOX枠
***************************************/

/* コンテンツ BOX枠 */
.contents .box {
}
/* ヘッダー */
.contents .box .box-header {
    background: #e6e6e6;
    text-align: center;
    padding: 20px 0;
    /* 上だけ角丸 */
    border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
/* ヘッダー文字列 */
.contents .box .box-header span {
    font-size: 18px;
}
/* コンテンツ */
.contents .box .box-content {
    /* 下だけ角丸 */
    border-radius: 0 0 5px 5px / 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px / 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px / 0 0 5px 5px;
}
.contents .box .box-content.border {
    border: 1px solid #ddd;
}

/* ヘッダー */
.contents .box.column2-box .box-header {
    /* 上だけ角丸 */
    border-radius: 5px 0 0 5px / 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px / 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px / 5px 0 0 5px;
}
/* コンテンツ */
.contents .box.column2-box .box-content {
    /* 下だけ角丸 */
    border-radius: 0 5px 5px 0 / 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0 / 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0 / 0 5px 5px 0;
}
/* フッター */
.contents .box .box-footer {
    text-align: center;
    padding-bottom: 10px;
}
/* 項目 */
.contents .box .box-content .column > label {
    font-size: 18px;
}

/**************************************
    リスト
***************************************/

/* リストアイテム */
ul.list > li {
    position: relative;
    border-bottom: 2px solid #eee;
}
ul.list > li:last-child {
    margin-bottom: 0;
    border: none;
}
/* リストアイテム aタグ */
ul.list a {
    /* ブロック要素にしてクリック範囲をliに合わせる */
    display: block;
    width: 100%;
    padding: 20px; /* aタグ内のコンテンツに対してパディングを設定 */
    /* 線、パッディングを含める */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
ul.list > li.arrow-right a {
    padding-right: 40px;
}
ul.list > li.arrow-right::after {
    top: 50%;
    left: auto;
    right: 20px;
    margin-top: -4px;
}
ul.list.column3-list{
    display:flex;
    flex-wrap: wrap;
}
ul.list.column3-list > li{
    display: flex;
    width: calc(100% / 3);
    width: 33.3%;
    align-items: center;
}

/* モーダル */
.remodal {
    font-size: 18px;
}
/* モーダルヘッダー */
.remodal .modal-header {
    border-radius: 5px 5px 0 0;
    background: #e6e6e6;
    text-align: center;
    height: 50px;
    font-size: 0.8em;
    line-height: 50px;
}
/* モーダルコンテンツ */
.remodal .modal-content {
    padding: 20px; /* スクロールバー位置を端に持ってくるため */
    overflow-y: auto;
    height: calc(100% - 100px);
    text-align: left;
    line-height: 1.5em;
    font-weight: 400;
    font-size: 0.8em;
    /* 左右にのみボーダーを設定 */
    border: 1px solid #e6e6e6;
    border-top: none;
    border-bottom: none;
}
/* モーダルフッター */
.remodal .modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    text-align: center;
    background: #e6e6e6;
    border-radius: 0 0 5px 5px;
}
.remodal .modal-footer > a {
    display: block;
    height: 100%;
    width: 100%;
    cursor: pointer;
    line-height: 50px;
    font-weight: 400;
    position: relative;
}
/* cross */
.remodal .modal-footer > a:before,
.remodal .modal-footer > a:after {
    content: '';
    height: 1px;
    width: 20px;
    display: block;
    background: #777;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: absolute;
    top: 25px;
    left: calc(50% - 60px);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}
.remodal .modal-footer>a:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}

/* プレーンモーダル */
.remodal.plane-modal .modal-content {
    border: none;
    height: calc(100% - 49px);
    display: table;
    width: 100%;
}
/* エラーメッセージ表示用 */
.remodal.plane-modal.error {
    height: auto;
}
.remodal.plane-modal.error .modal-content ul {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.remodal.plane-modal.error .modal-content ul > li {
    margin-bottom: 10px;
}
.remodal.plane-modal.error .modal-content ul > li:last-child {
    margin-bottom: 0;
}
.remodal.plane-modal.error .modal-footer {
    position: relative;
}

/* シミュレーションのご注意事項 */
/* 見出し - h1 */
.remodal.common-modal .modal-content h1 {
    border: none;
    font-size: 1.1em;
    padding: 0;
    margin: 0;
}
/* 文章外インデント */
.remodal.common-modal .modal-content .indent1 {
    margin-left: 1em;
}
.remodal.common-modal .modal-content .indent2 {
    margin-left: 2em;
}
.remodal.common-modal .modal-content .indent3 {
    margin-left: 3em;
}
/* 文章内インデント */
.remodal.common-modal .modal-content .indent-in-text {
    text-indent: -1em;
}
.remodal.common-modal .modal-content .indent2-in-text {
    text-indent: -2.6em;
}

/**************************************
    チャート 引用：//www.wam.abic.co.jp/contents/C902000/fundresearch/css/fundresearch.css?20170525
***************************************/

.simulation-term-setting dl dt{
    font-weight: bold;
    color: #0686d0;
}
.chart-area .chart-setting dl dt {
    font-weight: bold;
}

.chart-area .chart-setting dl dt:nth-of-type(n+2) {
    margin: 10px 0 0 0;
}
.simulation-term-setting{
    text-align: center;
}
.simulation-term-setting a.fund-button,
.chart-area .chart-setting a.fund-button {
  margin:5px 1px;
  font-size:100%;
  display:inline-block;
  position:relative;
  min-width:180px;
  zoom:1;

  background-repeat:repeat-x;

  border-style:solid;
  border-width:1px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;

  font-size:107%;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-decoration:none; line-height:1.1;
  text-align:center;
  vertical-align:baseline;
  white-space:nowrap;
  color:#333;

  cursor:pointer;
}

.simulation-term-setting a.fund-button.term,
.chart-area .chart-setting a.fund-button.term {
  min-width: 80px;
  padding: .7em 2px .6em 3px;
  margin: 0px 1px 5px 0px;
  font-weight: normal;
}

.simulation-term-setting .bc-gray,
.chart-area .chart-setting .bc-gray {
  background-color:#e5e5e5;
  background-image:url(../lib/chart/images/h5-glay.png);
  border-color:#d1d1d1 #b1b1b1 #b1b1b1 #cccccc;
  color:#333;
}

.simulation-term-setting .bc-gray:active,
.chart-area .chart-setting .bc-gray:active {
  background-color:#cecece;
  background-image:url(../lib/chart/images/h5-glay-select.png);
  border-color: #b1b1b1;
  color:#333;
}

.simulation-term-setting .active,
.chart-area .chart-setting .active {
  background-image: none;
  background-color:#fff ;
  border: 1px solid #6575bb;
  pointer-events: none;
  cursor: default !important;
  box-shadow: inset 2px 2px 3px rgba(000,000,000,0.3);
  -webkit-box-shadow: inset 2px 2px 3px rgba(000,000,000,0.3);
  -moz-box-shadow: inset 2px 2px 3px rgba(000,000,000,0.3);
  font-weight: bold !important;
}

/* スライドスイッチ */
.chart-area .chart-setting .disp-event input[type=radio],
.chart-area .chart-setting .disp-event input[type=checkbox],
.chart-area .chart-setting .composite-chart input[type=radio] {
    display: inline-block;
    margin-right: 6px;
}
.chart-area .chart-setting .disp-event input[type=radio] + label,
.chart-area .chart-setting .disp-event input[type=checkbox] + label,
.chart-area .chart-setting .composite-chart input[type=radio] + label {
    position: relative;

    display: inline-block;
    margin-right: 12px;

    font-size: 12px;
    font-weight: bold;
    line-height: 28px;

    cursor: pointer;
}

@media (min-width: 1px) {
    .chart-area .chart-setting .disp-event input[type=radio],
    .chart-area .chart-setting .disp-event input[type=checkbox],
    .chart-area .chart-setting .composite-chart input[type=radio] {
        display: none;
        margin: 0;
    }
    .chart-area .chart-setting .disp-event input[type=radio] + label,
    .chart-area .chart-setting .disp-event input[type=checkbox] + label,
    .chart-area .chart-setting .composite-chart input[type=radio] + label {
        padding: 0 0 0 24px;
    }
    .chart-area .chart-setting .disp-event input[type=radio] + label::before,
    .chart-area .chart-setting .disp-event input[type=checkbox] + label::before,
    .chart-area .chart-setting .composite-chart input[type=radio] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;

        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
        margin-top: -9px;

        background: #FFF;
    }
    .chart-area .chart-setting .disp-event input[type=radio] + label::before,
    .chart-area .chart-setting .composite-chart input[type=radio] + label::before {
        border: 2px solid #ccc;
        border-radius: 30px;
    }
    .chart-area .chart-setting .disp-event input[type=checkbox] + label::before {
        border: 2px solid #ccc;
    }
    .chart-area .chart-setting .disp-event input[type=radio]:checked + label::after,
    .chart-area .chart-setting .disp-event input[type=checkbox]:checked + label::after,
    .chart-area .chart-setting .composite-chart input[type=radio]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;

        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .chart-area .chart-setting .disp-event input[type=radio]:checked + label::after,
    .chart-area .chart-setting .composite-chart input[type=radio]:checked + label::after {
        left: 5px;

        width: 8px;
        height: 8px;
        margin-top: -4px;

        background: #6575bb;
        border-radius: 8px;
    }
    .chart-area .chart-setting .disp-event input[type=checkbox]:checked + label::after {
        left: 3px;

        width: 16px;
        height: 8px;
        margin-top: -8px;

        border-left: 3px solid #6575bb;
        border-bottom: 3px solid #6575bb;

        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /* either */
    .chart-area .chart-setting .disp-event .either,
    .chart-area .chart-setting .composite-chart .either {
        position: relative;

        display: inline-block;
        width: 90px;
        overflow: hidden;
        border: 1px solid;
        border-color: #d1d1d1 #b1b1b1 #b1b1b1 #cccccc;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
    }
    .chart-area .chart-setting .disp-event .either input[type=radio] + label,
    .chart-area .chart-setting .composite-chart .either input[type=radio] + label {
        position: static;

        float: left;
        display: block;
        width: 50%;
        margin-right: 0;
        padding: 0;
        overflow: hidden;

        text-align: center;
    }
    .chart-area .chart-setting .disp-event .either input[type=radio] + label::before,
    .chart-area .chart-setting .composite-chart .either input[type=radio] + label::before {
        content: attr(data-label);

        top: 0;
        bottom: 0;
        z-index: 1;

        display: block;
        width: 50%;
        height: auto;
        margin-top: 0;

        text-align: center;

        color: transparent;
        background: transparent;
        border: 0 none;
        border-radius: 0;
    }
    .chart-area .chart-setting .disp-event .either input[type=radio] + label:last-child::before,
    .chart-area .chart-setting .composite-chart .either input[type=radio] + label:last-child::before {
        left: 50%;
        right: 0;

    }
    .chart-area .chart-setting .disp-event .either input[type=radio]:checked + label::before,
    .chart-area .chart-setting .composite-chart .either input[type=radio]:checked + label::before {
        color: #fff;
    }

    .chart-area .chart-setting .disp-event .either input[type=radio] + label::after,
    .chart-area .chart-setting .composite-chart .either input[type=radio] + label::after {
        border-radius: 0;
    }
    .chart-area .chart-setting .disp-event .either input[type=radio]:first-child + label::after,
    .chart-area .chart-setting .composite-chart .either input[type=radio]:first-child + label::after {
        content: none;
    }
    .chart-area .chart-setting .disp-event .either input[type=radio] + label + input[type=radio] + label::after,
    .chart-area .chart-setting .composite-chart .either input[type=radio] + label + input[type=radio] + label::after {
        content: "";

        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 0;

        display: block;
        width: auto;
        height: auto;
        margin: auto;

        background: #6575bb;
        border: 1px solid #fff;

        -webkit-transition: all 200ms;
        transition: all 200ms;

        border-radius: 4px;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
    }

    .chart-area .chart-setting .disp-event .either input[type=radio]:checked + label + input[type=radio] + label::after,
    .chart-area .chart-setting .composite-chart .either input[type=radio]:checked + label + input[type=radio] + label::after {
        left: 0;
        right: 50%;
    }
    .chart-area .chart-setting .disp-event .either input[type=radio] + label + input[type=radio]:checked + label::after,
    .chart-area .chart-setting .composite-chart .either input[type=radio] + label + input[type=radio]:checked + label::after {
        left: 50%;
        right: 0;
    }
}

/* テーブル関連 */
.chart-campus table,
.chart-campus tr,
.chart-campus td,
.chart-campus th {
    border: none;
}
.chart-campus th {
    padding: 0;
}
.chart-campus td {
    padding: 0;
}

/**************************************
    ナビゲーション
***************************************/

main nav.step-bar {
    width: 100%;
    padding: 20px 40px 0;
}
main nav.step-bar ol {
    list-style:none;
    text-align: center;
    display: table;
    width: 100%;
}
main nav.step-bar li {
    display: table-cell;
    height: 50px;
    width: 24%;
    border: 1px solid #e6e6e6;
    border-left: none;
    border-right: none;
    position: relative;
    vertical-align: middle;
}
main nav.step-bar li > p {
    display: inline-block;
}
/* 数字アイコン */
main nav.step-bar li span:first-child {
    color: #777;
    border: 1px solid #777;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 1.5em;
}
/* ステップ名 */
main nav.step-bar li span:nth-child(2) {
    padding-left: 10px;
}
main nav.step-bar li span {
    display: table-cell;
    vertical-align: middle;
}
main nav.step-bar li.current span:first-child {
    color: #fff;
    background: #777;
}
/* 三角 - 線 */
main nav.step-bar li::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-right: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 15px solid #e6e6e6;
}
main nav.step-bar li:first-child::before,
main nav.step-bar li.current::before,
main nav.step-bar li.current + li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}
/* 三角 */
main nav.step-bar li::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -40px;
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-right: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 15px solid #fff;
    z-index: 1;
}
main nav.step-bar li:last-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border: none;
    z-index: 0;
}
/* 現在のステップ - 三角 */
main nav.step-bar li.current::after {
    border-left: 15px solid #e6e6e6;
}

main nav.step-bar li:first-child {
    border-left: 1px solid #eee;
}
main nav.step-bar li:last-child {
    border-right: 1px solid #eee;
}
/* 現在のステップ */
main nav.step-bar li.current {
    background: #e6e6e6;
}

/**************************************
    プログレス
***************************************/

.is-hide{
    display:none;
}
.loading{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:rgba(0, 0, 0, .5);
    z-index: 100;
}
.loading::before{
    content: "";
    display: block;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-top: -15px;
    margin-left: -15px;
    opacity: 0;
}
.loading::after{
    content: "";
    display: block;
    position: fixed;
    left: calc(50% - 10px);
    top: 50%;
    width: 32px;
    height: 32px;
    border-radius: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 4px solid #aaa;
    border-right: 4px solid white;
    animation: rotate 1s infinite linear;
}
@keyframes rotate {
    0%    { transform: rotate(0deg); }
    100%  { transform: rotate(360deg); }
}

/**************************************
    共通ヘッダー
***************************************/

header {
    position: fixed; /*描画完了後にfixedに変更 */
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: #fff;
}

/* 銀行バー */
header .bank-bar {
    background: #fff;
    width: 100%;
    height: 50px;
}
header .bank-bar > img {
    margin-left: 40px;
}

/* ページヘッダー */
header .page-header {
    background: #777777;
    /* 帯を画面幅に合わせるためにぴったりくっつける */
    position: relative;
    /* ヘッダー用にパディングを設ける */
    padding: 0 40px;
}
header .page-header > * {
    margin: 10px 0;
    display: inline-block;
}
/* プラン名 */
header .page-header .plan-name {
    background: rgba(255, 255, 255, 0.2);
    padding: 0 15px;
    height: 40px;
    margin-right: 20px;
}
header .page-header .plan-name span {
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    vertical-align: middle;
}
/* 画面名 */
header .page-header .page-title {
    height: 40px;
}
header .page-header .page-title span {
    color: #fff;
    font-size: 24px;
    line-height: 40px;
    vertical-align: middle;
}
/* 戻るボタン */
header .page-header .back-btn {
    margin: 0;
    height: 60px;
    width: 200px;
    float: right;
    background: rgba(0, 0, 0, 0.3);
}
header .page-header .back-btn a {
    text-decoration: none;
    position: relative;
}
header .page-header .back-btn a > span {
    color: #fff;
    font-size: 16px;
    width: 150px;
}
header .page-header .back-btn a::after {
    position: absolute;
    content: "";
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    top: calc(50% - 15px);
    right: 20px;
}
header .page-header .back-btn svg {
    position: relative;
    left: 6px;
    top: 22px;
    z-index: 1;
}
/* IEのみ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    header .page-header .back-btn svg {
        left: auto;
        right: 10px;
        top: 20px;
    }
}
/* Firefoxのみ */
@-moz-document url-prefix() {
    header .page-header .back-btn svg {
        left: -10px;
        top: 20px;
    }
}
/* safariのみ */
_::-webkit-full-page-media, _:future, :root header .page-header .back-btn svg {
    left: -10px;
    top: 20px;
}
/* 商品一覧に戻るボタンアイコン */
header .page-header .back-btn .cls-1 {
    fill: #777777;
}

/* アンカーバー */
header .anchor-bar {
    /* 帯を画面幅に合わせるためにぴったりくっつける */
    position: relative;
    padding: 10px 40px;
    background: #fff;
    border-bottom: 1px solid #777777; /* アンカーとの境界が分かりづらいため、線を引く */
    display: none; /* 初期表示時は非表示 */
}
header .anchor-list > li {
    float:left;
    list-style-type:none;
    margin-left: 0px; /* リストアイテム間で間隔をとる。 */
    font-size: 0.7em;
}
header .anchor-list li > a {
    text-decoration: none;
    color: #333;
}
header .anchor-list > li::after {
    content: "|";
    margin-left: 5px; /* リストアイテム間で間隔をとる。 */
    margin-right: 5px; /* リストアイテム間で間隔をとる。 */
}
header .anchor-list > li:last-child::after {
    content: "";
}
header .anchor-bar.active {
    display: block;
}

/**************************************
    共通フッター
***************************************/

/* 制御バー */
footer {
    position: relative;
}
footer .control-bar {
    background: #f9f9f9;
    padding: 25px 40px;
    height: 100px;
    /* 帯を画面幅に合わせるためにぴったりくっつける */
    position: absolute;
    left: 0;
    right: 0;
}
footer .border-btn {
    height: 50px;
    width: 200px;
}
footer .border-btn a > span {
    font-size: 14px;
}

/* copyright */
footer .acknowledgments {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    padding: 30px 40px;
}
footer .acknowledgments .right-contents {
    float: right;
}
footer .acknowledgments .right-contents > div {
    float: left;
}
footer .copyright {
    margin-right: 22px;
}
footer .copyright small {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 40px;
}
footer .foreword {
    float: left;
}
footer .foreword a {
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
}

/**************************************
    コンテンツ
***************************************/

main {
    margin-top: 110px; /* 初回位置 */
}

main > * {
    padding-left: 40px;
    padding-right: 40px;
}

/* コンテンツ */
main .contents {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 20px;
}

/* 画面説明 */
main .description {
    padding: 20px 0;
    margin: 0 40px;
}
main .description > span {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

/* コンテンツフッター */
main .contents .contents-footer {
    padding: 0 40px;
    margin-bottom: 20px;
}


/* 免責事項 */
main .disclaimer {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
}
main .disclaimer ul {
    list-style-type: disc; /* 黒丸 */
    padding: 0 25px;
}
main .disclaimer li {
    margin-top: 5px;
}

/**************************************
    プラン入力
***************************************/

/* コンテンツ */
.plan-entry .contents {
    padding: 0 40px;
    text-align: center;
}

/* メッセージ枠 */
.plan-entry .msg-frame {
    margin: 0 0 20px;
}

.plan-entry .contents .box {
    display: inline-block;
    width: 70%;
}
.plan-entry .contents .box .box-content {
    padding: 30px 0;
}
.plan-entry .contents .box .box-content .box-plancode {
    /*display: inline-block;*/
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.plan-entry .contents .box .box-content .box-plancode > * {
    display: inline;
    vertical-align: middle;
}
.plan-entry .contents .box .box-content .box-plancode > label {
    font-size: 16px;
    display: inline-block;
    margin-right: 10px;
}
.plan-entry .contents .box .box-content .box-plancode > input {
    width: 60%;
    text-align: center;
}
/* 次の画面に進む */
.plan-entry .contents .box .box-content .border-btn {
    width: 200px;
    margin: 0 auto;
}

/**************************************
    プラン選択
***************************************/

/* コンテンツ */
.plan-selection .contents {
    padding: 0 40px;
}

/* メッセージ枠 */
.plan-selection .msg-frame {
    margin: 0 0 20px;
}

/* リストアイテム */
.plan-selection .contents ul.list > li {
    display: none;
}
.plan-selection .contents ul.list > li > a {
    text-decoration: none;
    color: #333;
}
.plan-selection .contents ul.list > li > a > span {
    font-size: 20px;
    line-height: 24px;
}
.plan-selection .contents ul.list > li > a > small {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

/**************************************
    商品一覧
***************************************/

/* テーブル関連 */
.item-selection th,
.item-selection td {
    max-width: 200px;
}

.item-selection th .unit-label{
  display: inline-block;
}
/* メッセージ枠 */
.item-selection .msg-frame {
    margin-left: 40px;
    margin-right: 40px;
}

/* プランパネル */
.item-selection .plan-panel {
    background: #f7f3e8;
    padding: 10px 40px;
    min-height: 120px;
    width: 100%;
    /* 線、パッディングを含める */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: table;
    overflow: hidden;
}
/* Firefoxのみ */
@-moz-document url-prefix() {
    .item-selection .plan-panel {
        padding: 25px 40px;
    }
}

/* プラン選択 */
.item-selection .plan-panel .selected-plan {
    width: 140px;
}
.item-selection .plan-panel .round-box {
    background: #ffa726;
    padding: 0px 0px;
    text-align: center;
    height: 40px;
    width: 140px;
}
.item-selection .plan-panel .round-box > span {
    color: #fff;
    font-size: 18px;
    line-height: 40px;
}

/* プラン */
.item-selection .plan-panel .plan {
    padding-left: 10px; /* 左にマージンを入れるため */
}
.item-selection .plan-panel .plan > p {
    font-size: 35px;
    word-wrap: break-word; /* 折り返し */
}

/* 選定理由/商品ガイドボタン */
.item-selection .plan-panel .links {
    width: 330px;
}
/* 片方のボタン用 */
.item-selection .plan-panel .links.one {
    width: 165px;
}
.item-selection .plan-panel .links .border-btn {
    float: left;
    text-align: right;
    margin: 0 2.5px;
}

.item-selection .plan-panel .links-inner{
  display: inline-block;
  width: 160px;
  margin: 0 2.5px;
}

.item-selection .plan-panel .links-inner .update-label{
  display: inline-block;
  padding-top: 5px;
  font-size: 0.8em;
}
/* 全コンテンツ */
.item-selection .plan-panel > * {
    display: table-cell;
    vertical-align: middle;
}

/* PDFコンテンツ */
.item-selection table td > a > img,
.item-selection table td > a > img {
    display: block;
    margin: 0 auto;
}

/* DCシミュレーションコンテンツ */
.item-selection .dc-simulation {
    padding: 0 40px;
    margin-bottom: 20px;
}
/* 説明 */
.item-selection .dc-simulation .description {
    text-align: center;
    padding: 10px 0;
}
/* ボタン */
.item-selection .dc-simulation .border-btn {
    width: 450px;
    margin: 0 auto 10px;
}
.item-selection .dc-simulation p:last-child {
    display: none;
}

/* テーブルヘッダー (投資対象)改行防止 */
.item-selection table.tablesorter thead .header-2columns {
    width: 160px;
}

/**************************************
    商品詳細
***************************************/

/* コンテンツ */
.item-detail .contents {
    padding: 20px 0 0;
}
.item-detail .contents > section {
    margin: 0 40px 30px;
}

/* チャート */
.item-detail .chart {
    /*margin: 0 10px;*/
}
.item-detail .chart-area {
  width: 100%;
  margin: 20px 0 10px 0;
}
.item-detail .chart-area .chart-group {
    width: calc(100% - 200px);
    float: left;
}
.item-detail .chart-area .chart {
    height: 500px;
}
.item-detail .chart-area .indexchart {
    height: 350px;
    margin-bottom:10px;
}
.item-detail .chart-area .oestablishchart {
    height: 150px;
    margin-bottom:10px;
}
.item-detail .chart-area .chart-setting {
    width: 185px;
    margin: 0 0 0 15px;
    float: right;
}

/* 虫眼鏡アイコン */
.item-detail .chart-area .chart-group .magnify.icon {
    z-index: 5;
    right: 15px;
    margin-top: 10px;
    width: 20px;
    height: 20px;
}

/* ボタン */
.item-detail .contents-footer .border-btn {
    display: none;
}

/* 追加表示ボタン */
.item-detail .contents .footer {
    text-align: center;
}
.item-detail .contents .footer .border-btn {
    display: inline-block;
    width: 300px;
}
.item-detail .contents .footer .border-btn.arrow-down a::after {
    top: auto;
    bottom: 5px;
    margin: 0 auto;
}
.item-detail .contents .footer .border-btn.arrow-up a::before {
    top: 5px;
    bottom: auto;
    margin: 0 auto;
}

/* 商品情報セクション */
.item-detail .contents section.section-item-info {
    margin: 0 0 30px;
}
/* 商品選択 */
.item-detail .selection-bar {
    background: #f7f3e8;
    display: inline-block;
    width: 100%;
    padding: 10px 40px;
    margin-bottom: 2px;
}
/* プラン選択 */
.item-detail .selection-bar .round-box {
    display: inline-block;
    background: #ffa726;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    width: 140px;
    color: #fff;
    line-height: 40px;
    margin-right: 10px;
}
.item-detail .selection-bar .info {
    display: inline-block;
    vertical-align: middle;
}
.item-detail .selection-bar .info > * {
    display: block;
    line-height: 20px;
}
.item-detail .selection-bar .info > *:last-child {
    font-weight: 400;
}

/* 商品情報 */
.item-detail .item-info {
    background: #f7f3e8;
    width: 100%;
    padding: 30px 40px;
}
.item-detail .item-info .item-name {
    font-size: 2em;
    font-weight: 700;
}
.item-detail .item-info > * {
    font-weight: 400;
    line-height: 1.5em;
}
.item-detail .item-info > p:last-child {
    margin-top: 30px;
}
.item-detail .item-info > p > span {
    margin-right: 20px;
}

/* PDFコンテンツ */
.item-detail .pdf-contents .pc table {
    width: 100%;
}
.item-detail .pdf-contents .pc table.auto-table {
    width: auto;
}
.item-detail .pdf-contents .pc th {
    text-align: center;
}
.item-detail .pdf-contents .pc td {
    vertical-align: middle;
    text-align: left;
    /* width: 450px; */
}
/* 最新目論見書 */
/* 商品ガイド */
.item-detail .pdf-contents th[class="004"],
.item-detail .pdf-contents td[class="004"],
.item-detail .pdf-contents th[class="501"],
.item-detail .pdf-contents td[class="501"] {
    width: 360px;
}
/* 月次レポート */
.item-detail .pdf-contents td[class="003"] {
    width: 360px;
}
.item-detail .pdf-contents .pc td > * {
    display: inline-block;
}
.item-detail .pdf-contents .pc td p > * {
    text-align: left;
    line-height: 20px;
}
.item-detail .pdf-contents .pc td p > a {
    text-decoration: underline;
    font-weight: 700;
    /* ステータスアイコンを回り込ませるため */
    display: inline-block;
    width: auto;
}
.item-detail .pdf-contents .pc td p > small {
    display: block;
}

/* 汎用アイコン */
.item-detail .pdf-contents .pc td p > .new,
.item-detail .pdf-contents .pc td p > .update {
    line-height: 14px;
    text-align: center;
    margin-left: 5px;
}
/* 月次レポートのみ */
.item-detail .pdf-contents td[class="003"] p {
    display: block;
    width: 50px;
    margin: 0 auto;
}
.item-detail .pdf-contents .pc td[class="003"] p > .new,
.item-detail .pdf-contents .pc td[class="003"] p > .update {
    margin-left: 0;
    min-width: 50px;
    /* 線、パッディングを含める */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.item-detail .pdf-contents td[class="003"] p > a > img {
    position: relative;
    top: auto;
    left: 0;
}
.item-detail .pdf-contents .pc td::before {
    content: url(../images/icon-pdf.svg);
    display: inline-block;
    width: 50px;
    height: 50px; /* IE対応 */
    position: relative;
    top: calc(50%);
    margin-right: 10px;
}
/* 月次レポートの場合 */
.item-detail .pdf-contents .pc td[class="003"]::before {
    content: "";
    width: 0;
    height: 0;
}

.item-detail ol {
    line-height: 1.6em;
  /*  font-size: 13px;*/
}

/* 運用方針および特色 */
.item-detail .section1 ol {
    list-style-type : decimal;
    padding: 0 10px 10px 20px;
}

/* 利益の見込み/損失の可能性 */
.item-detail .section2 th {
    width: 20%;
}

/* 重要事項　等 */
.item-detail .section3 th {
    width: 20%;
}

/* ファンド概要 */
.item-detail .section4 th {
    width: 20%;
}

/* 決算情報 */
.item-detail .section5 th {
    text-align: center;
}
.item-detail .section5 tr > td:first-child {
    text-align: left;
}
.item-detail .section5 tr > td {
    text-align: right;
}

/* 手数料　等 */
.item-detail .section6 th {
    width: 20%;
}

/* 運用履歴 */
.item-detail .section8 table {
    margin-bottom: 10px;
}
.item-detail .section12 th,
.item-detail .section8 th {
    text-align: center;
   /* font-size: 0.6em;*/
}
.item-detail .section8 td {
    text-align: right;
}

/* 特色 */
.item-detail .section9 ol {
    padding: 10px 10px 10px 10px;
}

/* 概要 */
.item-detail .section10 th {
    width: 20%;
}

/* 保険金額のお支払 */
.item-detail .section11 th {
    width: 20%;
}

/* 利率の推移 */
.item-detail .section12 table caption {
    text-align: left;
    font-size: 0.8em;
}
.item-detail .section12 table {
    margin-bottom: 10px;
}

/* 特色 */
/* 利息の計算/お支払*/
.item-detail .section9 ol,
.item-detail .section13 ol {
    list-style-type : square;
}
.item-detail .section13 ol {
    padding: 0 0 0 30px;
}
.item-detail .section13 th {
    width: 20%;
}

/* 表示・非表示制御対象 */
.item-detail .toggle {
    display: none;
}

.item-detail span.lastrate {
    margin-right: 20px;
}
/**************************************
    DC Plan シミュレーション
***************************************/

/* シミュレーションのご注意事項 */
.simulation-header {
    padding: 20px 40px;
}
.simulation-header .description {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
}
.simulation-header .link.arrow-right {
    display: block;
    float: right;
    width: 300px;
}

/**************************************
    利用規約
***************************************/

/* コンテンツ */
.user-policy .contents {
    text-align: center;
}

/* 利用規約文言 */
.user-policy .contents .scroll-box {
    display: inline-block;
    text-align: left;
    overflow-y: scroll;
    height: 400px;
    width: 70%;
    padding: 30px;
    margin-bottom: 20px;
    border: 2px solid #eee;
}
.user-policy .contents .scroll-box span {
    line-height: 20px;
}

/* ボタン */
.user-policy .contents-footer .border-btn {
    width: 280px;
    margin: 0 auto 10px;
}

/**************************************
    リスク許容度診断ページ
***************************************/

/* コンテンツ */
.risk-torelance .contents {
    padding: 0 40px;
    font-size: 16px;
}

/* メッセージ枠 */
.risk-torelance .msg-frame {
    margin: 0 0 20px;
}

/* ボックスコンテンツ */
.risk-torelance .contents .box {
    margin-bottom: 40px;
}
.risk-torelance .contents .box .box-header {
    padding: 20px;
    text-align: left;
}
.risk-torelance .contents .box .box-header .box-header-title.round-box {
    margin-right: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
}
/* 投資スタイル診断コンテンツ */
.risk-torelance .contents > .box.style-box {
    margin-bottom: 30px;
}

/* 次の画面に進む */
.risk-torelance .footer {
    text-align: center;
}
.risk-torelance .footer .border-btn {
    display: inline-block;
    width: 200px;
    height: 50px;
}

/* 項目名 */
.risk-torelance .precondition-wrap .item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.risk-torelance .precondition-wrap .item:last-child {
    border-bottom: none;
}

/* 設問文言 */
.risk-torelance .precondition-wrap .item .text {
    font-size: 14px;
    padding: 10px 0;
    text-align: left;
    margin: 0 30px;
}

.risk-torelance .precondition-wrap .item .input-box {
    display: inline-block;
    width: 380px;
    font-weight: bold;
}
.risk-torelance .precondition-wrap .item .input-box .label {
    display: inline-block;
    width: 150px;
    text-align: right;
    margin-right: 20px;
}
.risk-torelance .precondition-wrap .item .input-box .unit {
    display: inline-block;
    line-height: 1.2px;
    vertical-align: middle;
    margin-top: -10px;
}

/* テキストボックス */
.risk-torelance .precondition-wrap .item .input-box input {
    width: 4em;
    padding: 5px;
    border: none;
    background: #f7f3e8;
    font-size: 32px;
    text-align: center;
}

/*=== スライダー ===*/
.risk-torelance .precondition-wrap .item .slider-box {
    display: inline-block;
    width: calc(100% - 344px);
    vertical-align: super;
    font-size: 8px;
}
/* 最小値・最大値 */
.risk-torelance .precondition-wrap .item .slider-box .min,
.risk-torelance .precondition-wrap .item .slider-box .max {
    display: inline-block;
    width: 6em;
    font-size: 2em;
    vertical-align: middle;
}
.risk-torelance .precondition-wrap .item .slider-box .min {
    text-align: right;
}

/* バー */
.risk-torelance .precondition-wrap .item .slider-box .slider {
    /* スライダーの太さ(基準値) */
    font-size: 10px;
    /*font-size: 1.0em;*/
    display: inline-block;
    width: calc(100% - 30em);
    height: .5em;
    margin: 30px;
    vertical-align: middle;
    background: #eee;
    border: none;
    border-radius: .5em;
    position: relative;
    vertical-align: middle;
}
/* 進行中のバー */
.risk-torelance .precondition-wrap .item .slider-box .slider .ui-slider-range {
    height: 100;
    background: #eee;
    border-radius: .5em;
}
/* つまみ部分 */
.risk-torelance .precondition-wrap .item .slider-box .slider .ui-slider-handle {
    width: 3.3em;
    height: 3.3em;
    border: none;
    background: #777777;
    border-radius: 50%;
    position: absolute;
    top: -1.4em;
    margin-left: -1.4em;
    outline: none;
}
/* 吹き出し */
.risk-torelance .precondition-wrap .item .slider-box .slider .ui-slider-handle .handle-balloon {
    position: absolute;
    top: -1.4em;
    width: calc(100% * 5);
    left: calc(-100% * 2);
    text-align: center;
    color: #777;
    font-weight: 700;
    font-size: 16px;
}

/* チェックボックス 枠 */
/* ラジオボタン 枠 */
.risk-torelance .precondition-wrap .item fieldset {
    border: 1px solid #eee;
    padding: 10px;
    margin: 0 30px 20px;
    text-align: left;
}
/* 設問タイトル */
.risk-torelance .precondition-wrap .item fieldset > legend {
    font-weight: bold;
}
/* チェックボックス */
/* ラジオボタン */
.risk-torelance .precondition-wrap .item fieldset > label {
    position: relative;
    display: inline-block;
    line-height: 25px;
    margin: 3px 0 0 30px;
}
.risk-torelance .precondition-wrap .item fieldset > label > span {
    margin-right: 3px;
}
.risk-torelance .precondition-wrap .item fieldset > label > input:checked + span {
    background: #f7f3e8;
    font-weight: bold;
}
/* ラジオボタンのみ */
.risk-torelance .precondition-wrap .item fieldset.radio-box > label {
    display: table /* ブロック要素で要素可変を実現するため */;
    margin: 3px 30px 0;
}

/**************************************
    診断結果
***************************************/

.diagnosis .contents {
    padding: 0 40px;
    font-size: 16px;
    text-align: center;
}

/* メッセージ枠 */
.diagnosis .msg-frame {
    margin: 0 0 20px;
}

.diagnosis .section-box {
    display: inline-block;
    text-align: left;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 80%;
}
/* セクションボックス TOP */
.diagnosis .section-box .section-top {
    padding: 20px;
}
/* あなたの投資スタイル */
.diagnosis .section-box .section-top .your-investment-style {
    border: 2px solid #777;
    width: 140px;
    padding: 20px 10px;
    text-align: center;
    vertical-align: top;
}
.diagnosis .section-box .section-top .your-investment-style > span {
    color: #777;
    line-height: 1em;
    letter-spacing: 2px;
}
.diagnosis .section-box .section-top .your-investment-style > span:first-child {
    display: block;
}

/* タイプ */
.diagnosis .section-box .section-top .your-type {
    height: 100%;
    width: calc(100% - 140px - 10px - 20px - 4px); /* 投資スタイル - マージン - パディング - ボーダー */
    margin-left: 10px;
}
.diagnosis .section-box .section-top .your-type > p:first-child {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}
.diagnosis .section-box .section-top .your-type > p:first-child > small {
    font-size: .7em;
}
/* タイプ説明 */
.diagnosis .section-box .section-top .your-type > p.your-type-description {
    font-weight: 400;
    line-height: 1.5em;
}
/* セクション */
.diagnosis .section-box section {
    margin: 0;
}
.diagnosis .section-box section > h1 {
    background: #e6e6e6;
    text-align: center;
    padding: 20px 0;
    border: none;
    margin: 0;
}
/* セクションコンテンツ */
.diagnosis .section-box section > .section-contents {
    padding: 20px;
}
.diagnosis .section-box section > .section-contents > .section-description {
    margin-bottom: 20px;
}

/* リスク許容度 */
.diagnosis .section-box section.section1 > .section-contents .risk {
    padding: 40px 0 20px;
    text-align: center;
}
.diagnosis .section-box section.section1 > .section-contents ul {
    text-align: center;
    margin-bottom: 10px;
}
.diagnosis .section-box section.section1 > .section-contents li {
    display: inline-block;
    margin-right: 20px;
}
.diagnosis .section-box section.section1 > .section-contents li:last-child {
    margin-right: 0;
}
.diagnosis .section-box section.section1 > .section-contents li > input {
    display: none;
}
/* チェック時 */
.diagnosis .section-box section.section1 > .section-contents li > input:checked + label {
    color: #fff;
}
/* チェック時：１ */
.diagnosis .section-box section.section1 > .section-contents li:nth-child(1) > input:checked + label {
    background: #3498ca;
}
/* チェック時：２ */
.diagnosis .section-box section.section1 > .section-contents li:nth-child(2) > input:checked + label {
    background: #4c80cb;
}
/* チェック時：３ */
.diagnosis .section-box section.section1 > .section-contents li:nth-child(3) > input:checked + label {
    background: #6567cc;
}
/* チェック時：４ */
.diagnosis .section-box section.section1 > .section-contents li:nth-child(4) > input:checked + label {
    background: #b3669a;
}
/* チェック時：５ */
.diagnosis .section-box section.section1 > .section-contents li:nth-child(5) > input:checked + label {
    background: #fe6665;
}
/* レベル */
.diagnosis .section-box section.section1 > .section-contents li > label {
    display: inline-block;
    line-height: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #efefef;
    cursor: pointer;
    position: relative;
}
/* 診断結果 */
.diagnosis .section-box section.section1 > .section-contents li > label > span {
    display: none; /* 初期状態が非表示なため */
    position: absolute;
    top: -35px;
    left: -10px;
    width: 60px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    font-size: 0.7em;
    background: #777;
}
/* 診断結果 */
.diagnosis .section-box section.section1 > .section-contents li > label > span.selected {
    display: block;
}
/* 三角 */
.diagnosis .section-box section.section1 > .section-contents li > label > span.selected:after {
    content: "";
    border: 4px solid transparent;
    border-top: 5px solid #777;
    position: absolute;
    right: 44%;
    bottom: -9px;
}

/* レベル単位 */
.diagnosis .section-box section.section1 > .section-contents .risk .level {
    display: inline;
}
/* LOW */
.diagnosis .section-box section.section1 > .section-contents .risk .level > .low {
    display: inline-block;
    color: #3498ca;
    text-align: right;
    width: 50px;
}
/* レベルボーダー */
.diagnosis .section-box section.section1 > .section-contents .risk .level > .level-border {
    display: inline-block;
    width: 220px;
    height: 1px;
    background: linear-gradient(to right, #3498ca, #4c80cb, #6567cc, #b3669a, #fe6665);
    vertical-align: middle;
    margin: 0 10px;
}
/* HIGH */
.diagnosis .section-box section.section1 > .section-contents .risk .level > .high {
    display: inline-block;
    color: #fe6665;
    text-align: left;
    width: 50px;
}

/* 資産配分 */
.diagnosis .section-box section.section2 > .section-contents .asset-allocation {
    height: 400px;
}

/* 過去20年の結果 */
/* テーブル関連 */
.diagnosis .section-box section.section3 table,
.diagnosis .section-box section.section3 tr,
.diagnosis .section-box section.section3 td,
.diagnosis .section-box section.section3 th {
    border: none;
}
.diagnosis .section-box section.section3 th {
    padding: 0;
}
.diagnosis .section-box section.section3 td {
    padding: 0;
}

/* 将来の予測 */
.diagnosis .section-box section.section4 > .section-contents > .table-contents {
    height: 210px;
}
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table {
    width: 50%;
    float: left;
    height: 100%;
}
/* パターンテーブル */
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table.pattern-table {
    width: calc(50% - 20px);
    margin-right: 20px;
}
/* 結果テーブル */
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table.result-table tr {
    height: 50%;
}
/* 項目セル */
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table.result-table .result-table-header {
    background: #777;
    color: #fff;
    font-weight: 700;
}
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table.result-table .cell {
    font-weight: 700;
    font-size: 1.5em;
}
/* 達成度 */
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table.result-table .result-table-cell-achievement {
}
.diagnosis .section-box section.section4 > .section-contents > .table-contents > table.result-table .result-table-cell-achievement > img {
    margin-right: 10px;
    vertical-align: middle;
    text-align: center;
}
/* フッター */
.diagnosis .footer {
    text-align: center;
}
.diagnosis .footer .border-btn {
    display: inline-block;
    width: 300px;
}

/**************************************
    商品シミュレーション
***************************************/

/* コンテンツ */
.simulation .contents {
    padding: 0 40px;
}

/* メッセージ枠 */
.simulation .msg-frame {
    margin: 0 0 20px;
}

.simulation .simulation-setting {
    width: 100%;
    padding: 0 0 20px;
    text-align: center;
}

.simulation .simulation-setting ul,
.simulation .simulation-setting li {
    display: inline-block;
}
.simulation .simulation-setting ul {
    width: 90%;
}
.simulation .simulation-setting li {
    text-align: center;
    margin-left: 10px;
    background: #eee;
    width: 15%;
    border-radius: 20px;
    font-size: 12px;
}
.simulation .simulation-setting li > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #333;
    text-decoration: none;
    padding: 10px;
}
/* 選択状態 */
.simulation .simulation-setting li.selected {
    background: #777;
}
.simulation .simulation-setting li.selected > a {
    color: #fff;
}
.simulation .simulation-setting li:first-child {
    background: none;
    width: auto;
}

/* テーブル */
.simulation table th {
    text-align: center;
}

/**************************************
    公的年金受給額シミュレーション
***************************************/

/* 選択した職業 */
.selected-occupation {
    display: table;
}
.selected-occupation > * {
    display: table-cell;
    vertical-align: middle;
}
.selected-occupation > img {
    margin-right: 30px;
}
.selected-occupation > p {
    font-size: 24px;
}
.selected-occupation p > span {
    font-size: 2.0em;
    line-height: 1.5em;
}
.selected-occupation p > small {
    font-size: 1em;
    line-height: 1.5em;
}

/**************************************
    職業選択
***************************************/

/* 職業選択リスト */
.occupation-selection .type-list li {
    min-width: 300px;
    width: 300px;
    height: 300px;
}
.occupation-selection .type-list li label > div {
    padding: 0;
}
.occupation-selection .type-list p.text {
    display: none;
}
.occupation-selection .type-list > div {
    height: 100%;
    padding: 0;
}
.occupation-selection .type-list li :checked + label {
    border: 3px solid #777;
}
.occupation-selection .type-list li :checked + label > div {
    border: none;
}
/* 矢印 */
.occupation-selection .type-list .arrow-right::before {
    top: 44%;
    right: 12px;
}
.occupation-selection .type-list .arrow-right::after {
    top: 49%;
    right: 28px;
}

/**************************************
    年金計算条件入力
***************************************/

/* コンテンツ */
.enter-calc-conditions .contents {
    padding: 0 40px;
}

.enter-calc-conditions .input-wrap {
    margin-bottom: 20px;
}
.enter-calc-conditions .input-wrap .box {
    width: calc(50% - 10px);
    float: left;
    margin-bottom: 20px;
}
.enter-calc-conditions .input-wrap .box:first-child {
    margin-right: 20px;
    margin-bottom: 0;
}
.enter-calc-conditions .input-wrap .box-content {
    padding: 10px;
    font-weight: 400;
}

/* 入力項目 */
.enter-calc-conditions .input-wrap .box-content p {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: table;
    width: 100%;
}
.enter-calc-conditions .input-wrap .box-content p > * {
    display: table-cell;
    vertical-align: middle;
}
.enter-calc-conditions .input-wrap .box-content p:last-child {
    border-bottom: none;
}
.enter-calc-conditions .input-wrap .box-content p > span:first-child {
    width: 20%;
    padding-right: 0px;
}
.enter-calc-conditions .input-wrap .box-content p > span:last-child {
    padding-right: 0px;
}
.enter-calc-conditions .input-wrap .box-content p > span {
    width: auto;
    padding-right: 5px;
}
.enter-calc-conditions .input-wrap .box-content p > span.link.arrow-right {
    width: 190px;
}
.enter-calc-conditions .input-wrap .box-content p > span.link.arrow-right a {
    text-decoration: none;
    width: 100%;
}
/* IEのみ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .enter-calc-conditions .input-wrap .box-content p > span.link.arrow-right::after {
        margin-top: 13px;
    }
}
.enter-calc-conditions .input-wrap .box-content p > label {
    padding-right: 5px;
}

.enter-calc-conditions .input-wrap .box-content p > label > input {
    text-align: center;
}

/* 就職年齢 */
/* 退職年齢 */
/* 年金の受給開始時期 */
/* 想定寿命 */
.enter-calc-conditions .input-wrap .box-content label.select-label.age {
    width: 70%;
}

/* フッター */
.enter-calc-conditions .footer {
    text-align: center;
}
.enter-calc-conditions .footer .border-btn {
    display: inline-block;
    width: 300px;
}

/**************************************
    シミュレーション結果
***************************************/

/* コンテンツ */
.pension-simulation .contents {
    padding: 0 40px;
}

/* メッセージ枠 */
.pension-simulation .msg-frame {
    margin: 0 0 20px;
}

/* 年金受給額推移 */
.pension-simulation .transition.box {
    margin-bottom: 20px;
}

/* 年金受給額詳細コンテンツ */
.pension-simulation .detail-contents {
    margin-bottom: 20px;
    text-align: center;
}
.pension-simulation .detail-contents .box {
    display: inline-block;
    margin-left: 20px;
    width: calc(50% - 24px);
    height: 100%;
}
.pension-simulation .detail-contents .box:first-child {
    margin-left: 0;
}

.pension-simulation .box .box-content {
    padding: 10px;
}

/* 年金受給額詳細 */
.pension-simulation .box .box-content .info {
    margin-bottom: 10px;
}
.pension-simulation .box .box-content .info th {
    text-align: center;
    width: 50%;
}
.pension-simulation .box .box-content .info td {
    text-align: center;
    width: auto;
}
/* 要素 */
.pension-simulation .box .box-content tbody td {
    text-align: right;
    width: 50%;
}
/* 項目 */
.pension-simulation .box .box-content tbody td.header {
    background: #eee;
    text-align: left;
}

/* フッター */
.pension-simulation .footer {
    text-align: center;
}
.pension-simulation .footer .border-btn {
    display: inline-block;
    width: 300px;
}
table.salarylist {
    margin-left: 0em !important;
    table-layout: fixed;
}
table.salarylist td{
    padding: 10px 6px !important;
    text-align: center;
}
table.salarylist td.average{
    background-color: #FFFAF0;
    font-weight: 700;
}
table.result-table {
    table-layout: fixed;
}

body.user-policy div.box-sizing.scroll-box section h1{
    border-left: none !important;
    padding-left: 0px !important;
}

body.item-detail ol,body.item-detail ul,body.item-detail li{
  line-height: normal;
}

div.simulation-term-setting > dl > dt {
    padding-bottom: 5px;
}

body.item-detail div.contents li {
    font-size: 14px;
}
/**************************************
    ご利用ガイド
***************************************/

.useguide .contents .box {
    display: block;
    width: 70%;
    margin: 0 auto 30px;
}

.useguide .box .box-header {
  text-align: left;
  padding: 20px;
}

.useguide .box .box-content {
    padding: 20px;
}
.useguide .box-content p {
    line-height: normal;
}
/**************************************
    商品案内
***************************************/

/* コンテンツ */
.itemguide .contents
,.myplan .contents {
    padding: 0 40px;
    text-align: center;
}

/* メッセージ枠 */
.itemguide .msg-frame
,.myplan .msg-frame {
    margin: 0 0 20px;
}

.itemguide .contents .box
,.myplan .contents .box {
    display: inline-block;
    width: 70%;
    margin-bottom: 30px;
}
.itemguide .contents .box-form .box-content
,.myplan .contents .box-form .box-content {
  padding: 30px 0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.itemguide .contents .box .box-content .box-plancode
,.myplan .contents .box .box-content .box-plancode {
    /*display: inline-block;*/
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.itemguide .contents .box .box-content .box-plancode > *
,.myplan .contents .box .box-content .box-plancode > * {
    display: inline;
    vertical-align: middle;
}
.itemguide .contents .box .box-content .box-plancode > label
,.myplan .contents .box .box-content .box-plancode > label {
    font-size: 16px;
    display: inline-block;
    margin-right: 10px;
}
.itemguide .contents .box .box-content .box-plancode > input
,.myplan .contents .box .box-content .box-plancode > input {
    width: 60%;
    text-align: center;
}
.itemguide .contents .box .box-content .border-btn
,.myplan .contents .box .box-content .border-btn {
    width: 200px;
    margin: 0 auto;
}

.itemguide .contents .box.column2-box
,.myplan .contents .box.column2-box {
    display: flex;
    margin: 0 auto 30px;
    width: 100%;
}

.itemguide .contents .box.column2-box .box-header
,.myplan .contents .box.column2-box .box-header{
  flex: 1;
}

.itemguide .contents .box.column2-box .box-content
,.myplan .contents .box.column2-box .box-content{
  flex: 4;
}
