/*============
fontの指定
============*/
body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

b,
strong,
.bold {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop,
.selector {
  font-family: "Segoe UI", Meiryo, sans-serif;
}

/*font-sizeを指定*/
.fs14 {
  font-size: 14px !important;
}

.fs16 {
  font-size: 16px !important;
}

/*============
共通
============*/
* {
  box-sizing: border-box;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

img { border-style: none;}
/*非表示設定(読み上げソフトウェア対策)*/
.screen-reader-text{
  clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}
/*margin 指定*/
/*margin-top*/
.mt0 {margin-top: 0!important;}
.mt30 {margin-top: 30px!important;}
.mt40 { margin-top: 40px!important;}
.mt45 { margin-top: 45px!important;}
/*margin-bottom*/
.mb0{margin-bottom:0!important ;}
/*改行設定*/
.inblock{display: inline-block;}
/*title*/
.general-hdg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  font-size: 23px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 10px 12px;
  font-weight: bold;
  line-height: 1.2;
}
.general-hdg_tenpo {
  font-size: 18px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
  display: block;
  line-height: 120%;
  padding-bottom: 10px;
}
.general-hdg.line1{margin-bottom: 31px;}
.sub-hdg {
  padding: 5px 7px;
  margin: 0 0 30px;
  color: #1F5FA8;
  font-size: 15px;
  font-weight: bold;
  border-left: 4px solid #1F5FA8;
}

.parts-hdg {
  color: #1F5FA8;
  text-align: left;
  border-left: 5px solid #1F5FA8;
  margin: 0 auto 10px;
  padding: 5px 10px;
}

/*parts-hdg内にボタンを追加*/
.parts-hdg__btn-area {
  margin-left: 35px;
}

.parts-hdg__btn-area>button[type="button"] {
  font-size: 15px;
  background-color: #fff;
  border: 1px solid #1F5FA8;
  border-radius: 12px;
  color: #1F5FA8;
  padding: 2px 10px;
  cursor: pointer;
}

.parts-hdg__btn-area>button[type="button"]:hover {
  background-color: #1F5FA8;
  color: #fff;
}

/*エラーページ用*/
.error-hdg {
  font-size: 82px;
  font-weight: 600;
  margin: 30px auto 75px;
  letter-spacing: 10px;
}

.error-hdg span {
  display: block;
  font-size: 18px;
  font-weight: unset;
  letter-spacing: 0px;
  padding-top: 20px;
}

/*メンテナンスページ用*/
.mainte-hdg {
  font-size: 40px;
  font-weight: 600;
  margin: 50px auto 80px;
  padding-top: 150px;
}


/*==header==*/
#header-area,
#qrheader-area{
  width: 100%;
  max-width: 980px;
  margin: auto;
  position: relative;
}

.header {
  display: flex;
  height: 150px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 43px 10px 40px;
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.logo__img,
.logo__title {
  margin: 0;
  line-height: 1;
  display: inline-block;
}

#header-area .logo__img img,
#qrheader-area .logo__img img {
  width: 65px;
  height: auto;
}

.logo__title {
  margin: 0;
}
.logo__title.error{margin: 8px 16px;}

.logo__title a {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  color: #1F5FA8;
}

.compo-mainte-info {
  width: 400px;
  background: #fff;
  border: #0074BF solid 1px;
  position: absolute;
  top: 45px;
  right: 5px;
}

.compo-mainte-info__inner {
  position: relative;
  padding: 10px 5px 0 45px;
  margin: 0;
}

.compo-mainte-info span {
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  top: calc(50% - 10px);
  left: 8px;
  display: block;
  width: 30px;
  height: 30px;
  color: #0074BF;
  border-radius: 50%;
  background: #fff;
}

.compo-mainte-info__item {
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 8px;
  line-height: 1.4;
}

.compo-news-flash {
  width: 980px;
  background: #FFD2DB;
  border-radius: 20px;
  margin: 0 auto 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px 15px;
}

.compo-news-flash__hdg {
  color: #FF0033;
  font-size: 23px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 20px 12px;
  font-weight: bold;
  display: block;
}

.compo-news-flash__item {
  width: 100%;
  font-size: 18px;
  margin: 0 0 10px;
  padding-left: 10px;
  position: relative;
  line-height: 1.4;
}

.compo-news-flash__item::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  background-color: #FF0033;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 0;
  margin-right: 5px;
}
/*error-header*/
#errorheader-area {
  width: 100%;
  margin: auto;
  position: relative;
}
#errorheader-area .logo__img img {
  width: 160px;
  height: auto;
}
#errorheader-area .header{
  height: initial;
  margin: 0 auto 40px;
  padding: 0;
}

/*==footer==*/
.footer {
  width: 100%;
}

.footer__nav {
  width: 100%;
  background: #1F5FA8;
  text-align: center;
}

.footer__nav__list {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
  zoom: 1;
}

.footer__nav__list li {
  display: inline-block;
  margin-left: 25px;
  padding: 25px 0;
}

.footer__nav__list li a {
  color: #E4E4E4;
  font-size: 16px;
}

.footer__nav__list li a:hover {
  text-decoration: none;
}

.footer__nav__list li:first-child {
  margin-left: 0;
}

.footer__copy {
  text-align: center;
  color: #1F5FA8;
  font-size: 16px;
  padding: 25px 15px;
}
/*error-footer*/
.error-footer{
  width: 100%;
  background: #EDEDED;
  padding: 20px 10px;
}
.footer-info{
  width: 700px;
  margin: 0 auto;
}
.footer-info p{
  color: #777;
font-family: Inter;
font-size: 10px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.main {
  width: 980px;
  background: #D3EAFC;
  border-radius: 20px;
  margin: 0 auto 150px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.main-1column {
  flex-grow: 1;
  width: auto;
  margin: 10px 140px 150px;
}
/*非表示タイトルがある時*/
.main-1column:has(.general-hdg.screen-reader-text){margin: 100px 140px 150px;}
/*タイトルが無しの時*/
.main-1column.no-title{margin: 100px 140px 150px;}
/*エラー画面*/
.main.error-page{
  background: transparent;
  margin: 0 auto;
}
.main.error-page .main-1column{    margin: 0 140px 150px;}
.main.error-page .general-hdg{height: initial; padding-bottom: 30px;}
.main.error-page .contents__area{
  border-radius: 20px;
  border: 5px solid #D3EAFC;
  background: #FFF;
  min-height: initial;
  padding: 40px;
}
.maint-title{
  font-size: 40px;
  margin:45px auto 25px;
}
.maint-date{
  font-size: 23px;
  font-weight: bold;
}
/*============
form
============*/
/*safari用*/
input::-webkit-credentials-auto-fill-button {
  margin: 0;
  width: 0;
  background-color: transparent;
}

/*common*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted;
}

.compo-form__divide p{
  padding: 0 0 18px;
}
.compo-form__divide.cs p{
  padding:  18px 0;
}
.compo-form__divide p em{
  font-weight: bold;
  font-style: normal;
  margin-right: 1em;
  color: #000;
}
.compo-form__body {
  /*必要なければ削除（1/23）margin-right: 16px;*/
  margin-bottom: 20px;
}
/*必要なければ削除（1/23）
.checkbox-area,
.compo-form__body .checkbox-area label,
.compo-form__body .radio-area,
.compo-form__body .radio-area label,
.compo-form__body .address-area,
.compo-form__body .compo-form__area {
  margin-right: 16px;
}*/

.compo-form__body .character-limit{
  font-size: 13px;
  margin-bottom: 0;
  padding-bottom: 3px;
  color: #777777;
  text-align: right;
}
textarea {
  overflow: auto
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0
}

.checkbox-area label,
.radio-area label {
  display: inline-block;
  line-height: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto
}

::-webkit-file-upload-button {
  font: inherit
}

[hidden] {
  display: none
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"] {
  /*必要なければ削除（1/23）width: 105%;*/
  width: 100%;
  padding: 16px;
  border: 1px solid #707070;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  height: 50px;
  vertical-align: middle;
  line-height: 1.0
}

input[type="text"]:disabled,
input[type="tel"]:disabled,
input[type="email"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled {
  color: #777;
  border: 2px solid #ccc;
  background-color: #ececec
}

.text-area {
  position: relative;
}
/*password 目アイコン*/
.toggle-pass {
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

/*店舗コード検索 虫眼鏡アイコン*/
.search-area{
  display: flex;
}
.search-box{width: calc(100% - 100px);}
.search-box input[type="text"]{
  padding-left: 2.5em;
  position: relative;
 
}
.search-ico {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.search-btn{
  color: #fff;
  background-color: #1F5FA8;
  border: 2px solid #1F5FA8;
  border-radius: 8px;
  padding: 10px 26px;
  margin-left: 5px;
  width: 90px;
}

.search-btn:hover {
  color: #1F5FA8;
  background: #fff;
  border: 2px solid #1F5FA8;
  cursor: pointer;
}


/*短いテキスト*/
.text-area-short input[type="text"],
.text-area-short input[type="tel"],
.text-area-short input[type="email"],
.text-area-short input[type="number"],
.text-area-short input[type="password"] {
  width: 200px;
  margin-right: 10px
}
/*名前*/
.compo-form__body .name-area {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc(50% - 10px);
}

.compo-form__body .name-area label {
  display: flex;
  align-items: center;
}

.compo-form__body .name-area label span.name-area__unit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  word-break: keep-all;
  letter-spacing: .9px;
}

.name-area + .name-area{margin-left: 14px;}
/*svメールアドレス*/
.compo-form__body .sv-mail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.compo-form__body .sv-mail input[type="text"]{width:calc(100% - 12em);}
.compo-form__body .sv-mail span.sv-mail__unit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  word-break: keep-all;
  letter-spacing: .9px;
  padding-left: 10px;
}
/*性別*/
.compo-form__body .radio-area.gender-choice input[type="radio"]~span {
  display: inline-block;
  /* width: 82px; */
  height: 50px;
  background-color: #fff;
  border-radius: 10px;
  /* margin: 0 5px 0 0; */
  padding: 11px 10px 0;
  border: #707070 solid 1px;
  text-align: center;
  margin-right: 8px;
}

.compo-form__body .radio-area.gender-choice {
  margin-right: 0;
}

.compo-form__body .radio-area.gender-choice span:last-child {
  margin: 0;
}

.compo-form__body .radio-area.gender-choice input[type="radio"]:checked~span {
  color: #fff;
  background-color: #63B2ED;
  border: #63B2ED solid 1px;

}

.compo-form__body .radio-area.gender-choice input[type="radio"]~span::before,
.compo-form__body .radio-area.gender-choice input[type="radio"]~span::after {
  display: none;
}

.compo-form__body .occurday-area,
  .compo-form__body .occurtime-area {
    display: block;
    margin-bottom: 8px;
  }

.occurday-area .occuryear-select{
  display: inline-block;
}


.compo-form__error+.compo-form__error {
  margin-top: -15px;
}

.error input[type=text],
.error input[type="tel"],
.error input[type="email"],
.error input[type="number"],
.error input[type="password"],
.error select,
.error textarea {
  background: rgba(255, 68, 28, 0.1) !important;
}

.compo-form__error {
  display: block;
  color: #f98199;
  font-size: 13px;
  line-height: 1.4;
  padding: 3px 0 0;
  margin-bottom: 15px;
  white-space: pre-line;
}

.form__area .compo-error-box {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  text-align: center;
}

.form__area .compo-error-box p {
  color: #f98199;
  font-size: 18px;
}

.compo-text-box {
  width: 100%;
  margin: 0 0 50px;
  padding: 0;
  text-align: center;
}

.compo-text-box p {
  font-size: 18px;
  line-height: 1.4;
}

button {
  color: #000
}

textarea{
  /*必要なければ削除（1/23）width: 105%;*/
  width: 100%;
  padding: 16px;
  border: 1px solid #707070;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  height: 200px;
  vertical-align: middle;
  line-height: 1.0;
}

select {
  background: #fff;
  color: #000
}

select::-ms-expand {
  display: none
}

.select-box label{
  display: inline-flex;
  align-items: center;
  position: relative;
}

.select-box label::after {
  position: absolute;
  top:10px;
  right: 16px;
  width: 10px;
  height: 10px;
  content: "";
  transform: rotate(135deg) translate(0, -50%);
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  pointer-events: none
}

.select-box select {
  border: 1px solid #707070;
  border-radius: 10px;
  font-size: 16px;
  height: 48px;
  line-height: 22px;
  padding: 0 36px 0 16px;
  text-align: center;
  appearance: none;
  cursor: pointer
}

.select-box select:disabled {
  color: #777;
  border: 2px solid #ccc;
  background-color: #ececec;
  cursor: default
}

::placeholder {
  color: #b7b7b7;
}

::-ms-input-placeholder {
  color: #b7b7b7;
}

:-ms-input-placeholder {
  color: #b7b7b7;
}

input[type="checkbox"],
input[type="radio"],
input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  opacity: 0;
  appearance: none
}

input[type="checkbox"]~span,
input[type="radio"]~span {
  position: relative;
  padding: 0 0 0 40px;
  cursor: pointer;
  display: block;
  line-height: 1.6;
  font-size: 18px;
}

input[type="checkbox"],
input[type="radio"] {
  top: 0;
  left: 0;
  opacity: 0
}

input[type="checkbox"]~span::before,
input[type="checkbox"]~span::after,
input[type="radio"]~span::before,
input[type="radio"]~span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}

input[type="checkbox"]~span::before,
input[type="radio"]~span::before {
  z-index: 0;
  background-color: transparent;
  width: 26px;
  height: 26px;
  border: 1px solid #707070;
}

input[type="checkbox"]~span::before {
  border-radius: 5px
}

input[type="checkbox"]~span::after {
  z-index: 1;
  margin: 1px 7px;
  width: 12px;
  height: 18px;
  border: 2px solid #ddd;
  border-width: 0 5px 4px 0;
  transform: rotate(45deg)
}

input[type="radio"]~span::before {
  border-radius: 13px
}

input[type="radio"]~span::after {
  z-index: 1;
  margin: 3px 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  background: #fff;
}

input[type="checkbox"]:checked~span::before,
input[type="radio"]:checked~span::before {
  background-color: #fff;
  border: 1px solid #707070;

}

input[type="checkbox"]:checked~span::after {
  border: 2px solid #1F5FA8;
  border-width: 0 5px 4px 0;
  transform: rotate(45deg);
}

input[type="radio"]:checked~span::after {
  background: #1F5FA8;
}

input[type="checkbox"]:disabled~span,
input[type="radio"]:disabled~span {
  cursor: default
}

input[type="checkbox"]:disabled~span::before,
input[type="radio"]:disabled~span::before {
  border: 2px solid #ccc
}
/*ファイルアップロード*/
.fileup-area{
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fileup-button{
  display: flex;
  align-items: center;
  width: 100%;
}
.fileup-button input[type=file] {
  display: none;
}
.fileup-button label {
  width: 90px;
  height: 42px;
  color: #fff;
  background: #1F5FA8;
  border: 2px solid #1F5FA8;
  border-radius: 50px;
  text-align: center;
  align-items: center;
  display: grid;
 cursor: pointer;
}
.fileclear-button {
  /* display: none; */
}
.fileclear-button i{
  font-size: 1rem;
  color: #666;
  cursor: pointer;
}
/*ファイルアップロードボタン追加*/
.add-btn{
  color: #666;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 10px 26px;
  margin-bottom: 5px;
}

.add-btn:hover {
  color: #fff;
  background: #707070;
  border: 1px solid #707070;
}

.btn-area>input[type="submit"],
.btn-area>button[type="button"] {
  font-size: 15px;
  padding: 10px 16px;
  max-width: initial;
  width: auto;
  border-radius: 8px;
  width: 100%;
}

.btn-area.short-btn>input[type="submit"],
.btn-area.short-btn>button[type="button"] {
  width: auto;
  padding: 10px 26px;
}

.btn-area>input[type="submit"],
.btn-area>button[type="button"].go-login {
  color: #fff;
  background: #1F5FA8;
  border: 2px solid #1F5FA8;
}

.btn-area>input[type="submit"]:hover,
.btn-area>button[type="button"].go-login:hover {
  color: #1F5FA8;
  background: #fff;
  border: 2px solid #1F5FA8;
  cursor: pointer;
}

.btn-area>button[type="button"] {
  color: #fff;
  background: #63B2ED;
  border: 2px solid #63B2ED;
}

.btn-area>button[type="button"]:hover {
  color: #63B2ED;
  background: #fff;
  border: 2px solid #63B2ED;
  cursor: pointer;
}

.btn-area>input[type="submit"]:disabled {
  background: #e7e7e7;
  border: 2px solid #e7e7e7;
  color: #999;
  cursor: default;
}

.btn-area a {
  color: #fff;
  background-color: #A7A7A7;
  border: 2px solid #A7A7A7;
  border-radius: 8px;
  padding: 10px 26px 10px 12px;
  width: 100%;
}

.btn-area a:hover {
  color: #A7A7A7;
  background: #fff;
  border: 2px solid #A7A7A7;
}

.btn-area p {
  text-align: center;
  margin-top: 18px;
}

.fa-angle-left {
  margin-left: 10px;
}
/*店舗名*/
.compo-form__body p.shop-code{
  margin-bottom: 0;
  padding-bottom: 0;
}

/*店舗名*/
.compo-form__body .shop-name{
  text-align: center;
  font-size: 18px;
}
/*=====style=====*/
.contents__area,
.announce__area {
  width: 100%;
  min-height: 350px;
  border-radius: 15px;
  text-align: center;
}

.contents__area {
  background: #fff;
  padding: 50px;
}
.contents__topics{
  text-align: left;
  padding: 20px 0px;
}

.contents__link {
  line-height: 150%;
  margin: 0 auto;
  width: 80%;
  display: block;
margin-bottom: 20px;
padding: 20px;
background-color: #FFD500;
color: #000;
font-weight: 700;
border-radius: 20px;
}

.contents__area .error-box {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  text-align: center;
}

.contents__area .error-box p {
  color: #f98199;
  font-size: 18px;
}

.announce__area {
  padding: 50px 0;
}

/*1column対応*/
.main-1column .contents__area {
  display: flex;
  flex: 1 1;
  flex-wrap: wrap;
}

.general__area {
  width: 100%;
  padding: 0;
  margin: auto;
}

.form__area {
  width: 100%;
  max-width: 400px;
  padding: 0;
  margin: auto;
}

.form__area hr {
  height: 1px;
  background-color: #707070;
  border: none;
  margin-bottom: 30px;
}

.form__area p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 10px;
  word-break: break-all;
}

.compo-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 40px;
  text-align: left;

}

.compo-form__table {
  margin: 0 0 20px;
}

.compo-form__item {
  font-size: 15px;
  font-weight: bold;
  padding: 0 0 15px;
  position: relative;
  line-height: 1.4;
}

.compo-form__item span {
  font-weight: normal;
}

.compo-form__item span.supple {
  font-size: 13px;
  margin-left: 20px;
  color: #777777;
}

/*ログイン前の補足*/
.compo-form__item span.bl-supple {
  font-size: 13px;
  float: right;
  color: #000;
}

.compo-form__download {
  font-weight: bold;
  line-height: 1.5;
}

.compo-form__item span.reqd {
  font-size: 11px;
  padding: 4px 6px;
  margin-left: 5px;
  border-radius: 15px;
  top: 2px;
  right: 0;
  color: #fff;
  background: #F98199;
}

.compo-form__body p.gly-txt {
  color: #A4A4A4;
}

.no-display {
  display: none;
}

.btn-area,
.compo-form__link-txt {
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 15px 0;
  text-align: center;

}

.compo-form__link-txt a {
  color: #000000;
  text-decoration: underline;
}

.compo-form__link-txt a:hover {
  color: #b7b7b7;
  text-decoration: none;
}
.compo-form__supple{
  display: block;
  color: #f98199;
  font-size: 13px;
  line-height: 1.4;
  padding: 3px 0 0;
}
.terms-area {
  overflow: auto;
  width: 100%;
  height: 200px;
  padding: 5px;
  background-color: #F5F5F5;
  padding: 10px 15px;
  font-size: 13px;
  line-height: 1.4;
  margin: 20px auto;
}

.terms-area-text span {
  font-size: 1.1em;
  font-weight: bold;
}
.explan-area{
  margin: 20px auto;
}
.explan-area.cs{margin: 0 auto 30px;}
.explan-area p{
  border: 1px solid #1F5FA8;
  color:#1F5FA8;
  padding: 10px;
}
.explan-area ul{
  border: 1px solid #1F5FA8;
  padding: 10px 10px 10px 35px;
}
.explan-area li{
  padding: .3em .3em .3em 0;
  list-style-type: disc;
  color: #1F5FA8;
  font-size: 16px;
  line-height: 1.5;
}
.explan-area li::marker {
  color: #1f5fa8;
  font-size: 1.1em;
}
/*---------------
  メンテナンス画面
  ---------------*/
.announce-text-box {
  width: 100%;
  margin: 0 0 50px;
  padding: 0;
  text-align: center;
}

.announce-text-box p {
  font-size: 18px;
  line-height: 1.4;
}

.announce-mainte-time-box {
  background-color: #fff;
  display: inline-block;
  padding: 8px 20px;
  margin: 0 auto 50px;
}

.announce-mainte-time-box p {
  font-size: 23px;
}

.announce-mainte-time-box span {
  padding-left: 20px;
}
/*---------------
  QRコード作成画面
  ---------------*/
.qr__area{
  width: 100%;
}
.qr__area__img img{
  width: 100%;
  max-width: 150px;
  margin-top: 15px;
}
/*====================================================================
レスポンシブ対応（タブレット）
====================================================================*/
@media screen and (max-width : 980px) {
  .logo__title a {
    font-size: 22px;
  }
  .footer-info{ width: 96%;}
  /* 20230406 */
  .compo-mainte-info {
    width: 96%;
    position: initial;
    margin: 0 auto 15px;
  }

  .main {
    width: 97%;
    margin: 0 auto 100px;
  }

  .compo-news-flash {
    width: 97%;
  }
}

/*====================================================================
レスポンシブ対応（スマホ）
====================================================================*/
@media screen and (max-width : 768px) {
  .general-hdg.line1{ margin: 15px auto;}
  .parts-hdg__btn-area {
    margin-left: 5px;
  }

  .header {
    width: 100%;
    height: 100px;
    padding: 24px 10px 20px;
  }

  .compo-mainte-info span {
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: calc(50% - 10px);
    left: 8px;
    display: block;
    width: 30px;
    height: 30px;
    color: #0074BF;
    border-radius: 50%;
    background: #fff;
  }

  .compo-mainte-info__item {
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 8px;
    line-height: 1.4;
  }

  .compo-form__body .radio-area.gender-choice label {
    margin-bottom: 8px;
  }

  .compo-form__body .radio-area.gender-choice .compo-form__error {
    padding: 0;
  }

  .main-1column {
    margin: 25px 10px 24px;
  }
  /*非表示タイトルがある時*/
  .main-1column:has(.general-hdg.screen-reader-text){margin: 100px 10px 24px;}
  /*タイトルが無しの時*/
.main-1column.no-title{margin: 24px 10px 24px;}
  .main.error-page .main-1column {
    margin: 0 0 50px;
}
#header-area .logo__img img,
#qrheader-area .logo__img img {
    width: 50px;
    height: auto;
  }

  .logo__title a {
    font-size: 17px;
  }

  .compo-news-flash__hdg {
    padding: 15px 12px 10px;
  }

  .compo-news-flash {
    width: 96%;
    border-radius: 15px;
  }

  .main {
    width: 96%;
    border-radius: 15px;
    margin: 0 auto 50px;

  }

  .general-hdg {
    font-size: 20px;
    padding: 28px 12px;
  }

  .error-hdg {
    font-size: 55PX;
    padding: 20px 12px;
  }

  .mainte-hdg {
    font-size: 30PX;
    Margin: 50px auto;
    padding: 20px 12px;
  }

  .contents__area,
  .announce__area {
    border-radius: 10px;
    padding: 30px 20px 20px;
  }

  .main-1column .contents__area {
    min-height: 150px;
  }

  .footer__nav__list {
    width: 96%;
    text-align: left;
    margin: auto;
  }

  .footer__nav__list li {
    display: block;
    margin-left: 0;
    padding: 0 0 15px 15px;
  }

  .footer__nav__list li:first-child {
    padding-top: 15px;
  }

  /*form*/
  .compo-form__body .name-area {
    width: 100%;
    margin-bottom: 8px;
  }
  .compo-form__body .name-area label{width: 100%;}
  .name-area + .name-area{ margin-left: initial;}

  

  /*---------------
        メンテナンス画面
   ---------------*/
  .compo-mainte-time-box span {
    padding-left: 0;
    display: block;
    line-height: 1.4;
  }
  /*---------------
  お知らせ
  ---------------*/
/*-----リストページ-----*/
.info-date,
.info-title{
  width: 100%;
}
.info-date{padding: 0;}
.info-title{padding: .5rem 0 0;}
.info-list li{
  flex-direction: column;
  justify-content: center;
  padding: .7rem;
}
.info-list .info-date{text-align: left; }
.info-list .info-title{border-left: none;}
}

/*=======================Relocation=======================*/

.main {
  display: flex;
  /*align-items: flex-start;*/
  align-items: stretch;
  padding: 0;
}

a {
  text-decoration: none;
}

/*==レフトカラム==*/
.left-column {
  width: 218px;
  height: 100%;
  display: flex;
  align-items: flex-start;
}


.line-img-line {
  border-top: 1px dashed #1F5FA8;
}

.line-img-line {
  width: 100%;
}

.line_sp {
  display: none;
}

.line_1 {
  border: none;
  border-top: 1px dashed #1F5FA8;
  margin-top: 20px;
}

.maru_count {
  height: 20px;
  width: 50px;
  border-radius: 50%;
  text-align: center;
}

.menu li {
  margin-top: 20px;
  font-weight: bold;
}

.menu-list a {
  color: #000;
  padding: 6px 22px 6px 19px;
  text-decoration: underline;
  display: block;
  line-height: 1.5em;
}

li.menu-list a:hover {
  display: block;
  margin: 0 16px 0 0;
  padding: 6px 0 6px 19px;
  background-color: #63B2ED;
  color: #fff;
  text-decoration: none;
  border-radius: 0 10px 10px 0;
}

/*
  .logout a {
    color: #000;
  }
  .logout {
    padding-top: 20px;
    font-size: 80%;
    padding-left: 19px;
  }
*/
.logout a:hover {
  color: red;
  cursor: pointer;
}






/*==ライトカラム　店舗保険==*/
.right-column {
  max-width: 718px;
  width: 100%;
  margin: 0 14px 0 0;
  margin-bottom: 150px;
}

.contents__item {
  /* display: flex;  */
  justify-content: space-between;
  margin-bottom: 23px;
}

.contents__item_h2 {
  /* display: flex; */
  line-height: 120%;
  margin-bottom: 20px;
  font-size: 23px;
}

.title__area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}



.img__small {
  max-width: 100px;
  width: 100%;
  float: left;
  margin: 10px 15px;
}

.zoom-img__underbar {
  color: #1F5FA8;
  font-weight: bold;
  padding-top: 20px;
}

a.download__btn {
  color: #1F5FA8;
  border: 1px solid #1F5FA8;
  display: inline-block;
  padding: 16px 0px;
  max-width: 325px;
  width: 100%;
  border-radius: 10px;
  padding-left: 15px;
  margin-top: 18px;
  font-weight: bold;
  font-size: 20px;
}

a.download__btn:hover {
  background-color: #1F5FA8;
  color: #fff;
}

.download__btn p {
  display: inline-block;
}

.application__area h3 {
  margin-top: 80px;
  font-size: 23px;
  text-align: center;
}

hr.title-underbar {
  width: 100px;
  background-color: #63B2ED;
  border: none;
  height: 5px;
  margin-top: 17px;
  margin-bottom: 34px;
}

.application__area p {
  text-align: center;
  line-height: 150%;
}

table {
  /* margin-top: 103px; */
  border-collapse: separate;
  border-spacing: 6px;
  max-width: 644px;
  width: 100%;
}

th,
td {
  border: solid 1px #B7B7B7;
  vertical-align: middle;
}

th {
  padding: 5px 0;
}

td {
  padding: 5px 12px;
}

.th__bgc {
  background-color: #63B2ED;
}


.under__line__text {
  text-align: left;
  background-color: #D3EAFC;
  width: 60%;
}

.catergory {
  float: left;
  font-weight: bold;
  /* text-decoration: underline; */
  line-height: 20px;
}


.possible {
  background-color: #1F5FA8;
  color: #fff;
}

.possible a {
  text-decoration: underline;
  color: #fff;
}

.possible a:visited {
  color: #fff;
}

/*---------------
  補償詳細
  ---------------*/
.contents__item span {
  border-radius: 20px;
  padding: 2px 9px;
  color: #fff;
}

.office-icon {
  margin-top: 5px;
}

.head-office {
  background-color: #1F5FA8;
}

.branch-office {
  background-color: #63B2ED;
}

.explanation__area a {
  display: block;
}

.explanation__area p {
  margin: 10px 0 35px 0;
  font-weight: bold;
  color: #1F5FA8;
  display: inline-block;
}
.explanation__text{
  line-height: 1.6;
}


.explanation__area img {
  max-width: 529px;
  width: 100%;
}

.query__area h3 {
  margin-top: 50px;
  margin-bottom: 10px;
  color: #1F5FA8;
  text-align: left;
  border-left: 5px solid #1F5FA8;
  padding: 5px 10px;
}

.query__area span {
  text-align: left;
}




.list__back{text-align: right;}
.list__back a {
  font-weight: bold;
  border-bottom: #000 1px solid;
  display: inline-block;
  color: #000;

}

.fa-caret-up {
  font-size: 1.8em;
  vertical-align: middle;
  padding-right: 3px;
}


/*---------------
  確認画面
  ---------------*/
.confirm__check__area {
  text-align: left;
  background-color: #D3EAFC;
  padding: 0px 12px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.confirm__check__area__inner p {
  padding: 18px 0;
  white-space: pre-wrap;
  color: #666;
}

/*====================================================================
レスポンシブ対応（スマホ）
====================================================================*/

@media screen and (max-width : 400px) {
  .compo-form__body .sv-mail input[type="text"]{width: 100%;}
  .compo-form__body .sv-mail span.sv-mail__unit{
    width: 100%;
    padding:8px 0 ;
  }
  .occurday-area .occuryear-select{
    display: block;
    margin-bottom: 10px;
  }
  .compo-news-flash{
    padding: 0 20px 15px;
  }

}