@charset "UTF-8";
/* 2021　東都注文サイト　ログイン用テンプレート style.css */
/*カラム*/
.column .col-1, .column .col-2 {
 margin-bottom: 32px;
}
@media print, screen and (max-width: 959px) {
 .column {
  max-width: 660px;
  margin: 0 auto;
 }
}
@media print, screen and (min-width: 960px) {
 .column {
  display: flex;
  justify-content: space-between;
 }
 .column .col-1 {
  width: 50%;
 }
 .column .col-2 {
  width: 46%;
 }
}
/*見出し*/
h3.gline {
 padding: 20px 0;
 font-weight: bold;
 font-size: 1.3em;
 border-bottom: 2px solid #167300;
 color: #167300;
}
/*ログイン*/
.loginframe {
 background: #f2f7ee;
 padding: 24px 36px;
 border-radius: 8px;
 margin-bottom: 24px;
}
dl.mitouroku {}
dl.mitouroku dt {
 padding: 16px 0 8px;
 font-weight: bold;
 font-size: 1.1em;
 border-bottom: 2px solid #167300;
 color: #167300;
}
dl.mitouroku dd {
 padding: 16px 0 32px;
}
dl.forminput {
 margin-bottom: 1em;
}
dl.forminput dt {
 padding: .5em 0 .5em;
 text-align: left;
 font-weight: bold;
 color: #167300;
}
dl.forminput dd {
 padding: 0;
}
dl.forminput dd.pw {
 position: relative;
}
/*-----------------------パスワードを表示アイコン----------------------*/
.btn-show-pass {
 font-size: 15px;
 color: #999;
 display: -webkit-box;
 display: -webkit-flex;
 display: -moz-box;
 display: -ms-flexbox;
 display: flex;
 align-items: center;
 position: absolute;
 height: 100%;
 top: 0;
 right: 12px;
 padding: 0 5px;
 cursor: pointer;
 -webkit-transition: background 0.4s;
 -o-transition: background 0.4s;
 -moz-transition: background 0.4s;
 transition: background 0.4s;
 z-index: 10;
}
.btn-show-pass:hover {
 color: #57b846;
}
.btn-show-pass.active {
 color: #57b846;
}
.qlink {
 padding: 16px 8px;
 text-align: center;
 font-size: .9em;
}
.qlink i {
 font-size: 1.2em;
 margin-right: 3px;
}
.qlink2 {
 padding: 0 0 32px;
 font-size: .9em;
 /*text-align: center;*/
}
.qlink2 a {
 display: inline-block;
 padding: 6px 24px;
 border-radius: 48px;
 background: #519E28;
 color: #fff;
}
.qlink2 a:hover {
 background: rgba(81, 158, 40, 0.59);
}
.qlink2 i {
 margin-right: 3px;
}
/*フォーム設定　iOS対策*/
input, textarea {
 box-sizing: border-box;
 -moz-box-sizing: border-box;
 -webkit-box-sizing: border-box;
 -webkit-appearance: none;
 max-width: 100%;
}
/*フォーム設定*/
input, button, textarea, select {
 font-size: 1em;
 color: #111;
}
input, button, textarea, select {
 font-family: 'Inter', 'Noto Sans JP', '游ゴシック体', 'YuGothic', '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="password"] {
 line-height: 1;
}
textarea {
 height: 7em;
}
input[type="text"], input[type="tel"], input[type="email"], input[type="password"], textarea {
 margin: 0;
 border-radius: 0;
 outline: none;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 border: 1px solid #ccc;
 -webkit-transition: all .2s;
 transition: all .2s;
 padding: 12px 10px;
 width: 100%;
 background: #fff;
}
input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
 box-shadow: 0 0 3px #167300;
 border: 1px solid #167300;
 background-color: #fff !important;
}
input[type="text"]:disabled, input[type="tel"]:disabled {
 -webkit-text-fill-color: #111;
 opacity: 1;
}
input[type="text"].pricefield {
 padding: 0;
 border: none !important;
 font-size: 1.4em;
 text-align: right;
 width: 3em;
 transform: translateY(1px);
 background-color: transparent;
}
input[type="text"]:focus.pricefield {
 box-shadow: none;
 border: none;
}
/*チェックボックス・ラジオボタンレイアウト縦並び*/
.formlist li {
 position: relative;
 margin: 7px 0 0 0;
}
.formlist li:first-child {
 margin: 0 0 7px 0;
}
.formlist li input[type=radio], .formlist li input[type=checkbox] {
 position: absolute;
 left: 0;
 top: 0;
 z-index: 1;
}
span.hyphen {
 padding: 0 .5em;
}
span.hyphen2 {
 padding: 0 .3em;
}
/*チェックボックス・ラジオボタンレイアウト横並び*/
ul.formlist2 {
 display: flex;
 flex-wrap: wrap;
}
.formlist2 li {
 position: relative;
 margin: 0 1em 0 0;
}
.formlist2 li input[type=radio], .formlist2 li input[type=checkbox] {
 position: absolute;
 left: 0;
 top: 0;
 z-index: 1;
}
/*チェックボックス・ラジオボタン*/
input[type=radio], input[type=checkbox] {
 opacity: 0;
}
.checkbox label, .radio label {
 position: relative;
 padding: 0 0 0 32px;
 display: inline-block;
}
label:after, label:before {
 position: absolute;
 content: "";
 display: block;
 -webkit-transition: all .3s ease-out;
 -moz-transition: all .3s ease-out;
 -ms-transition: all .3s ease-out;
 transition: all .3s ease-out;
}
.checkbox label:after, .radio label:after {
 left: 0;
 top: 3px;
 width: 24px; /* ボックスの横幅を指定する */
 height: 24px; /* ボックスの高さを指定する */
 border-radius: 50%; /* ボックスの角丸を指定する */
 z-index: 1; /*box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.1) inset;*/
 background-color: #fff;
 border: 1px solid #ccc;
}
@media print, screen and (max-width: 750px) {
 .checkbox label, .radio label {
  font-size: 1.1em;
 }
}
.checkbox label:after {
 border-radius: 0%; /* ボックスの角丸を指定する */
}
.reqired label:after {
 /*border: 2px solid #f65d72;*/
}
.checkbox label:before, .radio label:before {
 content: '\f00c';
 font-family: "Font Awesome 5 Free";
 display: inline-block;
 font-weight: 900;
 color: #fff;
 left: 7px;
 top: 10px;
 opacity: 0;
 z-index: 2;
 font-size: 11px;
 line-height: 1;
}
input[type=radio]:checked + label:before {
 opacity: 1; /* 要素を表示する */
}
input[type=radio]:checked + label:after {
 border-color: #167300;
 background: #167300;
}
input[type=checkbox]:checked + label:before {
 opacity: 1; /* 要素を表示する */
}
input[type=checkbox]:checked + label:after {
 border-color: #167300;
 background: #167300;
}
label span {
 display: inline-block;
 padding-right: .7em;
}
.reqmark {
 content: "必須";
 display: inline-block;
 background: #ff7800;
 font-weight: normal;
 font-size: .7em;
 line-height: 1;
 color: #fff;
 padding: 4px 7px;
 margin-left: 1em;
 position: relative;
 transform: translateY(-.2em);
 z-index: 0;
 letter-spacing: .1em;
 -webkit-font-smoothing: subpixel-antialiased;
 border-radius: 1.4em;
}
/*---------ログインページ　次回から組合員コードを自動表示-----------*/
.noidinput {
 text-align: center;
 font-size: .9em;
 margin-bottom: 8px;
}
.noidinput .checkbox label:after {
 left: 0;
 top: 0px;
 width: 20px;
 height: 20px;
 border: 2px solid #888;
 z-index: 1;
}
.noidinput input[type=checkbox]:checked + label:after {
 border-color: #167300;
 background: #fff;
}
.noidinput .checkbox label:before {
 color: #167300;
 left: 5px;
 top: 5px;
}
/*-----------------------P1010_INC【ログインエラー】----------------------*/
input.type_error[type="text"], input.type_error[type="password"] {
 border: 2px solid #DD0033 !important;
}
.type_error {
 border: 2px solid #DD0033 !important;
}
.login_error {
 margin-bottom: 32px;
}
.login_error h2 {
 font-weight: bold;
 color: #DD0033;
 margin-bottom: 1em;
 font-size: 1.3em;
}
#errormsg-code > div {
 border: 5px solid #d03;
 padding: 1em 1.5em;
 margin-bottom: 1em;
 background: #fff;
}
#errormsg-code p {
 font-size: .9em;
}
#errormsg-code h3 {
 font-weight: bold;
 color: #DD0033;
}
#errormsg-code h3 strong {
 color: #000;
 font-weight: bold;
}
#errormsg-code .qlink {
 padding: 16px 0 0;
 text-align: center;
 font-size: .9em;
}
#errormsg-code .qlink a {
 display: inline-block; /*border:1px solid #ddd;*/ padding: 6px 18px;
 border-radius: 30px;
 background: #519E28;
 color: #fff;
}
#errormsg-code .qlink a:hover {
 background: rgba(81, 158, 40, 0.59);
}
#errormsg-code .qlink i {
 font-size: 1.2em;
 margin-right: 3px;
}
/*-----------------------P1120【仮パスワード発行】----------------------*/
.catch {
 font-weight: bold;
 margin-bottom: 1em;
}
.notelist {
 margin: 1em;
}
.notelist ul {
 font-weight: bold;
 list-style: disc;
}
.notelist ul li.atten {
 color: #DD0033;
}
a.linelink {
 border-bottom: 1px solid;
 margin: 0 3px;
}
a.linelink i {
 margin: 0 3px;
}
.formarea {
 margin: 24px 0;
 background: #f2f7ee;
 padding: 16px 16px 32px;
 border-radius: 8px;
}
.formarea table, .formarea dl {
 display: table;
 width: 100%;
 border-collapse: collapse;
}
.formarea th, .formarea dt {
 vertical-align: top;
 color: #167300;
}
p.smallcap {
 font-size: 0.85em;
 margin-bottom: .5em;
}
input.phone {
 width: 4.5em;
}
.formarea td .number {
 padding: .8em 1em .5em 1em;
 font-weight: bold;
 border: 1px solid #167300;
}
.formarea td .notetext {
 padding-bottom: .8em;
}
@media print, screen and (max-width: 759px) /*スマホ*/ {
 .formarea th, .formarea dt {
  display: block;
 }
 .formarea th, .formarea dt {
  padding: .8em 1em .5em 1em;
  text-align: left;
  font-weight: bold;
 }
 .formarea td, .formarea dd {
  padding: 0 1em 1em;
  display: block;
 }
}
@media print, screen and (min-width: 760px) /*タブレットタテ〜横（1024）*/ {
 .formarea {
  padding: 24px 48px;
 }
 .formarea th, .formarea dt {
  width: 8em;
  padding: 1.5em 0em 1em 0em;
  text-align: left;
  font-weight: bold;
  color: #167300;
  position: relative;
 }
 .formarea td, .formarea dd {
  padding: 1.5em 0em 1.5em 1.5em;
 }
 input.phone {
  width: 5.5em;
 }
}
@media print, screen and (min-width: 1240px) /*PC*/ {
 .telnumdiv table {}
}
@media print, screen and (max-width: 759px) /*スマホ*/ {
 .formarea .telnumdiv td {
  padding: 0;
  display: table-cell;
 }
}
@media print, screen and (min-width: 760px) /*タブレットタテ〜横（1024）*/ {
 .formarea .telnumdiv td {
  padding: 0;
 }
}
/*-----------------------生年月日プルダウン----------------------*/
.birth {
 overflow: visible;
 display: inline-block;
 vertical-align: middle;
}
.birth select {
 width: 100%;
 cursor: pointer;
 text-indent: 0.01px;
 text-overflow: ellipsis;
 outline: none;
 background: transparent;
 background-image: none;
 box-shadow: none;
 -webkit-appearance: none;
 appearance: none;
 padding: 16px 2.5em 16px 12px;
 color: #111;
 border: 1px solid #ccc;
 border-radius: 0px;
}
.birth select::-ms-expand {
 display: none;
}
.birth {
 position: relative;
 background: #ffffff;
}
.birth::after {
 position: absolute;
 top: 50%;
 right: 0.7em;
 pointer-events: none;
 transform: translateY(-50%);
 content: '';
}
.birth.age_year::after {
 content: '年';
}
.birth.age_month::after {
 content: '月';
}
.birth.age_day::after {
 content: '日';
}
/*----確認画面---*/
@media print, screen and (max-width: 759px) /*スマホ*/ {
 .kakunintable {
  margin: 24px 0;
  background: #f2f7ee;
  padding: 24px;
  border-radius: 8px;
 }
 .kakunintable table {
  display: table;
  width: 100%;
  border-collapse: collapse;
 }
 .kakunintable th {
  padding: .8em 1em .5em .5em;
  text-align: left;
  color: #167300;
  display: block;
 }
 .kakunintable td {
  padding: 16px;
  text-align: left;
  font-weight: bold;
  background: #fff;
  border-radius: 8px;
  display: block;
 }
}
@media print, screen and (min-width: 760px) /*タブレットタテ〜横（1024）*/ {
 .kakunintable {
  margin: 24px 0;
 }
 .kakunintable table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
 }
 .kakunintable th {
  padding: 1em;
  text-align: left;
  font-weight: bold;
  color: #167300;
  position: relative;
  background: #f2f7ee;
  border-bottom: 1px solid #ccc;
 }
 .kakunintable td {
  padding: 1em;
  border-bottom: 1px solid #ccc;
 }
}
/*----アナウンス---*/
main.announcement {
 background: #ebebeb
}
main.announcement .annframe {
 margin: 32px 0;
 padding: 24px 36px;
 background: #fff;
 border-radius: 8px;
}
main.announcement .annframe h2 {
 font-weight: bold;
 color: #DD0033;
 margin-bottom: 1em;
 font-size: 1.1em;
}
main.announcement .annframe h2 strong {
 color: #000;
}
main.announcement .annframe p {
 margin-bottom: 1em;
}
@media print, screen and (min-width: 760px) /*タブレットタテ〜横（1024）*/ {
 main.announcement .annframe {
  padding: 36px 48px;
 }
}
/*----仮パスワード通知メール---*/
dl.sosindata {
 margin: 32px 0;
}
dl.sosindata dt {
 padding: 8px 0;
 color: #167300;
 font-weight: bold;
}
dl.sosindata dd { /*background: #f1f8e4;*/ padding: .5em 1em;
 border: 2px solid #167300;
 font-weight: bold;
 font-size: 1.3em;
}
h2.error {
 font-weight: bold;
 color: #DD0033;
 margin-bottom: 1em;
 font-size: 1.3em;
}
/*----利用登録---*/
.mailkakunin {
 font-weight: bold;
 background: #fff;
 padding: .5em 1em;
 border: 2px solid #167300;
 font-size: 1.3em;
}
.toutoinfo {
 background: #ebebeb;
 margin: 0 0 32px;
 padding: 16px 32px;
}
/*----在籍確認---*/
/*ステップバー*/
.multi-steps {
 max-width: 640px;
 margin: 1.5em auto;
}
.multi-steps > li.is-active ~ li:before, .multi-steps > li.is-active:before {
 content: counter(stepNum);
 font-family: inherit;
 font-weight: 700;
}
.multi-steps > li.is-active ~ li:after, .multi-steps > li.is-active:after {
 background-color: #ededed;
}
.multi-steps {
 display: table;
 table-layout: fixed;
 width: 100%;
}
.multi-steps > li {
 counter-increment: stepNum;
 text-align: center;
 display: table-cell;
 position: relative;
 color: #299510;
 margin: 0;
}
.multi-steps > li:before {
 content: "✓";
 display: block;
 margin: 0 auto 10px;
 background-color: #299510;
 color: #fff;
 width: 32px !important;
 height: 32px !important;
 line-height: 32px !important;
 text-align: center;
 font-weight: bold;
 border-radius: 50%;
}
.multi-steps > li:after {
 content: "";
 height: 2px;
 width: 100%;
 background-color: #299510;
 position: absolute;
 top: 16px;
 left: 50%;
 z-index: -1;
}
.multi-steps > li:last-child:after {
 display: none;
}
.multi-steps > li.is-active:before {
 background-color: #299510;
}
.multi-steps > li.is-active ~ li {
 color: #808080;
}
.multi-steps > li.is-active ~ li:before {
 background-color: #ededed;
 border-color: #ededed;
}
.multi-steps > li span {
 font-size: 0.75em;
 font-weight: bold;
 display: block;
 line-height: 1.4;
}
@media print, screen and (min-width: 760px) /*タブレットタテ〜横（1024）*/ {
 .multi-steps {
  margin: 2.5em auto;
 }
}
/*-----------------------利用登録：利用規程----------------------*/
.kiyakucheck {
 background: #e1f1c2;
 padding: 1em;
 margin-bottom: 1em;
}
.kiyakucheck .checkbox {
 margin-left: -1em;
}
.kiteiframe {
 height: 200px;
 overflow: hidden;
 overflow-y: scroll;
 padding: 16px;
 border: 2px solid #eee;
}
@media print, screen and (min-width: 760px) /*タブレットタテ〜横（1024）*/ {
 .kiteiframe {
  height: 400px;
 }
}
.kitei_link {
 margin: 1em 0;
}
.kitei_link a {
 display: flex;
 justify-content: flex-end;
 align-items: center;
}
.kitei_link a i {
 font-size: 24px;
 margin-right: 4px;
}
.kitei_link a span {
 font-size: .9em;
}
/*----利用登録：完了---*/
.finish_catch {
 text-align: center;
 font-weight: bold;
 margin: 2.5em 0 .5em;
 font-size: 1.3em;
 color: #DD0033;
}
.finish_catch2 {
 text-align: center;
 font-weight: bold;
 margin-bottom: 2.5em;
}
/*----利用登録：個人情報入力---*/
.maillist {}
.maillist ul {}
.maillist ul li {
 background: #fff;
 padding: 16px;
 border-radius: 8px;
 margin-bottom: 8px;
}
.maillist ul li h3 {
 color: #167300;
 font-weight: bold;
}
.maillist ul li p {
 font-size: .9em;
}
.maillist ul li .formlist2 li {
 padding: 0;
 border-radius: 0;
 margin-bottom: 0;
}
.maillist_kakunin {}
.maillist_kakunin ul {
 margin-left: 1em;
 margin-right: 0;
}
.maillist_kakunin ul li {
 position: relative;
}
.maillist_kakunin ul li span {
 color: #167300;
 font-weight: normal
}
.maillist_kakunin ul li:before {
 content: "●";
 position: absolute;
 left: -1em;
 color: #167300 !important;
 font-weight: normal
}
/*-----セレクトボックス-----*/
.jizenmail {
 margin: 4px 0;
 overflow: visible;
 display: inline-block;
 vertical-align: middle;
 position: relative;
}
.jizenmail select {
 width: 100%;
 cursor: pointer;
 text-indent: 0.01px;
 text-overflow: ellipsis;
 outline: none;
 background: transparent;
 background-image: none;
 box-shadow: none;
 -webkit-appearance: none;
 appearance: none;
 padding: 10px 2.5em 10px 8px;
 color: #111;
 border: 1px solid #ccc;
 border-radius: 0px;
}
.jizenmail select::-ms-expand /*-IE対策-*/ {
 display: none;
}
.jizenmail::after {
 position: absolute;
 top: 50%;
 right: 0.7em;
 pointer-events: none;
 transform: translateY(-50%);
 content: '\f107';
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
}
/*-----単位付きレイアウト-----*/
.formflex {
 display: table;
 width: 100%;
}
.formflex.code {
 width: auto;
}
.formflex > div, .formflex > span {
 display: table-cell;
}
.formflex > div:last-child {
 padding-left: 5px;
}
.formflex span.input--text {
 /*width: calc(50% - 30px);*/
}
.formflex.sonota {
 display: flex;
 justify-content: flex-start;
}
.formflex.sonota input[type="text"] {
 width: 14em;
}
@media print, screen and (max-width: 370px) {
 .formflex.sonota input[type="text"] {
  width: 10em;
 }
}
.formflex.sonota span:last-child {
 padding-left: .7em;
}

/*-----規程フォーマット-----*/
.kitei_format{}
.kitei_format .title{font-size:1.2em;font-weight: bold;margin:.2em 0;}
.kitei_format .midasi{font-weight: bold;margin:2em 0 .4em;border-bottom:1px dotted #000;padding-bottom:.2em;}
.kitei_format ol{list-style: decimal;margin-left:1.5em;}
.kitei_format li{margin-bottom:.2em;}
