/** @format */

@charset "utf-8";

/*  style.css
---------------------------------------------- */

/*  pc
---------------------------------------------- */
/* common */
body {
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS P Gothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Osaka', arial, sans-serif, verdana, Helvetica;
  font-weight: 400;
}

main {
  margin-top: 120px;
  font-size: 1.5rem;
}

section {
  padding: 85px 0;
}

a {
  display: block;
}

svg {
  fill: currentColor;
}

.inner {
  width: 92%;
  max-width: 1360px;
  margin: 0 auto;
}

.center {
  text-align: center;
}
.margin_center {
  margin: 0 auto;
}

.half {
  width: 50%;
}

.hidden {
  display: none !important;
}

.btn {
  display: flex;
  font-size: 1.8rem;
  font-weight: 700;
  width: 200px;
  padding: 8px;
  border-radius: 0.3rem;
  justify-content: center;
}

.btn:hover {
  opacity: 0.7;
}

.btn_sm {
  width: 120px;
}
.btn_ssm {
  width: 60px;
}
.main_btn {
  color: #7AC1CE !important;
  background-color: #ffffff;
  border: 2px solid #7AC1CE;
}

.sub_btn {
  color: #fff !important;
  background-color: #7ac1ce;
  border: 2px solid #7AC1CE;
}

.danger_btn {
  color: #fff !important;
  background-color: #ff7b95;
  border: 2px solid #ff7b95;
}
.green_btn {
  color: #fff !important;
  background-color: #10a37f;
  border: 2px solid #10a37f;
}
.gray_btn {
  color: #9F9F9F !important;
  border: 1px solid #9F9F9F;
  background-color: #fff;
}

.clipboard {
  cursor: pointer;
}

.clipboard:hover {
  color: #7ac1ce;
}

/* clm2_wrap */
.clm2_wrap {
  padding-bottom: 85px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.clm2_wrap .left_wrap {
  padding: 0;
  width: 68%;
}

.clm2_wrap .right_wrap {
  padding: 0;
  width: 32%;
  background: #ffffff;
  border: 1px solid #e7e8eb;
  border-radius: 20px;
}

.clm2_wrap .right_wrap .ttl {
  position: relative;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 2.8rem;
}

/* flash */
.flash {
  margin-bottom: 24px;
  padding: 16px;
  text-align: center;
  font-size: 1.6rem;
}

.alert-status {
  background: #81c78480;
  color: #388e3c;
}

.alert-danger {
  background: #e5737380;
  color: #d32f2f;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 24px;
  font-size: 1.8rem;
  font-weight: 700;
}

.pagination li {
  margin: 8px;
}

/* form */
.form_body {
  display: flex;
  font-size: 1.8rem;
  justify-content: center;
}

.form_body form {
  width: 100%;
}

.form_body .form_header {
  border-bottom: #0b1f75 1px solid;
  margin: 50px 0;
}

.form_input {
  display: flex;
  margin: 20px auto;
  align-items: center;
}

.form_input label {
  width: 200px;
  margin-right: 25px;
  align-self: flex-start;
}

.form_input input {
  width: 55%;
}
.form_input input.short {
  width: 30%;
}
.form_body .error {
  color: #ff7b95;
  font-weight: 700;
}

.form_body .required::after {
  content: "*";
  color: #ff7b95;
  font-weight: 700;
}

.form_input input[type="text"],
.form_input input[type="email"],
.form_input input[type="password"] {
  border-bottom: #e7e8eb 1px solid;
  padding: 8px;
}

.form_input input[type="date"] {
  width: 200px;
}

.form_input input[type="radio"] {
  width: 30px;
}

.form_input input[type="checkbox"] {
  width: 30px;
}

.form_input select {
  padding: 8px;
  text-align: center;
  border: #7ac1ce 1px solid;
  border-radius: 0.3rem;
}

.form_input .upload_btn {
  position: relative;
  font-size: 1.2rem;
}

.form_input .upload_btn input[type="file"] {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.form_input textarea {
  border: #e7e8eb 1px solid;
  width: 70%;
  height: 120px;
  padding: 4px;
}

.form_input .current_img {
  margin-left: 32px;
  height: 64px;
  display: flex;
  align-items: center;
}

.form_input .current_img span {
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.form_input .current_img img {
  display: block;
  height: 64px;
}

.form_input .current_img .delete_current {
  background: #ff7b95;
  color: #fff;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 16px;
  margin-left: -16px;
  margin-top: -32px;
}

.form_input .tmp_img {
  margin-left: 16px;
  height: 64px;
  display: flex;
  align-items: center;
}

.form_input .tmp_img .delete_upload {
  background: #ff7b95;
  color: #fff;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 16px;
  margin-left: -16px;
  margin-top: -32px;
}

.upload_filename {
  margin-left: 16px;
}

.section_title {
  font-weight: 700;
  margin-top: 32px;
}
#staff_messages {
  margin: 20px 0;
}
.staff_wrap {
  border: 1px solid #7AC1CE;
  border-radius: 10px;
  padding: 20px;
  margin: 10px 0;
}
.submit_wrap {
  display: flex;
  margin-top: 36px;
  justify-content: center;
  width: 100%;
}

.submit_wrap .reserve_delete_btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.edit_wrap {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 20px;
}

.badge {
  border: 2px solid #0b1f75;
  border-radius: 1rem;
  margin: 8px;
  padding: 8px;
  color: #0b1f75;
  font-weight: 700;
}

.badge-success {
  color: #388e3c;
  border-color: #388e3c;
}

.badge-danger {
  color: #ff7b95;
  border-color: #ff7b95;
}

.badge-gray {
  color: #9f9f9f;
  border-color: #9f9f9f;
}

/* sidemenu */
#sidemenu {
  background: #f1f6fa;
  border-right: 1px solid #e7e8eb;
  overflow: hidden;
  width: 100%;
  margin-top: 50px;
  max-width: 200px;
}

#sidemenu .menu_list {
  width: 100%;
  margin: 0 auto;
  display: block;
}

#sidemenu .menu_list li {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
  text-align: center;
}

#sidemenu .menu_list li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 1px;
  bottom: 0;
  left: -50%;
  background: #e0e2e3;
}

#sidemenu .menu_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ac1ce;
}

#sidemenu .menu_list li a.active,
#sidemenu .menu_list li a:hover {
  color: #7ac1ce;
}

#sidemenu .menu_list li a.active path,
#sidemenu .menu_list li a:hover path {
  fill: #7ac1ce;
}

#sidemenu .menu_list li svg {
  margin-right: 30px;
}

#sidemenu .menu_list li p {
  font-weight: 500;
  font-size: 2rem;
}

#sidemenu .menu_list .menu_header {
  background-color: #7ac1ce;
  color: #fff;
}

#sidemenu .menu_list .long_title h4 {
  font-size: 1.5rem;
  padding: 0.5rem 0;
}

/* ai assistant */
.ai_assistant {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 75px;
  height: 75px;
  z-index: 999;
}

.ai_assistant .chat_icon {
  color: #10a37f;
  fill: currentColor;
  width: 75px;
  height: 75px;
}

.ai_assistant span {
  color: #10a37f;
  font-weight: 700;
}

/* tag */
.tag_list {
  display: flex;
}

.tag_list .tag {
  border-radius: 30px;
  border: 1px solid #e4e6ea;
  background: #edeef0;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}

.tag_list .tag::before {
  content: "#";
}

.check_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: #10a37f;
}

.xmark_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: #ff7b95;
}

/* tab */
.tab,
.sch_tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.8rem;
  font-weight: 700;
}

.tab.end {
  justify-content: flex-end;
}

.tab li,
.sch_tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 205px;
  height: 52px;
  background-color: #ecedef;
  box-shadow: 0px 0px 0px 1px #d4d5d7 inset;
  border-radius: 26px;
  cursor: pointer;
  transition: all 0.1s;
}

.tab li.active,
.tab li:hover,
.sch_tab a.active,
.sch_tab a:hover {
  box-shadow: 0px 0px 0px 3px #7AC1CE inset;
  color: #7AC1CE;
}

.tab.sec_tab {
  justify-content: space-between;
  margin-bottom: 50px;
  padding-top: 50px;
  overflow-x: scroll;
}

.tab.sec_tab li {
  width: initial;
  padding: 0 30px;
  white-space: nowrap;
}

/* select */
.select_area {
  display: flex;
  gap: 30px;
}

.select_area .select {
  position: relative;
}

.select_area .select.sort {
  display: flex;
  align-items: center;
}

.select_area .select.sort span {
  height: 50px;
  display: flex;
  padding: 0 30px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  font-weight: 700;
  border: 1px solid #d4d5d7;
  border-right: none;
  border-radius: 25px 0 0 25px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.select_area .select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  width: 10px;
  height: 6px;
  background: url("../../img/icon/icon_arrow_select.svg") no-repeat center / cover;
  transform: translateY(-50%);
  pointer-events: none;
}

.select_area .select select {
  width: 180px;
  height: 50px;
  padding-left: 30px;
  background-color: #ecedef;
  border: 1px solid #d4d5d7;
  border-radius: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}

.select_area .select.sort select {
  border-radius: 0 25px 25px 0;
}

/* link */
.link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 275px;
  height: 70px;
  background: rgb(153, 30, 226);
  background: linear-gradient(125deg,
      rgba(153, 30, 226, 1) 0%,
      rgba(200, 141, 255, 1) 100%);
  border-radius: 35px;
  color: #fff !important;
  font-size: 2.1rem;
  font-weight: 700;
  transition: opacity 0.3s;
}

.link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 27px;
  display: block;
  width: 5px;
  height: 9px;
  background: url("../../img/icon/icon_arrow.svg") no-repeat center / contain;
  transform: translateY(-50%);
}

.link.center {
  margin: 0 auto;
}

.link:hover {
  opacity: 0.8;
}

/* color */
.clr_main {
  color: #991ee2;
}

/* text editor */
.text_editor {
  height: 400px;
  margin-bottom: 60px;
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 30px 0 0;
  z-index: 10;
}

#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header h1 {
  width: 120px;
  margin-top: -10px;
}

#header .content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  width: calc(100% - 190px);
}

#header .content .search {
  position: relative;
  width: 100%;
  max-width: 757px;
}

#header .content .search form input {
  display: flex;
  width: 100%;
  height: 70px;
  padding: 0 40px;
  border: 1px solid #dedbe3;
  background-color: #fff;
  border-radius: 35px;
  font-size: 1.8rem;
}

#header .content .search form button:hover {
  opacity: 0.8;
}

#header .content .nav_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 140px;
  height: 70px;
  position: relative;
  border: 1px solid #dedbe3;
  background-color: #fff;
  border-radius: 35px;
  cursor: pointer;
}

#header .content .burger {
  width: 23px;
  cursor: pointer;
  padding: 20px 0;
  z-index: 999999;
}

#header .content .burger span {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #101c39;
}

#header .content .burger span::before,
#header .content .burger span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #101c39;
}

#header .content .burger span::after {
  top: -6px;
}

#header .content .burger.open span {
  visibility: hidden;
}

#header .content .burger.open span::before,
#header .content .burger.open span::after {
  visibility: visible;
  top: 0;
}

#header .content .burger.open span::before {
  transform: rotate(-45deg);
}

#header .content .burger.open span::after {
  transform: rotate(45deg);
}

#header .content .img {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 24px;
  overflow: hidden;
}

#header .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#header .content .menu {
  position: absolute;
  bottom: -300px;
  right: 0;
  width: 580px;
  height: fit-content;
  display: flex;
  align-items: center;
  visibility: hidden;
  font-weight: 700;
  opacity: 0;
  transition: all 0.5s;
}

#header .content .menu.open {
  visibility: visible;
  opacity: 1;
}

#header .content .menu::before,
#header .content .menu::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 50px;
}

#header .content .menu::before {
  top: -15px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #dedbe3;
  border-left: 15px solid transparent;
}

#header .content .menu::after {
  top: -12px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #f7f7f9;
  border-left: 15px solid transparent;
}

#header .content .menu>ul {
  display: flex;
  border: 1px solid #dedbe3;
  height: 280px;
}

#header .content .menu .menu_link {
  width: 75%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 45px;
  background: #ffffff;
  border-right: none;
  border-radius: 30px 0 0 30px;
}

#header .content .menu .menu_link li {
  margin: 10px 0;
  min-width: 50%;
  font-size: 1.8rem;
}

#header .content .menu .menu_link li a:hover {
  color: #7AC1CE;
}

#header .content .menu .my_link {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 25%;
  padding: 40px 10px;
  background: #f7f7f9;
  border-left: none;
  border-radius: 0 30px 30px 0;
}

#header .content .menu .my_link li a {
  padding: 10px 20px;
  background: #eaebee;
  border: 1px solid #dedbe3;
  border-radius: 10px;
}

#header .content .menu .my_link li a:hover {
  background: #dedbe3;
}

#header .content .menu .my_link li .icon {
  display: block;
  margin: 0 auto 5px;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

#header .content .menu .my_link li p {
  text-align: center;
  font-size: 1.4rem;
}

/* footer */
#footer {
  padding: 120px 0 60px;
  background: url("../../img/footer_bg.png") no-repeat center / cover;
}

#footer .inner {
  display: flex;
  gap: 10%;
  color: #fff;
}

#footer .left {
  width: 310px;
  text-align: center;
}

#footer .left .logo {
  margin: -170px 0 0 40px;
}

#footer .left .txt {
  margin: 40px 0 90px;
  font-size: 1.9rem;
  line-height: 26px;
  color: #dad4e4;
}

#footer .copy {
  font-size: 1.9rem;
  color: #a3a3a3;
  margin: 0 auto;
}

#footer .right {
  width: calc(90% - 310px);
}

#footer .right ul {
  display: flex;
  flex-wrap: wrap;
}

#footer .right ul li {
  width: 25%;
  margin-bottom: 45px;
}

#footer .right ul li span {
  display: block;
  margin-bottom: 20px;
  font-size: 1.9rem;
}

#footer .right ul li a {
  display: block;
  margin-bottom: 7px;
  font-size: 1.6rem;
  color: #b2a7c5;
}

#footer .right ul li a:hover {
  color: #fff;
}

/*  modal
-------------------- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  z-index: 999;
}

.modal .modal_bg {
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal .modal_content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  max-height: 90vh;
  width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #FFF;
  border-radius: 5px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  overflow-y: scroll;
}

.modal .modal_content .modal_head {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCC;
  font-size: 2.4rem;
}

.modal .modal_content .modal_body {
  font-size: 1.4rem;
}

.modal .modal_content .modal_body dl {
  display: flex;
  margin-bottom: 10px;
}

.modal .modal_content .modal_body dl dt {
  width: 15%;
}

.modal .form_body {
  display: block;
  width: 100%;
  margin: 24px 0;
}

.modal .modal_btn {
  margin-top: 20px;
}

.modal .modal_btn.clm2 {
  display: flex;
  justify-content: space-between;
}

.modal .modal_btn.clm2 .btn {
  width: 49%;
}

.modal .modal_delete_wrap {
  margin-top: 36px;
  display: flex;
  justify-content: end;
}


/* modal_chat */
.modal.modal_chat .modal_content {
  width: 90%;
}

.modal .chat_wrapper {
  display: flex;
}

.modal .chat_wrapper .chat_result {
  border: 1px solid #cecece;
  border-radius: 1rem;
}

.modal .chat_wrapper .form_body {
  width: 50%;
}

.modal .chat_wrapper .form_body .chat_errors {
  color: #ff7b95;
  border: 1px solid #ff7b95;
  border-radius: 1rem;
  padding: 16px;
  margin-right: 16px;
}

.modal .chat_wrapper .chat_result {
  width: 50%;
}

.modal .chat_wrapper .chat_result textarea {
  font-size: 1.7rem;
  padding: 16px;
  width: 100%;
  height: 100%;
}

.modal .modal_select {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal .modal_select span {
  margin-right: 16px;
}

/* modal QR */
.modal_qr_expansion .modal_content {
  width: 550px;
  height: auto;
  overflow-y: auto;
}

.modal_qr_expansion .modal_content svg {
  text-align: center;
  vertical-align: middle;
  display: inline-block;
  width: 100%;
}
.modal_qr_expansion .modal_bg {
  background-color: #fff;
}


/* loader */
.loader {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  background: #7ac1ce;
  background: -moz-linear-gradient(left, #7ac1ce 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #7ac1ce 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #7ac1ce 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #7ac1ce 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #7ac1ce 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader_sm {
  width: 1em;
  height: 1em;
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #7ac1ce;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}

.loader:after {
  background: #ffffff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loader_sm {
  margin: 4px;
  width: 2em;
  height: 2em;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*  mobile & smart phone
---------------------------------------------- */
@media only screen and (max-width: 959px) {

  /* common */
  html.active {
    overflow: hidden;
  }

  section {
    padding: 50px 0;
    width: 100%;
    overflow: hidden;
  }

  main {
    margin-top: 100px;
  }

  .inner {
    max-width: inherit;
  }

  .form_input {
    display: block;
    margin: 24px auto;
  }

  .form_input label {
    display: block;
    width: 100%;
  }

  .form_input input {
    display: block;
    width: 100%;
  }
  .form_input input.short {
    width: 100%;
  }

  .form_input.check {
    display: flex;
  }

  .form_input input[type="radio"] {
    display: inline-block;
    width: 30px;
  }

  .form_input input[type="checkbox"] {
    display: inline-block;
    width: 30px;
  }

  .form_input textarea {
    display: block;
    width: 100%;
  }

  .message {
    margin: 0;
  }

  .scroll {
    overflow-x: scroll;
  }

  .sec_head {
    margin-bottom: 25px;
  }

  .sec_head.flex {
    display: block;
  }

  .sec_head.flex h2 {
    margin-bottom: 20px;
    font-size: 3rem;
  }

  .sec_wrap {
    padding: 7px;
  }

  /* clm2_wrap */
  .clm2_wrap {
    padding-bottom: 50px;
    flex-direction: column;
  }

  .clm2_wrap .left_wrap,
  .clm2_wrap .right_wrap {
    width: 100%;
    padding: 0;
  }

  .clm2_wrap .right_wrap .ttl {
    margin-bottom: 25px;
  }

  /* sidemenu */
  #sidemenu {
    display: none;
  }

  #sidemenu .sp_menu {
    width: 92%;
    height: 50px;
    padding: 0 10px 0 35px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e7e8eb;
    border-radius: 30px;
  }

  #sidemenu .sp_menu .burger {
    order: 1;
    width: 30px;
    padding: 20px 5px;
    cursor: pointer;
    z-index: 5;
  }

  #sidemenu .sp_menu .burger span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #101c39;
  }

  #sidemenu .sp_menu .burger span::before,
  #sidemenu .sp_menu .burger span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #101c39;
  }

  #sidemenu .sp_menu .burger span::after {
    top: -6px;
  }

  #sidemenu .sp_menu .burger.open span {
    visibility: hidden;
  }

  #sidemenu .sp_menu .burger.open span::before,
  #sidemenu .sp_menu .burger.open span::after {
    visibility: visible;
    top: 0;
  }

  #sidemenu .sp_menu .burger.open span::before {
    transform: rotate(-45deg);
  }

  #sidemenu .sp_menu .burger.open span::after {
    transform: rotate(45deg);
  }

  #sidemenu .sp_menu .icon {
    margin: 0;
    width: 37px;
    height: 37px;
    order: 3;
    border: none;
  }

  #sidemenu .sp_menu .name {
    margin: 0;
    padding: 0;
    width: auto;
    order: 2;
    background: none;
    border: none;
  }

  #sidemenu .menu_list {
    position: absolute;
    top: 80px;
    left: 3%;
    width: 270px;
    margin: 0;
    background: #ffffff;
    border: 1px solid #e7e8eb;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
  }

  #sidemenu .menu_list.open {
    opacity: 1;
    z-index: 2;
  }

  #sidemenu .menu_list li {
    gap: 0;
    padding: 0;
  }

  #sidemenu .menu_list li:not(:last-child)::after {
    width: 100%;
    bottom: 0;
    left: 0;
  }

  #sidemenu .menu_list li a {
    padding: 10px 30px;
  }

  /* tag */
  .tag_list.scroll {
    justify-content: flex-start !important;
  }

  .tag_list.scroll .tag {
    white-space: nowrap;
  }

  /* tab */
  .tab.end {
    justify-content: flex-start;
  }

  .tab.clm {
    flex-direction: column;
  }

  .tab li,
  .sch_tab li a {
    width: auto;
    height: 45px;
    padding: 0 25px;
    white-space: nowrap;
  }

  .tab.clm li {
    width: 100%;
  }

  .tab.sec_tab {
    justify-content: flex-start;
    margin-bottom: 35px;
    padding-top: 35px;
  }

  .tab.sec_tab li {
    width: initial;
    padding: 0 30px;
  }

  /* select */
  .select_area {
    flex-direction: column;
    gap: 10px;
  }

  .select_area .select select {
    width: 100%;
    height: 45px;
  }

  .select_area .select.sort span {
    white-space: nowrap;
    height: 45px;
  }

  /* link */
  .link {
    font-size: 21px;
    height: 60px;
    white-space: nowrap;
  }

  /* pagenation */
  .pagenation {
    margin-top: 30px;
  }

  .pagenation li {
    height: 45px;
    font-size: 1.8rem;
    font-weight: 700;
  }

  /* header */
  #header {
    width: 100vw;
    padding: 30px 0 0;
  }

  #header .inner {
    width: 100%;
    padding: 0 4%;
    margin: 0;
  }

  #header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
  }

  #header .content h1 {
    width: 120px;
  }

  #header .search {
    margin-top: 20px;
    position: relative;
    width: 100%;
  }

  #header .search form input {
    display: flex;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #dedbe3;
    background-color: #fff;
    border-radius: 35px;
    font-size: 1.6rem;
  }

  #header .search form button {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    width: 50px;
    height: 50px;
    background: rgb(153, 30, 226);
    background: url("../../img/icon/icon_search.svg") no-repeat center center,
      linear-gradient(125deg,
        rgba(153, 30, 226, 1) 0%,
        rgba(200, 141, 255, 1) 100%);
    border-radius: 29px;
  }

  #header .content .menu {
    top: -30px;
    bottom: 0;
    left: -4%;
    width: 100vw;
    height: fit-content;
    display: block;
    z-index: 30;
  }

  #header .content .menu::before,
  #header .content .menu::after {
    display: none;
  }

  #header .content .menu .overlay {
    display: none;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #000000;
    opacity: 0.5;
    z-index: -1;
  }

  #header .content .menu.open {
    z-index: 30;
  }

  #header .content .menu.open .overlay {
    display: block;
  }

  #header .content .menu>ul {
    display: flex;
    border: none;
    height: auto;
  }

  #header .content .menu .menu_link {
    width: 100%;
    padding: 80px 40px 40px;
    border-radius: 0;
    z-index: 30;
  }

  #header .content .menu .menu_link li {
    width: 50%;
    min-width: inherit;
    font-size: 1.6rem;
  }

  #header .content .menu .menu_link li.responsive_long_text {
    width: 100%;
  }

  #header .content .menu .my_link {
    flex-direction: row;
    width: 100%;
    padding: 30px 20px;
    border-radius: 0;
    border-top: 1px solid #ded;
    border-bottom: 1px solid #dedbe3;
  }

  #header .content .menu .my_link li {
    width: calc(100% / 3);
  }

  #header .content .menu .my_link li a {
    padding: 10px 0;
  }

  /* footer */
  #footer {
    padding: 70px 50px;
    background: url("../../img/footer_bg.png") no-repeat center / cover;
  }

  #footer .inner {
    flex-direction: column;
    gap: 50px;
  }

  #footer .left {
    width: 100%;
  }

  #footer .left .logo {
    margin: 0 auto;
  }

  #footer .left .txt {
    margin: 20px 0 50px;
    font-size: 1.9rem;
    line-height: 26px;
    color: #dad4e4;
  }

  #footer .right {
    width: 100%;
  }

  #footer .right ul {
    gap: 50px;
  }

  #footer .right ul li {
    width: calc((100% - 50px) / 2);
    margin-bottom: 0;
  }

  #footer .right ul li span {
    margin-bottom: 10px;
  }

  #footer .copy {
    text-align: center;
  }

  /*  modal
    -------------------- */
  .modal .modal_content {
    width: 90%;
  }

  .modal .modal_content .modal_head {
    font-size: 1.6rem;
  }

  .modal .modal_content .modal_body dl {
    display: block;
    margin-bottom: 10px;
  }

  .modal .modal_content .modal_body dl dt {
    width: 100%;
    margin-bottom: 5px;
  }

  .modal .modal_btn.clm2 {
    display: block;
  }

  .modal .modal_btn.clm2 .btn {
    width: 100%;
  }

  .modal .modal_btn.clm2 .btn:first-child {
    margin-bottom: 10px;
  }

  .modal .chat_wrapper {
    display: block;
  }

  .modal .chat_wrapper .form_body {
    width: 100%;
  }

  .modal .chat_wrapper .chat_result {
    width: 100%;
  }
}