@charset "UTF-8";
.l-header {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.l-header.l-header--simple {
  background-color: #c2c2ac;
  border-bottom: 1px solid #a2a280;
}

.l-header__nav {
  align-self: stretch;
}

.l-header-brand {
  margin-left: 1em;
}

.l-header-brand__logo {
  display: block;
  width: 170px;
  height: 64px;
}

.l-header-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-header-nav__yahoo-icon {
  width: 24px;
  height: auto;
  vertical-align: -0.05em;
}
@media screen and (min-width: 480px) {
  .l-header-nav__yahoo-icon {
    vertical-align: baseline;
  }
}

.l-header-nav__muumuu {
  width: 20px;
  height: 16.75px;
  vertical-align: sub;
}

.l-simple-header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
}

.l-simple-header-nav__item {
  display: none;
  margin-right: 1.5em;
  align-self: center;
}
.l-simple-header-nav__item.l-simple-header-nav__item--visible {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-simple-header-nav__item {
    display: block;
  }
}

.l-simple-header-nav__item--payment {
  margin-right: 0;
}

.l-simple-header-nav__link {
  text-decoration: none;
  transition: 0.1s;
  color: #333;
}
.l-simple-header-nav__link:hover {
  color: #a8a8a8;
}
.l-simple-header-nav__link.l-simple-header-nav__link--block {
  display: block;
  padding: 0 1em;
  height: 100%;
  line-height: 60px;
  border-left: 1px solid #a2a280;
}
.l-simple-header-nav__link.l-simple-header-nav__link--block:hover {
  color: currentColor;
  background-color: #fff;
  box-shadow: 0 1px 0 #fff;
}

.l-side-nav {
  z-index: 20020;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  width: 100%;
  max-width: 400px;
  background: #f5f5f4;
}
@media screen and (min-width: 851px) {
  .l-side-nav {
    z-index: auto;
    position: relative;
    right: auto;
    bottom: auto;
    width: 200px;
    max-width: auto;
    display: block;
  }
}
.is__business_plan .l-side-nav {
  background: #ebeef5;
}

.l-side-nav__inner {
  padding: 60px 0 110px;
  background: #f5f5f4;
}
@media screen and (min-width: 851px) {
  .l-side-nav__inner {
    padding-top: 85px;
  }
}
.is__business_plan .l-side-nav__inner {
  background: #ebeef5;
}

@keyframes drawer-fadein {
  0% {
    opacity: 0;
    right: -100%;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
@keyframes drawer-fadeout {
  0% {
    opacity: 1;
    right: 0;
  }
  100% {
    opacity: 0;
    right: -100%;
  }
}
.l-side-nav--fadein {
  display: block;
  animation-name: drawer-fadein;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.l-side-nav--fadeout {
  display: block;
  animation-name: drawer-fadeout;
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

[name=navi-category] {
  display: none;
}

.l-side-nav-category--divider {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 1em 0;
  padding: 0 0 1em;
}

.l-side-nav-category__heading {
  box-sizing: border-box;
  position: relative;
  display: block;
  padding: 1em 20px 1em 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
@media screen and (min-width: 851px) {
  .l-side-nav-category__heading {
    font-size: 14px;
    transition: background 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .l-side-nav-category__heading:hover {
    background: rgba(0, 0, 0, 0.05);
  }
}
.l-side-nav-category__heading .icon-menu {
  display: inline-block;
  width: 24px;
  text-align: center;
  vertical-align: -5px;
  font-size: 24px;
}

.l-side-nav-category__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.15s cubic-bezier(0, 0.4, 0.6, 1);
}
[name=navi-category]:checked ~ .l-side-nav-category__heading .l-side-nav-category__icon {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.2s cubic-bezier(0.6, 0, 1, 0.6);
}

.l-side-nav-category__sub-heading {
  margin-bottom: 8px;
  padding: 0.5em 0 0 12px;
  font-size: 12px;
  font-weight: bold;
}

[name=navi-category] ~ .l-side-nav-category__content {
  max-height: 0;
  margin: 0;
  overflow-y: hidden;
  opacity: 0;
  transition: max-height 0.15s 0.1s cubic-bezier(0, 0.4, 0.6, 1), opacity 0.3s;
}
[name=navi-category]:checked ~ .l-side-nav-category__content {
  max-height: 1000vh;
  opacity: 1;
  transition: max-height 0.3s cubic-bezier(0.6, 0, 1, 0.6);
}
.l-side-nav-category__content + .l-side-nav-category__content {
  margin-top: 1px;
}

.l-side-nav-upgrade {
  padding: 15px 10px;
}

.l-side-nav-upgrade__offer {
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .l-side-nav-upgrade__offer {
    font-size: 12px;
  }
}

.l-side-nav-upgrade__link {
  display: block;
  border-radius: 5px;
  padding: 0.5em 0.5em 0.3em;
  background-color: #ff7f4d;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}
.l-side-nav-upgrade__link:hover {
  background-color: #ff4800;
  color: #fff;
}

.l-side-nav-item-wrapper + .l-side-nav-item-wrapper {
  border-bottom: 1px solid #cbcab8;
}
.is__business_plan .l-side-nav-item-wrapper + .l-side-nav-item-wrapper {
  border-color: #c4cddc;
}

.l-side-nav-item {
  box-sizing: border-box;
  position: relative;
  display: block;
  flex: 1 1 50%;
  padding: 12px 0 12px 13px;
  text-decoration: none;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  color: #333;
}
@media screen and (min-width: 851px) {
  .l-side-nav-item {
    padding: 13px 10px 13px 12px;
    font-size: 14px;
    transition: background 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .l-side-nav-item:hover {
    background: #fff;
    color: #333;
  }
}

.l-side-nav-item--disabled {
  color: #c2c2b1;
  cursor: default;
  pointer-events: none;
}
.l-side-nav-item--disabled:hover {
  background: transparent;
  color: #c2c2b1;
}

.l-side-nav-item__icon {
  display: inline-block;
  width: 24px;
  text-align: center;
  vertical-align: -5px;
  font-size: 18px;
  color: #484848;
}
@media screen and (min-width: 851px) {
  .l-side-nav-item__icon {
    transition: color 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.l-side-nav-item__icon--disabled {
  color: #c2c2b1;
}
.l-side-nav-item:hover .l-side-nav-item__icon--disabled {
  color: #c2c2b1;
}

body.toppage .l-side-nav-item--toppage {
  background: #fff;
  color: #333;
}

body.information .l-side-nav-item--information {
  background: #fff;
  color: #333;
}

body.diary .l-side-nav-item--diary {
  background: #fff;
  color: #333;
}

body.calendar .l-side-nav-item--calendar {
  background: #fff;
  color: #333;
}

body.photo-album .l-side-nav-item--photo-album {
  background: #fff;
  color: #333;
}

body.freepage .l-side-nav-item--freepage {
  background: #fff;
  color: #333;
}

body.profile .l-side-nav-item--profile {
  background: #fff;
  color: #333;
}

body.staff .l-side-nav-item--staff {
  background: #fff;
  color: #333;
}

body.menu .l-side-nav-item--menu {
  background: #fff;
  color: #333;
}

body.coupon .l-side-nav-item--coupon {
  background: #fff;
  color: #333;
}

body.recruit .l-side-nav-item--recruit {
  background: #fff;
  color: #333;
}

body.blog .l-side-nav-item--blog {
  background: #fff;
  color: #333;
}

body.cmsp .l-side-nav-item--cmsp {
  background: #fff;
  color: #333;
}

body.contact .l-side-nav-item--contact {
  background: #fff;
  color: #333;
}

body.event-reservation .l-side-nav-item--event-reservation {
  background: #fff;
  color: #333;
}

body.reservation .l-side-nav-item--reservation {
  background: #fff;
  color: #333;
}

body.mail-magazine .l-side-nav-item--mail-magazine {
  background: #fff;
  color: #333;
}

body.access-analysis .l-side-nav-item--access-analysis {
  background: #fff;
  color: #333;
}

body.file-upload .l-side-nav-item--file-upload {
  background: #fff;
  color: #333;
}

body.basic-preference .l-side-nav-item--basic-preference {
  background: #fff;
  color: #333;
}

body.template .l-side-nav-item--template {
  background: #fff;
  color: #333;
}

body.navigation .l-side-nav-item--navigation {
  background: #fff;
  color: #333;
}

body.parts .l-side-nav-item--parts {
  background: #fff;
  color: #333;
}

body.seo .l-side-nav-item--seo {
  background: #fff;
  color: #333;
}

body.link-app .l-side-nav-item--link-app {
  background: #fff;
  color: #333;
}

body.domain .l-side-nav-item--domain {
  background: #fff;
  color: #333;
}

body.ssl .l-side-nav-item--ssl {
  background: #fff;
  color: #333;
}

body.account .l-side-nav-item--account {
  background: #fff;
  color: #333;
}

body.account-add .l-side-nav-item--account-add {
  background: #fff;
  color: #333;
}

body.introduce .l-side-nav-item--introduce {
  background: #fff;
  color: #333;
}

body.support .l-side-nav-item--support {
  background: #fff;
  color: #333;
}

body.shokokai .l-side-nav-item--shokokai {
  background: #fff;
  color: #333;
}

body.shokokai-list .l-side-nav-item--shokokai-list {
  background: #fff;
  color: #333;
}

body.shokokai-members .l-side-nav-item--shokokai-members {
  background: #fff;
  color: #333;
}

.l-side-nav-list {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 851px) {
  .l-side-nav-list {
    display: flex;
    position: absolute;
    width: 800px;
    background-color: #fff;
    z-index: 100000;
    border-bottom: 0;
  }
}
[name=navi-category] ~ .l-side-nav-category__content .l-side-nav-list {
  height: 0;
  overflow: hidden;
}
[name=navi-category]:checked ~ .l-side-nav-category__content .l-side-nav-list {
  height: auto;
  overflow: visible;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 1px 1px 1px rgba(0, 0, 0, 0.05);
}
.l-side-nav-list dt {
  font-size: 13px;
  font-weight: bold;
  padding: 6px 13px;
  margin-bottom: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}
.l-side-nav-list dd {
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
}
@media screen and (min-width: 851px) {
  .l-side-nav-list dd {
    display: block;
  }
}
.l-side-nav-list a:not(.l-side-nav-item--disabled):hover {
  text-decoration: underline;
}

.l-side-nav-list__unit {
  padding-bottom: 12px;
}
@media screen and (min-width: 851px) {
  .l-side-nav-list__unit {
    flex: 0 0 200px;
  }
}

body:not(.is__responsive) .l-side-nav {
  z-index: auto;
  position: relative;
  display: table-cell;
  height: auto;
  min-height: 100%;
  vertical-align: top;
}
body:not(.is__responsive) .l-side-nav__inner {
  width: 200px;
  padding: 85px 0 60px;
}
body:not(.is__responsive) .l-side-nav-category__heading {
  font-size: 14px;
  font-weight: normal;
}
body:not(.is__responsive) .l-side-nav-item {
  padding: 13px 10px 13px 20px;
  font-size: 14px;
}
body:not(.is__responsive) .l-side-nav-item--sub {
  font-size: 12px;
}

.l-favorite-nav__heading {
  font-size: 12px;
  font-weight: bold;
  padding-top: 1.5em;
  padding-left: 16px;
  margin-bottom: 8px;
}
.l-favorite-nav__heading + .l-side-nav-item-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 1em;
  padding-bottom: 1em;
}

.l-favorite-nav__loading {
  padding: 12px;
  font-size: 16px;
  display: block;
}

.is__responsive .common__menu__sp__wrap {
  display: block;
  position: absolute;
  padding-top: 35px;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  vertical-align: middle;
  text-align: center;
  z-index: 20021;
  background-color: #ddddcb;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (min-width: 481px) {
  .is__responsive .common__menu__sp__wrap {
    width: 70px;
    height: 69px;
    padding-top: 43px;
  }
}
@media screen and (min-width: 851px) {
  .is__responsive .common__menu__sp__wrap {
    display: none;
  }
}
.is__responsive .common__menu__sp__wrap.common__menu__close {
  display: inline-block;
  background: transparent url(/img/icon_sp_menu_close.png) 50% 30% no-repeat;
  background-size: 24px 24px;
}
@media screen and (min-width: 851px) {
  .is__responsive .common__menu__sp__wrap.common__menu__close {
    display: none;
  }
}
.is__responsive .common__menu__sp__wrap.common__menu__sp__wrap__active {
  background-color: transparent;
}
.is__responsive .common__header__menu__icon {
  box-sizing: border-box;
  font-weight: bold;
  font-size: 10px;
}
.is__responsive .common__header__menu__icon::before {
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -25px;
  font-weight: normal;
  font-size: 50px;
}
@media screen and (min-width: 481px) {
  .is__responsive .common__header__menu__icon {
    font-size: 12px;
  }
  .is__responsive .common__header__menu__icon::before {
    font-size: 60px;
    left: 50%;
    margin-left: -30px;
  }
}

.c-article {
  margin-right: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 480px) {
  .c-article {
    margin-right: 30px;
    margin-left: 30px;
  }
}

.c-button {
  box-sizing: border-box;
  width: auto;
  display: inline-block;
  border: 1px solid transparent;
  background-color: #f0f2f5;
  color: #202427;
  border-radius: 4px;
  padding: 11px 1em 11px 1.1em;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  font-weight: normal;
  transition: 0.2s;
  letter-spacing: 0.1em;
  outline: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: 0.5px;
}
.c-button:not([disabled]):hover {
  background-color: #cdd4da;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  color: currentColor;
}
.c-button:not([disabled]):active, .c-button:not([disabled]).is-active {
  background-color: #cdd4da;
  box-shadow: inset 0 0 5px #979fa5;
}
.c-button:disabled {
  opacity: 0.4;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
  cursor: default;
}

.c-button--general {
  border-color: #b6bdc4;
  background-color: #f0f2f5;
  color: #202427;
}
.c-button--general:not([disabled]):hover {
  border-color: #979fa5;
  background-color: #e1e6ea;
  color: #202427;
}
.c-button--general:not([disabled]):active, .c-button--general:not([disabled]).is-active {
  background-color: #cdd4da;
  box-shadow: inset 0px 2px 3px #b6bdc4;
}

.c-button--primary {
  background-color: #5392c2;
  color: #fff;
}
.c-button--primary:not([disabled]):hover {
  background-color: #27608b;
  color: #fff;
}
.c-button--primary:not([disabled]):active, .c-button--primary:not([disabled]).is-active {
  background-color: #27608b;
  box-shadow: inset 0 0 5px #27608b, inset 0 -1px 2px #27608b;
}

.c-button--secondary {
  border-color: #5392c2;
  background-color: #fff;
  color: #5392c2;
}
.c-button--secondary:not([disabled]):hover {
  border-color: #27608b;
  background-color: #f6fafe;
  color: #27608b;
}
.c-button--secondary:not([disabled]):active, .c-button--secondary:not([disabled]).is-active {
  background-color: #f6fafe;
  box-shadow: inset 0 0 5px #27608b, inset 0 -1px 2px #27608b;
}

.c-button--danger {
  border-color: #de7c7c;
  background-color: #fff;
  color: #de7c7c;
}
.c-button--danger:not([disabled]):hover {
  background-color: #de7c7c;
  color: #fff;
}
.c-button--danger:not([disabled]):active, .c-button--danger:not([disabled]).is-active {
  background-color: #de7c7c;
  box-shadow: inset 0 0 5px #c94545, inset 0 -1px 2px #c94545;
}

.c-button--small {
  font-size: 12px;
  padding: 0.5em 0.6em 0.5em 0.7em;
}

.c-button--medium {
  font-size: 14px;
  padding: 0.5em 1em;
}

.c-button--large {
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 1.2em 10px 1.3em;
}

.c-button--variable {
  font-size: 12px;
  padding: 0.5em 0.6em 0.5em 0.7em;
}
@media screen and (min-width: 480px) {
  .c-button--variable {
    font-size: 14px;
    padding: 0.5em 1em;
  }
}

.c-button--block {
  padding-right: 0;
  padding-left: 0.1em;
  width: 100%;
}

.c-button--exec {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 0.6em 10px 0.7em;
  display: block;
  width: 100%;
  white-space: nowrap;
}

.c-button--text {
  background-color: transparent;
  color: #5392c2;
  padding: 0;
}
.c-button--text:not([disabled]):hover {
  color: #27608b;
  text-decoration: underline;
  background-color: transparent;
  box-shadow: none;
}

.c-select {
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  border: 1px solid #cdd4da;
  border-radius: 3px;
  display: inline-block;
  padding: 0 25px 0 0.8em;
  height: 40px;
  font-size: 14px;
  line-height: 1;
  outline: 0;
  transition: 0.2s;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23444%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%200l8%2010h-16l8-10zm8%2014h-16l8%2010%208-10z%22%2F%3E%3C%2Fsvg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-color: #fff;
  cursor: pointer;
  vertical-align: baseline;
}
.c-select::-ms-expand {
  display: none;
}
.c-select:not([disabled]):hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-color: #b6bdc4;
}
.c-select:disabled {
  border-color: #cdd4da;
  color: #5b5f62;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23aaa%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%200l8%2010h-16l8-10zm8%2014h-16l8%2010%208-10z%22%2F%3E%3C%2Fsvg%3E");
  cursor: default;
}

.c-select--block {
  width: 100%;
}

.c-textfield {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #cdd4da;
  background-color: #fff;
  border-radius: 4px;
  width: auto;
  max-width: 100%;
  min-height: 40px;
  padding: 0.3em 0.7em;
  font-size: 16px;
  line-height: 1.7;
  outline: 0;
  transition: 0.2s;
}
.c-textfield:disabled {
  cursor: default;
  background-color: #f0f2f5;
}
.c-textfield:not([disabled]):hover {
  cursor: text;
  border-color: #f7dd14;
}
.c-textfield:not([disabled]):focus {
  cursor: text;
  border-color: transparent;
  box-shadow: 0 0 0 2px #f7dd14;
}
.c-textfield:not([disabled]).is-error {
  border-color: transparent;
  box-shadow: 0 0 0 2px #de7c7c;
  background-color: #fbefef;
}
.c-textfield::-webkit-input-placeholder {
  color: #b6bdc4;
  line-height: 1.7;
}
.c-textfield::-moz-placeholder {
  color: #b6bdc4;
  line-height: 1.7;
}
.c-textfield::-ms-input-placeholder {
  color: #b6bdc4;
  line-height: 1.7;
}
.c-textfield::placeholder {
  color: #b6bdc4;
  line-height: 1.7;
}
.c-textfield:-ms-input-placeholder {
  color: #b6bdc4;
  line-height: 1.7;
}
.c-textfield::-ms-input-placeholder {
  color: #b6bdc4;
  line-height: 1.7;
}
.c-textfield:-moz-read-only:hover {
  cursor: text;
  box-shadow: none;
}
.c-textfield:read-only:hover {
  cursor: text;
  box-shadow: none;
}
.c-textfield:-moz-read-only:hover {
  cursor: text;
  box-shadow: none;
}
.c-textfield[type=password]::-ms-reveal {
  display: none;
}

.c-textfield--large {
  font-size: 20px;
}

.c-textfield--block {
  width: 100%;
}

.c-textfield--multi {
  line-height: 1.5;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 16px;
}

.c-radio {
  position: relative;
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
  min-height: 20px;
}
.c-radio input {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translate(-50%, -50%);
  vertical-align: middle;
}

.c-radio__label {
  color: #202427;
  margin-left: 0.4em;
  display: inline-block;
}
.c-radio__label:empty {
  margin-left: 0;
}
input:checked + .c-radio__label {
  font-weight: bold;
}
input:disabled + .c-radio__label {
  color: #b6bdc4;
}
input:not([disabled]) + .c-radio__label:hover {
  cursor: pointer;
}
input:not([disabled]) + .c-radio__label:hover::before {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1);
}
input:not([disabled]) + .c-radio__label:hover::after {
  opacity: 1;
  background-color: #e9c202;
}
.c-radio__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 1px solid #cdd4da;
  border-radius: 50%;
  transition: 0.2s;
  background-color: #fff;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
}
input:checked + .c-radio__label::before {
  border-color: #e9c202;
}
input:checked:disabled + .c-radio__label::before {
  border-color: #fcec5f;
  background-color: #fff;
}
input:disabled + .c-radio__label::before {
  background-color: #b6bdc4;
  box-shadow: none;
}
.c-radio__label::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0;
  transition: 0.2s;
}
input:checked + .c-radio__label::after {
  opacity: 1;
  background-color: #e9c202;
}
input:checked:disabled + .c-radio__label::after {
  background-color: #fcec5f;
}

.c-checkbox {
  position: relative;
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px;
  min-height: 20px;
}
.c-checkbox input {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  left: 10px;
  transform: translate(-50%, -50%);
  vertical-align: middle;
}

.c-checkbox__label {
  color: #202427;
  margin-left: 0.4em;
  display: inline-block;
}
.c-checkbox__label:empty {
  margin-left: 0;
}
input:checked + .c-checkbox__label {
  font-weight: bold;
}
input:disabled + .c-checkbox__label {
  color: #b6bdc4;
}
input:not([disabled]) + .c-checkbox__label:hover {
  cursor: pointer;
}
input:not([disabled]) + .c-checkbox__label:hover::before {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1), 0 0 1px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}
.c-checkbox__label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 1px solid #cdd4da;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.2s;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.05);
}
input:checked + .c-checkbox__label::before {
  background-color: #e9c202;
  border-color: transparent;
}
input:checked:disabled + .c-checkbox__label::before {
  background-color: #fcec5f;
}
input:disabled + .c-checkbox__label::before {
  background-color: #b6bdc4;
  box-shadow: none;
}
.c-checkbox__label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 6px;
  box-sizing: border-box;
  width: 8px;
  height: 11px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  transition: 0.2s;
}
input:checked + .c-checkbox__label::after {
  opacity: 1;
}

.c-switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 110px;
}
.c-switch input {
  margin: 0;
  padding: 0;
  opacity: 0;
  width: 60px;
  height: 36px;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.c-switch__slider {
  display: block;
  box-sizing: border-box;
  width: 60px;
  height: 36px;
  border-radius: 40px;
  border: 1px solid #cdd4da;
  background-color: #f0f2f5;
  box-sizing: border-box;
  color: #202427;
  transition: 0.2s;
}
input:checked + .c-switch__slider {
  background-color: #f7dd14;
  border-color: transparent;
}
input:checked:disabled + .c-switch__slider {
  background-color: #fcec5f;
}
input:disabled + .c-switch__slider {
  color: #b6bdc4;
  background-color: #cdd4da;
}
input:not([disabled]) + .c-switch__slider:hover {
  cursor: pointer;
}
input:not([disabled]) + .c-switch__slider:hover::before {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.c-switch__slider::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 1px;
  left: 1px;
  box-sizing: border-box;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  transition: 0.2s;
}
input:checked + .c-switch__slider::before {
  transform: translateX(24px);
}
input:disabled + .c-switch__slider::before {
  box-shadow: none;
}
.c-switch__slider::after {
  content: "OFF";
  font-size: 14px;
  font-family: YakuHanJP, Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
}
input:checked + .c-switch__slider::after {
  content: "ON";
}

.c-switch__label {
  display: none;
}

.p-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
}

.p-breadcrumb__item {
  display: flex;
  white-space: nowrap;
  font-size: 0.875rem;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5em;
}

.p-breadcrumb__divider {
  display: inline-block;
  margin: 0 0.5em;
}

.p-button-layout {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin: -8px;
  padding: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 480px) {
  .p-button-layout {
    flex-direction: row;
  }
}

.p-button-layout--left {
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 0;
}

.p-button-layout__unit {
  margin: 8px;
  width: calc(100% - 16px);
  order: 0;
}
@media screen and (min-width: 480px) {
  .p-button-layout__unit {
    width: auto;
    flex: 0 0 150px;
  }
}

.p-button-layout__unit--primary {
  order: -1;
}
@media screen and (min-width: 480px) {
  .p-button-layout__unit--primary {
    order: 0;
  }
}

.p-button-layout__unit--last {
  order: 1;
}
@media screen and (min-width: 480px) {
  .p-button-layout__unit--last {
    order: 0;
  }
}

.p-data-table {
  max-width: 100%;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.p-data-table__header {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 4px;
  border-bottom: 1px solid #cdd4da;
  background-color: #e1e6ea;
  font-weight: bold;
  font-size: 12px;
  align-items: center;
}

.p-data-table__row {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 4px;
  align-items: center;
  transition: 0.2s ease-in-out;
}
.p-data-table__row + .p-data-table__row {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.p-data-table__row:hover {
  background-color: #f0f2f5;
}

.p-data-table__unit {
  margin: 4px 6px;
  line-height: 1.3;
  flex-shrink: 1;
  flex-grow: 1;
}

.p-data-table__heading {
  flex-basis: 100%;
  display: flex;
  margin: 4px 6px;
  line-height: 1.3;
}
@media screen and (min-width: 480px) {
  .p-data-table__heading {
    flex-basis: auto;
  }
}
.p-data-table__heading .c-checkbox {
  margin-right: 0.5em;
}

.p-data-table__unit--actions {
  flex: 0 0 auto;
  margin-left: 30px;
}

.p-dropdown-menu {
  position: relative;
  display: inline-block;
}

.p-dropdown-menu__base {
  cursor: default;
  box-sizing: border-box;
  padding: 0.5em 1em 0.5em 1.5em;
  background: #f0f2f5;
  border: 1px solid #b6bdc4;
  border-radius: 3px;
  font-size: 14px;
  color: #202427;
  transition: 0.2s;
}
.p-dropdown-menu__base:hover {
  background: #b6bdc4;
}

.p-dropdown-menu__list {
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  z-index: 1;
  display: none;
  min-width: 100%;
  background: #fff;
  border: 1px solid #cdd4da;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, 0);
}
.p-dropdown-menu:hover .p-dropdown-menu__list {
  display: block;
}

.p-dropdown-menu__item {
  display: block;
  padding: 0.8em;
  background: #f9fafb;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s;
}
.p-dropdown-menu__item:hover {
  background: #f0f2f5;
}
.p-dropdown-menu__item + .p-dropdown-menu__item {
  border-top: 1px solid #e1e6ea;
}

.p-editor-layout {
  margin: 30px 0;
}

.p-editor-layout__unit {
  margin-bottom: 20px;
}

.p-editor-layout__label {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.3em;
}

.p-editor-layout__content {
  margin: 0;
}

.p-editor-layout__title {
  max-width: 500px;
}

.p-favorite-button {
  margin-left: 4px;
}

.p-favorite-button__icon {
  display: block;
  width: 32px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  color: #b6bdc4;
  cursor: pointer;
}

.p-favorite-button__icon--added {
  color: #f7dd14;
}

.p-fieldset {
  margin: 16px 0;
}
@media screen and (min-width: 480px) {
  .p-fieldset {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

.p-fieldset__header {
  padding: 16px 0;
  line-height: 1.3;
  font-size: 14px;
}

.p-fieldset__legend {
  font-weight: bold;
  font-size: 16px;
  padding: 0;
  margin: 0;
  letter-spacing: 0.05em;
  flex: 1 1 auto;
}
#main .p-fieldset__legend {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.p-fieldset-card {
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  padding: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
@media screen and (min-width: 480px) {
  .p-fieldset-card {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

.p-fieldset-card__header {
  padding: 16px 16px 0;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}
@media screen and (min-width: 480px) {
  .p-fieldset-card__header {
    padding: 24px 24px 0;
  }
}

.p-fieldset-card__header--hidden {
  display: none;
}

.p-fieldset-card__header-action {
  color: #5392c2;
  text-decoration: underline;
  background-color: transparent;
  transition: 0.2s ease-in-out;
  padding: 0;
  border: 0;
  font-size: 14px;
  border-radius: 1px;
  letter-spacing: 0.05em;
  cursor: pointer;
  outline: 0;
}
.p-fieldset-card__header-action:hover, .p-fieldset-card__header-action:focus {
  color: #27608b;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.05);
}
.p-fieldset-card__header-action:active {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.p-fieldset-card__legend {
  font-weight: bold;
  font-size: 16px;
  padding: 0;
  margin: 0;
  letter-spacing: 0.05em;
  flex: 1 1 auto;
}
#main .p-fieldset-card__legend {
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.p-fieldset-card__sub-heading {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 1em;
  letter-spacing: 0.05em;
}
#main .p-fieldset-card__sub-heading {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 1em;
  border: 0;
  padding: 0;
}

.p-fieldset-card__unit {
  padding: 16px;
  border-bottom: 1px solid #cdd4da;
  margin-bottom: -1px;
}
@media screen and (min-width: 480px) {
  .p-fieldset-card__unit {
    padding: 24px;
  }
}

.p-fieldset-card__unit--hidden {
  display: none;
}

.p-fieldset-card__unit--error {
  background-color: #f0f2f5;
}

.p-fieldset-layout {
  margin: 0;
}

.p-fieldset-layout__unit + .p-fieldset-layout__unit {
  margin-top: 24px;
}

.p-fieldset-layout__label {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
}

.p-fieldset-layout__label--help {
  position: relative;
  display: flex;
  align-items: center;
}

.p-fieldset-layout__content {
  margin: 0;
}

.p-fieldset-layout__content--large {
  font-size: 18px;
  font-weight: bold;
}

.p-form-element-layout {
  display: flex;
  justify-content: flex-start;
}
@media screen and (min-width: 480px) {
  .p-form-element-layout {
    max-width: 300px;
  }
}

.p-form-element-layout--block {
  width: 100%;
  max-width: none;
}

.p-form-element-layout__unit {
  flex-grow: 1;
}
.p-form-element-layout__unit + .p-form-element-layout__unit {
  margin-left: 8px;
}

.p-form-element-layout__unit--button {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 80px;
}

.p-form-layout {
  max-width: 100%;
  margin: 0;
}

.p-form-layout__unit {
  padding-top: 1em;
  padding-bottom: 1em;
}
@media screen and (min-width: 480px) {
  .p-form-layout__unit {
    display: flex;
  }
}

.p-form-layout__label {
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 14px;
  color: #202427;
}
@media screen and (min-width: 480px) {
  .p-form-layout__label {
    flex-basis: 240px;
    flex-grow: 1;
    flex-shrink: 1;
    margin-right: 30px;
    margin-bottom: 0;
  }
}

.p-form-layout__label--hidden {
  visibility: hidden;
}

.p-form-layout__label--help {
  position: relative;
  display: flex;
  align-items: center;
}

.p-form-layout__content {
  flex-basis: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: 0;
}

.p-form-layout__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-form-layout__list li {
  margin: 0 0 3px;
}
.p-form-layout__list li:last-child {
  margin-bottom: 0;
}

.p-input-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-input-list li {
  margin-top: 8px;
}

.p-local-breadcrumbs-list {
  margin-bottom: 16px;
}
.p-local-breadcrumbs-list a {
  padding: 0.5em 0.5em 0.5em 0;
}
.p-local-breadcrumbs-list i {
  vertical-align: -0.1em;
}

.p-note {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #202427;
  font-size: 12px;
  line-height: 1.4;
  font-weight: initial;
}
.p-note:first-child {
  margin-top: 0;
}
.p-note:last-child {
  margin-bottom: 0;
}
.p-note p,
.p-note ul,
.p-note ol {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}
.p-note p:first-child,
.p-note ul:first-child,
.p-note ol:first-child {
  margin-top: 0;
}
.p-note p:last-child,
.p-note ul:last-child,
.p-note ol:last-child {
  margin-bottom: 0;
}
.p-note ul {
  list-style: initial;
  padding-left: 1.5em;
}
.p-note ol {
  list-style: decimal;
  padding-left: 1.5em;
}

.p-pager {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  margin: 12px 0 32px;
  padding: 0;
}

.p-pager__item {
  flex: 0 0 40px;
  white-space: nowrap;
  margin: 4px 4px 0;
  text-align: center;
  font-size: 18px;
  box-sizing: border-box;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
}
.p-pager__item:hover {
  background-color: #f0f2f5;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}
.p-pager__item a {
  display: block;
  height: 100%;
  padding: 0.3em 0.5em;
  box-sizing: border-box;
  text-decoration: none;
  color: #5392c2;
}

.p-pager__item--current {
  background-color: transparent;
  font-weight: bold;
  background-color: #f0f2f5;
}
.p-pager__item--current a {
  color: currentColor;
}

.p-planup-btn-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  max-width: 800px;
  margin: 20px 0;
  padding: 15px 20px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-planup-btn-top {
    flex-direction: row;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.p-planup-btn-top--disabled {
  display: block;
  border-radius: 5px;
  background-color: #e1e6ea;
}
@media screen and (min-width: 768px) {
  .p-planup-btn-top--disabled {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

.p-planup-btn-top__text {
  flex: 0 0 auto;
  padding: 0 1em;
  border: 1px solid #fff;
  border-radius: 5px;
  line-height: 3;
}
@media screen and (min-width: 768px) {
  .p-planup-btn-top__text {
    margin-left: 30px;
  }
}

.p-planup-btn-top__text-sub {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-planup-btn-top__text-sub {
    margin-bottom: 0;
  }
}

.p-planup-contents {
  margin: 60px 30px 0;
}

.p-planup-details {
  max-width: 800px;
  box-sizing: border-box;
  padding: 20px 20px 1px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-planup-details {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.p-planup-details__img {
  width: 180px;
  margin: 0 auto 20px;
}

.p-planup-details__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-planup-details__title {
    font-size: 20px;
  }
}
#main .p-planup-details__title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #main .p-planup-details__title {
    font-size: 20px;
  }
}

.p-planup-details__lead {
  margin-bottom: 20px;
}
.p-planup-details__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-planup-details__lead br {
    display: block;
  }
}

.p-planup-details__section-title {
  margin-bottom: 10px;
  font-size: 16px;
  color: #202427;
  font-weight: bold;
  line-height: 1;
}
#main .p-planup-details__section-title {
  background-color: initial;
  border: none;
  font-size: 16px;
  color: #202427;
}

.p-planup-details__section-link {
  position: relative;
  margin-bottom: 20px;
  padding-right: 14px;
  text-align: right;
}
.p-planup-details__section-link::before {
  position: absolute;
  top: 1px;
  right: 0;
  color: #5392c2;
}

.p-planup-details-list {
  margin-bottom: 20px;
}

.p-planup-details-list__item {
  display: flex;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-planup-details-list__item {
    flex: 0 0 50%;
  }
}

.p-planup-details-list__icon {
  vertical-align: -0.2em;
  font-size: 20px;
  color: #4fbd61;
}

.p-progress-step {
  display: flex;
  width: 100%;
  list-style: none;
  padding: 0;
}

.p-progress-step__unit {
  counter-increment: progressStep;
  flex: 1 1 100px;
  text-align: center;
  font-size: 14px;
  position: relative;
  color: #202427;
  box-sizing: border-box;
  z-index: 0;
}
.p-progress-step__unit::before {
  font-family: "icomoon";
  display: block;
  speak: none;
  margin: 12px auto 0;
  color: #f7dd14;
  border: 2px solid #f7dd14;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  width: 10px;
  height: 10px;
  content: "";
  background-color: #f7dd14;
  font-size: 18px;
}
@media screen and (min-width: 480px) {
  .p-progress-step__unit::before {
    margin-top: 0;
    background-color: #fff;
    content: compose-unicode("e91f");
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
}
.p-progress-step__unit--active ~ .p-progress-step__unit::before {
  font-family: Arial;
  color: #7a8085;
  border-color: #cdd4da;
  background-color: #cdd4da;
}
@media screen and (min-width: 480px) {
  .p-progress-step__unit--active ~ .p-progress-step__unit::before {
    content: counter(progressStep);
    background-color: #fff;
  }
}
.p-progress-step__unit::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #f7dd14;
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: -1;
}
.p-progress-step__unit--active ~ .p-progress-step__unit::after {
  background-color: #cdd4da;
}
.p-progress-step__unit:last-child::after {
  display: none;
}
.p-progress-step__unit span {
  display: none;
}
@media screen and (min-width: 480px) {
  .p-progress-step__unit span {
    display: block;
    margin-top: 0.3em;
  }
}

.p-progress-step__unit--active::before {
  content: counter(progressStep);
  font-family: Arial;
  background-color: #f7dd14;
  color: #fff;
  margin-top: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.p-progress-step__unit--active::after {
  background-color: #cdd4da;
}

.p-pulldown-notification {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20100;
  overflow: hidden;
  height: 0;
  padding: 0 1.5em;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 16px;
  transform: translateY(-100%);
  transition: 0.2s;
}
.p-pulldown-notification a {
  text-decoration: underline;
  font-weight: bold;
  color: currentColor;
}
.p-pulldown-notification a:hover {
  text-decoration: none;
}

.p-pulldown-notification--success {
  background-color: #cff0d2;
  color: #053311;
}

.p-pulldown-notification--danger {
  background-color: #f8dddd;
  color: #5c0000;
}

.p-pulldown-notification--visible {
  height: auto;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
  transform: translateY(0%);
}

.p-required-label::after {
  content: "必須";
  display: inline-block;
  vertical-align: 0.1em;
  font-size: 10px;
  background-color: #f8dddd;
  color: #5c0000;
  border-radius: 3px;
  padding: 0.4em;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: normal;
  margin-left: 0.2em;
}

.p-section {
  margin: 30px auto;
}

.p-section__heading {
  font-size: 20px;
  font-weight: normal;
  color: #202427;
  margin-bottom: 0.2em;
}
#main .p-section__heading {
  font-size: 20px;
  font-weight: normal;
  color: #202427;
  margin-bottom: 0.2em;
}

.p-section__heading--hidden {
  display: none;
}

.p-section__description {
  margin: 0.8em 0;
  line-height: 1.5;
  font-size: 0.875rem;
}
.p-section__description > p {
  margin: 0;
}
.p-section__description > p ~ p {
  margin-top: 0.5em;
}
.p-section__description > .--annotation {
  padding-left: 1em;
  text-indent: -1em;
}

.p-section__action {
  margin: 30px 0;
}

.p-segmented-control {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 3px;
  background: #f0f2f5;
  border: 1px solid #e1e6ea;
  border-radius: 3px;
}
@media screen and (min-width: 480px) {
  .p-segmented-control {
    max-width: 400px;
  }
}

.p-segmented-control__unit {
  flex-grow: 1;
  flex-shrink: 0;
}
.p-segmented-control__unit + .p-segmented-control__unit {
  margin-left: 3px;
}

.p-segmented-control__unit:first-child:nth-last-child(2),
.p-segmented-control__unit:first-child:nth-last-child(2) ~ * {
  flex-basis: calc((100% - 3px) / 2);
}

.p-segmented-control__unit:first-child:nth-last-child(3),
.p-segmented-control__unit:first-child:nth-last-child(3) ~ * {
  flex-basis: calc((100% - 6px) / 3);
}

.p-segmented-control__button {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 0.6em 0;
  background: transparent;
  border: 0;
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  vertical-align: 0.5px;
  font-weight: normal;
  font-size: 12px;
  line-height: 1;
  color: #3b3e40;
}
@media screen and (min-width: 480px) {
  .p-segmented-control__button {
    font-size: 14px;
  }
}
.p-segmented-control__button:hover, .p-segmented-control__button:active {
  color: #202427;
}
@media screen and (min-width: 768px) {
  .p-segmented-control__button:hover, .p-segmented-control__button:active {
    background: #fff;
    box-shadow: 0 0 3px rgba(32, 36, 39, 0.3);
  }
}

.p-segmented-control__button--selected {
  background: #fff;
  box-shadow: 0 0 3px rgba(32, 36, 39, 0.3);
  color: #202427;
}
.p-segmented-control__button--selected:hover {
  cursor: default;
}

.p-sortable-list {
  max-width: 800px;
}
.p-sortable-list + .p-sortable-list {
  margin-top: 24px;
}

.p-sortable-list__header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: #f0f2f5;
  border: 1px solid #cdd4da;
  border-radius: 3px 3px 0 0;
}

.p-sortable-list__unit {
  padding: 10px;
  background: #f9fafb;
  border: 1px solid #cdd4da;
}
.p-sortable-list__unit:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.p-sortable-list__unit:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.p-sortable-list__unit:not(:first-child) {
  border-top: 0;
}

.p-sortable-list__footer {
  padding: 10px;
  background: #fff;
  border: 1px solid #cdd4da;
  border-top: 0;
}
.p-sortable-list__footer:last-child {
  border-radius: 0 0 3px 3px;
}

.p-sortable-list__item {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 5px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.p-sortable-list__item:last-child {
  margin-bottom: 0;
}

.p-sortable-list__item--non-display {
  background: #e1e6ea;
  box-shadow: none;
}

.p-sortable-list__item--ghost {
  opacity: 0.5;
}

.p-sortable-list__handle {
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30px;
}
.p-sortable-list__handle label {
  cursor: -webkit-grab;
  cursor: grab;
  display: block;
  width: 30px;
  height: 56px;
  background: #f7dd14;
  border-radius: 3px;
  text-align: center;
  font-size: 20px;
  line-height: 56px;
  color: #fff;
}
.p-sortable-list__handle label:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.p-sortable-list__information {
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  max-width: calc(100% - 130px);
  padding: 5px 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.p-sortable-list__title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
}

.p-sortable-list__metadata {
  font-size: 12px;
  color: #5b5f62;
}

.p-sortable-list__buttons {
  box-sizing: border-box;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 5px;
}

.p-split-button {
  position: relative;
  display: flex;
}

.p-split-button__unit {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}
.p-split-button__unit:last-child {
  flex-grow: 0;
  flex-basis: 30px;
}

.p-split-button__button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  display: block;
  padding: 0.5em 1em;
  background: #f0f2f5;
  border: 1px solid #b6bdc4;
  font-size: 14px;
  line-height: 1.2;
  color: #202427;
  transition: 0.2s;
}
.p-split-button__unit:first-child .p-split-button__button {
  border-radius: 3px 0 0 3px;
}
.p-split-button__button:hover {
  background: #cdd4da;
  color: #202427;
}

.p-split-button__menu {
  display: inline-block;
  box-sizing: border-box;
  width: auto;
  padding: 0.5em;
  background: #f0f2f5;
  border: 1px solid #b6bdc4;
  border-left: 0;
  border-radius: 0 3px 3px 0;
  text-align: center;
  vertical-align: 0.5px;
  font-size: 14px;
  line-height: 1.2;
  color: #202427;
  transition: 0.2s;
}
.p-split-button__menu:hover {
  background: #cdd4da;
  color: #202427;
}

.p-split-button__list {
  box-sizing: border-box;
  position: absolute;
  right: 0;
  z-index: 1;
  display: none;
  min-width: 100%;
  background: #fff;
  border: 1px solid #cdd4da;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.p-split-button__unit:hover .p-split-button__list {
  display: block;
}

.p-split-button__item {
  display: block;
  padding: 0.8em;
  background: #f9fafb;
  text-align: left;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s;
}
.p-split-button__item:hover {
  background: #f0f2f5;
}
.p-split-button__item + .p-split-button__item {
  border-top: 1px solid #e1e6ea;
}

.p-table-function {
  position: relative;
}

.p-table-function__button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 24px;
  background-color: transparent;
  width: 24px;
  height: 24px;
  text-align: center;
  color: #5392c2;
}
.p-table-function__button:hover {
  background-color: #e5f1fa;
  color: #3675a5;
}

.p-table-function__list {
  display: none;
  z-index: 1;
  position: absolute;
  right: 0;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08), 0 5px 4px -4px rgba(0, 0, 0, 0.12), 0 5px 10px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  background-color: #fff;
  width: 120px;
  padding: 8px;
}

.p-table-function__list--active {
  display: block;
}

.p-table-function__item {
  display: block;
  padding: 0.5em;
}
.p-table-function__item:hover {
  background-color: #e5f1fa;
  color: #3675a5;
}

.p-table-item {
  display: flex;
}

.p-table-item__checkbox {
  flex: 0 0 35px;
}

.p-table-item__unit {
  flex: 1 0 calc(100% - 35px);
  display: flex;
  flex-wrap: wrap;
}

.p-table-item__thumbnail {
  flex: 0 0 90px;
}

.p-table-item__information {
  flex: 1 0 calc(100% - 90px);
  line-height: 1.4;
}

.p-table-item__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  word-break: break-word;
  font-size: 16px;
}
.p-table-item__title span {
  margin-right: 1em;
  margin-bottom: 0.4em;
}

.p-table-item__title--temporary {
  color: #979fa5;
}

.p-table-item__title--supplement {
  font-size: 14px;
  color: #5b5f62;
}

.p-table-item__metadata {
  flex: 0 0 calc(100% - 90px);
  margin: 0.5em 0 0;
  color: #5b5f62;
  font-size: 14px;
}
.p-table-item__metadata span {
  margin-right: 1em;
}

.p-table-item__action {
  display: flex;
  width: 100%;
  margin: 15px 0 0;
}
.p-table-item__action > * + * {
  margin-left: 15px;
}

.p-table-box {
  display: flex;
  padding: 0 15px;
}

.p-table-box__checkbox {
  flex: 0 0 35px;
  padding: 15px 0;
}

.p-table-box__unit {
  flex: 1 1 auto;
  padding: 15px 0;
}

.p-table-box__primary-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: #5392c2;
}
@media screen and (min-width: 768px) {
  .p-table-box__primary-text {
    -webkit-line-clamp: 1;
  }
}

.p-table-box__secondary-text {
  margin-top: 8px;
  color: #5b5f62;
  font-size: 14px;
}

.p-table-box__function {
  flex: 0 0 24px;
  margin-left: 1em;
  padding: 15px 0;
}

.p-table-nav {
  display: flex;
  align-items: center;
  padding: 15px;
}

.p-table-nav__item + .p-table-nav__item::before {
  content: "|";
  margin: 0 0.5em 0 0.6em;
  color: #cdd4da;
}

.p-table {
  max-width: 800px;
  margin: 16px 0;
}
@media screen and (min-width: 480px) {
  .p-table {
    margin: 24px 0;
  }
}

.p-table__sort {
  margin: 0 0 5px;
  text-align: right;
}
.p-table__sort select {
  height: 32px;
  font-size: 12px;
}

.p-table__list {
  display: flex;
  flex-direction: column;
  border: 1px solid #cdd4da;
  border-radius: 3px;
}

.p-table__list--empty {
  padding: 15px;
}

.p-table__title-row {
  padding: 15px;
  background: #f0f2f5;
  border-bottom: 1px solid #cdd4da;
  border-radius: 3px 3px 0 0;
}

.p-table__body-row {
  padding: 15px;
}
.p-table__body-row + .p-table__body-row {
  border-top: 1px solid #cdd4da;
}

.p-table__body-link:hover {
  background-color: #f6fafe;
}
.p-table__body-link + .p-table__body-link {
  border-top: 1px solid #cdd4da;
}

.p-uploader {
  line-height: 1;
  max-width: 280px;
}

.p-uploader__inner {
  position: relative;
}
.p-uploader__inner input[type=file] {
  display: none;
}

.p-uploader__area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  box-sizing: border-box;
  border: dashed 2px #cdd4da;
  background-color: #f0f2f5;
  transition: 0.2s;
  width: 100%;
}

.p-uploader__area-inner .icon-image-inverted {
  display: block;
  text-align: center;
  font-size: 50px;
  color: #7a8085;
}

.p-uploader__label {
  text-align: center;
  color: #7a8085;
  line-height: 1.3;
  margin: 5px 5px 10px;
  font-size: 12px;
}
.p-uploader__label span {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.p-uploader__button {
  text-align: center;
  margin: 5px 0 3px;
}

.p-uploader__loading {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.p-uploader__loading img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: auto;
}

.p-uploader__delete {
  display: inline-block;
  margin: 10px 0;
  color: #5c0000;
}
.p-uploader__delete:hover {
  color: #5c0000;
  text-decoration: underline;
}

.p-uploader__error {
  margin-top: 5px;
  color: #5c0000;
  font-size: 12px;
  line-height: 1.3;
}

.p-websitebuilder-logo {
  width: 110px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 481px) {
  .p-websitebuilder-logo {
    width: 150px;
    height: 70px;
  }
}
@media screen and (min-width: 851px) {
  .p-websitebuilder-logo {
    width: 200px;
    height: 85px;
  }
}
.p-websitebuilder-logo a {
  display: block;
  height: 100%;
  position: relative;
  margin: 0 10px;
}
.p-websitebuilder-logo img {
  max-width: 100%;
  max-height: 100%;
  width: 150px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
}

.p-information-bar {
  display: none;
  gap: 0;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  grid-template-areas: "content close";
  margin: 1rem 0 0;
  background-color: #f6fafe;
  border: 1px solid #c7e0f4;
  border-radius: 3px;
  transition: all 0.2s;
}
.p-information-bar.--visible {
  display: grid;
}
@media (hover: hover) {
  .p-information-bar:hover, .p-information-baractive {
    background-color: #e5f1fa;
  }
}

.p-information-bar__content {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: content;
  padding: 1rem;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-color: #86b2d4;
  text-decoration-color: #86b2d4;
  text-underline-offset: 0.2rem;
  font-size: 1rem;
}
@media (hover: hover) {
  .p-information-bar__content:hover, .p-information-bar__contentactive {
    -webkit-text-decoration-color: #609bc7;
    text-decoration-color: #609bc7;
  }
}

.p-information-bar__close {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: close;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1rem;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.p-information-bar__close svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #3675a5;
}

@media screen and (min-width: 768px) {
  .p-help-ballon {
    position: relative;
  }
}

.p-help-ballon__button {
  cursor: default;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-help-ballon__button svg {
  width: 18px;
  height: 18px;
  fill: #5b5f62;
}

.p-help-ballon__content {
  box-sizing: border-box;
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 12px;
  background: #3b3e40;
  border-radius: 3px;
  text-align: left;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-help-ballon__content::after {
    content: "";
    position: absolute;
    left: calc(20% - 8px);
    bottom: -16px;
    transform: rotate(-90deg);
    border-width: 8px;
    border-style: solid;
    border-color: transparent #3b3e40 transparent transparent;
  }
}
.p-help-ballon:hover .p-help-ballon__content, .p-help-ballon__button:focus + .p-help-ballon__content {
  display: block;
  left: 0;
  bottom: calc(100% + 8px);
}
@media screen and (min-width: 768px) {
  .p-help-ballon:hover .p-help-ballon__content, .p-help-ballon__button:focus + .p-help-ballon__content {
    left: calc(-52px + 8px);
  }
}
