@charset "UTF-8";

/*    reset
-------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: top;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  /*background: transparent;*/
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type="text"],
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button:focus {
  outline: 0;
}

button:hover {
  cursor: pointer;
}

/*  global
----------------------------------------*/

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  word-break: normal;
}

body,
button,
input {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif;
}

a,
a:visited {
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
a:active {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

.bt:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";

  transition: 0.2s;
}

/*  default
----------------------------------------*/

body {
  font-size: 1.6rem;
}

input[type="text"],
input[type="password"],
textarea {
  background-color: #fff;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
}

input[type="text"]:disabled,
textarea:disabled {
  background-color: #f0f0f0;
  color: #404040;
  cursor: default;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  border: 1px solid #415a97;
}

textarea {
  font-size: 1.6rem !important;
}

input[type="text"].tel {
  width: 50%;
}
.kanri-page input[type="text"].year {
  width: 5em;
}

input[type="text"].zipcode {
  width: 50%;
}

input[type="text"].number {
  width: 8rem;
}

.select-box {
  background: url(../img/ico_select_box.png) no-repeat 100% 50%;
  background-size: 30px auto;
  border: 1px solid #b0b0b0;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 9rem;
  min-height: 44px;
  padding: 0 30px 0 1rem;
  font-size: 1.6rem;
  line-height: 44px;
  cursor: pointer;
}

.select-box:disabled {
  background-color: #f0f0f0;
  color: #404040;
  cursor: default;
}

.select-box:focus {
  border: 1px solid #415a97;
}

.select-box-container {
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + .checkbox {
  display: inline-block;
  min-height: 5.87vw;
  padding: 0 0 0 7.2vw;
  line-height: 5.87vw;
  background: url(../img/ico_checkbox.png) no-repeat 0 0;
  background-size: 5.87vw auto;
}

input[type="checkbox"]:disabled + .checkbox {
  background: url(../img/ico_checkbox_d.png) no-repeat 0 0;
  background-size: 5.87vw auto;
}

input[type="checkbox"]:checked + .checkbox {
  background: url(../img/ico_checkbox_on.png) no-repeat 0 0;
  background-size: 5.87vw auto;
}

input[type="checkbox"]:checked:disabled + .checkbox {
  background: url(../img/ico_checkbox_on_d.png) no-repeat 0 0;
  background-size: 5.87vw auto;
}

.check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.check-list-item {
  margin-left: 20px;
}

.check-list-item:first-child {
  margin-left: 0;
}

.check-list-item label {
  display: inline-block;
}

input[type="checkbox"] {
  margin-right: 1rem;
  transform: scale(1.5);
}

.bt-new-talk {
  display: inline-block;
  background-color: #8595bd;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  min-height: 44px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
}
.bt-talk {
  display: inline-block;
  background-color: #415a97;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  min-height: 44px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
}
.bt-kanri {
  display: inline-block;
  background-color: #415a97;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  min-height: 44px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
}
.bt-green {
  display: inline-block;
  background-color: #415a97;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  min-height: 44px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
}
.bt-green-sub {
  display: inline-block;
  background-color: #415a97;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  min-height: 44px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
}

.bt-gray {
  display: inline-block;
  background-color: #e8e8e8;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  min-height: 44px;
  color: #303030;
  font-size: 1.7rem;
  font-weight: bold;
  color: #808080;
  cursor: default !important;
}
a .bt-gray {
  cursor: default;
}

.bt-gray.bt-small {
  min-width: auto;
  padding: 0 2rem;
}

.bt-gray.bt-zipcode {
  min-width: 30%;
  margin-left: 1.33vw;
}

.bt-two-yes,
.bt-two-no {
  display: inline-block;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  border: 2px solid #a1a1a1;
  box-sizing: border-box;
  min-width: 48%;
  min-height: 44px;
  color: #565656;
  font-size: 1.7rem;
  font-weight: bold;
}

.bt-two-yes.active {
  background-color: #33a71e;
  color: #fff;
}
.bt-two-no.active {
  background-color: #6e8576;
  color: #fff;
}

.ico-qrcode {
  padding: 0 44px;
}

.ico-qrcode:after {
  background: url(../img/ico_qrcode.png) no-repeat 0 50%;
  background-size: 24px auto;
  content: " ";
  display: block;
  position: absolute;
  width: 24px;
  height: 100%;
  min-height: 44px;
  top: 0;
  left: 10px;
}

body {
  font-size: 1.6rem;
}

.wrapper_ {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hdr {
  border-bottom: 1px solid #d0d0d0;
}

.hdr-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.33vw;
}

.logo {
  width: 16vw;
}

.logo-image {
  width: 100%;
}

.title {
  line-height: 1;
  text-align: center;
}

.title-subtitle {
  width: 42vw;
}

.title-maintitle {
  width: 35.28vw;
  margin-top: 1.33vw;
}

.user-num {
  display: block;
  margin-top: 1.33vw;
  font-size: 1.4rem;
}

.hdr-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;

  width: 21.33vw;
  padding: 0;
}

.hdr-button .bt {
  background: none;
  border: none;
  padding: 0;
}

.hdr-button-image {
  width: 10vw;
}

.global-nav {
  border-bottom: 3px solid #415a97;
  padding: 1.33vw 0;
}

.global-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.global-nav-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  border-left: 1px solid #b0b0b0;
}

.global-nav-list-item:first-child {
  border-left: none;
}

.global-nav-list-item a,
.global-nav-list-item span {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  font-size: calc(100vw / 31.25);
}

.global-nav-list-item span {
  font-weight: bold;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;

  padding: 8vw 2.67vw 8vw;
}

.main.main-sokai {
  padding: 8vw 2.67vw 0;
}
.main.main-sokai .main-section {
  overflow: hidden;
  width: auto;
  margin-bottom: 4vw;
  margin-top: 0;
}

.page-title {
  display: block;
  border-left: 1.33vw solid #415a97;
  border-bottom: 1px solid #415a97;
  padding: 2.67vw;
  font-size: 2rem;
}

.ftr {
  margin-top: 12vw;
}

.ftr-top-wrapper {
  background-color: #f4f4f4;
  padding: 8vw 2.67vw;
}

.ftr-link-item + .ftr-link-item {
  margin-top: 4vw;
}

.ftr-link-item a {
  display: inline-block;
  background: url(../img/ico_link_arrow.png) no-repeat 0 50%;
  background-size: 4vw auto;
  min-height: 4vw;
  padding-left: 5vw;
  font-size: 1.5rem;
}

.ftr-bottom-wrapper {
  border-bottom: 10px solid #415a97;
  padding: 8vw 2.67vw;
  text-align: center;
}

.logo-j-image {
  width: 53.6vw;
}

.copyright {
  margin-top: 4vw;
  font-size: 1.2rem;
}

.main-section {
  overflow: hidden;
  width: 100%;
  margin-bottom: 8vw;
}
.main-section:first-child {
  margin-top: 0;
}
.error-message {
  position: relative;
  background-color: #fee;
  padding: 2.67vw 2.67vw 2.67vw 9vw;
  color: #d00;
}

.ico-error {
  position: absolute;
  display: block;
  background: url(../img/ico_error.png) no-repeat 0 0;
  background-size: 5.33vw auto;
  width: 5.33vw;
  height: 5.33vw;
  top: 2.67vw;
  left: 2.67vw;
}

.main-section.gray-top-border {
  border-top: 1px solid #d0d0d0;
  padding-top: 8vw;
  position: relative;
}

.section-title {
  font-size: 1.7rem;
  font-weight: bold;
  padding-right: 6em;
}

.section-title + .section-block,
.section-block {
  margin-top: 2.67vw;
}
.section-block {
  /* max-width: 640px; */
  margin-left: auto;
  margin-right: auto;
}
.section-block-wide {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.green-left-head {
  border-left: 6px solid #415a97;
  padding-left: 2.67vw;
}
.cr-left-head {
  padding-left: 1.33vw;
}
.cr-left-head:before {
  content: "● ";
  color: #565656;
}
.riji-status {
  display: inline-block;
  padding: 1px 6px;
  margin-left: 6px;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 4px;
  min-width: 5em;
  text-align: center;
  vertical-align: text-bottom;
}
.riji-status.status01 {
  background: #f33;
}

h3 {
  position: relative;
}
.section-image {
  text-align: center;
}

.section-image .image {
  max-width: 80%;
}

.form-button-set-item + .form-button-set-item {
  margin-top: 5.33vw;
}

.gray-border-box {
  border: 1px solid #d0d0d0;
  padding: 5.33vw 2.67vw;
}

.basic-list {
  display: table;
}

.basic-list-item {
  display: table-row;
}

.basic-list-item-name,
.basic-list-item-data {
  display: table-cell;
  padding-top: 1.33vw;
}

.basic-list-item:first-child .basic-list-item-name,
.basic-list-item:first-child .basic-list-item-data {
  padding-top: 0;
}

.basic-list-item-name {
  padding-right: 2.67vw;
  font-weight: bold;
}

.large-down-arrow {
  text-align: center;
}

.large-down-arrow .image {
  width: 27vw;
}

.form-set-name {
  font-weight: bold;
}
.form-set-order {
  display: inline-block;
  padding: 0 1.33vw 0 0.67vw;
  vertical-align: bottom;
}

.form-set-name + .form-set-input {
  margin-top: 2.67vw;
}

.overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 98;
}

.overlay.modalclose {
  display: none;
}
.modal {
  background-color: #fff;
  border-radius: 1.33vw;
  box-sizing: border-box;
  width: 84%;
  padding: 5.33vw;
  z-index: 99;
}

.modal-caption {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.modal-caption + .modal-section,
.modal-section + .modal-section {
  margin-top: 5.33vw;
}

.btn-item {
  margin-bottom: 30px;
}

.box-item {
  /* overflow-y: scroll; */
  border: 1px solid #d0d0d0;
  /* height: 150px; */
  margin-top: 2.67vw;
  font-size: 1.6rem;
}
.box-item.news-detail {
  font-weight: bold;
  border: none;
  border-bottom: 1px solid #999;
}

.box-item a {
  text-decoration: none;
  display: block;
}

.box-item-sokai {
  border-top: 1px solid #d0d0d0;
  margin-top: 20px;
  font-size: 1.6rem;
}
.box-item-wrapper {
  padding: 2.67vw;
}

.box-item-list-item {
  border-top: 1px dashed #d0d0d0;
  margin-top: 6vw;
  padding-top: 6vw;
  position: relative;
}

.box-item-list-item:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.box-item-list-item .text.text_border {
  margin: 2.67vw 0;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 6px 10px;
}
.box-item-list-item .text.text_border.sche_view {
  margin: 2.67vw 0;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  padding: 6px 10px;
  background: #fdf9f3;
}

.news-detail-text {
  padding: 20px 10px 30px;
  white-space: break-spaces;
}
.news-detail-sche-title {
  display: block;
  padding: 0px 10px 0px;
  font-weight: bold;
}
.news-detail-sche-detail {
  display: block;
  padding: 0px 10px 30px;
}

.btns_wrapper_two {
  display: flex;
  margin: 20px auto;
  justify-content: space-between;
}
.btn_to_list {
  position: absolute;
  /* right: 0; */
  /* top: 0.6vw; */
  /* font-size: 1.3rem; */
  /* font-weight: normal; */
  /* display: inline-block; */
  background: url(../img/ico_link_arrow.png) no-repeat 0 50%;
  /* background-size: 4vw auto; */
  /* min-height: 4vw; */
  /* padding-left: 5vw; */
  background-size: 14px auto;
  min-height: 20px;
  padding-left: 16px;
  font-size: 1.4rem;
  /* top: 16px; */
  right: 6px;
  font-weight: normal;
    max-width: 7em;
}
.date {
  font-weight: normal;
  font-size: 1.4rem;
}
.tag {
  display: inline-block;
  padding: 1px 6px;
  margin-left: 6px;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  min-width: 5em;
  text-align: center;
  font-weight: normal;
}
.tag01 {
  background: #3ba9ea;
}
.tag02 {
  background: #f33;
}
.tag03 {
  background: #f2ad57;
}
.tag04 {
  background: #7d57f2;
}
.tag-update {
  background: #f33;
  font-size: 1rem;
}

.tag_talk {
  color: #f33;
  display: inline-block;
  margin-left: 6px;
  font-size: 1.2rem;
}

.sche_view {
  margin: 1.33vw 0;
}
.sche_view_room {
  display: inline-block;
  margin-right: 1.333vw;
}

.sche_view_date {
  display: inline-block;
  margin-right: 4vw;
  line-height: 1.2;
  height: 3em;
  padding-top: 0.3em;
  margin-right: auto;
  max-width: 40%;
}
.sche_view_select {
  border-radius: 4px;
  border: 2px solid #a1a1a1;
  color: #a1a1a1;
  font-weight: bold;
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  vertical-align: middle;
  line-height: 1.8em;
  font-size: 2rem;
  margin: 0 1.33vw;
  background: #fff;
}

.sche_view_select.selected {
  background: #33a71e;
  color: #fff;
}
.sche_view_select.no-selected {
  background: #f0f0f0;
  color: #ccc;
  border: solid 2px #ccc;
}

.text_title {
  font-size: 1.4rem;
}
.sche_view_child {
  display: flex;
  flex-wrap: wrap;
}

.main-visual {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
}
.main-visual img {
  width: 100%;
}

.btn_kanri {
  display: inline-block;
  padding: 1px 10px;
  font-size: 1.4rem;
  border-radius: 4px;
  border: 1px solid #999;
  white-space: nowrap;
  margin: 10px;
  background: #fff;
  cursor: pointer;
}
.btn_kanri a {
  display: block;
}

.top-btns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  justify-content: flex-start;
}

.top-btns-item {
  width: 33%;
  height: auto;
  position: relative;
}

.top-btns-item a {
  border: solid 1px #ded7c6;
  border-radius: 1vw;
  -webkit-border-radius: 1vw;
  -moz-border-radius: 1vw;
  display: block;
  margin: 1vw;
  padding-top: 100%;
}
.top-btns-item .top-btns-item-text {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1vw 2vw 6vw;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  font-size: 1.3rem;
  line-height: 1.1;
}
.top-btns-item .top-btns-item-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 1vw 1vw 2vw;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.top-btns-item .top-btns-item-text:before {
  content: "";
  height: 100%;
  vertical-align: text-bottom;
  width: 0px;
  display: inline-block;
}

.top-btns-item .top-btns-item-img:before {
  content: "";
  display: block;
  height: 100%;
  background: url(../img/icon_01.png) no-repeat;
  background-size: 50%;
  background-position: 50%;
}
.top-btns-item.top-btns-item-01 .top-btns-item-img:before {
  background: url(../img/icon_01.png) no-repeat;
  background-size: 50%;
  background-position: 50% 33%;
}
.top-btns-item.top-btns-item-02 .top-btns-item-img:before {
  background: url(../img/icon_02.png) no-repeat;
  background-size: 50%;
  background-position: 50% 33%;
}
.top-btns-item.top-btns-item-03 .top-btns-item-img:before {
  background: url(../img/icon_01.png) no-repeat;
  background-size: 50%;
  background-position: 50% 33%;
}
.top-btns-item.top-btns-item-04 .top-btns-item-img:before {
  background: url(../img/icon_04.png) no-repeat;
  background-size: 50%;
  background-position: 50% 33%;
}
.top-btns-item.top-btns-item-05 .top-btns-item-img:before {
  background: url(../img/icon_05.png) no-repeat;
  background-size: 50%;
  background-position: 50% 33%;
}
.top-btns-item.top-btns-item-06 .top-btns-item-img:before {
  background: url(../img/icon_00.png) no-repeat;
  background-size: 50%;
  background-position: 50% 33%;
}
.top-btns-item-01.top-btns-item a {
  background: #cae5f5;
}
.top-btns-item-02.top-btns-item a {
  background: #f7d9a4;
}
.top-btns-item-03.top-btns-item a {
  background: #ccebb0;
}
.top-btns-item-04.top-btns-item a {
  background: #e2daca;
}
.top-btns-item-05.top-btns-item a {
  background: #f5cacc;
}
.top-btns-item-06.top-btns-item a {
  background: #ccebb0;
}

.text_link a {
  display: inline-block;
  background-color: #415a97;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  min-width: 100%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px;
}

.frame-wrapper__et {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid #ccc;
}
.frame-wrapper__et iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.kanri-page {
  font-size: 86%;
}

.talk-data {
  font-size: 1.2rem;
  color: #565656;
}

.gian-heading {
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}

.gian-text {
  display: none;
  padding: 6px;
}
.gian-text.gianopen {
  display: block;
  white-space: break-spaces;
}

#login .el-checkbox__label{
  padding-top: 2px;
}

/*理事会編集、書庫編集画面*/
#bod-edit form{
  margin-top:40px;
}

.shoko-title {
  margin-top: 30px;
  font-weight: bold;
  padding-left: 2.67vw;
}
.regdate {
  font-size: 1.2rem;
  color: #808080;
  display: block;
  text-align: right;
}
.btn-more-wrapper {
  width: 100%;
  text-align: right;
}
.btn-more {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: normal;
  display: inline-block;
  background: url(../img/ico_link_arrow.png) no-repeat 0 50%;
  background-size: 16px auto;
  min-height: 16px;
  padding-left: 20px;
  line-height: 16px;
}

.btn-kanri-warpper {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: normal;
}

/*  管理スマートフォン対応
----------------------------------------*/

.el-form-item__label {
  width: 100% !important;
  text-align: left !important;
}

.el-form-item__content {
  margin-left: 0 !important;
}

.rijische-result {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 2vw 0;
}
.rijische-result .el-col-1 {
  width: 20%;
  font-size: 120%;
  text-align: center !important;
}
.rijische .el-col-2 {
  width: 12% !important;
}
.rijische .el-col-4 {
  width: 26% !important;
}

.text_link {
  margin-top: 10px;
}

.policy-wrapper {
  margin-top: 40px;
}
.policy-wrapper h4 {
  border-bottom: 1px solid #999;
  margin: 40px auto 20px;
  font-weight: 700;
}
.policy-wrapper p {
  font-size: 0.9em;
  line-height: 1.4;
  padding: 0 10px 10px;
}

.kiyaku-wrapper h4 {
  border-bottom: 1px solid #999;
  margin: 40px auto 20px;
  font-weight: 700;
}
.kiyaku-wrapper p {
  font-size: 0.9em;
  line-height: 1.4;
  padding: 0 10px 10px;
}
.kiyaku-wrapper ol {
  width: 100%;
  overflow: hidden;
  _zoom: 1;
  /* margin-top: 30px; */
  padding: 0 10px 10px;
}

.kiyaku-wrapper ol li {
  font-size: 0.9em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.faq-cate {
  margin: 20px auto;
}
.faq-wrapper dl dt:first-child {
  margin-top: 0;
}
.faq-wrapper dl {
  width: 100%;
  overflow: hidden;
  _zoom: 1;
  margin-top: 0px;
}

.faq-wrapper dl dd,
.faq-wrapper dl dt {
  font-size: 0.9em;
  line-height: 1.4;
}

.faq-wrapper dl dt {
  margin: 30px 20px 0 0;
}

.faq-wrapper dl dd span.cap,
.faq-wrapper dl dt span.cap {
  font-size: 1.2em;
  font-weight: bold;
  font-family: "Nunito", sans-serif;
  display: table-cell;
}
.faq-wrapper dl dt span.cap span {
  display: block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  text-align: center;
  margin-right: 0.4em;
  border-radius: 6px;
  background: #557cb4;
  line-height: 30px;
}
.faq-wrapper dl dd span.cap span {
  display: block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  text-align: center;
  margin-right: 0.4em;
  border-radius: 6px;
  background: #00b1e7;
  line-height: 30px;
}

.faq-wrapper dl dd p,
.faq-wrapper dl dt p {
  display: table;
}
.faq-wrapper dl dd span,
.faq-wrapper dl dt span {
}

.faq-wrapper dl dd {
  margin: 20px 0 -1px 0;
  padding-bottom: 30px;
  border-bottom: 1px #ccc solid;
}

.faq-wrapper dl dd span.text,
.faq-wrapper dl dt span.text {
  display: table-cell;
}

.faq-wrapper dl dt:first-letter {
  color: #fff;
}
.faq-wrapper dl dd:first-letter {
  color: #fff;
}

#icon-menu {
  margin-top: 40px;
}

/*  over 769px
----------------------------------------*/

@media (min-width: 769px) {
  /*  管理スマートフォン対応
----------------------------------------*/

.frame-wrapper__et {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 0%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid #ccc;
  height: 700px;
}

.frame-wrapper__et iframe {
  position: relative;
}


  .wrapper {
    margin: 0 auto;
  }

  .el-form-item__label {
    width: 200px !important;
    text-align: right !important;
  }

  .el-form-item__content {
    margin-left: 200px !important;
  }

  .rijische-result {
    display: inline;
    width: auto;
    overflow: hidden;
    padding: 0;
  }

  .rijische-result .el-col-1 {
    width: 4.16667%;
    font-size: 120%;
    text-align: center !important;
  }
  .rijische .el-col-2 {
    width: 8.33333% !important;
  }
  .rijische .el-col-4 {
    width: 16.66667% !important;
  }

  body {
    font-size: 1.8rem;
  }

  input[type="text"] {
    width: 35vw;
    font-size: 1.8rem;
  }
  .kanri-page input[type="text"] {
    width: 35vw;
    font-size: 1.6rem;
  }

  textarea {
    font-size: 100%;
  }

  input[type="text"].tel {
    width: 20vw;
  }

  .select-box {
    font-size: 1.8rem;
  }
  .kanri-page .select-box {
    font-size: 1.6rem;
  }

  input[type="checkbox"] {
    display: none;
  }

  input[type="checkbox"] + .checkbox {
    display: inline-block;
    min-height: 22px;
    padding: 0 0 0 28px;
    line-height: 22px;
    background: url(../img/ico_checkbox.png) no-repeat 0 0;
    background-size: 22px auto;
  }

  input[type="checkbox"]:disabled + .checkbox {
    background: url(../img/ico_checkbox_d.png) no-repeat 0 0;
    background-size: 22px auto;
  }

  input[type="checkbox"]:checked + .checkbox {
    background: url(../img/ico_checkbox_on.png) no-repeat 0 0;
    background-size: 22px auto;
  }

  input[type="checkbox"]:checked:disabled + .checkbox {
    background: url(../img/ico_checkbox_on_d.png) no-repeat 0 0;
    background-size: 22px auto;
  }

  .bt-green,
  .bt-gray {
    min-width: 20vw;
    font-size: 2.4rem;
    /* width: 27vw; */
  }

  .buttons-3 .bt-green,
  .buttons-3 .bt-gray {
    min-width: 25vw;
    font-size: 2.2rem;
  }

  .bt-gray.bt-small {
    font-size: 1.8rem;
  }

  .bt-gray.bt-zipcode {
    min-width: 40%;
    margin-left: 10px;
    font-size: 1.8rem;
  }
  .bt-kanri {
    min-width: 10vw;
    font-size: 1.6rem;
    padding: 0 1.33vw;
  }

  .hdr-wrapper {
    padding: 10px 20px;
  }

  .logo {
    width: 100px;
  }

  .logo-image {
    width: 100%;
  }

  .title-subtitle {
    width: 292px;
  }

  .title-maintitle {
    width: 262px;
    margin-top: 10px;
  }

  .hdr-button {
    width: 100px;
  }

  .hdr-button-item + .hdr-button-item {
    margin-left: 10px;
  }

  .hdr-button-image {
    width: 64px;
  }

  .global-nav {
    padding: 10px 0;
  }

  .global-nav-list-item a,
  .global-nav-list-item span {
    padding: 0.5rem 3rem;
    font-size: 2rem;
  }

  .main {
    padding: 30px 20px 50px;
  }
  .main.main-sokai {
    padding: 30px 0px 0px;
  }

  .page-title {
    border-left: 10px solid #415a97;
    padding: 10px 20px;
    font-size: 3rem;
  }

  .ftr-top-wrapper {
    padding: 30px 70px;
  }

  .ftr-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .ftr-link-item + .ftr-link-item {
    margin: 0 0 0 30px;
  }

  .ftr-link-item a {
    background-size: 20px auto;
    min-height: 20px;
    padding-left: 24px;
    font-size: 1.8rem;
  }

  .ftr-bottom-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    padding: 30px 70px;
    text-align: left;
  }

  .logo-j-image {
    width: 270px;
  }

  .copyright {
    margin: 0 0 0 30px;
    font-size: 1.6rem;
    text-align: right;
  }

  .copyright br {
    display: none;
  }

  .copyright br:after {
    content: " ";
  }

  .order-step {
    margin-top: 30px;
  }

  .order-step-item,
  .order-step-item.active,
  .order-step-item.done {
    background-size: 90px;
  }

  .order-step-item + .order-step-item {
    padding-left: 5vw;
  }

  .order-step-image {
    width: 90px;
  }

  .main-section {
    width: calc(100% - (50px * 2));
    margin: 30px 50px 0;
    padding-bottom: 5px;
  }

  .error-message {
    padding: 20px 20px 20px 70px;
  }

  .ico-error {
    position: absolute;
    display: block;
    background: url(../img/ico_error.png) no-repeat 0 0;
    background-size: 40px auto;
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
  }

  .main-section.gray-top-border {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .section-title + .section-block,
  .section-block + .section-block {
    margin-top: 20px;
  }

  .green-left-head {
    padding-left: 20px;
  }

  .section-image-right {
    float: right;
  }

  .section-image .image {
    max-width: 30vw;
  }

  .section-image-right .image {
    max-width: 30vw;
    margin-left: 30px;
  }

  .form-button-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .form-button-set-item + .form-button-set-item {
    margin: 0 0 0 20px;
  }

  .gray-border-box {
    padding: 30px;
  }

  .large-down-arrow .image {
    width: 15vw;
  }

  .select-option-form {
    width: 20%;
  }

  .select-option-image {
    box-sizing: border-box;
    width: 30%;
    margin-left: 50px;
    text-align: center;
  }

  .total-price,
  .subtotal-price {
    padding-top: 20px;
    font-size: 2rem;
    text-align: right;
  }

  .form-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .form-set-name {
    width: 15vw;
  }

  .form-set-input .form-set-name {
    width: auto;
  }

  .form-set-input {
    width: 65vw;
  }

  .form-set-name + .form-set-input {
    margin: 0 0 0 30px;
  }

  .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* -webkit-box-orient: horizontal; */
    /* -webkit-box-direction: reverse; */
    -ms-flex-direction: row-reverse;
    /* flex-direction: row-reverse; */
  }

  .buttons .section-block {
    margin: 0 auto;
    /* padding: 1.33vw 6vw; */
  }
  .buttons.cloumBtns {
    flex-wrap: wrap;
   }
  .buttons.cloumBtns .section-block {
    margin: 0 auto;
    width: 45%;
    flex-wrap: wrap;
   }
  .buttons.cloumBtns .bt {
    margin: 0 auto 16px;
    width: 100%;
    flex-wrap: wrap;
   }
  .buttons .bt {
    min-width: 16vw;
  }

  .col-2 > div + div {
    margin-left: 30px;
  }

  .form-set-input-image {
    margin-top: 10px;
    text-align: left;
  }

  .form-set-input-image .image {
    max-width: 30vw;
  }

  .modal {
    border-radius: 10px;
    padding: 20px;
  }

  .modal-caption {
    font-size: 2.4rem;
  }

  .modal-text {
    text-align: center;
  }

  .modal-caption + .modal-section,
  .modal-section + .modal-section {
    margin-top: 20px;
  }

  .box-item {
    /* height: 200px; */
    margin-top: 20px;
    border: none;
  }

  .box-item-wrapper {
    padding: 20px;
  }

  .box-item-list-item {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    margin-top: 20px;
    padding-top: 20px;
  }

  .box-item-list-item:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
  }

  .box-item-list-item .date {
    /* width: 150px; */
    margin-right: 20px;
    margin-bottom: 6px;
  }
  .talk-data,
  .box-item-list-item .text {
    /* width: 150px; */
    width: 90%;
    margin-right: 20px;
    margin-left: 20px;
  }
  .box-item-list-item .text.text_border,
  .box-item-list-item .text.text_border.sche_view {
    margin: 10px 20px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 6px 10px;
    background: #fdf9f3;
  }
  .btns_wrapper_two {
    margin: 20px;
    width: 90%;
  }
  .bt-two-yes {
    min-width: 48%;
  }
  .bt-two-no {
    min-width: 48%;
  }
  .sche_view {
    margin: 4px 0;
  }

  .box-item a {
    text-decoration: underline;
  }

  .top-btns-item {
    width: 25%;
    height: auto;
    position: relative;
  }

  .top-btns-item a {
    border: solid 1px #ded7c6;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    display: block;
    margin: 10px;
    padding-top: 100%;
  }

  .btn_to_list {
    background-size: 14px auto;
    min-height: 20px;
    padding-left: 16px;
    font-size: 1.4rem;
    top: 16px;
    right: 6px;
	max-width: 20em;
  }
} /* /@media (min-width: 769px) */

.et_reload {
  position: absolute;
  top: 8px;
  right: 2vw;
  z-index: 1;
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 0 2vw;
  background: #fff;
  font-size: 90%;
  cursor: pointer;
  display: none;
}

.frame-wrapper__video {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 56.25%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 2px solid #ccc;
}
.frame-wrapper__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

#result {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid gray;
  font-size: 100%;
}

.frame-wrapper__bg {
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: #e7edfd;
  position: fixed;
  display: none;
  top: 0;
}
.frame-wrapper__pdf,
.frame-wrapper__chat {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  display: none;
  top: 0;
  left: 0;
  transition: transform 1s $easeOutQuart, opacity 0.8s $easeOutSine;
}

.frame-wrapper__bg.chatopen,
.frame-wrapper__pdf.pdfopen,
.frame-wrapper__chat.chatopen {
  display: block;
}
.frame-wrapper__chat.chatopen {
  display: block;
  height: 100vh;
  background: #e7edfd;
}

.frame-wrapper__pdf iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
}

.pdfclose,
.chatclose {
  display: none;
  border-radius: 50%;
  background: #ccc;
  position: fixed;
  top: 8px;
  right: 6px;
  z-index: 4;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 80%;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

#chat .chatclose {
  top: auto;
  margin-top: 4px;
}

.pdfclose.pdfopen,
.chatclose.chatopen {
  display: block;
}

.img-name {
  font-size: 1.2rem;
  height: 3.6em;
  width: 3.6em;
  background: #6f93d4;
  display: block;
  border-radius: 50%;
  text-align: center;
  line-height: 3.6em;
  /* padding: 1em 0; */
  position: absolute;
  z-index: 2;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btns.yoko {
  position: absolute;
  top: 1vw;
  right: 2vw;
  width: auto;
  padding: 0 6vw;
}

.btns.yoko .pdfopenBtn,
.btns.yoko .chatopenBtn {
  width: auto;
}

.frame-wrapper__chat .section {
  margin: 0px auto;
  width: 100vw;
}

.inputWrapper {
  text-align: center;
  position: fixed;
  bottom: 6%;
  width: 100vw;
  background: #e7edfd;
  padding: 2.67vw;
  z-index: 3;
}
textarea {
  border: 1px solid #999;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  max-height: 400px;
  min-width: 240px;
  min-height: 80px;
}

.oneArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1024px;
  margin: 0vw auto 8vw;
  padding: 1px 10px 8vh;
}
.oneArea .onebox {
  width: 100vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-top: 6vw;
  /* align-items: flex-end; */
}
.oneArea .onebox .time {
  padding: 0 1.33vw;
  font-size: 1.4rem;
  color: #666;
  margin-top: auto;
}
.oneArea .onebox.me {
  flex-direction: row-reverse;
  /* margin-top: 20px; */
}
.oneArea .onebox.me .imgArea {
  display: none;
}
.oneArea .onebox .imgArea {
  max-width: 4em;
  width: 16%;
  position: relative;
}
.oneArea .onebox .imgArea img {
  width: 100%;
  max-width: 130px;
  position: absolute;
  top: -20px;
  left: 0;
  padding-right: 6vw;
}
.oneArea .onebox.me .imgArea img {
  width: 100vw;
  max-width: 130px;
  position: absolute;
  top: -20px;
  left: auto;
  right: 0;
  padding-left: 30px;
}
.oneArea .onebox .fukiArea {
  width: 70%;
  text-align: left;
}
.oneArea .onebox .fukidasi {
  width: 100%;
  position: relative;
  padding: 25px;
  background-color: #fff;
  font-size: 18px;
  color: #231815;
  border-radius: 12px;
  box-sizing: border-box;
}
.oneArea .onebox .fukidasi::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  top: 22px;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.oneArea .onebox .fukidasi::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  top: 40px;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
}
.oneArea .onebox .fukidasi::before {
  left: -15px;
  border-left: 25px solid #fff;
  border-top: 25px solid transparent;
}
.oneArea .onebox .fukidasi::after {
  left: -25px;
  border-left: 25px solid #e7edfd;
  border-top: 25px solid transparent;
}
.oneArea .onebox.me .fukidasi {
  background-color: #8ced7a;
}
.oneArea .onebox.me .fukidasi::before {
  left: auto;
  right: -15px;
  border-left: 25px solid transparent;
  border-top: 25px solid #8ced7a;
}
.oneArea .onebox.me .fukidasi::after {
  left: auto;
  right: -25px;
  border-left: 25px solid transparent;
  border-top: 25px solid #e7edfd;
}
.talk-date {
  display: flex;
  align-items: center;
  width: 100%;
  color: #565656;
  font-size: 1.2rem;
}

.talk-date:before,
.talk-date:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #999;
}

.talk-date:before {
  margin-right: 1rem;
}

.talk-date:after {
  margin-left: 1rem;
}
.chat-heading {
  width: 100%;
  padding: 1.33vw 80px 1.33vw 2.67vw;
  text-align: left;
  background: #415a97;
  color: #fff;
  font-weight: bold;
  position: fixed;
  z-index: 3;
  top: 0;
}

.oneArea {
  margin: 0px auto;
}
.oneArea .onebox.me {
  /* margin-top: 15px; */
  margin-right: 10vw;
}
.oneArea .onebox .imgArea {
  width: 16%;
}
.oneArea .onebox .fukidasi {
  padding: 20px 15px;
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .oneArea .onebox .imgArea img {
    top: 0;
  }
  .oneArea .onebox.me .imgArea img {
    top: 0;
  }
  .oneArea .onebox .fukidasi {
    padding: 16px 10px;
    font-size: 1.4rem;
  }
  .oneArea .onebox .fukidasi::before {
    top: 8px;
  }
  .oneArea .onebox .fukidasi::after {
    top: 20px;
  }
}

@media screen and (max-width: 1024px) {
#admin-chat {
  margin:  0 auto;
}

#admin-chat #chat-view {
  margin:  0 auto;
  width: 1024px;
}

#admin-chat #chat-view .message-box {
  width: 1024px!important;
}
#admin-chat #chat-view .message-box div:nth-child(3) {
  width: 300px!important;
}

#admin-chat .el-row{
  text-align:left
}
#admin-chat .el-row div {
  width: 100%!important; 
  margin: 0 0 3px 0;
}
}



.type-pdf,
.type-ppt,
.type-excel,
.type-image,
.type-word {
	position:relative;
	line-height:1.2em;
	padding-left:2em;
}
.type-pdf:before,
.type-ppt:before,
.type-excel:before,
.type-image:before,
.type-word:before{
	position:absolute;
	left:0;
	content:"";
	display:inline-block;
	width:1.6em;
	height:1.6em;
}

.type-pdf:before{
	background:url(/assets/img/icon_pdf.png) no-repeat;
	background-size:contain;
}

.type-ppt:before{
	background:url(/assets/img/icon_ppt.png) no-repeat;
	background-size:contain;
}

.type-excel:before{
	background:url(/assets/img/icon_excel.png) no-repeat;
	background-size:contain;
}

.type-image:before{
	background:url(/assets/img/icon_image.png) no-repeat;
	background-size:contain;
}

.type-word:before{
	background:url(/assets/img/icon_word.png) no-repeat;
	background-size:contain;
}

.teams-login-coution-message {
  font-size: 1.4rem;
  color: #f09724;
}

.dlg-magic-number .el-dialog {
  width: 40%;
  max-width: 500px;
}

@media screen and (max-width: 1024px) {
  .dlg-magic-number .el-dialog {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .dlg-magic-number .el-dialog {
    width: 90%;
  }
}

.dlg-magic-number .el-dialog a.bt-green {
  color: white;
  text-align: center;
  line-height: 2.5em;
  width: 100%;
  font-size: 2rem;
  text-decoration: none;
}
.dlg-magic-number .el-dialog a.bt-gray {
  text-align: center;
  line-height: 2.5em;
  width: 100%;
  font-size: 2rem;
  text-decoration: none;
}
