@charset "UTF-8";

/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
/* mypage */

/* section style */
/* type MD 0 */
.section_typeMD1 { padding: 0 0 96px; }

/* color */
.bg_type08 {  background-color: #FFFFFF;}
.bg_type09 {  background-color: #F8FAF9;}
.bg_type10 {  background-color: #FFFFFF;}

.mypage-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (max-width: 1060px) {
  .section_typeMD1 .inner {
    width: auto;
  }
}

@media (max-width: 767px) {
  .section_typeMD1 { padding: 20px 0 60px; }

  .mypage-wrapper {
    display: block;
    min-height: auto;
  }

  .mypage-wrapper.sp-bg {
    background: #F8FAF9;
  }

  .bg_type10 {  background-color: transparent;}
}

/*-------------------------------------------------------------*/
/* mypage header */

.mypage-header {
  position: relative;
  background: #364045;
  border-radius: 0px 0px 24px 24px;
  width: 100%;
  padding: 30px 0 107px;
  margin-bottom: 20px;
}

.mypage-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 43px;
  border-radius: 0px 0px 24px 24px;
  background: #62a780;
  z-index: -1;
}

.mypage-header-inner {
  display: flex;
  justify-content: space-between;
  max-width: 940px;
  margin: auto;
}

.mypage-header-logo {
  width: 142px;
}

.mypage-header-logo a {
  display: block;
  transition: .3s;
}

.mypage-header-form {
  display: flex;
}

.mypage-header-form-input {
  display: flex;
  font-size: 16px;
  width: 280px;
  border-radius: 8px;
  border: 1px solid #62a780;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
  background-color: #FFFFFF;
  overflow: hidden;
}

.mypage-header-form-text {
  flex: 1;
  border: none;
  width: 100%;
  padding: 12px 0 12px 16px;
}

.mypage-header-form-text::placeholder {
  font-size: 14px;
  color: #707f89;
}

.mypage-header-form-btn {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
}

.mypage-header-form-logout {
  font-weight: 500;
  text-align: center;
  color: #fff;
  width: 132px;
  height: 48px;
  border-radius: 8px;
  background: #62a780;
  border: 1px solid #fff;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
  margin-left: 20px;
  transition: .3s;
  cursor: pointer;
}

.mypage-header-form-logout:hover {
  opacity: .8;
}

@media (max-width: 1100px) {
  .mypage-header-inner {
    width: 100%;
    padding: 0 90px 0 20px;
  }
}

@media (max-width: 767px) {
  .mypage-header {
    border-radius: 0px 0px 16px 16px;
    padding: 15px 0 0;
    margin-bottom: 10px;
    z-index: 1;
  }

  .mypage-header::after {
    bottom: -10px;
    height: 30px;
    border-radius: 0px 0px 16px 16px;
  }

  .mypage-header.sp-lg {
    padding: 15px 0 0;
    margin-bottom: 24px;
  }

  .mypage-header.sp-lg::after {
    bottom: -24px;
    height: 56px;
  }

  .mypage-header-inner {
    position: relative;
    background: #364045;
    border-radius: 0px 0px 16px 16px;
    padding: 0 16px 20px;
    z-index: 1;
  }

  .mypage-header.sp-lg .mypage-header-inner {
    padding: 0 16px 80px;
  }

  .mypage-header-logo {
    width: 96px;
  }

  .mypage-header-logo img {
    max-width: 100%;
  }

  .mypage-header-form-input {
    width: 180px;
    border-radius: 4px;
  }

  .mypage-header-form-text {
    padding: 9px 16px;
    width: 100%;
  }

  .mypage-header-form-text::placeholder {
    color: #CDD6DD;
  }
}

/*-------------------------------------------------------------*/
/* mypage-header-menu */

.mypage-header-menu {
  position: fixed;
  top: 30px;
  right: calc((50% - (940px / 2)) - (48px + 20px));
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #4a9068;
  border: 1px solid #f8faf9;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04);
  z-index: 3;
  cursor: pointer;
}

.mypage-header-menu-trigger {
	position: relative;
  top: 12px;
  left: 11px;
	width: 24px;
	height: 22px;
	display: block;
  margin: auto;
}

.mypage-header-menu-trigger:focus,
.mypage-header-menu-trigger:hover {
  opacity: 1;
}

.mypage-header-menu-trigger,
.mypage-header-menu-trigger span {
	display: inline-block;
	transition: all 0.4s !important;
	box-sizing: border-box;
}

.mypage-header-menu-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
}

.mypage-header-menu-trigger span:nth-of-type(1) {
	top: 0px;
}

.mypage-header-menu-trigger span:nth-of-type(2) {
	top: 10px;
	width: 24px;
}

.mypage-header-menu-trigger span:nth-of-type(3) {
	bottom: 0;
	width: 24px;
}

.mypage-header-menu-trigger span:nth-of-type(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #FFFFFF;
	border-radius: 3px;
	transition: all 0.4s;
}

.mypage-header-menu-trigger.active span {
	background-color: #FFFFFF;
}

.mypage-header-menu-trigger.active span:nth-of-type(1) {
	transform: scale(0) translateY(20px);
	background-color: #FFFFFF;
}

.mypage-header-menu-trigger.active span:nth-of-type(2) {
	transform: rotate(-45deg);
	background-color: #FFFFFF;
}

.mypage-header-menu-trigger.active span:nth-of-type(2)::after {
	transform: rotate(90deg);
	background-color: #FFFFFF;
}

.mypage-header-menu-trigger.active span:nth-of-type(3) {
	transform: scale(0) translateY(-20px);
 	background-color: #FFFFFF;
}

.mypage-header-menu-trigger.active span:nth-of-type(2) {
	width: 24px;
}

@media (max-width: 1110px) {
  .mypage-header-menu {
    right: 20px;
  }
}

/*-------------------------------------------------------------*/
/* mypage-header-nav */

.mypage-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0px 0px 24px 24px;
  background: #4a9068;
  padding: 30px 0 37px;
  transition: .3s;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.mypage-header-nav.show {
  opacity: 1;
  pointer-events: auto;
}

.mypage-header-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  max-width: calc(900px + ((100% - 940px) / 2));
  margin-left: 40px;
}

.mypage-header-nav-list.right {
  justify-content: flex-end;
  max-width: 940px;
  margin: auto;
}

.mypage-header-nav-list a {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  transition: .3s;
}

.mypage-header-nav-list + .mypage-header-nav-list {
  border-top: solid 1px #B2D6C8;
  padding-top: 20px;
  margin-top: 20px;
}

@media (max-width: 1130px) {
  .mypage-header-nav-list {
    margin-right: 89px;
  }

  .mypage-header-nav-list.right {
    margin-right: 89px;
  }
}

/*-------------------------------------------------------------*/
/* mypage footer */

.mypage-footer {
  background: #364045;
  width: 100%;
  padding: 40px 0 130px;
  margin-top: auto;
}

.mypage-footer-inner {
  max-width: 940px;
  margin: auto;
}

.mypage-footer-logo {
  width: 142px;
}

.mypage-footer .mypage-footer-trademark {
  padding-top: 0;
}

.mypage-footer .mypage-footer-trademark p {
  margin: 1em 0 0;
}

.mypage-footer .unauth-footer-bottom,
.mypage-footer .unauth-footer-bottom p,
.mypage-footer .unauth-footer-note {
  color: #FFFFFF !important;
}

.mypage-footer .unauth-footer-note {
  font-size: 10px;
  font-style: normal;
  line-height: normal;
}

.mypage-footer .unauth-footer-divider {
  display: none !important;
}

@media (max-width: 960px) {
  .mypage-footer-inner {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .mypage-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    background: none;
    width: 100%;
    padding: 0;
    z-index: 1;
  }

  .mypage-footer-inner {
    padding: 0 16px;
  }

  .mypage-footer .mypage-footer-trademark {
    display: none;
  }

  .mypage-footer .mypage-footer-trademark p {
    margin-top: 0;
  }

  .mypage-footer-nav {
    display: flex;
    justify-content: space-between;
    border-radius: 16px 16px 0px 0px;
    background: #fff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
    padding: 18px 28px 0 16px;
  }

  .mypage-footer-nav-list {
    display: flex;
    gap: 20px;
  }

  .mypage-footer-nav-list a {
    display: block;
    font-weight: 600;
    font-size: 10px;
    color: #000;
    border-bottom: solid 4px #E4EFF0;
    padding-bottom: 16px;
  }

  .mypage-footer-nav-list a.current {
    border-bottom: solid 4px #7CB595;
  }
}

/*-------------------------------------------------------------*/
/* mypage footer menu */

@media (max-width: 767px) {
  .mypage-footer-menu {
    position: relative;
    display: block;
    width: 16px;
  }

  .mypage-footer-menu-trigger {
    position: relative;
    top: 0;
    right: 0;
    width: 16px;
    height: 14px;
    display: block;
    margin: auto;
  }

  .mypage-footer-menu-trigger:focus,
  .mypage-footer-menu-trigger:hover {
    opacity: 1;
  }

  .mypage-footer-menu-trigger,
  .mypage-footer-menu-trigger span {
    display: inline-block;
    transition: all 0.4s !important;
    box-sizing: border-box;
  }

  .mypage-footer-menu-trigger span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #62A780;
  }

  .mypage-footer-menu-trigger span:nth-of-type(1) {
    top: 0px;
  }

  .mypage-footer-menu-trigger span:nth-of-type(2) {
    top: 6px;
    width: 16px;
  }

  .mypage-footer-menu-trigger span:nth-of-type(3) {
    bottom: 0;
    width: 16px;
  }

  .mypage-footer-menu-trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #62A780;
    border-radius: 3px;
    transition: all 0.4s;
  }

  .mypage-footer-menu-trigger.active span {
    background-color: #62A780;
  }

  .mypage-footer-menu-trigger.active span:nth-of-type(1) {
    transform: scale(0) translateY(20px);
    background-color: #62A780;
  }

  .mypage-footer-menu-trigger.active span:nth-of-type(2) {
    transform: rotate(-45deg);
    background-color: #62A780;
  }

  .mypage-footer-menu-trigger.active span:nth-of-type(2)::after {
    transform: rotate(90deg);
    background-color: #62A780;
  }

  .mypage-footer-menu-trigger.active span:nth-of-type(3) {
    transform: scale(0) translateY(-20px);
     background-color: #62A780;
  }

  .mypage-footer-menu-trigger.active span:nth-of-type(2) {
    width: 24px;
  }
}

/*-------------------------------------------------------------*/
/* mypage-footer-drawer */

.mypage-footer-drawer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  border-radius: 24px 24px 0px 0px;
  background: #f8faf9;
  width: 100%;
  padding: 20px 16px 70px;
  z-index: -1;
}

.mypage-footer-drawer-title {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: #000;
  margin-bottom: 24px;
}

.mypage-footer-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.mypage-footer-drawer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
}

.mypage-footer-drawer-list li {
  /* width: 65px; */
  width: calc((100% - 48px) / 4);
}

.mypage-footer-drawer-list + .mypage-footer-drawer-list {
  border-top: solid 1px #98AAB5;
  padding-top: 20px;
  margin-top: 20px;
}

.mypage-footer-drawer-img {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.04));
  margin: auto;
}

.mypage-footer-drawer-text {
  font-weight: 600;
  font-size: 10px;
  text-align: center;
  color: #000;
  margin-top: 5px;
}

@media (max-width: 360px) {
  .mypage-footer-drawer-img {
    width: 60px;
    height: 60px;
  }
}

/*-------------------------------------------------------------*/
/* mypage footer menu */

@media (max-width: 767px) {
  .embeddedMessagingConversationButtonWrapper .embeddedMessagingConversationButton,
  .embedded-messaging > .embeddedMessagingFrame[class~="isMinimized"] {
    bottom: 58px !important;
    right: 6px !important;
  }
}

/*-------------------------------------------------------------*/
/* ui-datepicker */

.ui-datepicker {
  background-color: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
  font-size: .875rem;
  z-index: 999 !important
}

.ui-datepicker .ui-datepicker-header {
  position: relative
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  background-color: #333;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  height: 35px;
  line-height: 35px;
  text-align: center
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title span {
  font-size: 1rem;
  font-weight: bold;
  margin-right: 2px
}

.ui-datepicker .ui-datepicker-header a {
  position: absolute;
  top: 0
}

.ui-datepicker .ui-datepicker-header a span {
  cursor: pointer;
  display: block;
  height: 35px;
  line-height: 35px;
  position: relative;
  width: 35px
}

.ui-datepicker .ui-datepicker-header a span:hover,
.ui-datepicker table th.ui-datepicker-week-end:first-child a:hover,
.ui-datepicker table td.ui-datepicker-week-end:first-child a:hover,

.ui-datepicker .ui-datepicker-header a.ui-datepicker-next {
  right: 0
}

.ui-datepicker .ui-datepicker-header a.ui-datepicker-next span:after {
  border: 4px solid transparent;
  border-left: 6px solid #fff;
  content: "";
  height: 0;
  margin-top: -4px;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 0
}

.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev {
  left: 0
}

.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev span:before {
  border: 4px solid transparent;
  border-right: 6px solid #fff;
  content: "";
  height: 0;
  left: 12px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  width: 0
}

.ui-datepicker table td,
.ui-datepicker table td span,
.ui-datepicker table td a {
  width: 40px
}

.ui-datepicker table th a,
.ui-datepicker table td a {
  background-color: rgba(128, 107, 35, 0.1);
  color: #2d9f38
}

.ui-datepicker table th a:hover,
.ui-datepicker table td a:hover {
  background-color: #2d9f38;
  color: #fff;
  text-decoration: none
}

.ui-datepicker table th span {
  background-color: #eee;
  font-weight: bold;
  padding: 5px 10px
}

.ui-datepicker table th span,
.ui-datepicker table th a,
.ui-datepicker table td span,
.ui-datepicker table td a {
  background-color: #f5f5f5;
  display: block;
  padding: 10px 0;
  text-align: center
}

.ui-datepicker table th,
.ui-datepicker table td {
  border-left: 2px solid #fff;
  border-top: 2px solid #fff
}

.ui-datepicker table th.ui-datepicker-week-end a,
.ui-datepicker table td.ui-datepicker-week-end a {
  background-color: #e0f1f8
}

.ui-datepicker table th.ui-datepicker-week-end:first-child a,
.ui-datepicker table td.ui-datepicker-week-end:first-child a {
  background-color: #fdeaec
}

.ui-datepicker table th.ui-state-disabled span,
.ui-datepicker table td.ui-state-disabled span {
  -ms-filter: alpha(opacity=40);
  filter: alpha(opacity=40);
  opacity: .4
}

.ui-datepicker table th:first-child,
.ui-datepicker table td:first-child {
  border-left: none
}

#ui-datepicker-div {
  display: none;
}

.ui-datepicker {
  border: solid 1px #CDD6DD;
  box-shadow: none;
  width: 100%;
  max-width: 340px;
  padding: 0 10px 12px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  background-color: #FFFFFF;
  color: #707F89;
}

.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev span:before {
  left: 4px;
  border: none;
  border-bottom: solid 2px #98A6B5;
  border-left: solid 2px #98A6B5;
  width: 5px;
  height: 5px;
  transform: rotateZ(45deg);
}

.ui-datepicker .ui-datepicker-header a.ui-datepicker-next span:after {
  right: 4px;
  border: none;
  border-bottom: solid 2px #98A6B5;
  border-left: solid 2px #98A6B5;
  width: 5px;
  height: 5px;
  transform: rotateZ(-135deg);
}

.ui-datepicker table th,
.ui-datepicker table td {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}

.ui-datepicker table th.ui-datepicker-week-end a,
.ui-datepicker table td.ui-datepicker-week-end a {
  background-color: #EFF4EF;
}

.ui-datepicker table th.ui-datepicker-week-end:first-child a,
.ui-datepicker table td.ui-datepicker-week-end:first-child a {
  background-color: #EFF4EF;
}

.ui-datepicker-calendar {
  width: 100%;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year {
  font-size: 12px;
  font-weight: normal;
  color: #707F89;
  margin-right: 0;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month {
  font-size: 24px;
  color: #3B4043;
  margin-right: 0;
}

.ui-datepicker table th span,
.ui-datepicker table th a {
  font-size: 16px;
  background-color: #FFFFFF;
  display: block;
  padding: 0;
  text-align: center;
  color: #CDD6DD;
}

.ui-datepicker table th.ui-state-disabled span,
.ui-datepicker table td.ui-state-disabled span {
  background-color: #EFF4EF !important; /* グレー背景 */
  color: #bbb !important;             /* 文字を薄く */
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;               /* クリックを完全に無効化 */
}

.ui-datepicker table td span,
.ui-datepicker table td a {
  background-color: #EFF4EF;
  color: #3B4043;
  padding: 4px 0 6px;
}

.ui-datepicker table th.ui-datepicker-week-end a:hover,
.ui-datepicker table td.ui-datepicker-week-end a:hover {
  background: #49BE54;
  color: #FFFFFF;
}

.ui-datepicker table td,
.ui-datepicker table td span,
.ui-datepicker table td a {
  width: auto;
}

.ui-datepicker table td a.ui-state-highlight {
  background: #62A780;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .ui-datepicker {
    max-width: 282px;
  }
}

@media (max-width: 340px) {
  .ui-datepicker {
    max-width: 262px;
  }
}

/*-------------------------------------------------------------*/
/* pw_reset */

/* login contents */

.login-title {
  position: relative;
  font-weight: 600;
  font-size: 32px;
  color: #000;
  text-align: center;
  margin-bottom: 64px;
}

.login-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  border-bottom: solid 4px #333;
  width: 60px;
  transform: translateX(-50%);
}

.login-area {
  max-width: 400px;
  margin: auto;
}

.login-box {
  background: white;
  border-radius: 8px;
  padding: 64px 60px 40px;
}

.login-logo {
  max-width: 160px;
  margin: auto;
}

.login-area-title {
  font-weight: 600;
  font-size: 28px;
  color: #000;
  text-align: center;
  margin: 40px 0 20px;
}

.login-text {
  font-size: 14px;
  margin-bottom: 40px;
}

.login-area.t-105 {
  position: relative;
  top: -10px;
  z-index: 1;
  margin-bottom: -105px;
}

.login-box.bg-gray {
  background: #F8FAF9;
  padding: 60px 60px 80px;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
}

.form-input.mb-10 {
  margin-bottom: 10px;
}

.form-btn.mb-0 {
  margin-bottom: 0;
}

@media (max-width:767px) {
  .login-area {
    max-width: calc(100% - 32px);
  }

  .login-box {
    padding: 64px 12px 40px;
		margin:0 auto;
  }

  .login-area.t-105 {
    top: 0;
    margin-bottom: 0;
  }

  .login-box.bg-gray {
    background: white;
    padding: 40px 12px 16px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
  }
}

/* form */

.form-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-name .required {
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 13px;
  color: #FC4F50;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #FC4F50;
  width: 40px;
  height: 24px;
  padding-bottom: 2px;
}

.form-name .required.bg-red {
  background: #FC4F50;
  color: white;
}

.form-name .required.bg-gray {
  background: #CDD6DD;
  border: 1px solid #CDD6DD;
  color: white;
}

.form-name .text-sm {
  flex: 1;
  font-size: 12px;
  margin-left: 10px;
}

.text-error {
  font-weight: 600;
  font-size: 14px;
  line-height: 26px;
  text-align: left;
  color: #FC4F50;
  margin-top: -2px;
}

.text-error.mt-40 {
  margin-top: 40px;
}

.text-error.pc-center,
.text-error.center {
  margin-top: 10px;
  text-align: center;
}

.text-error + .btn-box {
  margin-top: 60px;
}

.form-input {
  font-size: 16px;
  border: solid 1px #B2D6C8;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
  width: 100%;
  padding: 11px 10px 13px;
  margin-bottom: 16px;
}

.form-input::placeholder {
  color: #CDD6DD;
}

.form-forgot {
  font-weight: 600;
  text-decoration: underline;
  font-size: 13px;
  line-height: 29px;
  color: #EA3323;
}

.form-error {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.1em;
  line-height: 20px;
  color: #E7674C;
}

.form-btn {
  cursor: pointer;
  display: block;
  font-weight: 600;
  line-height: 29px;
  color: #fff;
  border: none;
  border-radius: 4px;
  background: #CC0000;
  width: 100%;
  padding: 10px 0 11px;
  margin: 42px 0 16px;
  transition: .3s;
}

.form-btn:hover {
  opacity: .8;
}

.form-create {
  font-size: 13px;
  line-height: 29px;
}

.form-create a {
  font-weight: 600;
  font-size: 13px;
  color: #ea3323;
}

.form-group-wrap {
  max-width: 580px;
  margin: 40px auto 60px;
}

.form-group + .form-group {
  margin-top: 32px;
}

.form-group.mt-40 {
  margin-top: 40px;
}

.form-group.w-md {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.form-group.column {
  display: flex;
  gap: 20px;
}

.form-group.column + .btn-box {
  margin-top: 40px;
}

.form-body {
  margin-top: 10px;
}

.form-body .form-name-box {
  display: flex;
  gap: 20px;
}

.form-group.column .form-name {
  margin-bottom: 0;
}

.form-body .form-name-box .form-input + .form-input,
.form-group.column .form-body {
  margin-top: 0;
}

.form-radio-box {
  display: flex;
  align-items: flex-start;
  gap: 23px;
  padding-top: 10px;
}

.form-radio-box + .form-radio {
  margin-top: 10px;
}

.form-radio-scroll {
  overflow-y: scroll;
  height: 400px;
}

.form-radio.column {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-radio.center {
  justify-content: center;
}

.form-radio label {
  display: flex;
  align-items: center;
}

.form-radio label span {
  flex: 1;
}

.form-radio label + label {
  margin-top: 10px;
}

.form-radio.column label + label {
  margin-top: 0;
}

.form-radio input[type="radio"] {
  cursor: pointer;
  position: relative;
  width: 30px !important;
  height: 30px;
  border: 1px solid #CDD6DD;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
}

.form-radio input[type="radio"]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #62A780;
  content: '';
  opacity: .2;
}

.form-radio input[type="radio"]:checked::before {
  opacity: 1;
}

.form-radio.recommend {
  display: flex;
  justify-content: space-between;
}

.form-radio.recommend label {
  flex-direction: column;
}

.form-radio.recommend label span {
  font-weight: 500;
  font-size: 14px;
}

.form-radio.recommend label + label {
  margin-top: 0;
}

.form-radio.recommend input[type="radio"] {
  margin-right: 0;
}

.form-recommend-text {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
}

.form-checkbox input[type="checkbox"] {
  position: relative;
  width: 30px !important;
  height: 30px;
  background: #F0F3F5;
  border: 1px solid #CDD6DD;
  border-radius: 4px;
  vertical-align: -9px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"]::before {
  position: absolute;
  top: 4px;
  left: 10px;
  transform: rotate(50deg);
  width: 7px;
  height: 13px;
  border-right: 2px solid #E4EFF0;
  border-bottom: 2px solid #E4EFF0;
  content: '';
  z-index: 1;
}

.form-checkbox input[type="checkbox"]:checked:before {
  border-right: 2px solid #62A780;
  border-bottom: 2px solid #62A780;
}

.form-checkbox label {
  display: flex;
}

.form-checkbox span {
  flex: 1;
  margin-left: 10px;
}

.form-checkbox label + label {
  margin-top: 20px;
}

.form-checkbox.mt-sm label + label {
  margin-top: 10px;
}

.form-checkbox a {
  color: #1258FF;
  text-decoration: underline;
  margin-left: 10px;
}

.form-body textarea {
  font-size: 16px;
  width: 100%;
  height: 160px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #cdd6dd;
  padding: 8px 20px;
}

.form-file-wrap {
  max-width: 460px;
  margin: auto;
}

.form-file {
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 16px;
  height: 48px;
  border-radius: 4px;
  background: #f3f3f3;
  border: 1px solid #707f89;
  cursor: pointer;
  color: #333;
}

.form-body input[type="file"] {
  display: none;
}

.form-body .form-file-note {
  font-weight: 500;
  font-size: 12px;
  color: #ff1500;
  text-align: center;
  margin: 3px 0;
}

.form-body .form-file-note.my-lg {
  margin: 8px 0 16px;
}

.form-body .form-file.plus::before,
.form-body .form-file.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  border-bottom: solid 1px #333;
  width: 20px;
  transform: translateY(-50%);
}

.form-body .form-file.plus::after {
  transform: translateY(-50%) rotateZ(90deg);
}

.form-body .form-file-text {
  font-size: 14px;
  max-width: 305px;
  margin: 20px auto 0;
}

.form-body .form-file-text + .form-file-text {
  margin-top: 10px;
}

.form-body .bar {
  position: relative;
  display: inline-block;
  color: #188623;
  width: 8px;
  margin: 0 6px;
}

.form-body .bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: solid 1px #188623;
  width: 8px;
}

.form-body .form-input {
  max-width: 340px;
  padding: 12px 20px;
  margin-bottom: 0;
}

.form-body .form-input.mb-10 {
  margin-bottom: 10px;
}

.form-body .form-input.mb-20 {
  margin-bottom: 20px;
}

.form-body .form-input.mt-0 {
  margin-top: 0;
}

.form-body .form-input::placeholder {
  color: #CDD6DD !important;
}

.form-body .form-input.xs {
  max-width: 87px;
}

.form-body .form-input.sm {
  max-width: 100px;
}

.form-body .form-input.sm-md {
  max-width: 160px;
}

.form-body .form-input.md {
  max-width: 280px;
}

.form-body .form-input.lg {
  max-width: 460px;
}

.form-body .form-input.xl {
  max-width: 100%;
}

.form-body-box.center,
.form-body.center {
  text-align: center;
}

.form-input.password {
  background: #FFFFFF url("../../img/common/reserve/icon-eye.84ef4b6cf1dc.svg") no-repeat right 12px center / 16px 14px;
}

.form-body .form-input.date {
  background: #FFFFFF url("../../img/common/mypage/icon-calender.5188facf6edb.svg") no-repeat right 16px center / 16px 16px;
}

.form-body .form-input.search {
  background: #FFFFFF url("../../img/common/mypage/icon-search.846a7dd92a1b.svg") no-repeat right 5px center / 30px 30px;
}

.form-body .form-input.human {
  background: #FFFFFF url("../../img/common/mypage/icon-human.81068daf3361.svg") no-repeat right 12px center / 22px 16px;
}

.form-body .form-input.clock {
  background: #FFFFFF url("../../img/common/mypage/icon-clock.6914b599ec04.svg") no-repeat right 13px center / 20px 20px;
}

.form-body .selectbox.mt-10 {
  margin-top: 10px;
}

.form-body .selectbox.mt-20 {
  margin-top: 20px;
}

.form-body .selectbox-wrap .selectbox {
  margin-top: 10px;
}

.form-body .selectbox select.error,
.form-body .form-input.error {
  background-color: #FFEBEB;
}

.form-body .form-input::placeholder,
.form-body textarea::placeholder {
  color: rgba(0,0,0,.4);
}

.form-body .selectbox select {
  display: block;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
  border: solid 1px #B2D6C8;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
  width: 100%;
  max-width: 340px;
  padding: 12px 20px;
  cursor: pointer;
}

.form-body .selectbox option {
  color: #3B4043;
}

.form-body .selectbox option[selected][disabled] {
  display: none;
}

.form-body .selectbox.text-bk select {
  color: #333333;
}

.form-body .selectbox.sm select {
  width: 100px;
}

.form-body .selectbox.sm-md select {
  width: 160px;
}

.form-body .selectbox.md select {
  width: 280px;
}

.form-body .selectbox .time {
  background: url("../../img/common/reserve/icon-clock.a50f012796e2.svg") no-repeat right 11px center / 20px 20px #FFFFFF;
}

.form-body .selectbox .intende {
  background: url("../../img/common/mypage/icon-bag.72934c70e68d.svg") no-repeat right 14px center / 17px 17px #FFFFFF;
}

.form-body .selectbox .number {
  background: url("../../img/common/reserve/icon-human.b534fe6200aa.svg") no-repeat right 12px center / 22px 16px #FFFFFF;
}

.form-body .selectbox .arrow {
  background: url("../../img/common/reserve/icon-arrow-d.a341352ff1df.svg") no-repeat right 19px center / 10px 7px #FFFFFF;
}

.form-body .selectbox .human {
  background: url("../../img/common/mypage/icon-human.81068daf3361.svg") no-repeat right 12px center / 22px 16px #FFFFFF;
}

.form-body .selectbox .clock {
  background: #FFFFFF url("../../img/common/mypage/icon-clock.6914b599ec04.svg") no-repeat right 13px center / 20px 20px;
}

.form-body .selectbox.bk select {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  border: solid 2px #333333;
  border-radius: 4px;
  box-shadow: none;
  max-width: 120px;
  padding: 9px 32px 9px 15px;
}

.form-body .selectbox.bk .arrow {
  background: url("../../img/common/reserve/icon-arrow-d-bk.03ff158d92f8.svg") no-repeat right 12px center / 10px 7px #FFFFFF;
}

.form-body .selectbox.timezone select {
  font-size: 14px;
  color: #333333;
  box-shadow: none;
  width: 65px;
  padding: 5px 11px;
}

.form-body .selectbox.timezone .arrow {
  background: url("../../img/common/reserve/icon-arrow-d-bk.03ff158d92f8.svg") no-repeat right 8px center / 10px 7px #FFFFFF;
}

.form-body .selectbox.timezone.md select {
  width: 81px;
}

.form-body .selectbox + .form-checkbox {
  margin-top: 20px;
}

.form-body .form-body-text {
  font-size: 14px;
}

.form-body .form-body-text + .form-body-box {
  margin-top: 10px;
}

.form-body .form-body-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 29px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.form-body .form-body-list dt {
  font-weight: 700;
  width: 86px;
}

.form-body .form-body-list dd {
  width: calc(100% - 86px);
}

.form-body .form-body-list p {
  text-indent: -1em;
  margin-left: 1em;
}

.form-body .form-body-list p::before {
  content: "・";
}

.form-text-error {
  font-size: 14px;
  text-align: center;
  color: #c00;
  margin-top: 20px;
}

@media (max-width:900px) {
  .form-body .form-desire-box {
    display: block;
  }

  .form-body .form-desire-box + .form-desire-box,
  .form-body .selectbox + p,
  .form-body .form-desire-box p + .form-input.date {
    margin-top: 16px;
  }

  .form-body .selectbox .time {
    background: url("../../img/common/reserve/icon-clock.a50f012796e2.svg") no-repeat right 16px center / 16px 16px;
  }
}

@media (max-width: 767px) {
  .form-name {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .form-name .text-sm {
    display: block;
    font-size: 12px;
    width: 100%;
    margin-left: 0;
    flex-basis: auto;
  }

  .form-btn {
    font-size: 14px;
  }

  .form-body {
    margin-top: 10px;
  }

  .form-body .form-input {
    max-width: 100%;
    padding: 12px 10px;
  }

  .form-body .form-input.mb-20 {
    margin-bottom: 10px;
  }

  .form-body .form-input::placeholder {
    font-size: 14px;
  }

  .form-body .form-input.sp-md {
    max-width: 133px;
  }

  .form-body .form-input.sp-lg {
    max-width: 100%;
  }

  .form-radio input[type="radio"] {
    width: 24px !important;
    height: 24px;
  }

  .form-radio input[type="radio"]::before {
    width: 14px;
    height: 14px;
  }

  .form-body .selectbox.sp-lg select {
    width: 100%;
    max-width: 100%;
  }

  .form-radio label span {
    font-size: 14px;
  }

  .form-radio-box {
    gap: 20px;
    padding-top: 0;
  }

  .form-radio-box.sp-block {
    display: block;
  }

  .form-radio.recommend {
    display: block;
  }

  .form-radio.recommend label {
    flex-direction: row;
    gap: 10px;
  }

  .form-radio.recommend label + label {
    margin-top: 10px;
  }

  .form-recommend-text {
    display: flex;
    flex-direction: column;
  }

  .form-recommend-wrap {
    display: flex;
    gap: 10px;
  }

  .form-checkbox {
    font-size: 14px;
  }

  .form-checkbox input[type="checkbox"] {
    width: 24px !important;
    height: 24px;
    vertical-align: -7px;
  }

  .form-checkbox input[type="checkbox"]::before {
    top: 2px;
    left: 8px;
    width: 5px;
    height: 11px;
  }

  .form-checkbox.mt-sm label + label {
    margin-top: 8px;
  }

  .form-body textarea {
    height: 200px;
    padding: 16px 10px;
  }

  .form-body textarea::placeholder {
    font-size: 14px;
  }

  .form-body .selectbox select {
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    padding: 14px 10px;
  }

  .form-body .selectbox.sm select {
    width: 81px;
  }

  .form-body .selectbox .clock {
    background: #FFFFFF url("../../img/common/mypage/icon-clock.6914b599ec04.svg") no-repeat right 17px center / 16px 16px;
  }

  .text-error {
    font-size: 12px;
  }

  .text-error.pc-center {
    text-align: left;
  }

  .text-error.mt-40 {
    margin-top: 35px;
  }

  .text-error + .btn-box {
    margin-top: 40px;
  }

  .form-body .form-text {
    font-size: 14px;
  }

  .form-body .form-body-text {
    font-size: 12px;
  }

  .form-body .form-body-list {
    display: block;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .form-body .form-body-list dd,
  .form-body .form-body-list dt {
    width: 100%;
  }

  .form-body .form-body-list dd + dt {
    margin-top: 20px;
  }

  .form-file-wrap {
    max-width: 230px;
  }

  .form-file {
    font-size: 14px;
  }

  .form-body .form-file-note {
    font-weight: 500;
    font-size: 12px;
    color: #ff1500;
    text-align: center;
    margin: 8px 0 16px;
  }

  .form-body .form-file.plus {
    font-size: 14px;
  }

  .form-body .form-file.plus::before,
  .form-body .form-file.plus::after {
    right: 16px;
    width: 14px;
  }

  .form-body .form-file-text {
    font-size: 12px;
    margin: 16px auto 0;
  }

  .form-body .form-file-text + .form-file-text {
    margin-top: 8px;
  }

  .form-group-wrap.sp-my-md {
    margin: 20px auto 40px;
  }

  .form-group.column {
    display: block;
  }

  .form-group.column .form-body {
    margin-top: 10px;
  }

  .form-group.center {
    justify-items: center;
  }

  .form-radio.column {
    gap: 40px;
  }

  .form-radio.column.center {
    display: block;
  }

  .form-radio.column.center label + label {
    margin-top: 10px;
  }
}

@media (max-width: 370px) {
  .form-body .bar {
    width: 10px;
    margin: 0 4px;
  }

  .form-body .bar::before {
    width: 4px;
  }
}

/* btn */

.btn-back {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #62A780;
  width: 220px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #62A780;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
  transition: .3s;
  cursor: pointer;
}

.btn-back:hover {
  opacity: .8;
}

.btn-confirm {
  display: grid;
  place-items: center;
  width: 220px;
  height: 50px;
  border-radius: 4px;
  background: #62A780;
  border: none;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: .3s;
}

.btn-confirm:hover {
  opacity: .8;
}

.btn-back.lg,
.btn-confirm.lg {
  width: 100%;
  max-width: 340px;
}

.btn-back.md,
.btn-confirm.md {
  max-width: 178px;
}

.btn-back.sm-md,
.btn-confirm.sm-md {
  max-width: 160px;
}

.btn-confirm.sm-3 {
  max-width: 145px;
}

.btn-confirm.sm-2 {
  max-width: 120px;
  height: 42px;
}

.btn-confirm.sm {
  max-width: 100px;
}

.btn-confirm.no-shadow {
  box-shadow: none;
}

.btn-again {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  width: 120px;
  height: 42px;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #333;
  line-height: 29px;
  color: #333;
}

.btn-again.font-sb {
  font-weight: 600;
}

.btn-again.lg {
  width: 220px;
}

.btn-again.mb-40 {
  margin-bottom: 40px;
}

.btn-disabled {
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #707f89;
  width: 220px;
  height: 50px;
  border-radius: 4px;
  background: #cdd6dd;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
}

.btn-current:hover,
.btn-disabled:hover,
.btn-again:hover {
  opacity: .75;
}

.btn-current {
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: white;
  max-width: 340px;
  height: 50px;
  background: #62a780;
  border: 1px solid #62a780;
  border-radius: 50px;
  filter: drop-shadow(0px 4px 8px rgba(98, 167, 128, 0.16));
}

.btn-current::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: url("../../img/common/mypage/icon-pin-w.cf20260741f9.svg") center/cover no-repeat;
  width: 16px;
  height: 22px;
}

@media (max-width: 767px) {
  .btn-back,
  .btn-confirm {
    font-size: 14px;
    text-align: center;
  }

  .btn-again.lg,
  .btn-back.sp-xl,
  .btn-confirm.sp-xl {
    width: 100%;
  }

  .btn-back.sp-lg {
    width: 100%;
    max-width: 280px;
  }

  .btn-back.sp-md {
    max-width: 133px;
  }

  .btn-confirm.sp-sm {
    max-width: 68px;
  }

  .btn-confirm.sp-center {
    margin: auto;
  }
}

/*-------------------------------------------------------------*/
/* pw_regist */

.login-box .form-password-wrap {
  position: relative;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #cdd6dd;
  padding-right: 12px;
}

.login-box .form-input.lock {
  width: calc(100% - 53px);
  background: #FFFFFF url("../../img/common/reserve/icon-lock.7ca1cb69ac5d.svg") no-repeat left 10px center / 14px 17px;
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

.login-box .form-password-wrap .icon-eye,
.login-box .form-password-wrap .icon-check {
  position: absolute;
  height: 50px;
}

.login-box .form-password-wrap .icon-check {
  top: 0;
  right: 40px;
  width: 14px;
  padding-top: 17px;
}

.login-box .form-password-wrap .icon-eye {
  display: block;
  top: 0;
  right: 12px;
  width: 16px;
  padding-top: 7px;
}

.login-box .form-password-wrap .icon-eye.active {
  opacity: .3;
}

.login-box .form-password-wrap + .form-name {
  margin-top: 32px;
}

.login-box .form-password-wrap + .form-error {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .login-box .form-password-wrap + .form-name {
    margin-top: 16px;
  }
}

/*-------------------------------------------------------------*/
/* mypage-chat */

.mypage-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding-top: 36px;
  z-index: 1;
}

.mypage-chat.hide {
  display: none;
}

.mypage-chat img {
  max-width: 100%;
}

.mypage-chat a {
  display: block;
}

.mypage-chat-close {
  display: block;
  position: absolute;
  top: 30px;
  right: 20px;
  width: 16px;
  z-index: 1;
  cursor: pointer;
}

.mypage-chat-img01 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 59px;
  z-index: 1;
  transform: translateX(-50%);
}

.mypage-chat-img02 {
  width: 207px;
  filter: drop-shadow(0px 12px 24px rgba(0, 0, 0, 0.04));
}

@media (max-width: 767px) {
  .mypage-chat {
    bottom: 55px;
    right: 10px;
    padding-top: 0;
  }

  .mypage-chat-img-sp {
    width: 89px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.04));
  }
}

/*-------------------------------------------------------------*/
/* contract_plans */

.mypage-form-wrap {
  position: relative;
  top: -105px;
  background: #f8faf9;
  border-radius: 8px;
  max-width: 940px;
  padding: 60px 138px;
  margin: 0 auto -105px;
  z-index: 1;
}

.mypage-form-wrap.px-md {
  padding: 60px 150px;
}

.mypage-form-wrap.px-lg {
  padding: 60px;
}

.mypage-title-wrap {
  max-width: 482px;
  margin: auto;
}

.mypage-title-lv1 {
  font-weight: 600;
  font-size: 24px;
  border-left: solid 10px #83B89C;
  padding-left: 20px;
  margin-bottom: 40px;
}

.mypage-text-error {
  font-size: 14px;
  color: #c00;
}

.mypage-title-lv1 + .mypage-text-error {
  margin-top: -20px;
  margin-bottom: 30px;
}

.mypage-flow-list {
  display: flex;
  height: 54px;
  margin-bottom: 40px;
  overflow: hidden;
}

.mypage-flow-list.center {
  justify-content: center;
}

.mypage-flow-list li {
  display: grid;
  place-items: center;
  position: relative;
  font-weight: 500;
  color: #FFFFFF;
  background: #CDD6DD;
  padding: 15px 0 15px 20px;
  width: 100%;
  max-width: 160px;
  letter-spacing: -.05em;
}

.mypage-flow-list li::before {
  content: "";
  position: absolute;
  top: -3px;
  right: -21px;
  background-color: #FFFFFF;
  clip-path: polygon(21px 50%, 0% 0%, 0% 60px);
  width: 21px;
  height: 60px;
  z-index: 1;
}

.mypage-flow-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: -19px;
  background-color: #CDD6DD;
  clip-path: polygon(19px 50%, 0% 0%, 0% 54px);
  width: 19px;
  height: 54px;
  z-index: 1;
}

.mypage-flow-list li:last-child:before {
  content: none;
}

.mypage-flow-list li:first-child {
  padding: 15px 19px 15px 33px;
}

.mypage-flow-list li.current {
  background: #62A780;
}

.mypage-flow-list li.current::after {
  background-color: #62A780;
}

.mypage-flow-list li.taken {
  background: #707070;
}

.mypage-flow-list li.taken::after {
  background-color: #707070;
}

.form-note {
  font-size: 14px;
  line-height: 26px;
}

.btn-box {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-box.g-10 {
  gap: 10px;
}

.btn-box.mt-lg {
  margin-top: 48px;
}

.btn-box.mt-60 {
  margin-top: 60px;
}

.btn-box.mt-40 {
  margin-top: 40px;
}

.btn-box.mt-20 {
  margin-top: 20px;
}

.btn-box.mb-20 {
  margin-bottom: 20px;
}

.btn-box.mb-40 {
  margin-bottom: 40px;
}

.btn-box.my-lg {
  margin-top: 40px;
  margin-bottom: 60px;
}

.btn-box.right {
  justify-content: flex-end;
}

.btn-box.left {
  justify-content: flex-start;
}

.btn-box.border {
  border-top: solid 1px #C3DFD4;
  padding-top: 20px;
  margin-top: 30px;
}

.btn-box.border .form-body {
  margin-top: 0;
}

.btn-box + .btn-box {
  margin-top: 20px;
}

.btn-box + .billing-details-text,
.btn-box + .text-error,
.btn-box + .form-body {
  margin-top: 40px;
}

.btn-box-inner {
  display: flex;
  gap: 20px;
}

.text-error + .mypage-title-lv2-wrap {
  margin-top: 40px;
}

.form-zip-box + .form-input,
.form-checkbox + .form-input,
.form-radio + .form-input {
  margin: 10px 0 0;
}

.form-plan-accodion-wrap {
  max-width: 340px;
  margin-bottom: 40px;
}

.form-plan-accodion-title {
  position: relative;
  color: #3b4043;
  background: #FFFFFF;
  border-top: solid 1px #CDD6DD;
  padding: 13px 50px 13px 20px;
  cursor: pointer;
}

.form-plan-accodion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 7px;
  background: url("../../img/common/reserve/icon-arrow-d.a341352ff1df.svg") no-repeat right center / cover;
  transform: translateY(-50%);
  z-index: 1;
  transition: .3s;
}

.form-plan-accodion-title.active::after {
  transform: translateY(-50%) rotateZ(180deg);
}

.form-plan-accodion-sub-title {
  color: #3b4043;
  margin-top: 20px;
  margin-bottom: 10px;
}

.form-plan-accodion-body {
  display: none;
  background: #eff4ef;
  padding: 14px 20px 20px;
}

/* add_contract_plan: その他オプション（2社目表記名）と利用開始日の間隔調整 */
.form-plan-accodion-body div[data-OptionOtherDisplayNameArea] {
  margin-bottom: 10px;
}

.form-tel-box,
.form-zip-box {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.form-body .form-zip-box + .form-input,
.form-body .form-input + .selectbox,
.form-body .form-input + .form-input {
  margin-top: 10px;
}

.form-body .form-tel-box + .form-input,
.form-body .form-radio + .form-input {
  margin-top: 20px;
}

.form-birth-box {
  display: flex;
  gap: 20px;
}

@media (max-width: 990px) {
  .mypage-form-wrap.px-lg,
  .mypage-form-wrap.px-md,
  .mypage-form-wrap {
    max-width: calc(100% - 32px);
    padding: 60px 20px;
  }
}

@media (max-width: 767px) {
  .mypage-form-wrap.px-lg,
  .mypage-form-wrap.px-md,
  .mypage-form-wrap {
    top: 0;
    border-radius: 8px;
    max-width: calc(100% - 32px);
    padding: 40px 13px;
    margin: 0 auto;
  }

  .mypage-form-wrap.sp-mt-0 {
    padding: 0 0 40px;
  }

  .mypage-form-wrap.sp-mt-20 {
    padding: 20px 0 40px;
  }

  .mypage-title-lv1 {
    font-size: 16px;
    padding-left: 10px;
    margin-bottom: 30px;
  }

  .mypage-title-lv1.sp-mb {
    margin-bottom: 16px;
  }

  .mypage-flow-list-sp {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }

  .mypage-flow-list-sp li {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    background: #cdd6dd;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding-top: 5px;
  }

  .mypage-flow-list-sp li span {
    display: block;
    font-weight: 600;
    font-size: 8px;
  }

  .mypage-flow-list-sp li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    border-bottom: solid 1px #707F89;
    width: 16px;
  }

  .mypage-flow-list-sp li.current {
    background: #62A780;
  }

  .mypage-flow-list-sp li.taken {
    background: #707070;
  }

  .form-name p {
    font-size: 14px;
  }

  .form-name .required {
    font-size: 13px;
  }

  .form-note {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .form-plan-accodion-wrap {
    max-width: 100%;
  }

  .form-plan-accodion-title {
    font-size: 14px;
    padding: 14px 40px 14px 11px;
  }

  .btn-box {
    gap: 16px;
  }

  .btn-box.mt-lg {
    gap: 10px;
    margin-top: 30px;
  }

  .btn-box.mt-60 {
    margin-top: 40px;
  }

  .btn-box + .form-body {
    margin-top: 30px;
  }

  .btn-box.border {
    padding-top: 16px;
    margin-top: 16px;
  }

  .btn-box.sp-block {
    display: block;
  }

  .btn-box.sp-block .btn-again + .btn-again {
    margin-top: 10px;
  }

  .btn-box.sp-block .btn-confirm + .btn-back {
    margin-top: 20px;
  }

  .btn-box.my-lg {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .btn-box.sp-col-2 {
    flex-wrap: wrap;
  }

  .btn-box.sp-col-2 .btn-confirm {
    width: calc((100% - 16px) / 2);
  }

  .btn-box.sp-flex-right {
    flex-wrap: wrap;
  }

  .btn-box-inner {
    max-width: 100%;
    gap: 16px;
  }

  .btn-box-inner .btn-confirm.sm-3 {
    max-width: 160px;
  }

  .btn-box.sp-pb-20 {
    padding-bottom: 20px;
  }
}

@media (max-width: 370px) {
  .form-birth-box {
    gap: 10px;
  }

  .btn-box-narrow {
    flex-direction: column;
  }
}

/*-------------------------------------------------------------*/
/* mypage_home */

.contents-wrap {
  position: relative;
  top: -96px;
  max-width: 940px;
  margin: 0 auto -96px;
  z-index: 1;
}

.mypage-campaign {
  box-shadow: 0px 24px 48px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  margin-bottom: 70px;
}

.mypage-campaign-slide {
  width: 100%;
}

.mypage-campaign-item img {
  border-radius: 16px;
}

.mypage-campaign-slide .slick-dots {
  bottom: -36px;
}

.mypage-campaign-slide .slick-dots li button::before {
  font-size: 10px;
  opacity: 1;
  color: #CDD6DD;
}

.mypage-campaign-slide .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #7CB595;
}

.mypage-campaign-img img {
  max-width: 100%;
}

.mypage-login {
  display: flex;
  max-width: 940px;
  border-radius: 16px;
  background: #fff;
  border: solid 4px #E4EFF0;
  box-shadow: 0px 12px 24px rgba(98, 167, 128, 0.16);
  margin-bottom: 60px;
  overflow: hidden;
}

.mypage-login-body {
  display: flex;
  justify-content: space-between;
  flex: 1;
  padding: 12px 20px 0 40px;
}

.mypage-login-name {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.2em;
}

.mypage-login-name span {
  font-size: 20px;
  margin-left: 10px;
}

.mypage-login-en {
  font-size: 14px;
  letter-spacing: 0.2em;
}

.mypage-login-state {
  width: 82px;
}

.mypage-login-state img {
  max-width: 100%;
  filter: drop-shadow(0px 4px 8px rgba(98, 167, 128, 0.15));
}

.mypage-login-user {
  color: #FFFFFF;
  background: #333333;
  font-weight: 500;
  width: 273px;
  padding: 24px 40px;
}

.mypage-login-plan {
  text-decoration: underline;
  font-size: 16px;
  line-height: 32px;
  color: white;
}

.mypage-login-plan span {
  font-weight: 700;
  font-size: 20px;
}

.mypage-login-id {
  font-size: 14px;
}

.mypage-usage {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.mypage-usage-col {
  border: solid 4px #E4EFF0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 12px 24px rgba(98, 167, 128, 0.16);
  width: calc((100% - 20px) / 2);
  overflow: hidden;
  padding-bottom: 20px;
}

.mypage-usage-col-area {
  width: 100%;
  height: 163px;
  background: #b2d6c8;
  border-bottom: solid 29px #62A780;
  box-shadow: 0px 12px 24px rgba(98, 167, 128, 0.16);
  padding: 0 30px;
  margin-bottom: 55px;
}

.mypage-usage-col-box {
  width: 400px;
  border-radius: 0px 0px 16px 16px;
  background: #fff;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, .08);
  padding: 12px 20px 14px;
}

.mypage-usage-prev,
.mypage-usage-door {
  display: flex;
  font-weight: 600;
}

.mypage-usage-prev span:first-child,
.mypage-usage-door span:first-child {
  width: 117px;
  text-align: right;
}

.mypage-usage-lock {
  width: 128px;
  margin: -6px auto 0;
}

.mypage-usage-lock img {
  max-width: 100%;
}

.mypage-usage-pay {
  position: relative;
  flex: 1;
  border-radius: 16px;
  background: #fff;
  border: 4px solid #e4eff0;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
  width: calc((100% - 20px) / 2);
  /* 上下パディングを均等にして垂直方向の余白を確保 */
  padding: 100px 20px 30px 30px;
}

.mypage-usage-pay-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mypage-usage-pay-title {
  font-size: 14px;
  margin-bottom: 8px;
}

.mypage-usage-pay-total {
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  width: 112px;
  height: 22px;
  border-radius: 11px;
  background: #fc4f50;
}

.mypage-usage-pay-price {
  font-family: "Montserrat", sans-serif;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.mypage-usage-pay-price span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 34px;
}

.mypage-usage-pay-note {
  font-size: 12px;
  text-align: right;
  margin-top: 8px;
}

.mypage-usage-pay-link {
  position: absolute;
  right: 30px;
  bottom: 20px;
  text-align: right;
}

.mypage-usage-pay-link a {
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
  color: #2d9f38;
}

.mypage-usage-pay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 176px;
  height: 12px;
  border-radius: 0px 0px 8px 8px;
  background: #e4eff0;
  transform: translateX(-50%);
}

.mypage-usage-btn {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  width: 220px;
  height: 50px;
  border-radius: 4px;
  background: #62a780;
  margin: auto;
}

.mypage-conference {
  margin-bottom: 60px;
}

.mypage-conference-media {
  display: flex;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.mypage-conference-media + .mypage-conference-media {
  margin-top: 40px;
}

.mypage-conference-img {
  max-width: 50%;
}

.mypage-conference-img img {
  max-width: 100%;
}

.mypage-conference-body {
  flex: 1;
  padding: 23px 40px 30px;
}

.mypage-conference-title {
  font-weight: 600;
  font-size: 20px;
  color: #1d1b1d;
  border-bottom: 1px solid #cde0d7;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.mypage-conference-text {
  line-height: 28px;
  color: #333;
  margin-bottom: 30px;
}

.mypage-conference-box {
  display: flex;
  gap: 20px;
}

.mypage-conference-btn-cancel {
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #707f89;
  width: 160px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #cdd6dd;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
}

.mypage-conference-btn-change {
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #62a780;
  width: 160px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #62a780;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
}

.mypage-stores {
  margin-bottom: 60px;
}

.mypage-stores-inner {
  display: flex;
  gap: 20px;
}

.mypage-stores-name {
  display: block;
  position: relative;
  width: 460px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #b2d6c8;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
  font-family: "Noto Sans JP";
  font-weight: 600;
  color: #333;
  padding: 11px 20px 15px;
}

.mypage-stores-name:hover {
  opacity: .8;
}

.mypage-stores-name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url("../../img/common/mypage/icon-arrow.5a513f00fc31.svg") center/cover no-repeat;
  width: 22px;
  height: 22px;
}

.mypage-stores-btn {
  display: block;
  position: relative;
  width: 145px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  border: 1.6px solid #62a780;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
  font-weight: 500;
  color: #62a780;
  padding: 10px 20px 15px 10px;
}

.mypage-stores-btn:hover {
  opacity: .8;
}

.mypage-stores-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url("../../img/common/mypage/icon-reload.c2264ee3eb50.svg") center/cover no-repeat;
  width: 20px;
  height: 20px;
}

.mypage-favorite {
  margin-bottom: 60px;
}

.mypage-favorite-list {
  display: flex;
  gap: 20px;
}

.mypage-favorite-item {
  width: 220px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.mypage-favorite-item img {
  max-width: 100%;
}

.mypage-favorite-body {
  color: #1d1b1d;
  padding: 20px 30px 30px;
}

.mypage-favorite-title {
  font-weight: 600;
}

.mypage-favorite-text {
  font-size: 14px;
  border-top: solid 1px #B2D6C8;
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: 30px;
}

.mypage-favorite-btn {
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: #62a780;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
  width: 160px;
  height: 48px;
}

.mypage-favorite-btn:hover {
  opacity: .8;
}

.mypage-info-list {
  border-radius: 16px;
  background: #fff;
  border: 4px solid #e4eff0;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
  padding: 40px;
}

.mypage-info-item {
  border-bottom: 1px solid #cde0d7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.mypage-info-title {
  position: relative;
  font-weight: 600;
  color: #1d1b1d;
  padding-left: 24px;
  margin-bottom: 16px;
}

.mypage-info-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: url("../../img/common/mypage/icon-important.56e47843bc1a.svg") center/cover no-repeat;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.mypage-info-text a,
.mypage-info-date {
  color: #1d1b1d;
}

.mypage-info-link {
  text-align: right;
}

.mypage-info-link a {
  position: relative;
  color: #1d1b1d;
  padding-right: 38px;
}

.mypage-info-link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background: url("../../img/common/mypage/icon-arrow.5a513f00fc31.svg") center/cover no-repeat;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

.remodal-overlay {
  background: rgba(0, 0, 0, .4);
}

.remodal {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
  padding: 30px 30px 40px;
}

.remodal.w-sm {
  width: 340px;
  padding: 60px 20px 40px;
  text-align: left;
}

.remodal-close::before {
  font-size: 35px;
  top: 10px;
  left: -10px;
}

.remodal-name {
  font-weight: 700;
}

.remodal-text {
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 40px;
}

.modal-receipt-title {
  font-weight: 700;
  font-size: 24px;
  color: #333;
  margin-top: 37px;
}

.modal-receipt-text {
  color: #333;
  margin: 40px 0;
}

.modal-locations-img {
  margin: 30px 0 20px;
}

.modal-locations-img img {
  max-width: 100%;
}

.modal-locations-text {
  font-size: 14px;
}

.modal-locations-text + .modal-locations-text {
  margin-top: 20px;
}

.modal-locations-text a {
  font-weight: 700;
  color: #2D9F38;
  text-decoration: underline;
}

.modal-locations-error-title {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  color: #333;
  margin-top: 37px;
}

.modal-locations-error-title::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: url("../../img/common/mypage/icon-caution.9709116280f6.png") center/cover no-repeat;
  width: 32px;
  height: 28px;
}

.modal-locations-error-text {
  color: #333;
  margin: 40px 0;
}

@media (max-width: 990px) {
  .contents-wrap {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .contents-wrap {
    top: -82px;
    padding: 0 16px;
    margin: 0 auto -82px;
  }

  .mypage-campaign {
    border-radius: 8px;
    box-shadow: none;
    width: calc(100% + 16px);
    margin-bottom: 46px;
    margin-left: -16px;
  }

  .mypage-campaign-slide .slick-list {
    padding: 0 0 0 30% !important;
  }

  .mypage-campaign-slide .slick-slide {
    transform: scale(.9);
    margin: 0;
  }

  .mypage-campaign-item img {
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
  }

  .mypage-campaign-slide .slick-current {
    transform: scale(1);
  }

  .mypage-campaign-slide .slick-dots {
    bottom: -28px;
  }

  .mypage-campaign-slide .slick-dots li {
    margin: 0 1px;
  }

  .mypage-login {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 40px;
  }

  .mypage-login-body {
    padding: 15px 16px 16px 20px;
  }

  .mypage-login-name {
    font-size: 24px;
    margin-top: 0;
  }

  .mypage-login-name span {
    font-size: 18px;
  }

  .mypage-login-en {
    font-size: 14px;
    letter-spacing: 0.1em;
  }

  .mypage-login-user {
    font-weight: 500;
    width: 100%;
    padding: 10px 20px 12px;
  }

  .mypage-login-id {
    font-size: 14px;
    margin-bottom: 0;
  }

  .mypage-login-plan {
    font-size: 14px;
    line-height: 24px;
  }

  .mypage-login-plan span {
    font-size: 16px;
  }

  .mypage-usage {
    display: block;
    margin-bottom: 40px;
  }

  .mypage-usage-col {
    border-radius: 8px 8px 16px 16px;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  .mypage-usage-col-area {
    width: 100%;
    height: 108px;
    border-bottom: solid 21px #62A780;
    padding: 0 13px;
    margin-bottom: 86px;
  }

  .mypage-usage-col-box {
    width: 100%;
    padding: 9px 10px 10px;
  }

  .mypage-usage-prev,
  .mypage-usage-door {
    font-size: 12px;
    font-weight: 500;
  }

  .mypage-usage-prev span:first-child,
  .mypage-usage-door span:first-child {
    width: 88px;
  }

  .mypage-usage-btn {
    font-size: 14px;
  }

  .mypage-usage-pay {
    border-radius: 8px;
    border: 3px solid #e4eff0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 143px;
    /* モバイルでも上下パディングを均等にする */
    padding: 26px 12px 10px 10px;
  }

  .mypage-usage-pay::before {
    content: none;
  }

  .mypage-usage-pay-title {
    font-weight: 500;
    font-size: 12px;
  }

  .mypage-usage-pay-total {
    font-weight: 700;
    font-size: 13px;
    width: 96px;
    height: 20px;
    margin: auto;
  }

  .mypage-usage-pay-price {
    font-size: 46px;
    letter-spacing: 0.08em;
  }

  .mypage-usage-pay-price span {
    font-size: 14px;
  }

  .mypage-usage-pay-note {
    font-size: 10px;
    margin-top: -2px;
  }

  .mypage-usage-pay-link {
    right: 13px;
  }

  .mypage-usage-pay-link a {
    font-weight: 500;
    font-size: 10px;
    color: #2d9f38;
  }

  .mypage-conference {
    margin-bottom: 40px;
  }

  .mypage-conference-media {
    display: block;
    border-radius: 8px;
    border: 3px solid #e4eff0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
    padding: 20px 20px 30px;
  }

  .mypage-conference-media + .mypage-conference-media {
    margin-top: 16px;
  }

  .mypage-conference-img {
    border-radius: 4px;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .mypage-conference-body {
    padding: 0;
  }

  .mypage-conference-title {
    font-size: 14px;
  }

  .mypage-conference-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
  }

  .mypage-conference-box {
    gap: 10px;
  }

  .mypage-conference-btn-cancel {
    font-size: 14px;
    width: 129px;
    height: 42px;
    border-radius: 4px;
  }

  .mypage-conference-btn-change {
    font-size: 14px;
    width: 129px;
    height: 42px;
    border-radius: 4px;
  }

  .mypage-stores {
    margin-bottom: 40px;
  }

  .mypage-stores-inner {
    display: block;
  }

  .mypage-stores-name {
    width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .mypage-stores-name::after {
    right: 16px;
    width: 18px;
    height: 18px;
  }

  .mypage-stores-btn {
    width: 124px;
    height: 32px;
    border-radius: 4px;
    font-size: 13px;
    color: #62a780;
    padding: 5px 20px 15px 10px;
    margin-left: auto;
  }

  .mypage-stores-btn::after {
    width: 16px;
    height: 16px;
  }

  .mypage-favorite {
    margin-bottom: 40px;
  }

  .mypage-favorite-list {
    flex-wrap: wrap;
    gap: 16px;
  }

  .mypage-favorite-item {
    width: calc((100% - 16px) / 2);
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  }

  .mypage-favorite-body {
    font-weight: 500;
    padding: 10px 10px 0;
  }

  .mypage-favorite-title {
    font-size: 13px;
  }

  .mypage-favorite-text {
    font-size: 12px;
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .mypage-favorite-btn {
    font-weight: 600;
    font-size: 14px;
    border-radius: 0px 0px 8px 8px;
    width: calc(100% + 20px);
    height: 42px;
    margin-left: -10px;
  }

  .mypage-info {
    margin-bottom: 60px;
  }

  .mypage-info-list {
    border-radius: 8px;
    border: 3px solid #e4eff0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
    padding: 16px 20px 20px;
  }

  .mypage-info-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .mypage-info-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .mypage-info-text a,
  .mypage-info-date {
    font-size: 14px;
  }

  .mypage-info-link a {
    font-weight: 600;
    font-size: 14px;
    padding-right: 28px;
  }

  .mypage-info-link a::before {
    width: 18px;
    height: 18px;
  }

  .remodal-wrapper {
    padding: 10px 16px 0;
  }

  .remodal {
    padding: 20px 13px;
  }

  .remodal.w-sm {
    max-width: 282px;
  }

  .remodal-close::before {
    font-size: 35px;
    top: 10px;
    left: -10px;
  }

  .remodal-name {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
  }

  .remodal-text {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .modal-receipt-title {
    font-weight: 600;
    font-size: 18px;
    margin-top: 70px;
  }

  .modal-receipt-text {
    font-size: 14px;
    margin: 20px 0 44px;
  }

  .modal-locations-error-title {
    font-weight: 600;
    font-size: 18px;
    margin-top: 69px;
  }

  .modal-locations-error-text {
    font-size: 14px;
    margin: 20px 0;
  }
}

/*-------------------------------------------------------------*/
/* contract_plans_confirm */

.mypage-title-lv2-wrap {
  border-bottom: solid 1px #B2D6C8;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.mypage-title-lv2-wrap.line-b {
  border-bottom: solid 2px #B2D6C8;
}

.mypage-title-lv2-wrap.mb-20 {
  margin-bottom: 20px;
}

.mypage-title-lv2 {
  font-weight: 600;
}

.mypage-title-note {
  font-size: 14px;
  margin-top: 8px;
}

.mypage-title-note + .mypage-title-note {
  margin-top: 10px;
}

.mypage-text-wrap {
  max-width: 460px;
  margin: 40px auto 60px;
}

.mypage-text {
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 20px;
}

.mypage-text a {
  color: #0058FF;
  text-decoration: underline;
}

.mypage-text.center {
  text-align: center;
}

.btn-box + .mypage-text {
  margin: 60px 0 40px;
}

.btn-box + .mypage-text.my-md {
  margin: 40px 0 40px;
}

.plan-confirm-area {
  border-radius: 8px;
  background: #eff4ef;
  border: 2px solid #cde0d7;
  max-width: 580px;
  padding: 40px;
  margin: 40px auto 0;
}

.plan-confirm-area + .plan-confirm-area {
  margin: 20px auto;
}

.plan-confirm-area.mt-20 {
  margin-top: 20px;
}

.plan-confirm-area.mb-0 {
  margin-bottom: 0;
}

.plan-confirm-area + .btn-box {
  margin-top: 40px;
}

.plan-confirm-area + .btn-box.mt-sm {
  margin-top: -20px;
}

.plan-confirm-area + .btn-box.mt-60 {
  margin-top: 60px;
}

.plan-confirm-area + .mypage-title-lv2-wrap {
  margin-top: 40px;
}

.plan-confirm-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 29px;
}

.plan-confirm-list dt {
  font-weight: 600;
  width: 140px;
}

.plan-confirm-list dd {
  width: calc(100% - 140px);
}

.plan-confirm-list dd.lg {
  width: 100%;
}

.plan-confirm-list dd a {
  color: #0058FF;
  text-decoration: underline;
}

.cc-continuation-text {
  font-weight: 500;
  max-width: 580px;
  margin: 40px auto -30px;
}

.cc-unsubmitted-text {
  font-weight: 500;
  max-width: 340px;
  margin: 40px auto 0;
}

@media (max-width: 767px) {
  .mypage-title-lv2 {
    font-size: 14px;
  }

  .mypage-title-note {
    font-size: 12px;
  }

  .mypage-text-wrap {
    margin: 30px auto 40px;
  }

  .mypage-text {
    font-size: 14px;
    line-height: 26px;
  }

  .mypage-text.center {
    text-align: left;
  }

  .btn-box + .mypage-text {
    margin: 30px 0 40px;
  }

  .btn-box + .mypage-text.my-md {
    margin: 30px 0 20px;
  }

  .plan-confirm-area {
    border-radius: 4px;
    padding: 13px 13px 20px;
    margin: 20px auto 0;
  }

  .plan-confirm-area + .plan-confirm-area {
    margin: 10px auto;
  }

  .plan-confirm-area.sp-mt-40 {
    margin-top: 40px;
  }

  .plan-confirm-area.mb-0 {
    margin-bottom: 0;
  }

  .plan-confirm-area.sp-mt-30 {
    margin-top: 30px;
  }

  .plan-confirm-area.sp-my {
    margin: 20px auto 0;
  }

  .plan-confirm-area.sp-my + .plan-confirm-area.sp-my {
    margin: 20px auto 40px;
  }

  .plan-confirm-area + .mypage-title-lv2-wrap {
    margin-top: 20px;
  }

  .plan-confirm-area + .mypage-title-lv2-wrap.sp-mt-40 {
    margin-top: 40px;
  }

  .plan-confirm-text {
    font-size: 14px;
  }

  .plan-confirm-list {
    gap: 0 11px;
    font-size: 12px;
    line-height: 1.5;
  }

  .plan-confirm-list dt {
    width: 96px;
  }

  .plan-confirm-list dd {
    width: calc(100% - 107px);
  }

  .plan-confirm-list dd p {
    font-size: 14px;
    line-height: 26px;
  }

  .plan-confirm-list.lg dd {
    width: 100%;
  }

  .plan-confirm-area + .btn-box.mt-sm {
    margin-top: 0;
  }

  .plan-confirm-area + .btn-box.mt-60 {
    margin-top: 40px;
  }

  .cc-continuation-text {
    font-size: 14px;
    margin: 30px auto -10px;
  }

  .mypage-text.my-md + .cc-continuation-text {
    margin: 20px auto -10px;
  }

  .cc-unsubmitted-text {
    font-size: 14px;
    max-width: 100%;
    margin: 30px auto 0;
  }
}

/*-------------------------------------------------------------*/
/* cc_regist */

.credit-card-img {
  max-width: 247px;
}

.credit-card-img img {
  max-width: 100%;
}

.supplement-area {
  background: #d9e8e1;
  padding: 20px;
  margin: 40px 0 60px;
}

@media (max-width: 767px) {
  .supplement-area {
    padding: 10px;
    margin: 32px 0 40px;
  }

  .supplement-text {
    font-size: 14px;
  }
}

/*-------------------------------------------------------------*/
/* other_contract */

.caution-area {
  border-radius: 8px;
  background: #fff;
  border: 2px solid #fc4f50;
  padding: 20px 40px;
}

.caution-area-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 29px;
  color: #fc4f50;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .caution-area {
    border-radius: 4px;
    padding: 20px 14px 40px;
  }

  .caution-area-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .caution-area-text {
    font-size: 14px;
  }
}

/*-------------------------------------------------------------*/
/* contract_application */

.settlement-text {
  font-size: 14px;
  text-align: center;
}

.settlement-text.mt-sm {
  margin-top: -20px;
}

.settlement-table {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 60px;
}

.settlement-table.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.settlement-table.mt-20 {
  margin-top: 20px;
}

.settlement-table.mb-0 {
  margin-bottom: 0;
}

.settlement-table.my-0 {
  margin: 0;
}

.settlement-table.w-md {
  width: 420px;
}

.settlement-table.w-lg {
  width: 760px;
  margin-left: -60px;
}

.settlement-table.col-2 th {
  width: 50%;
}

.settlement-table tr:not(:last-child) {
  border-bottom: solid 1px #CDD6DD;
}

.settlement-table th {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background: #333;
  padding: 20px;
  vertical-align: middle;
}

.settlement-table th:not(:last-child) {
  border-right: solid 1px #FFFFFF;
}

.settlement-table th.left {
  text-align: left;
}

.settlement-table th .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.settlement-table .table-arrow {
  display: flex;
  width: 20px;
  height: 16px;
}

.settlement-table .table-arrow-down,
.settlement-table .table-arrow-up {
  position: relative;
  width: 9px;
}

.settlement-table .table-arrow-down {
  transform: rotateZ(180deg);
}

.settlement-table .table-arrow-down::before,
.settlement-table .table-arrow-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  border-left: solid 2px #98AAB5;
  height: 16px;
}

.settlement-table .table-arrow-down::after,
.settlement-table .table-arrow-up::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateZ(45deg);
  border-left: solid 2px #98AAB5;
  border-top: solid 2px #98AAB5;
  width: 6px;
  height: 6px;
}

.settlement-table .table-arrow-down.active::before,
.settlement-table .table-arrow-up.active::before {
  border-left: solid 2px white;
}

.settlement-table .table-arrow-down.active::after,
.settlement-table .table-arrow-up.active::after {
  border-left: solid 2px white;
  border-top: solid 2px white;
}

.settlement-table th .sm {
  font-size: 12px;
}

.settlement-table th a {
  color: white;
  text-decoration: underline;
}

.settlement-table td {
  font-size: 14px;
  background: #FFFFFF;
  padding: 20px;
  vertical-align: middle;
}

.settlement-table td:not(:last-child) {
  border-right: solid 1px #CDD6DD;
}

.settlement-table td.border {
  border-right: solid 1px #CDD6DD;
}

.settlement-table td.center {
  text-align: center;
}

.settlement-table td.right {
  text-align: right;
}

.settlement-table td .text-sm {
  font-size: 12px;
}

.settlement-table.p-10 td,
.settlement-table.p-10 th {
  padding: 10px;
}

.settlement-table td.p-0 {
  padding: 0;
}

.settlement-table .selectbox select {
  display: block;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
  color: #CDD6DD;
  border: none;
  width: 100%;
  padding: 19px 20px;
  cursor: pointer;
}

.settlement-table .selectbox .arrow {
  background: url("../../img/common/reserve/icon-arrow-d.a341352ff1df.svg") no-repeat right 19px center / 10px 7px #FFFFFF;
}

.settlement-table td a {
  color: #0058FF;
  text-decoration: underline;
}

.settlement-table .settlement-table-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.settlement-table .settlement-table-caution {
  font-weight: 500;
  font-size: 14px;
  color: #fc4f50;
}

.settlement-table .settlement-table-btn {
  display: grid;
  place-items: center;
  color: #333;
  width: 135px;
  height: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #7cb595;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
  text-decoration: none;
}

.settlement-table .settlement-table-link {
  color: #333;
  text-decoration: underline;
}

.settlement-table .form-body {
  margin-top: 0;
}

.table-scroll + .mypage-title-lv2-wrap {
  margin-top: 40px;
}

@media (max-width: 990px) {
  .settlement-table.w-lg {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .settlement-text {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .settlement-text.mt-sm {
    margin-top: 0;
  }

  .settlement-table {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .settlement-table.sp-mt-0 {
    margin-top: 0;
  }

  .settlement-table.sp-mb-30 {
    margin-bottom: 30px;
  }

  .settlement-table + .settlement-table {
    margin-top: -20px;
  }

  .settlement-table + .settlement-table.sp-mt-20 {
    margin-top: -20px;
  }

  .settlement-table.sp-mt-0 + .settlement-table {
    margin-top: -30px;
  }

  .settlement-table th {
    font-size: 12px;
    text-align: left;
    padding: 10px 20px;
  }

  .settlement-table td {
    font-size: 12px;
    padding: 10px 20px;
  }

  .settlement-table .selectbox select {
    font-size: 12px;
  }

  .settlement-table .settlement-table-name {
    background: #364045;
    width: 35%;
  }

  .settlement-table .settlement-table-caution {
    font-size: 12px;
  }

  .table-scroll {
    overflow-x: scroll;
  }

  .table-scroll .settlement-table {
    width: 700px;
  }

  .table-scroll .settlement-table.w-md {
    width: 420px;
  }

  .table-scroll .settlement-table.my-40 {
    margin-bottom: 5px;
  }

  .table-scroll + .billing-details-text {
    margin-top: 40px;
  }

  .table-scroll.sp-mb-40 {
    margin-bottom: 40px;
  }

  .table-scroll.sp-mb-40 .settlement-table {
    margin: 0;
  }
}

.settlement-table-sp-title {
    width: 100px;
}

/*-------------------------------------------------------------*/
/* contract_application_history */

.contract-application-list {
  display: flex;
  font-size: 14px;
  margin-top: 10px;
}

.pagination {
  margin: 60px 0;
}

.pagination.mb-0 {
  margin-bottom: 0;
}

.pagination.my-0 {
  margin: 0;
}

.pagination.my-md {
  margin-top: 40px;
  margin-bottom: 0;
}

.pagination.my-sm {
  margin: -20px 0 40px;
}

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-list .next,
.pagination-list .prev {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #c3dfd4;
}

.pagination-list .prev {
  margin-right: 22px;
}

.pagination-list .next {
  margin-left: 22px;
}

.pagination-list .next::before,
.pagination-list .prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../../img/common/mypage/icon-arrow02.87d7064c1ba3.svg") center/cover no-repeat;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  transition: .3s;
}

.pagination-list .prev::before {
  transform: translate(-50%, -50%) rotateZ(180deg);
}

.pagination-list .next:hover,
.pagination-list .prev:hover {
  background: #4A9068;
}

.pagination-list .next:hover::before,
.pagination-list .prev:hover::before {
  background: url("../../img/common/mypage/icon-arrow02-w.952911ee8ea3.svg") center/cover no-repeat;
}

.pagination-list .num {
  font-size: 18px;
  color: #b2d6c8;
  padding: 12px;
}

.pagination-list .num:hover,
.pagination-list .num.current {
  color: #4A9068;
}

@media (max-width: 767px) {
  .contract-application-list {
    font-size: 12px;
  }

  .contract-application-list dd {
    flex: 1;
  }

  .pagination.my-sm,
  .pagination {
    margin: 40px 0;
  }

  .pagination-list .next,
  .pagination-list .prev {
    width: 39px;
    height: 39px;
  }

  .pagination-list .num {
    padding: 6px 13px;
  }

  .pagination-list .prev {
    margin-right: 3px;
  }

  .pagination-list .next {
    margin-left: 3px;
  }
}

/*-------------------------------------------------------------*/
/* application_completed */

.completed-text {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.completed-text.left {
  text-align: left;
}

.completed-text + .completed-text {
  margin-top: 10px;
  margin-bottom: 40px;
}

.completed-text + .form-body {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .completed-text {
    font-size: 12px;
    line-height: 26px;
    text-align: left;
  }

  .completed-text + .completed-text {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}

/*-------------------------------------------------------------*/
/* unlock_select */

.unlock-select-warp {
  position: relative;
  top: -105px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.04);
  max-width: 940px;
  padding: 40px 150px 44px;
  margin: 0 auto -105px;
  z-index: 1;
}

.unlock-select-warp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 107px;
  border-radius: 0px 0px 16px 16px;
  background: linear-gradient(#cde0d7 0%, #b2d6c8 100%);
}

.unlock-select-area {
  border-radius: 8px;
  background: #f8faf9;
  padding: 16px 80px 24px 110px;
  margin-bottom: 20px;
}

.unlock-select-note {
  font-size: 14px;
  margin-bottom: 10px;
}

.unlock-select-search {
  margin-top: 10px;
  margin-bottom: 20px;
}

.unlock-select-search .form-body {
  display: flex;
  justify-content: space-between;
}

.unlock-select-link {
  position: relative;
  padding-left: 26px;
}

.unlock-select-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../../img/common/mypage/icon-pin.b0b5173c7ac3.svg") center/cover no-repeat;
  width: 18px;
  height: 23px;
}

.unlock-select-link a {
  font-weight: 600;
  text-decoration: underline;
  color: #333;
}

.unlock-select-box {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.unlock-select-box > div {
  width: 300px;
}

.unlock-select-name {
  margin-bottom: 10px;
}

.unlock-select-list {
  display: flex;
  border-bottom: solid 1px #CDE0D7;
  padding-bottom: 10px;
}

.unlock-select-list dt {
  font-weight: 700;
}

.unlock-select-lock {
  display: block;
  position: relative;
  width: 128px;
  margin: 40px auto 0;
  z-index: 1;
}

.unlock-select-lock:hover {
  opacity: .8;
}

.unlock-select-lock img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .unlock-select-warp {
    top: 0;
    border-radius: 8px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
    max-width: calc(100% - 32px);
    padding: 20px 13px 37px;
    margin: 0 auto;
  }

  .unlock-select-warp::after {
    height: 100px;
  }

  .unlock-select-area {
    border-radius: 0;
    background: none;
    padding: 0;
  }

  .unlock-select-note {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .unlock-select-search {
    margin-bottom: 10px;
  }

  .unlock-select-search .form-body {
    gap: 13px;
  }

  .unlock-select-link {
    padding-left: 23px;
  }

  .unlock-select-link::before {
    top: 3px;
    width: 17px;
    height: 20px;
  }

  .unlock-select-link a {
    font-size: 14px;
  }

  .unlock-select-box {
    display: block;
  }

  .unlock-select-box > div {
    width: 100%;
  }

  .unlock-select-box > div + div{
    margin-top: 10px;
  }

  .unlock-select-name {
    font-size: 14px;
  }

  .unlock-select-list dt {
    font-size: 13px;
    width: 65px;
  }

  .unlock-select-list dd {
    font-size: 13px;
    flex: 1;
  }

  .unlock-select-lock {
    margin: 20px auto 0;
  }
}

/*-------------------------------------------------------------*/
/* unlock_select02 */

.unlock-select-warp.bg-none {
  padding-top: 65px;
  padding-bottom: 60px;
}

.unlock-select-warp.bg-none::after {
  content: none;
}

.unlock-select-error {
  font-size: 14px;
  color: #c00;
}

.unlock-select-state {
  font-weight: 500;
  font-size: 16px;
  margin-top: 20px;
}

.unlock-select-block {
  margin: 40px 0;
}

.unlock-select-title {
  font-weight: 600;
}

.unlock-select-text {
  color: #333;
}

.unlock-select-title + .unlock-select-text {
  margin-top: 10px;
}

.unlock-select-text + .unlock-select-title {
  margin-top: 30px;
}

.unlock-select-list + .unlock-select-text {
  margin-top: 20px;
}

.unlock-select-items {
  list-style: disc;
  font-weight: 700;
  color: #333;
  border-bottom: solid 1px #CDE0D7;
  padding-bottom: 10px;
  padding-left: 1.5em;
  margin: 10px 0 40px;
}

@media (max-width: 767px) {
  .unlock-select-warp.bg-none {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .unlock-select-state {
    margin-top: 16px;
  }

  .unlock-select-block {
    margin: 44px 0 28px;
  }

  .unlock-select-title {
    font-size: 14px;
  }

  .unlock-select-text.sp-sm {
    font-size: 13px;
  }

  .unlock-select-warp.bg-none .unlock-select-list {
    display: block;
  }

  .unlock-select-warp.bg-none .unlock-select-list dt {
    width: 100%;
    margin-bottom: 10px;
  }

  .unlock-select-items {
    font-size: 13px;
  }
}

/*-------------------------------------------------------------*/
/* information */

.information-list {
  margin-bottom: -20px;
}

.information-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: solid 1px #C3DFD4;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.information-list-date {
  width: 100px;
  font-size: 14px;
}

.information-list-link {
  flex: 1;
  color: #333333;
}

.detail-area-text {
  line-height: 29px;
}

.detail-area {
  margin-bottom: 60px;
}

.detail-area-text + .detail-area-text {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .information-list {
    margin-top: -10px;
    margin-bottom: 0;
  }

  .information-list li {
    gap: 13px;
  }

  .information-list-date {
    width: 68px;
    font-size: 12px;
  }

  .information-list-link {
    font-size: 14px;
  }

  .detail-area {
    margin-bottom: 40px;
  }

  .detail-area-text {
    font-size: 14px;
    line-height: 24px;
  }
}

/*-------------------------------------------------------------*/
/* search_locations */

.search-form-wrap {
  max-width: 340px;
  margin: 68px auto 0;
}

.search-form-accodion {
  margin-bottom: 60px;
}

.search-form-accodion-title {
  position: relative;
  font-weight: 600;
  font-size: 22px;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #62a780;
  padding: 7px 60px 11px 20px;
  cursor: pointer;
}

.search-form-accodion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: url("../../img/common/mypage/icon-arrow-d.20b74a18a5e4.svg") center/cover no-repeat;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: .3s;
}

.search-form-accodion-title.active::after {
  transform: translateY(-50%) rotateZ(180deg);
}

.search-form-accodion-body {
  display: none;
  margin-top: 32px;
}

.search-form-accodion-body.mt-20 {
  margin-top: 20px;
}

.search-form-accodion-body .selectbox + .form-input,
.search-form-accodion-body .selectbox + .selectbox,
.search-form-accodion-body .form-input + .selectbox,
.search-form-accodion-body .form-input + .form-input {
  margin-top: 20px;
}

.search-form-accodion-body .form-body,
.search-form-accodion-body .form-input.search {
  margin-top: 0;
}

.search-form-accodion-body .form-checkbox label + label {
  margin-top: 16px;
}

.search-form-map {
  margin-bottom: 30px;
}

.search-form-map img {
  max-width: 100%;
}

.search-form-accodion-sub-title {
  font-weight: 600;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.search-location-box {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 12px 24px rgba(124, 181, 149, 0.16);
  padding: 20px 20px 30px;
}

.search-location-box + .search-location-box {
  margin-top: 30px;
}

.search-location-title {
  font-weight: 600;
  border-bottom: solid 1px #333333;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.search-location-title span {
  font-weight: 400;
}

.search-location-favorite {
  position: relative;
  display: grid;
  place-content: center;
  font-weight: 600;
  font-size: 12px;
  color: #62a780;
  width: 129px;
  height: 36px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #62a780;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
  padding-left: 19px;
}

.search-location-favorite::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  background: url("../../img/common/mypage/icon-favorite.65e4d9c6f252.png") center/cover no-repeat;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
}

.search-location-favorite:hover {
  opacity: .8;
}

.search-location-favorite.active {
  color: #fff;
  background: #62A780;
}

.search-location-favorite.active::before {
  background: url("../../img/common/mypage/icon-favorite-w.16743f737928.png") center/cover no-repeat;
}

.search-location-img {
  margin: 20px 0;
}

.search-location-img.mt-0 {
  margin: 0 0 20px;
}

.search-location-img img {
  border-radius: 4px;
  max-width: 100%;
}

.search-location-sub-title {
  font-weight: 600;
  margin-bottom: 9px;
}

.search-location-text {
  font-size: 14px;
}

.search-location-link {
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

.search-location-link a {
  color: #2D9F38;
}

.search-location-block {
  border: solid 1px #333333;
  border-width: 1px 0;
  padding: 10px 0 20px;
  margin: 10px 0;
}

.search-location-block.line-bottom {
  border-width: 0 0 1px;
  padding: 0 0 10px;
  margin: 10px 0;
}

.search-location-list li {
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}

.search-location-list li::before {
  content: "•";
}

.search-location-box .btn-box {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .search-form-wrap {
    margin: 20px auto 0;
  }

  .search-form-accodion {
    margin-bottom: 40px;
  }

  .search-form-accodion-title {
    font-size: 18px;
    padding: 10px 60px 11px 20px;
  }

  .search-form-accodion-body {
    margin-top: 20px;
  }

  .search-form-map {
    margin-bottom: 20px;
  }

  .search-form-accodion-sub-title {
    font-size: 16px;
    margin-top: 20px;
  }

  .search-form-accodion-body .form-checkbox label + label {
    margin-top: 10px;
  }

  .search-location-box {
    border: 3px solid #e4eff0;
    box-shadow: none;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.04));
  }

  .search-location-box + .search-location-box {
    margin-top: 20px;
  }

  .search-location-title {
    font-size: 16px;
  }

  .search-location-img {
    margin: 20px 0 10px;
  }

  .search-location-img img {
    border-radius: 4px;
    max-width: 100%;
  }

  .search-location-text {
    font-size: 12px;
  }

  .search-location-link {
    margin-top: 10px;
  }

  .search-location-list li {
    font-size: 12px;
  }

  .search-location-block.line-bottom {
    margin: -10px 0 10px;
  }
}

/*-------------------------------------------------------------*/
/* search_locations02 */

.facility-search-wrap {
  max-width: 360px;
  margin: auto;
}

.facility-search-area {
  border-radius: 8px;
  background: #fff;
  border: 3px solid #e4eff0;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  padding: 20px 17px 40px;
}

.facility-search-title {
  font-weight: 600;
  border-bottom: solid 1px #333333;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.facility-search-title span {
  font-weight: 400;
}

.facility-search-img {
  margin-top: 20px;
  margin-bottom: 12px;
}

.facility-search-img img {
  border-radius: 4px;
  max-width: 100%;
}

.facility-search-thumb {
  display: flex;
  gap: 8px;
}

.facility-search-thumb img {
  max-width: 100%;
}

.facility-search-sub-title {
  font-weight: 600;
  margin-bottom: 9px;
}

.facility-search-text {
  font-size: 12px;
}

.facility-search-text a {
  color: #2D9F38;
}

.facility-search-list li {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}

.facility-search-list li::before {
  content: "•";
}

.facility-search-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: -10px;
}

.facility-search-tag li a {
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #3b4043;
  border-radius: 15px;
  background: #eff4ef;
  border: 1px solid #cde0d7;
  padding: 4px 10px 6px;
}

.facility-search-tag li a:hover {
  color: #FFFFFF;
  background: #62A780;
  border: 1px solid #cde0d7;
}

.facility-search-block {
  border-bottom: solid 1px #333333;
  padding-bottom: 20px;
  margin: 20px 0;
}

.facility-search-map {
  border-radius: 4px;
  overflow: hidden;
}

.facility-search-calendar {
  /* margin-top: 30px; */
}

.facility-search-calendar-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 16px;
}

.facility-search-calendar-year {
  font-size: 12px;
  color: #3b4043;
}

.facility-search-calendar-month {
  font-weight: 700;
  font-size: 24px;
  color: #3b4043;
}

.facility-search-calendar-next,
.facility-search-calendar-prev {
  display: block;
  position: relative;
  width: 20px;
  height: 26px;
}

.facility-search-calendar-prev {
  position: relative;
  margin-right: auto;
}

.facility-search-calendar-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  border-bottom: solid 2px #98A6B5;
  border-left: solid 2px #98A6B5;
  width: 5px;
  height: 5px;
  transform: rotateZ(45deg);
}

.facility-search-calendar-next {
  margin-left: auto;
}

.facility-search-calendar-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  border-bottom: solid 2px #98A6B5;
  border-left: solid 2px #98A6B5;
  width: 5px;
  height: 5px;
  transform: rotateZ(-135deg);
}

.facility-search-calendar-table {
  width: 100%;
}

.facility-search-calendar-table th {
  font-size: 12px;
  text-align: center;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #CDD6DD;
  padding: 3px 0;
}

.facility-search-calendar-table td {
  font-size: 12px;
  text-align: center;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}

.facility-search-calendar-table td span,
.facility-search-calendar-table td a {
  display: block;
  color: #3B4043;
  background: #EFF4EF;
  padding: 5px 0 7px;
}

.facility-search-calendar-table td a:hover,
.facility-search-calendar-table td a.current {
  background: #49BE54;
  color: #FFFFFF;
}

.facility-search-timezone {
  display: flex;
  gap: 4px;
  margin-top: 30px;
}

.facility-search-time {
  margin-top: 30px;
  margin-bottom: -30px;
}

.facility-search-time p {
  font-size: 10px;
  text-align: center;
  margin-bottom: 16px;
}

.facility-search-timezone-table {
  border-right: solid 1px #CDE0D7;
  width: 100%;
  height: 536px;
}

.facility-search-timezone-table th {
  font-weight: 500;
  font-size: 10px;
  text-align: center;
  color: #3b4043;
  border-left: solid 1px #CDE0D7;
  border-bottom: solid 1px #CDE0D7;
  padding-bottom: 5px;
}

.facility-search-timezone-table th span {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #4a9068;
}

.facility-search-timezone-table td {
  border-left: solid 1px #CDE0D7;
  border-bottom: solid 1px #CDE0D7;
  height: 33px;
}

.facility-search-modal-area {
  max-width: 242px;
  margin: auto;
}

.facility-search-modal-warp {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 217px;
  margin: 0 auto 20px;
}

.facility-search-modal-warp.right {
  justify-content: flex-end;
}

.facility-search-modal-name,
.facility-search-modal-title {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.facility-search-modal-name {
  margin-bottom: 30px;
}


.facility-search-modal-warp p {
  font-size: 12px;
}

.facility-search-modal-inner {
  display: flex;
  align-items: center;
  gap: 7px;
}

.facility-search-modal-free {
  font-size: 12px;
  text-align: left;
  max-width: 217px;
  margin: 0 auto 10px;
}

.facility-search-modal-note {
  font-size: 12px;
  text-align: left;
  max-width: 217px;
  margin: 20px auto;
}

.facility-search-modal-date {
  font-weight: 700;
  font-size: 18px;
  color: #62a780;
  border-top: solid 1px #CDE0D7;
  padding-top: 30px;
}

.facility-search-modal-timezone {
  font-weight: 700;
  font-size: 28px;
  color: #62a780;
  margin: 10px 0;
}

.facility-search-modal-reserve {
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.facility-search-accodion + .facility-search-accodion {
  margin-top: 10px;
}

.facility-search-accodion-title {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  width: 100%;
  height: 48px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #b2d6c8;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
  padding: 12px 60px 11px 20px;
  cursor: pointer;
}

.facility-search-accodion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: url("../../img/common/mypage/icon-arrow-d.20b74a18a5e4.svg") center/cover no-repeat;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  transition: .3s;
}

.facility-search-accodion-title.active::after {
  transform: translateY(-50%) rotateZ(180deg);
}

.facility-search-accodion-body {
  display: none;
  margin-top: 20px;
  margin-bottom: 40px;
}

.facility-search-accodion-body .fc .fc-daygrid-day-frame {
  /* ブース予約カレンダーの境界線が消える現象の対策 */
  min-height: 98% !important;
}

@media (max-width: 767px) {
  .facility-search-title {
    font-size: 14px;
    line-height: 24px;
  }
}

/*-------------------------------------------------------------*/
/* user_list */

.user-search-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.user-search {
  display: flex;
  width: 400px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #b2d6c8;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
}

.user-search-input {
  flex: 1;
  border: none;
  border-radius: 4px;
  width: calc(100% - 100px);
  padding: 10px 10px 11px 20px;
}

.user-search-input::placeholder {
  color: #CDD6DD;
}

.user-search-button {
  font-weight: 700;
  color: #fff;
  border: none;
  width: 100px;
  height: 48px;
  border-radius: 0px 4px 4px 0px;
  background: #62a780;
  cursor: pointer;
}

@media (max-width: 767px) {
  .user-search-wrap {
    display: block;
  }

  .user-search {
    width: 100%;
    margin-bottom: 20px;
  }

  .user-search-input {
    width: calc(100% - 100px);
  }

  .user-search-button {
    font-size: 14px;
    width: 100px;
  }

}

/*-------------------------------------------------------------*/
/* user_detail */

.user-detail-area {
  margin-bottom: 60px;
}

.user-detail-area + .mypage-title-lv2-wrap {
  margin-top: -20px;
}

.user-detail-block {
  border-bottom: solid 1px #C3DFD4;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.user-detail-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.user-detail-list {
  display: flex;
  flex-wrap: wrap;
}

.user-detail-list dt {
  font-weight: 600;
  width: 140px;
}

.user-detail-list dd {
  font-weight: 400;
  width: calc(100% - 140px);
}

.user-detail-list.lg dt {
  width: 170px;
}

.user-detail-list.lg dd {
  width: calc(100% - 170px);
}

.user-detail-link {
  font-size: 14px;
  margin-top: 8px;
}

.user-detail-link a {
  color: #1258FF;
  text-decoration: underline;
}

.user-detail-body .form-checkbox label + label {
  margin-top: 8px;
}

.user-detail-text {
  font-weight: 600;
}

.user-detail-text span {
  font-weight: 400;
}

@media (max-width: 767px) {
  .user-detail-area {
    margin-bottom: 40px;
  }

  .user-detail-text,
  .user-detail-title {
    font-size: 14px;
  }

  .user-detail-list {
    font-size: 14px;
  }

  .user-detail-list dt {
    width: 113px;
  }

  .user-detail-list dd {
    width: calc(100% - 113px);
  }

  .user-detail-list.lg dt {
    width: 140px;
  }

  .user-detail-list.lg dd {
    width: calc(100% - 140px);
  }

  .user-detail-link {
    font-size: 12px;
    margin-top: 8px;
  }

  .user-detail-body .form-checkbox label + label {
    margin-top: 8px;
  }

  .user-detail-area + .mypage-title-lv2-wrap.sp-mt-40 {
    margin-top: 0;
  }

}

/*-------------------------------------------------------------*/
/* user_register */

.user-detail-body .form-input {
  margin-top: 0;
}

/*-------------------------------------------------------------*/
/* adaptation_plan */

.adaptation-plan-text {
  font-size: 14px;
}

.adaptation-plan-text.center,
.adaptation-plan-text.pc-center {
  text-align: center;
}

@media (max-width: 767px) {
  .adaptation-plan-text.pc-center,
  .adaptation-plan-text {
    font-size: 12px;
    text-align: left;
  }
}

/*-------------------------------------------------------------*/
/* faq */

.faq-search {
  display: flex;
  max-width: 580px;
  height: 64px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #b2d6c8;
  box-shadow: inset 0 4px 8px rgba(0,0,0,.04), 0px 3px 6px rgba(98, 167, 128, 0.16);
  margin: 0 0 30px 0;
}

.faq-search-input {
  flex: 1;
  background: none;
  border: none;
  border-radius: 5px;
  width: 100%;
  padding: 12px 0 12px 16px;
}

.faq-search-input::placeholder {
  color: #cdd6dd;
}

.faq-search-btn {
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
}

.faq-search-btn img {
  width: 30px;
}

.faq-tag {
  display: flex;
  gap: 10px;
  margin: 40px 0;
}

.faq-tag a {
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #3b4043;
  height: 30px;
  border-radius: 15px;
  background: #eff4ef;
  border: 1px solid #cde0d7;
  padding: 0 10px;
}

.faq-tag a:hover,
.faq-tag a.current {
  color: #fff;
  background: #62a780;
  border: 1px solid #cde0d7;
}

.faq-accordion {
  width: 100%;
  border-radius: 4px;
  background: #d9e8e1;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
}

.faq-accordion + .faq-accordion {
  margin-top: 20px;
}

.faq-accordion-title {
  position: relative;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  padding: 20px 60px 20px 20px;
  cursor: pointer;
}

.faq-accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: url("../../img/common/mypage/icon-arrow-w-bk.bd95a4950c93.svg") center/cover no-repeat;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  transition: .3s;
}

.faq-accordion-title.active::after {
  transform: translateY(-50%) rotateZ(180deg);
}

.faq-accordion-body {
  display: none;
  padding: 30px 40px;
}

.faq-accordion-text {
  line-height: 30px;
}

@media (max-width: 767px) {
  .faq-search {
    height: 50px;
    margin: 0 0 30px 0;
  }

  .faq-search-input {
    flex: 1;
    border: none;
    border-radius: 5px;
    width: 100%;
    padding: 12px 0 12px 16px;
  }

  .faq-search-btn {
    background: none;
    border: none;
    padding: 0 10px;
    cursor: pointer;
  }

  .faq-search-btn img {
    width: 30px;
  }

  .faq-tag {
    display: block;
    margin: 30px 0;
  }

  .faq-tag li + li {
    margin-top: 10px;
  }

  .faq-tag a {
    display: inline-block;
    padding: 4px 10px 0;
  }

  .faq-accordion-title {
    font-size: 14px;
    border-radius: 4px;
    padding: 11px 42px 11px 10px;
  }

  .faq-accordion-body {
    padding: 10px 20px 20px;
  }

  .faq-accordion-text {
    font-size: 14px;
    line-height: 24px;
  }
}

/*-------------------------------------------------------------*/
/* manual */

.btn-manual {
  position: relative;
  display: block;
  color: #333;
  max-width: 640px;
  height: 67px;
  border-radius: 8px;
  background: #fff;
  padding: 21px 90px 22px 20px;
}

.btn-manual:hover {
  opacity: .7;
}

.btn-manual::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background: url("../../img/common/mypage/icon-pdf.4a23d4a601ae.png") center/cover no-repeat;
  width: 24px;
  height: 31px;
  transform: translateY(-50%);
}

.btn-manual + .btn-manual {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .btn-manual {
    font-size: 14px;
    height: 42px;
    padding: 10px 64px 9px 20px;
  }

  .btn-manual::after {
    right: 16px;
  }

  .btn-manual + .btn-manual {
    margin-top: 10px;
  }
}

/*-------------------------------------------------------------*/
/* plan_change */

.plan-change-title {
  border-bottom: solid 1px #7CB595;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.plan-change-text {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-change-text::before {
  content: "•";
}

@media (max-width: 767px) {
  .plan-change-area {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
    padding: 40px 13px;
  }

  .plan-change-area.sp-pt-20 {
    padding-top: 20px;
  }

  .plan-change-area.sp-p-md {
    padding: 20px 20px 25px;
  }

  .plan-change-area.sp-pb-lg {
    padding-bottom: 120px;
  }

  .plan-change-title {
    font-size: 14px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .plan-change-text {
    font-size: 14px;
  }
}

/*-------------------------------------------------------------*/
/* application_confirmation */

.application-confirmation-note {
  margin-bottom: 40px;
}

.application-confirmation-block {
  border-bottom: solid 1px #7CB595;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.application-confirmation-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.application-confirmation-inner {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.application-confirmation-body {
  flex: 1;
}

.application-confirmation-text + .application-confirmation-text {
  margin-top: 10px;
}

@media (max-width: 767px) {
  .application-confirmation-note {
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 20px;
  }

  .application-confirmation-block {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .application-confirmation-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .application-confirmation-text {
    font-size: 14px;
  }

  .application-confirmation-inner {
    display: block;
  }

  .application-confirmation-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }
}

/*-------------------------------------------------------------*/
/* meeting_room */

.meeting-room-area {
  margin-top: -68px;
  margin-bottom: 60px;
}

.meeting-room-area .form-body .form-input + .selectbox,
.meeting-room-area .form-group + .form-group {
  margin-top: 20px;
}

.meeting-room-body {
  margin-top: 40px;
  margin-bottom: 40px;
}

.meeting-room-body .search-location-block {
  border-bottom: solid 1px #CDE0D7;
  border-width: 0 0 1px;
  padding: 0 0 16px;
  margin: 0 0 16px;
}

.meeting-room-body .facility-search-tag {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .meeting-room-area {
    margin-top: -20px;
    margin-bottom: 40px;
  }

  .meeting-room-body {
    margin-top: 40px;
  }
}

/*-------------------------------------------------------------*/
/* usage_history */

.btn-csv {
  position: relative;
  display: grid;
  place-items: center;
  color: #333;
  width: 100%;
  max-width: 160px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  padding-right: 43px;
}

.btn-csv:hover {
  opacity: .7;
}

.btn-csv::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  background: url("../../img/common/mypage/icon-csv.09acd1798e2b.png") center/cover no-repeat;
  width: 24px;
  height: 31px;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .btn-csv {
    font-size: 14px;
    max-width: 133px;
  }

  .btn-csv.sp-center {
    margin: 20px auto 0;
  }
}

/*-------------------------------------------------------------*/
/* contract_confirmation */

.btn-pdf {
  position: relative;
  display: grid;
  place-items: center;
  color: #333;
  width: 100%;
  max-width: 160px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  padding-right: 43px;
}

.btn-pdf:hover {
  opacity: .7;
}

.btn-pdf::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  background: url("../../img/common/mypage/icon-pdf.4a23d4a601ae.png") center/cover no-repeat;
  width: 24px;
  height: 31px;
  transform: translateY(-50%);
}

.btn-check {
  position: relative;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #62a780;
  width: 100%;
  max-width: 160px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #62a780;
  box-shadow: 0px 4px 8px rgba(98, 167, 128, 0.16);
}

.btn-check:hover {
  opacity: .7;
}

.btn-group {
  position: fixed;
  bottom: 0;
  left: 0;
  background: white;
  width: 100%;
  padding: 10px 0;
  z-index: 1;
}

.btn-group-inner {
  max-width: 640px;
  margin: auto;
}

@media (max-width: 767px) {
  .btn-pdf {
    font-size: 14px;
  }

  .btn-check {
    font-size: 14px;
  }

  .btn-check::after {
    right: 13px;
    width: 16px;
    height: 16px;
  }

  .btn-group {
    background: #fff;
    padding: 11px 29px;
  }
}

/*-------------------------------------------------------------*/
/* upload_verification */

.upload-verification-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 29px;
}

.upload-verification-list {
  margin-left: 1em;
}

.upload-verification-list li {
  font-size: 14px;
  line-height: 29px;
  text-indent: -1em;
  margin-left: 1em;
}

.upload-verification-list li::before {
  content: "•";
}

.adaptation-plan-text + .form-group {
  margin-top: 40px;
}

.upload-verification-list + .form-file-wrap {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .upload-verification-text {
    font-weight: 600;
    font-size: 12px;
  }

  .upload-verification-list li {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-indent: -1em;
    margin-left: 1em;
  }

  .upload-verification-list + .form-file-wrap {
    margin-top: 20px;
  }
}

/*-------------------------------------------------------------*/
/* meeting_room */

.billing-details-text {
  margin-bottom: 10px;
}

.billing-details-name {
  border-bottom: solid 1px #364045;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.billing-details-box {
  background: #fff;
  border: 1px solid #cdd6dd;
  padding: 13px 10px;
  min-height: 170px;
}

.billing-details-request {
  background: #fff;
  border: 2px solid #333;
  max-width: 460px;
  margin-left: auto;
}

.billing-details-request p {
  padding: 7px 20px;
  text-align: right;
}

.billing-details-request p + p {
  border-top: 1px solid #333;
}

.billing-details-request-title {
  font-weight: 600;
  font-size: 20px;
  border-bottom: 1px solid #333;
  padding: 10px 20px;
}

@media (max-width: 767px) {
  .billing-details-text {
    padding-left: 10px;
    margin-bottom: 13px;
  }

  .billing-details-name {
    padding-left: 10px;
  }

  .billing-details-box {
    min-height: 160px;
  }

  .billing-details-request p {
    font-size: 14px;
    padding: 4px 20px;
  }

  .billing-details-request .billing-details-request-title {
    font-size: 16px;
    padding: 15px 20px;
  }
}

/*-------------------------------------------------------------*/
/* payment_demand */

.payment-demand-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .payment-demand-box {
    border-radius: 4px;
    background: #f8faf9;
    padding: 10px;
  }

  .payment-demand-box p {
    font-weight: 500;
    font-size: 12px;
  }
}

/*-------------------------------------------------------------*/
/* available */

.available-list li a {
  display: block;
  position: relative;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #b2d6c8;
  box-shadow: 0px 3px 6px rgba(98, 167, 128, 0.16);
  font-weight: 600;
  color: #333;
  padding: 12px 62px 12px 20px;
}

.available-list li a:hover {
  opacity: .7;
}

.available-list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url("../../img/common/mypage/icon-arrow.5a513f00fc31.svg") center/cover no-repeat;
  width: 22px;
  height: 22px;
}

.available-list li + li {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .available-list li a {
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    padding: 14px 16px;
  }

  .available-list li a::after {
    right: 16px;
    width: 20px;
    height: 20px;
  }

  .available-list li + li {
    margin-top: 10px;
  }
}

/*-------------------------------------------------------------*/
/* location_details */

.location-details-col {
  display: flex;
  gap: 80px;
  margin-bottom: 70px;
}

.location-details-images {
  width: 100%;
  max-width: 340px;
}

.location-floor-img img,
.location-details-images img {
  max-width: 100%;
}

.location-details-img img {
  border-radius: 8px;
}

.location-details-thumb {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.location-details-thumb figure {
  width: 100px;
}

.location-details-thumb img {
  border-radius: 4px;
}

.location-details-body {
  max-width: 400px;
}

.location-details-catch {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.location-details-text {
  line-height: 32px;
}

.location-details-link {
  line-height: 32px;
}

.location-details-link a {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  color: #188623;
}

.location-details-title {
  font-weight: 600;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: solid 1px #333333;
}

.location-floor-title {
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #333333;
}

.location-details-list {
  margin-top: 20px;
}

.location-details-list li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}

.location-details-list li::before {
  content: "•";
}

.location-floor-list {
  margin-top: 40px;
}

.location-floor-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 5px;
}

.location-floor-list li span {
  width: 16px;
  height: 16px;
  background: #eaf1f9;
  border: 1px solid #333;
}

.location-floor-list li span.orange {
  background: #F6EAD2;
}

.location-floor-list li span.green {
  background: #E5EFDD;
}

@media (max-width: 767px) {
  .location-details-col {
    display: block;
    margin-bottom: 20px;
  }

  .location-details-images {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .location-details-img img {
    border-radius: 4px;
  }

  .location-details-thumb {
    gap: 10px 8px;
    margin-top: 10px;
  }

  .location-details-thumb figure {
    width: calc((100% - 16px) / 3);
  }

  .location-details-body {
    max-width: 100%;
  }

  .location-details-catch {
    font-size: 16px;
    line-height: 26px;
  }

  .location-details-text {
    font-size: 14px;
    line-height: 28px;
  }

  .location-details-link {
    font-size: 12px;
    line-height: 22px;
  }

  .location-details-title {
    margin-top: 40px;
  }

  .location-details-map iframe {
    height: 160px;
  }

  .location-details-list li {
    font-size: 12px;
  }

  .location-floor-title {
    font-size: 16px;
  }

  .location-floor-list {
    margin-top: 20px;
  }

  .location-floor-list li {
    gap: 4px;
    font-size: 12px;
    margin-bottom: 5px;
  }

  .location-floor-list li span {
    width: 12px;
    height: 12px;
  }
}

.text-danger {
  color: #CC0000;
}

.hide {
    display: none;
}
.disabled {
  background-color: #eee;
  color: #b3b3b3
}
