@charset "UTF-8";

body {
    color: #666;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    font-size: 80.5%;
    line-height: 150%;
    letter-spacing: 0.1em;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px; 
    box-sizing: border-box;
}

.frame_outer {
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

#header_wrap {
    /* border-bottom: solid 3px #f08300; */
    min-height: 97px;
    background: url(../img/bg_header.jpg) repeat-x bottom #ab8a67;
    /* background-color: #e48d2f; */
}

#header {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.clearfix {
    display: block;
}

#logo_area {
    position: relative;
    width: 390px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
}

#site_description {
    font-size: 90%;
}

#container {
    margin: 0 auto;
    padding: 0 0 10px;
    width: 1020px;
    background: #fff;
    text-align: left;
}

.clearfix {
    display: block;
}

#main_column.colnum1 {
    margin: 0 auto;
    width: 95%;
    padding-top: 30px;
}

#main_column {
    padding: 10px 0 0;
}

#undercolumn {
    width: 100%;
    margin: 0 0 30px 0;
}

div#undercolumn_entry {
    width: 100%;
}

h2.h2_entry_login {
    width: 950px;
    height: 56px;
    margin-bottom: 10px;
    padding: 2px 5px;
    background: url(../img/h2_login_card.jpg) no-repeat center;
    font-size: 1.1em;
    text-indent: -9999px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}

h2.h2_entry_index {
    width: 950px;
    height: 56px;
    margin-bottom: 10px;
    padding: 2px 5px;
    background: url(../img/h2_entry_index.jpg) no-repeat center;
    font-size: 1.1em;
    text-indent: -9999px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}

h2.h2_entry_confirm {
    width: 950px;
    height: 56px;
    margin-bottom: 10px;
    padding: 2px 5px;
    background: url(../img/h2_entry_confirm.jpg) no-repeat center;
    font-size: 1.1em;
    text-indent: -9999px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}

h2.h2_entry_complete {
    width: 950px;
    height: 56px;
    margin-bottom: 10px;
    padding: 2px 5px;
    background: url(../img/h2_entry_complete.jpg) no-repeat center;
    font-size: 1.1em;
    text-indent: -9999px;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
}

div#entry_main {
    width: 780px;
    margin: 20px auto;
}

div#entry_img {
    width: 640px;
    margin: 30px auto;
}

/* フォーム全体を囲む親要素に Flexbox を適用 */
.ec-tenpo {
    display: flex; /* 横並びの基本設定 */
    gap: 15px;     /* 要素間の間隔（必要に応じて調整してください） */
    align-items: flex-start; /* フォームの高さが異なっても上端を揃える */
    /* または flex-start ではなく center や stretch も選択できます */
}

/* 各フォーム要素（ec-select）の幅を調整 */
.ec-tenpo > .ec-select, .ec-birthday > .ec-selec{
    /* 均等に幅を分けたい場合 */
    /* flex-grow: 1; */
    /* 幅を固定したい場合（例: 3つを横に並べるので約30%に） */
    width: 30%; 
}

.ec-birthday {
    display: flex;
    align-items: center;
    gap: 12px; /* ← 各セットの間隔 */
}

.birthday-set {
    display: flex;
    align-items: center;
    gap: 1px; /* ← フォームと文字の間隔 */
}


.form{
    border: solid 1px #EF8300;
    padding: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.tenpo-select-form{
    border: solid 1px #EF8300;
}

.box300{
    width: 300px;
}

.box150{
    width: 150px;
}

.box70{
    width: 70px;
}

.top{
    margin-top: 10px;
}

.address-btn {
    display: inline-block;
    background-color: #f3f3f3;
    color: #000;
    border: 0.5px solid #8c8b8b;
    border-radius: 6px;    
    padding: 2px 6px;          
    text-decoration: none; 
}


.mini {
    font-size: 90%;
}

.mini_address {
    font-size: 90%;
}

.mini_change {
    font-size: 90%;
    margin-top: 5px;
}

.attention {
    color: #f00;
}

table {
    margin: 15px auto 20px auto;
    border-top: 1px solid #E9DDD0;
    border-left: 1px solid #E9DDD0;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

table th {
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid #E9DDD0;
    color: #000;
    background-color: #FEFAF4;
    font-weight: bold;
}

table td {
    padding: 10px;
    color: #000;
    border-right: 1px solid #E9DDD0;
    border-bottom: 1px solid #E9DDD0;
    background-color: #FEFAF4;
}

.ec-radio-choices {
    width: 100%;
}

.ec-radio--vertical .radio-row {
    display: flex;
    margin-bottom: 8px;
}

.ec-radio--vertical input[type="radio"] {
    margin-right: 4px;
}

.ec-radio--vertical .radio-row label {
    display: inline-block;      /* ラベルも横並びになるようにする */
    margin: 0;                  /* 不要な余白リセット */
}

.btn_area {
    margin: 30px 0 50px 0;
    width: 100%;
    text-align: center;
}

.bkbtn_area {
    height: 100%;
    margin: 10px 0;
    /* width: 240px; */
    text-align: left;
}

.mainbtn_area {
    height: 100%;
    margin: 10px 0 30px 0;
    width: 520px;
    text-align: left;
}

.custom-back-button {
    width: 122px;
    height: 40px;
    color: #000000;
    border: 1px solid #999999; 
    background-color: #ffffff;
    font-size: 16px; 
    cursor: pointer; 
    display: block;  
    text-align: center;
    border-radius:5px;
}

.float-left {
    float: left;
}

.img-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    cursor: pointer;
}

.img-button_login {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    cursor: pointer;
}

.img-button_change {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    cursor: pointer;
}

.img-button_confirm {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    cursor: pointer;
}

.img-button_complete {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    cursor: pointer;
}

.img-button_login {
    width: 320px;
    height: 56px;
    color: #ffffff;
    border: 2px solid #f8922d; 
    background-color: #ff8c08;
    font-size: 20px; 
    cursor: pointer; 
    display: block;  
    text-align: center;
    border-radius:5px;
    margin: 0 auto;
    font-weight: bold;
}

.img-button_change {
    width: 320px;
    height: 56px;
    color: #ffffff;
    border: 2px solid #f8922d; 
    background-color: #ff8c08;
    font-size: 20px; 
    cursor: pointer; 
    display: block;  
    text-align: center;
    border-radius:5px;
    margin: 0 auto;
    font-weight: bold;
}

.img-button_confirm {
    width: 490px;
    height: 120px;
    color: #ffffff;
    border: 2px solid #f8922d; 
    background-color: #ff8c08;
    cursor: pointer; 
    display: block;  
    text-align: center;
    border-radius:5px;
    margin: 0 auto;
    font-weight: bold;
}

.img-button_complete {
    width: 320px;
    height: 56px;
    color: #000000;
    border: 1px solid #999999; 
    background-color: #ffffff;
    font-size: 20px; 
    cursor: pointer; 
    display: block;  
    text-align: center;
    border-radius:5px;
    margin: 0 auto;
}


.img-button_login:hover, .img-button_change:hover, .img-button_confirm:hover {
    opacity: 0.7; 
}

.custom-back-button:hover, .btn-back:hover, .img-button_complete:hover  {
    opacity: 0.5; 
}

.img-button_change img {
    display: block;
}

.img-button_confirm img {
    display: block;
}

#footer_wrap {
    position: absolute;
    bottom: 0;   
    margin: 0 auto;
    height: 85px;
    background: #fff;
    border-top: solid 1px #E9DDCF;
}

#footer {
    padding-top: 10px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

#header_wrap,
#footer_wrap {
    width: 100%;
}

#copyright {
    color: #573B32;
    width: 740px;
    margin: 0 auto;
    font-size: 98%;
}

.clearfix {
    display: block;
}

#cboxOverlay {
    background: #fff;
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
}

#colorbox, #cboxOverlay, #cboxWrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
}

#colorbox {
    outline: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

#cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
}

#cboxContent {
    margin-top: 32px;
    overflow: visible;
    background: #000;
}

#colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

#cboxContent {
    position: relative;
}

#cboxTitle {
    position: absolute;
    top: -22px;
    left: 0;
    color: #000;
}

#cboxTitle {
    margin: 0;
}

#cboxCurrent {
    position: absolute;
    top: -22px;
    right: 205px;
    text-indent: -9999px;
}


#cboxPrevious {
    background-position: 0px 0px;
    right: 44px;
}

#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    text-indent: -9999px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: -20px;
    background: url(./controls.png) no-repeat 0 0;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
}

input, textarea, select, button {
    font-size: 100%;
    font-family: inherit;
}

.ec-layoutRole .ec-layoutRole__contents {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: none;
  display: flex;
  flex-wrap: nowrap;
  flex-grow: 1;
}

.icon_help {
    height: 22px;
    vertical-align: middle;
    float: right;
}

a img, iframe {
    border: none;
}

.tooltip,
.tooltip {
    all: unset;
    box-sizing: border-box;
}

.tooltip {
    position: relative;
}

.tooltip .tooltip-text {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;

    background: #ececec;
    color: #000000;
    border: 1px solid #000;
    padding: 7px 7px;
    border-radius: 4px;
    font-size: 12px;

    bottom: 100%;        /* ← 画像の上に配置 */
    left: 50%;
    transform: translateX(0%);
    margin-bottom: 6px;  /* 画像との距離 */

    transition: opacity .2s;
    z-index: 1000;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.large {
    font-size: 120%;
}

.bold_bl {
    color: #000;
    font-weight: bold;
}

.margin-top_5 {
    margin-top: 5px;
}

/* .required {
    width: 50%;
    height: 22px;
    vertical-align: middle;
    float: right;
} */

.img_required {
    height: 22px;
    vertical-align: middle;
    float: right;
}
.ec-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%; 
}

.change-label2 {
    font-size: 10px;
}

.mainbtn_area {
    height: 100%;
    margin: 10px 0 30px 0;
    width: 520px;
    text-align: left;
}

div#entry_login_mainimg {
    width: 780px;
    margin: 12px auto 30px auto;
}

div#entry_login_mainimg img {
    width: 780px;
}

div#entry_complete_mainimg {
    width: 760px;
    margin: 12px auto 50px auto;
}

div#undercolumn_login .inputtext {
    display: inline;
}

.point {
    color: #f00;
    font-weight: bold;
    display: inline;
}

.mini {
    font-size: 90%;
}

div#undercolumn_login {
    margin: 0 auto;
    width: 100%;
}

div#undercolumn_login .login_area {
    margin-bottom: 30px;
}

div#undercolumn_login .login_area .inputbox {
    margin: 2px auto 15px auto;
    padding: 15px 0 10px 0;
    background: #fff;
}

#container .login_area dl.formlist {
    width: 760px;
    background-color: #FEFAF4;
    border: 1px solid #E9DDD0;
    border-top: none;
    overflow: hidden;
    height: 80px;
    font-size: 120%;
}

.clearfix {
    display: block;
}

dl, dt, dd {
    margin: 0;
    padding: 0;
}

#container .login_area dl.formlist dt {
    position: absolute;
    color: #000;
    font-weight: bold;
    float: left;
    border-top: 1px solid #E9DDD0;
    width: 180px;
    margin-top: -1px;
}

#container .login_area dl.formlist dt, #container .login_area dl.formlist dd {
    padding: 25px 10px 10px 20px;
}

#container .login_area dl.formlist dd {
    position: absolute;
    float: right;
    margin-left: 210px;
    width: 520px;
    border-top: 1px solid #E9DDD0;
    margin-top: -1px;
    height: 1%;
}

.attention {
    color: #f00;
}

element.style {
    display: inline-block;
}

div#card_img {
    margin: 30px 0;
}

.inputtext {
    display: inline;
}

.point {
    color: #f00;
    font-weight: bold;
    display: inline;
}

a:link, a:visited {
    /* color: #39c; */
    text-decoration: none;
}

/* 子要素（spanタグ）に対して再設定 */
.inputtext, .point, p span {
    font-size: 14px; /* 例: 本来表示したいサイズに戻す */
}

.no-break-wrapper {
    white-space: normal;
}

.text-line {
    display: block; 
}

/* .ec-off4Grid {
    all: revert;
} */

.ec-label {
    all: revert;
}

.change-label1 {
    display: block;
}

.ec-radio input {
    margin-right: 0px;
    margin-bottom: 0px;
}

.login-text {
    color: red;
    font-size: 75%;
    margin-top: 3px;
}

.checkbox_text {
    margin-top: 15px;
    font-size: 95%;
    color: #000000;
}

.ec-error-message {
    margin: 0;
    padding: 0;
    line-height: 0; /* 行の高さをゼロにして、テキストがない場合の縦幅を消す */
}

.ec-error-message p {
    margin-top: 4px;   /* 上部に適切な余白を設定 */
    padding-left: 0;
    line-height: 1; /* テキストが見えるように行の高さを戻す */
    color: #ff0000;  /* エラーテキストの色 (任意) */
    font-weight: bold;
}

.ec-off4Grid .ec-off4Grid__cell {
     all: revert;
}

/* .ec-off4Grid .ec-off4Grid__cell {
     margin: auto;
} */

/* .ec-off4Grid__pc {
     margin-left: 120px;
} */

.btn-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* .ec-off4Grid__pc_confirm {
    margin-left: 50px;
} */

.ec-RegisterRole__actions {
    justify-self: center;
}