@charset "UTF-8";
:root {
  --salon-font-size-xs: 0.8rem;
  --salon-font-size-s: 0.9rem;
  --salon-font-size-m: 1rem;
  --salon-font-size-l: 1.3rem;
  --salon-font-size-xl: 2rem;
  --text-color-basic: #333;
  --text-color-light: #aaa;
  --text-color-caution: #c00;
  --color-white: #fdfdfd;
  --link-color: #005196;
  --header-color: #222;
  --font-family: "Noto Sans JP", sans-serif;
  --curtain: 1000;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  position: relative;
  background-color: var(--background-color-hide);
}

body {
  width: 100%;
  min-width: 320px;
  font-family: var(--font-family);
  font-size: var(--salon-font-size-m);
}

a {
  font-size: var(--salon-font-size-m);
  text-decoration: none;
}

.full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.8);
}

.paginator {
  display: flex;
  justify-content: center;
}
.paginator ul {
  display: flex;
  list-style: none;
}
.paginator ul li {
  width: 32px;
  height: 32px;
  margin: 16px 2px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: var(--line-color-hide);
}
.paginator ul li.now {
  background-color: var(--accent-color);
}
.paginator ul li a {
  color: var(--color-white);
}

#login-bar {
  margin: 10px 0;
}
#login-bar a {
  color: var(--text-color-basic);
}
#login-bar ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
#login-bar ul li ::after {
  padding: 10px;
  content: "|";
}
#login-bar ul li:last-child ::after {
  content: "";
}

#logo {
  position: relative;
  padding: 14px 20px;
  text-align: center;
  background-color: var(--header-color-hide);
}
#logo img {
  max-width: 300px;
  height: 40px;
  object-fit: contain;
}
#logo .hamburger {
  position: absolute;
  top: 2px;
  right: 16px;
  font-size: 40px;
  color: var(--color-white);
  cursor: pointer;
}
#logo .close {
  position: absolute;
  top: 2px;
  right: 16px;
  z-index: 9999;
  display: block;
  font-size: 40px;
  color: var(--color-white);
  cursor: pointer;
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 300px;
  height: 100%;
  padding: 92px 10px 16px;
  overflow: hidden scroll;
  background-color: var(--header-color);
  transform: translateX(100%);
}
#header .header > .title {
  position: relative;
  margin-left: 8px;
  font-weight: bold;
  line-height: 40px;
  color: var(--background-color-hide);
}
#header .widget-menu {
  margin-bottom: 16px;
}
#header .widget-menu .description {
  padding: 10px;
  margin: 0 10px;
  font-size: var(--salon-font-size-s);
  color: var(--color-white);
}
#header .widget-menu .items {
  width: 100%;
  margin: auto;
  text-align: left;
  list-style: none;
}
#header .widget-menu .items li {
  height: 40px;
  margin: 0 20px;
  overflow: hidden;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#header .widget-menu .items li img {
  width: 26px;
  margin-right: 4px;
  vertical-align: middle;
}
#header .widget-menu .items li a {
  color: var(--background-color-hide);
  transition: 0.2s;
}
#header .widget-menu .items li a:hover {
  color: var(--color-white);
  transition: 0.2s;
}
#header .widget-list img {
  width: 48px;
}
#header .widget-list .description {
  margin: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#header .widget-list .items .item {
  padding: 10px;
  border-bottom: 1px solid var(--accent-color);
}
#header .widget-list .items .item .texts .created {
  font-size: var(--salon-font-size-xs);
}
#header .widget-sentence .title {
  height: 40px;
  margin-left: 8px;
  line-height: 40px;
  color: var(--background-color-hide);
}
#header .widget-sentence .title::before {
  display: inline-block;
  width: 4px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background-color: var(--text-color-link);
}
#header .widget-sentence .description {
  margin: 10px;
}

#menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9000;
  width: 300px;
  height: 100%;
  padding: 42px 20px 16px;
  overflow: hidden scroll;
  background-color: var(--color-white);
}
#menu .header > .title {
  height: 40px;
  padding: 0 16px;
  line-height: 40px;
  color: var(--color-white);
  background-color: var(--accent-color);
}
#menu .widget-menu {
  margin-bottom: 16px;
}
#menu .widget-menu .description {
  padding: 10px 16px;
}
#menu .widget-menu .items {
  width: 100%;
  margin: auto;
  text-align: left;
  list-style: none;
}
#menu .widget-menu .items li {
  height: 40px;
  padding: 0 16px;
  overflow: hidden;
  line-height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-color-hide);
}
#menu .widget-menu .items li img {
  width: 22px;
  margin-right: 4px;
  vertical-align: middle;
}
#menu .widget-menu .items li a {
  color: var(--text-color-basic);
}
#menu .widget-menu .items li a:hover img {
  opacity: 1;
  transform: none;
}
#menu .widget-list img {
  width: 48px;
}
#menu .widget-list .description {
  margin: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#menu .widget-list .items .item {
  padding: 10px;
  background-color: var(--color-white);
}
#menu .widget-list .items .item .texts .created {
  font-size: var(--salon-font-size-xs);
}
#menu .widget-list .items .item .texts .title a {
  color: var(--text-color-basic);
}
#menu .widget-list .more {
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid var(--accent-color);
}
#menu .widget-list .more a {
  color: var(--text-color-basic);
}
#menu .widget-sentence .title {
  height: 40px;
  margin-left: 8px;
  line-height: 40px;
  color: var(--text-color-basic);
}
#menu .widget-sentence .title::before {
  display: inline-block;
  width: 4px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  content: "";
  background-color: var(--accent-color);
}
#menu .widget-sentence .description {
  margin: 10px;
}

#body {
  padding: 0 16px;
  margin-top: 30px;
}
#body .widget-content {
  padding: 20px;
  margin-bottom: 30px;
  background-color: var(--color-white);
}
#body .widget-content h1.title {
  padding: 10px 16px;
  margin-bottom: 10px;
  font-size: var(--salon-font-size-m);
  color: var(--color-white);
  background-color: var(--accent-color);
}
#body .widget-content h2 {
  padding: 6px 10px;
  font-size: var(--salon-font-size-m);
  border-bottom: 1px solid var(--accent-color);
  border-left: 5px solid var(--accent-color);
}
#body .widget-content h3 {
  padding: 8px 14px;
  font-size: var(--salon-font-size-m);
  border-top: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}
#body .widget-content h4 {
  padding: 6px 10px;
  font-size: var(--salon-font-size-m);
  border-left: 5px solid var(--accent-color);
}
#body .widget-content h5 {
  font-size: var(--salon-font-size-m);
}
#body .widget-content h5::before {
  margin-right: 5px;
  color: var(--accent-color);
  content: "●";
}
#body .widget-content h6 {
  font-size: var(--salon-font-size-m);
}
#body .widget-content .items .item {
  margin-bottom: 20px;
}
#body .widget-content .items .item p,
#body .widget-content .items .item img {
  margin-bottom: 16px;
}
#body .widget-content .items .item p.pay-line {
  display: flex;
  align-items: center;
  color: var(--accent-color);
}
#body .widget-content .items .item p.pay-line::before, #body .widget-content .items .item p.pay-line::after {
  flex-grow: 1;
  height: 2px;
  content: "";
  background: var(--color-white);
  border-top: 3px dotted var(--background-color-hide);
}
#body .widget-content .items .item p::before {
  margin-right: 30px;
}
#body .widget-content .items .item p::after {
  margin-left: 30px;
}
#body .widget-content .items .item p a {
  color: var(--text-color-basic);
  text-decoration: underline;
}
#body .widget-content .items .item p a:hover {
  text-decoration: none;
}
#body .widget-content .items .item ul {
  margin-left: 16px;
  list-style-type: disc;
}
#body .widget-content .items .item ol {
  margin-left: 22px;
}
#body .widget-content dl.meta {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0 2px;
  clear: both;
  font-size: var(--salon-font-size-xs);
  word-break: keep-all;
}
#body .widget-content dl.meta dt::after {
  content: ":";
}
#body .widget-content dl.meta dd {
  margin: 0 10px 0 4px;
}
#body .widget-content dl.meta dd a {
  font-size: var(--salon-font-size-xs);
  color: var(--accent-color);
}
#body .widget-content dl ul {
  display: flex;
  list-style: none;
}
#body .widget-content dl ul li {
  margin-right: 4px;
}
#body .widget-list {
  position: relative;
  margin-bottom: 40px;
  word-break: break-all;
}
#body .widget-list .header .title {
  padding: 10px 16px;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--accent-color);
}
#body .widget-list .header .description {
  margin: 6px;
}
#body .widget-list .glide-el-track {
  overflow: hidden;
}
#body .widget-list .items .item {
  padding: 4px;
}
#body .widget-list .items .item .texts {
  padding: 10px 16px;
  overflow: hidden;
  background-color: var(--color-white);
}
#body .widget-list .items .item .texts .created {
  margin-right: 10px;
  font-size: var(--salon-font-size-xs);
}
#body .widget-list .items .item .texts .title {
  overflow: hidden;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#body .widget-list .items .item .texts .title a {
  color: var(--text-color-basic);
}
#body .widget-list .items .item .texts .description {
  display: -webkit-box;
  height: 42px;
  overflow: hidden;
  font-size: var(--salon-font-size-s);
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#body .widget-list .items .item .texts .description a.more {
  font-size: var(--salon-font-size-xs);
  color: var(--accent-color);
}
#body .widget-list .more {
  width: fit-content;
  margin: 30px auto;
}
#body .widget-list .more a {
  font-size: var(--salon-font-size-s);
  color: var(--text-color-basic);
}
#body .widget-list .slid {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 10px 16px;
  margin: 0;
  background-color: var(--color-white);
  border: none;
}
#body .widget-list .slid::after {
  content: ">";
}
#body .widget-list .slid a {
  color: #333;
}
#body .widget-list.list-text .item {
  border-bottom: 1px solid var(--color-white);
}
#body .widget-list-image-position-overlay .items .item .description,
#body .widget-list-image-position-overlay .items .item .created {
  font-size: var(--salon-font-size-s);
  opacity: 0;
}
#body .widget-list-image-position-overlay .items .item:hover .image {
  position: relative;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
}
#body .widget-list-image-position-overlay .items .item:hover .image img {
  opacity: 0.5;
  transition: 0.2s;
}
#body .widget-list-image-position-overlay .items .item:hover .image .description,
#body .widget-list-image-position-overlay .items .item:hover .image .created {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  overflow: hidden;
  color: var(--color-white);
  opacity: 1;
  transition: 0.5s;
}
#body .widget-list-image-position-overlay .items .item:hover .image .description {
  bottom: 10px;
  display: -webkit-box;
  padding: 0 30px;
  overflow: hidden;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#body .widget-list-image-position-overlay .items .item:hover .image .created {
  top: 10px;
  padding: 0 30px;
}
#body .widget-sentence {
  margin: 20px 0;
}
#body .widget-sentence .title {
  font-size: var(--visual-title-font-size);
  color: var(--visual-title-color);
}
#body .widget-comment .write-comment button {
  padding: 10px;
  font-weight: bold;
  color: var(--color-white);
  cursor: pointer;
  background-color: var(--accent-color);
  border: none;
}
#body .widget-comment .more-button {
  width: 100%;
  padding: 20px 0 0;
  margin: auto;
  clear: both;
  text-align: center;
  cursor: pointer;
  background: var(--color-white);
}
#body .widget-comment ul.body {
  padding: 0 26px 26px;
  margin-bottom: 40px;
  list-style: none;
}
#body .widget-comment ul.body li {
  padding: 8px 0;
  clear: both;
}
#body .widget-comment ul.body li.comment .profile {
  float: left;
  margin: 10px 0;
}
#body .widget-comment ul.body li.comment .profile .icon {
  float: left;
  width: 48px;
  height: 48px;
}
#body .widget-comment ul.body li.comment .profile .icon img,
#body .widget-comment ul.body li.comment .profile .icon svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
#body .widget-comment ul.body li.comment .profile .name {
  display: inline-block;
  padding-left: 10px;
  font-size: var(--salon-font-size-s);
  line-height: 42px;
}
#body .widget-comment ul.body li.comment .created {
  float: right;
  margin: 10px 0;
  font-size: var(--salon-font-size-xs);
  line-height: 42px;
  color: #aaa;
}
#body .widget-comment ul.body li.comment .body {
  padding: 10px;
  clear: both;
}
#body .widget-comment ul.body li.comment .body .file {
  display: inline-block;
  width: 200px;
  margin-right: 4px;
  margin-bottom: 10px;
  cursor: pointer;
}
#body .widget-comment ul.body li.comment .body .file img {
  width: 100%;
  height: auto;
}
#body .widget-comment ul.body li.comment .body .gift {
  position: relative;
  display: inline-block;
  width: 180px;
  margin: 0 10px 26px 0;
}
#body .widget-comment ul.body li.comment .body .gift::after {
  position: absolute;
  bottom: -22px;
  left: 12px;
  font-weight: bold;
  color: var(--color-white);
  content: "GIFT";
}
#body .widget-comment ul.body li.comment .body .gift::before {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 0;
  width: 100%;
  height: 0;
  height: 30px;
  content: "";
  background-color: var(--accent-color);
}
#body .widget-comment ul.body li.comment .body .gift .gift-image {
  padding: 8px;
  border: 8px dashed var(--accent-color);
}
#body .widget-comment ul.body li.comment .body .gift .gift-image img {
  width: 100%;
}
#body .widget-comment ul.body li.comment .body .popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(100, 100, 100, 0.8);
}
#body .widget-comment ul.body li.comment .body .popup .inner .body .inner img {
  width: 100%;
  max-height: 460px;
}
#body .widget-comment ul.body li.comment .body .popup .inner .buttons {
  text-align: center;
}
#body .widget-comment ul.body li.comment .body .popup .inner .buttons .close {
  width: fit-content;
  padding: 8px 14px;
  margin: auto;
  color: var(--color-white);
  cursor: pointer;
  background-color: var(--line-color-hide);
  border-radius: 5px;
}
#body .widget-comment ul.body li.comment .reply-button {
  float: left;
}
#body .widget-comment ul.body li.comment .reply-button button {
  width: 50px;
  padding: 2px 0;
  margin: 0 10px;
  color: var(--color-white);
  cursor: pointer;
  background-color: var(--line-color-hide);
  border: none;
  border: 1px solid var(--line-color-hide);
  border-radius: 5px;
}
#body .widget-comment ul.body li.comment .reply-count {
  float: left;
  font-size: var(--salon-font-size-xs);
  line-height: 24px;
  cursor: pointer;
}
#body .widget-comment ul.body li.comment .report {
  float: right;
  margin-left: 10px;
  color: var(--text-color-caution);
  cursor: pointer;
}
#body .widget-comment ul.body li.comment .report a {
  font-size: var(--salon-font-size-xs);
  color: var(--text-color-light);
  text-decoration: none;
}
#body .widget-comment ul.body li.comment .delete-button {
  float: right;
  margin-left: 10px;
  font-size: var(--salon-font-size-xs);
  color: var(--text-color-caution);
  cursor: pointer;
}
#body .widget-comment ul.body li.comment ul.body {
  display: block;
}
#body .widget-comment ul.body li.comment ul.body li.comment {
  margin: 2px 0 0 24px;
}
#body .widget-comment ul.body li.comment ul.body li.comment .profile .icon {
  width: 32px;
  height: 32px;
}
#body .widget-comment ul.body li.comment ul.body li.comment .name,
#body .widget-comment ul.body li.comment ul.body li.comment .created {
  line-height: 32px;
}
#body .widget-search .widget-search-head {
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: var(--salon-font-size-m);
  color: var(--color-white);
  background-color: var(--accent-color);
}
#body .widget-search .items {
  padding: 20px;
  background-color: var(--color-white);
}
#body .widget-search .items .item {
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-color-hide);
}
#body .widget-search .items .item:last-child {
  border: none;
}
#body .widget-search .items .item .image {
  float: right;
  width: 30%;
  aspect-ratio: 4/3;
  padding: 6px;
}
#body .widget-search .items .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#body .widget-search .items .item h2 {
  overflow: hidden;
  font-size: var(--salon-font-size-l);
  text-overflow: ellipsis;
  white-space: nowrap;
}
#body .widget-search .items .item h2 a {
  color: var(--text-color-basic);
}
#body .widget-search .items .item p a {
  color: var(--text-color-basic);
}
#body .widget-search .items .item dl {
  display: flex;
  font-size: var(--salon-font-size-xs);
}
#body .widget-search .items .item dl dt,
#body .widget-search .items .item dl dd {
  margin-right: 4px;
}
#body .widget-search .items .item dl dt::after {
  content: "：";
}
#body .widget-search .items .item dl dd {
  margin-right: 14px;
}
#body .widget-specified-commercial-transaction-law {
  margin: 20px;
}
#body .widget-specified-commercial-transaction-law a {
  color: var(--link-color);
}
#body .widget-specified-commercial-transaction-law h1 {
  font-size: var(--salon-font-size-l);
}
#body .widget-specified-commercial-transaction-law dt {
  margin-top: 26px;
  font-weight: 800;
}
#body .widget-specified-commercial-transaction-law ul {
  margin: 10px 0;
}
#body .widget-specified-commercial-transaction-law ul li::marker {
  content: "";
}
#body .widget-specified-commercial-transaction-law ul li ul {
  margin: 4px 10px;
}
#body .widget-rule {
  margin: 20px;
}
#body .widget-rule h1 {
  font-size: var(--salon-font-size-l);
}
#body .widget-rule p.note {
  margin: 10px 0;
}
#body .widget-rule p a {
  color: var(--link-color);
}
#body .widget-privacy-poricy {
  margin: 20px;
}
#body .widget-privacy-poricy h1 {
  font-size: var(--salon-font-size-l);
}
#body .widget-privacy-poricy h2 {
  margin-top: 26px;
  font-size: var(--salon-font-size-m);
}
#body .widget-privacy-poricy p {
  margin: 10px 0;
}
#body .widget-privacy-poricy a {
  color: var(--link-color);
}

#sub {
  height: fit-content;
  padding: 20px;
  margin: 40px 16px 30px;
  background-color: var(--color-white);
}
#sub .widget-list {
  margin-bottom: 10px;
  word-break: break-all;
}
#sub .widget-list .header .title {
  padding: 10px 16px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fdfdfd;
  background-color: var(--accent-color);
}
#sub .widget-list .items .item {
  padding: 6px 0;
}
#sub .widget-list .items .item .image {
  padding: 4px;
}
#sub .widget-list .items .item .texts .title {
  display: -webkit-box;
  width: fit-content;
  overflow: hidden;
  font-weight: bold;
  border-bottom: 1px solid var(--text-color-light);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
#sub .widget-list .items .item .texts .title a {
  color: var(--text-color-basic);
}
#sub .widget-list .items .item .texts .description {
  display: -webkit-box;
  overflow: hidden;
  font-size: var(--salon-font-size-xs);
  line-height: 1.5;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
#sub .widget-list .more a {
  font-size: var(--salon-font-size-xs);
  color: var(--text-color-basic);
}
#sub .widget-plan .items {
  display: block;
  flex-wrap: unset;
}

#body,
#sub {
  /* プランウィジェット共通部分 */
}
#body .widget-plan,
#sub .widget-plan {
  width: 100%;
}
#body .widget-plan .header .title,
#sub .widget-plan .header .title {
  padding: 10px 16px;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--accent-color);
}
#body .widget-plan .items,
#sub .widget-plan .items {
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
  overflow-x: auto;
}
#body .widget-plan .items .item,
#sub .widget-plan .items .item {
  margin: 20px 10px;
  background-color: var(--color-white);
  border: 1px solid var(--line-color-hide);
}
#body .widget-plan .items .item .click-area,
#sub .widget-plan .items .item .click-area {
  width: 200px;
  cursor: pointer;
}
#body .widget-plan .items .item .click-area .image,
#sub .widget-plan .items .item .click-area .image {
  width: 200px;
  margin: auto;
  overflow: hidden;
}
#body .widget-plan .items .item .click-area .image img,
#sub .widget-plan .items .item .click-area .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#body .widget-plan .items .item .click-area .title,
#sub .widget-plan .items .item .click-area .title {
  margin: 6px 10px 4px;
  font-weight: 600;
}
#body .widget-plan .items .item .click-area .description,
#sub .widget-plan .items .item .click-area .description {
  display: -webkit-box;
  margin: 4px 10px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 13px;
}
#body .widget-plan .items .item .click-area ul.menu,
#sub .widget-plan .items .item .click-area ul.menu {
  margin: 4px 10px;
  list-style: none;
}
#body .widget-plan .items .item .click-area ul.menu li,
#sub .widget-plan .items .item .click-area ul.menu li {
  display: inline-block;
  width: fit-content;
  padding: 0 8px;
  margin: 4px 2px;
  font-size: 10px;
  border: 0.5px solid var(--text-color-light);
  border-radius: 6px;
}
#body .widget-plan .items .item .click-area .limit,
#sub .widget-plan .items .item .click-area .limit {
  margin: 4px 10px;
  font-size: var(--salon-font-size-xs);
}
#body .widget-plan .items .item .click-area .price,
#sub .widget-plan .items .item .click-area .price {
  padding: 6px 0;
  color: white;
  text-align: center;
  background-color: var(--accent-color);
}
#body .widget-plan .items .item .click-area .price .trial,
#sub .widget-plan .items .item .click-area .price .trial {
  font-size: var(--salon-font-size-s);
}
#body .widget-button,
#sub .widget-button {
  width: 100%;
  margin: 30px 0;
}
#body .widget-button a.btn,
#sub .widget-button a.btn {
  width: fit-content;
  max-width: 600px;
  padding: 10px 20px;
  color: var(--color-white);
  background-color: var(--accent-color);
}

#footer {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  padding-top: 26px;
  background-color: var(--color-white);
}
#footer .widget-menu {
  margin: 20px;
}
#footer .widget-menu .title {
  margin-bottom: 18px;
  font-weight: bold;
}
#footer .widget-menu .description {
  margin-bottom: 10px;
}
#footer .widget-menu .items li {
  margin: 6px 0;
  list-style: none;
}
#footer .widget-menu .items li a {
  color: var(--text-color-basic);
}
#footer .widget-menu .items li a:hover img {
  opacity: 1;
  transform: none;
}
#footer .widget-menu .items li img {
  width: 22px;
  margin-right: 4px;
  vertical-align: middle;
}
#footer .widget-list {
  padding: 8px;
}

ul.meta {
  display: flex;
  display: block;
  padding: 20px;
  text-align: center;
  list-style: none;
  background-color: var(--color-white);
}
ul.meta li {
  display: inline-block;
  padding-right: 12px;
  margin: 0 6px;
  border-right: 1px solid var(--text-color-basic);
}
ul.meta li:last-child {
  border: none;
}
ul.meta li a {
  font-size: var(--salon-font-size-xs);
  color: var(--text-color-basic);
}

.copyright {
  padding-top: 14px;
  font-size: var(--salon-font-size-xs);
  text-align: center;
  background-color: var(--line-color-hide);
}

.powerd-by {
  padding: 4px 0 20px;
  font-size: var(--salon-font-size-xs);
  text-align: center;
  background-color: var(--line-color-hide);
}

/* 投稿日時が横並びになる */
@media screen and (width <= 480px) {
  #body {
    padding: 0 16px;
    margin-top: 30px;
  }
  #body .widget-search .items .item dl {
    display: inline-flex;
  }
  .widget-button a.btn {
    max-width: 300px;
  }
}
@media screen and (width >= 1025px) {
  .full-overlay {
    display: none !important;
  }
  #container {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }
  #login-bar {
    max-width: 1040px;
    margin: 10px auto;
  }
  #logo .hamburger,
  #logo .close {
    display: none !important;
  }
  #header {
    position: relative;
    top: 0;
    width: 100%;
    height: 60px;
    padding: 0;
    overflow: hidden;
    background-color: unset;
    background-color: var(--header-color);
    transform: translateX(0) !important;
  }
  #header .widget-menu .header .title {
    display: none;
  }
  #header .widget-menu .description {
    display: none;
  }
  #header .widget-menu .items {
    display: flex;
    justify-content: center;
  }
  #header .widget-menu .items li {
    height: 60px;
    line-height: 60px;
  }
  #body {
    flex-grow: 1;
    max-width: 720px;
    margin-top: 40px;
    line-height: 1.8;
  }
  #body.no-menu {
    margin: 0 200px 20px;
  }
  #body .widget-comment {
    margin-bottom: 100px;
  }
  #sub {
    max-width: 300px;
    padding: 0;
  }
  #sub .widget-list {
    padding: 14px;
  }
  #sub .widget-sentence {
    padding: 14px;
  }
  #sub .widget-plan {
    padding: 10px;
  }
  #sub .widget-plan .items {
    display: block;
  }
  #sub .widget-plan .items .item {
    width: auto;
  }
  #sub .widget-plan .items .item .popup > .inner {
    width: 500px;
  }
}

/*# sourceMappingURL=virtual.theme.gallery.css.map */
