@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;
  --color-white: #fdfdfd;
  --text-color-basic: #333;
  --text-color-light: #aaa;
  --point-color: #baaa6b;
  --text-color-caution: #c00;
  --font-family:
    "游明朝", yumincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --curtain: 1000;
}

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

html {
  position: relative;
  font-family: var(--font-family) !important;
  background-color: var(--main-color);
}

body {
  width: 100%;
  min-width: 320px;
  font-size: 16px;
  color: var(--sub-color, #fdfdfd);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

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

button {
  font-family: serif;
}

.paginator {
  display: flex;
  justify-content: center;
  color: var(--color-white);
}
.paginator ul {
  display: flex;
  list-style: none;
}
.paginator ul li {
  width: 26px;
  height: 32px;
  margin: 16px 2px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
}
.paginator ul li.now {
  border-bottom: 1px solid var(--sub-color);
}
.paginator ul li a {
  color: var(--sub-color);
}

#login-bar a {
  color: var(--sub-color);
}
#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: 10px 20px;
  background-color: var(--sub-color);
}
#logo img {
  max-width: 290px;
  height: 40px;
  object-fit: contain;
}
#logo .hamburger {
  position: absolute;
  top: 2px;
  right: 16px;
  font-size: 36px;
  color: var(--main-color);
  cursor: pointer;
}
#logo .close {
  position: absolute;
  top: 2px;
  right: 16px;
  z-index: 9999;
  display: block;
  font-size: 36px;
  color: var(--main-color);
  cursor: pointer;
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9000;
  width: 100%;
  height: 100%;
  padding: 42px 30px 16px;
  overflow: hidden scroll;
  background-color: var(--sub-color);
  transform: translateY(-100%);
}
#header a {
  color: var(--main-color);
}
#header .widget-menu {
  margin-top: 40px;
}
#header .widget-menu .header {
  color: var(--main-color);
  text-align: center;
}
#header .widget-menu .header .title {
  font-size: var(--salon-font-size-l);
}
#header .widget-menu .header .description {
  font-size: var(--salon-font-size-s);
}
#header .widget-menu .items li {
  margin: 20px;
  text-align: center;
  list-style: none;
}
#header .widget-menu .items li a img {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
}

#body,
#sub {
  background-color: var(--main-color);
}
#body .widget-content,
#sub .widget-content {
  padding: 20px;
}
#body .widget-content h1.title,
#sub .widget-content h1.title {
  padding-bottom: 8px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--sub-color);
}
#body .widget-content h2,
#sub .widget-content h2 {
  padding: 4px 0;
  margin-bottom: 18px;
  font-size: 26px;
}
#body .widget-content h3,
#sub .widget-content h3 {
  width: fit-content;
  padding: 4px 0;
  margin-bottom: 12px;
  font-size: 22px;
  color: var(--color-white);
}
#body .widget-content h4,
#sub .widget-content h4 {
  padding: 4px 0;
  margin-bottom: 10px;
  font-size: 16px;
}
#body .widget-content h5,
#sub .widget-content h5 {
  font-size: 16px;
}
#body .widget-content h5::before,
#sub .widget-content h5::before {
  content: "⚫︎";
}
#body .widget-content h6,
#sub .widget-content h6 {
  font-size: 16px;
}
#body .widget-content .items .item,
#sub .widget-content .items .item {
  margin-bottom: 20px;
}
#body .widget-content .items .item p,
#body .widget-content .items .item img,
#sub .widget-content .items .item p,
#sub .widget-content .items .item img {
  margin-bottom: 16px;
}
#body .widget-content .items .item p.pay-line,
#sub .widget-content .items .item p.pay-line {
  display: flex;
  align-items: center;
}
#body .widget-content .items .item p.pay-line::before, #body .widget-content .items .item p.pay-line::after,
#sub .widget-content .items .item p.pay-line::before,
#sub .widget-content .items .item p.pay-line::after {
  flex-grow: 1;
  height: 2px;
  content: "";
  background: var(--main-color);
  border-top: 1px dashed var(--sub-color);
}
#body .widget-content .items .item p.pay-line::before,
#sub .widget-content .items .item p.pay-line::before {
  margin-right: 30px;
}
#body .widget-content .items .item p.pay-line::after,
#sub .widget-content .items .item p.pay-line::after {
  margin-left: 30px;
}
#body .widget-content .items .item p a,
#sub .widget-content .items .item p a {
  color: var(--sub-color);
  text-decoration: underline;
}
#body .widget-content .items .item p a:hover,
#sub .widget-content .items .item p a:hover {
  text-decoration: none;
}
#body .widget-content .items .item ul,
#sub .widget-content .items .item ul {
  padding: 10px 30px;
  line-height: 30px;
  color: var(--text-color-basic);
  list-style-type: disc;
  background-color: #eee;
}
#body .widget-content .items .item ol,
#sub .widget-content .items .item ol {
  padding: 10px 30px;
  line-height: 30px;
  color: var(--text-color-basic);
  background-color: #eee;
}
#body .widget-content dl.meta,
#sub .widget-content dl.meta {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
  clear: both;
  font-size: var(--salon-font-size-s);
  word-break: keep-all;
}
#body .widget-content dl.meta dt,
#sub .widget-content dl.meta dt {
  padding: 3px 0;
}
#body .widget-content dl.meta dt::after,
#sub .widget-content dl.meta dt::after {
  content: "：";
}
#body .widget-content dl.meta dd,
#sub .widget-content dl.meta dd {
  padding: 3px 5px;
  margin-right: 10px;
}
#body .widget-content dl.meta dt,
#body .widget-content dl.meta dd,
#sub .widget-content dl.meta dt,
#sub .widget-content dl.meta dd {
  margin-bottom: 3px;
}
#body .widget-content dl ul,
#sub .widget-content dl ul {
  display: flex;
  list-style: none;
}
#body .widget-content dl ul li,
#sub .widget-content dl ul li {
  margin-right: 10px;
}
#body .widget-content dl ul li a,
#sub .widget-content dl ul li a {
  color: var(--text-color, #fdfdfd);
}
#body .widget-list,
#sub .widget-list {
  padding: 20px;
  margin-bottom: 20px;
}
#body .widget-list .header,
#sub .widget-list .header {
  margin-bottom: 40px;
  text-align: center;
}
#body .widget-list .header .title,
#sub .widget-list .header .title {
  position: relative;
  font-size: var(--salon-font-size-xl);
  color: var(--text-color, #fdfdfd);
}
#body .widget-list .header .description,
#sub .widget-list .header .description {
  margin: 6px;
}
#body .widget-list .glide-el-track,
#sub .widget-list .glide-el-track {
  overflow: hidden;
}
#body .widget-list .items .item,
#sub .widget-list .items .item {
  padding: 10px 8px;
  overflow: hidden;
}
#body .widget-list .items .item .texts,
#sub .widget-list .items .item .texts {
  padding: 6px;
  overflow: hidden;
}
#body .widget-list .items .item .texts .created,
#sub .widget-list .items .item .texts .created {
  font-size: var(--salon-font-size-xs);
  color: var(--created-font-color);
}
#body .widget-list .items .item .texts .title,
#sub .widget-list .items .item .texts .title {
  overflow: hidden;
  font-size: var(--salon-font-size-l);
  text-overflow: ellipsis;
  white-space: nowrap;
}
#body .widget-list .items .item .texts .title a,
#sub .widget-list .items .item .texts .title a {
  color: var(--text-color, #fdfdfd);
}
#body .widget-list .items .item .texts .description,
#sub .widget-list .items .item .texts .description {
  margin: 0;
  overflow: hidden;
}
#body .widget-list .items .item .texts .description a.more,
#sub .widget-list .items .item .texts .description a.more {
  font-size: var(--salon-font-size-s);
  color: var(--text-color-light-hide);
}
#body .widget-list .more,
#sub .widget-list .more {
  width: fit-content;
  padding: 4px 10px;
  margin: 26px auto;
}
#body .widget-list .more a,
#sub .widget-list .more a {
  color: var(--text-color, #fdfdfd);
}
#body .widget-list-image-position-overlay .items .item .title,
#body .widget-list-image-position-overlay .items .item .description,
#body .widget-list-image-position-overlay .items .item .created,
#sub .widget-list-image-position-overlay .items .item .title,
#sub .widget-list-image-position-overlay .items .item .description,
#sub .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,
#sub .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,
#sub .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 .title,
#body .widget-list-image-position-overlay .items .item:hover .image .description,
#body .widget-list-image-position-overlay .items .item:hover .image .created,
#sub .widget-list-image-position-overlay .items .item:hover .image .title,
#sub .widget-list-image-position-overlay .items .item:hover .image .description,
#sub .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 .title,
#sub .widget-list-image-position-overlay .items .item:hover .image .title {
  top: 10px;
  display: -webkit-box;
  padding: 0 30px;
  overflow: hidden;
  font-size: var(--salon-font-size-l);
  line-height: 1.5;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#body .widget-list-image-position-overlay .items .item:hover .image .title a,
#sub .widget-list-image-position-overlay .items .item:hover .image .title a {
  color: var(--main-color);
}
#body .widget-list-image-position-overlay .items .item:hover .image .description,
#sub .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,
#sub .widget-list-image-position-overlay .items .item:hover .image .created {
  top: 36px;
  padding: 0 30px;
  font-size: var(--salon-font-size-xs);
}
#body .list-text .item,
#sub .list-text .item {
  border-bottom: 1px solid #494949;
}
#body .widget-sentence,
#sub .widget-sentence {
  text-align: center;
}
#body .widget-sentence .title,
#sub .widget-sentence .title {
  font-size: var(--visual-title-font-size);
  color: var(--visual-title-color);
}
#body .widget-sentence .image img,
#sub .widget-sentence .image img {
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
#body .widget-comment,
#sub .widget-comment {
  padding: 20px;
}
#body .widget-comment .more-button,
#sub .widget-comment .more-button {
  width: fit-content;
  margin: auto;
  clear: both;
  color: var(--sub-color);
  text-align: center;
  cursor: pointer;
}
#body .widget-comment ul.body,
#sub .widget-comment ul.body {
  list-style: none;
}
#body .widget-comment ul.body li,
#sub .widget-comment ul.body li {
  padding: 32px 0;
  clear: both;
}
#body .widget-comment ul.body li.comment .profile,
#sub .widget-comment ul.body li.comment .profile {
  float: left;
  margin: 10px 0;
}
#body .widget-comment ul.body li.comment .profile .icon,
#sub .widget-comment ul.body li.comment .profile .icon {
  float: left;
  width: 42px;
  height: 42px;
}
#body .widget-comment ul.body li.comment .profile .icon img,
#body .widget-comment ul.body li.comment .profile .icon svg,
#sub .widget-comment ul.body li.comment .profile .icon img,
#sub .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,
#sub .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,
#sub .widget-comment ul.body li.comment .created {
  float: right;
  margin: 10px 0;
  font-size: 0.7rem;
  line-height: 42px;
}
#body .widget-comment ul.body li.comment .body,
#sub .widget-comment ul.body li.comment .body {
  padding: 10px 0 10px 10px;
  clear: both;
}
#body .widget-comment ul.body li.comment .body .file,
#sub .widget-comment ul.body li.comment .body .file {
  display: inline-block;
  width: 200px;
  margin-bottom: 10px;
  cursor: pointer;
}
#body .widget-comment ul.body li.comment .body .file img,
#sub .widget-comment ul.body li.comment .body .file img {
  width: 100%;
  height: auto;
}
#body .widget-comment ul.body li.comment .body .gift,
#sub .widget-comment ul.body li.comment .body .gift {
  position: relative;
  display: inline-block;
  width: 180px;
  margin: 0 10px 10px 0;
}
#body .widget-comment ul.body li.comment .body .gift::after,
#sub .widget-comment ul.body li.comment .body .gift::after {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: var(--main-color);
  content: "gift";
}
#body .widget-comment ul.body li.comment .body .gift::before,
#sub .widget-comment ul.body li.comment .body .gift::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-right: 52px solid transparent;
  border-bottom: 52px solid var(--sub-color);
}
#body .widget-comment ul.body li.comment .body .gift .gift-image,
#sub .widget-comment ul.body li.comment .body .gift .gift-image {
  padding: 8px;
  border: 2px solid var(--sub-color);
}
#body .widget-comment ul.body li.comment .body .gift .gift-image img,
#sub .widget-comment ul.body li.comment .body .gift .gift-image img {
  width: 100%;
}
#body .widget-comment ul.body li.comment .body .popup,
#sub .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,
#sub .widget-comment ul.body li.comment .body .popup .inner .body {
  padding: 20px;
}
#body .widget-comment ul.body li.comment .body .popup .inner .body .inner img,
#sub .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,
#sub .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,
#sub .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: #0d0d0d;
  border-radius: 5px;
}
#body .widget-comment ul.body li.comment .reply-button,
#sub .widget-comment ul.body li.comment .reply-button {
  float: left;
}
#body .widget-comment ul.body li.comment .reply-button button,
#sub .widget-comment ul.body li.comment .reply-button button {
  width: 50px;
  padding: 2px 0;
  margin: 0 10px;
  color: var(--main-color);
  cursor: pointer;
  background-color: var(--sub-color);
  border: none;
  border-radius: 2px;
}
#body .widget-comment ul.body li.comment .reply-count,
#sub .widget-comment ul.body li.comment .reply-count {
  float: left;
  font-size: var(--salon-font-size-s);
  line-height: 22px;
  cursor: pointer;
}
#body .widget-comment ul.body li.comment .report,
#sub .widget-comment ul.body li.comment .report {
  float: right;
  margin-left: 10px;
  font-size: 0.7rem;
  color: var(--text-color-caution);
  cursor: pointer;
}
#body .widget-comment ul.body li.comment .report a,
#sub .widget-comment ul.body li.comment .report a {
  color: var(--text-color-light-hide) !important;
}
#body .widget-comment ul.body li.comment .delete-button,
#sub .widget-comment ul.body li.comment .delete-button {
  float: right;
  margin-left: 10px;
  font-size: 0.7rem;
  color: var(--text-color-caution);
  cursor: pointer;
}
#body .widget-comment ul.body li.comment ul.body,
#sub .widget-comment ul.body li.comment ul.body {
  display: block;
}
#body .widget-comment ul.body li.comment ul.body li.comment,
#sub .widget-comment ul.body li.comment ul.body li.comment {
  margin: 8px 0 0 10px;
}
#body .widget-comment ul.body li.comment ul.body li.comment .profile .icon,
#sub .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,
#sub .widget-comment ul.body li.comment ul.body li.comment .name,
#sub .widget-comment ul.body li.comment ul.body li.comment .created {
  line-height: 32px;
}
#body .widget-comment .form,
#sub .widget-comment .form {
  color: var(--text-color-basic);
}
#body .widget-comment .write-comment button,
#sub .widget-comment .write-comment button {
  padding: 10px;
  color: var(--main-color);
  cursor: pointer;
  background-color: var(--sub-color);
  border: none;
}
#body .widget-search,
#sub .widget-search {
  padding: 20px;
}
#body .widget-search .widget-search-head,
#sub .widget-search .widget-search-head {
  margin-bottom: 10px;
  font-size: var(--salon-font-size-xl);
}
#body .widget-search .items .item,
#sub .widget-search .items .item {
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--text-color-light);
}
#body .widget-search .items .item a,
#sub .widget-search .items .item a {
  color: var(--sub-color);
}
#body .widget-search .items .item .image,
#sub .widget-search .items .item .image {
  float: right;
  width: 30%;
  aspect-ratio: 4/3;
  padding: 6px;
}
#body .widget-search .items .item .image img,
#sub .widget-search .items .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#body .widget-search .items .item h2,
#sub .widget-search .items .item h2 {
  overflow: hidden;
  font-size: medium;
  font-size: var(--salon-font-size-l);
  text-overflow: ellipsis;
  white-space: nowrap;
}
#body .widget-search .items .item p,
#sub .widget-search .items .item p {
  font-size: var(--salon-font-size-s);
}
#body .widget-search .items .item dl,
#sub .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,
#sub .widget-search .items .item dl dt,
#sub .widget-search .items .item dl dd {
  margin-right: 4px;
}
#body .widget-search .items .item dl dt::after,
#sub .widget-search .items .item dl dt::after {
  content: "：";
}
#body .widget-search .items .item dl dd,
#sub .widget-search .items .item dl dd {
  margin-right: 14px;
}
#body .widget-plan,
#sub .widget-plan {
  width: 100%;
  padding: 20px;
}
#body .widget-plan .header .title,
#sub .widget-plan .header .title {
  font-size: var(--salon-font-size-xl);
  font-weight: 600;
  text-align: center;
}
#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 {
  padding: 10px;
  margin: 20px 10px;
  color: var(--text-color-basic);
  background-color: var(--color-white);
  border: 1px solid var(--sub-color);
  border-radius: 2px;
}
#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 {
  font-size: var(--salon-font-size-l);
  font-weight: 600;
}
#body .widget-plan .items .item .click-area .description,
#sub .widget-plan .items .item .click-area .description {
  display: -webkit-box;
  margin: 4px 0;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
#body .widget-plan .items .item .click-area ul.menu,
#sub .widget-plan .items .item .click-area ul.menu {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
}
#body .widget-plan .items .item .click-area ul.menu li,
#sub .widget-plan .items .item .click-area ul.menu li {
  width: fit-content;
  padding: 0 8px;
  margin: 4px 2px 0 0;
  font-size: var(--salon-font-size-xs);
  color: var(--color-white);
  background-color: var(--point-color);
  border-radius: 2px;
}
#body .widget-plan .items .item .click-area .limit,
#sub .widget-plan .items .item .click-area .limit {
  font-size: var(--salon-font-size-xs);
}
#body .widget-plan .items .item .click-area .price,
#sub .widget-plan .items .item .click-area .price {
  font-size: 20px;
  text-align: right;
}
#body .widget-plan .items .item .click-area .price .trial,
#sub .widget-plan .items .item .click-area .price .trial {
  font-size: var(--salon-font-size-xs);
}
#body .widget-button,
#sub .widget-button {
  width: 100%;
  padding: 30px 0;
}
#body .widget-button a.btn,
#sub .widget-button a.btn {
  width: fit-content;
  max-width: 600px;
  padding: 20px;
  color: var(--main-color);
  background-color: var(--sub-color);
  border: 1px solid var(--sub-color);
  transition: 0.1s;
}
#body .widget-button a.btn:hover,
#sub .widget-button a.btn:hover {
  color: var(--sub-color);
  background-color: var(--main-color);
  transition: 0.5s;
}

.widget-specified-commercial-transaction-law {
  margin: 20px;
}
.widget-specified-commercial-transaction-law h1 {
  font-size: 22px;
}
.widget-specified-commercial-transaction-law dt {
  width: fit-content;
  padding: 2px 10px;
  margin: 26px 0 6px;
  font-weight: 800;
  color: var(--main-color);
  background: var(--sub-color);
}
.widget-specified-commercial-transaction-law ul {
  margin: 10px 0;
}
.widget-specified-commercial-transaction-law ul li::marker {
  content: "";
}
.widget-specified-commercial-transaction-law ul li ul {
  margin: 4px 10px;
}
.widget-specified-commercial-transaction-law a {
  color: #005196;
}

.widget-rule {
  margin: 20px;
}
.widget-rule h1 {
  font-size: 22px;
}
.widget-rule p.note {
  margin: 10px 0;
}
.widget-rule a {
  color: #005196;
}

.widget-privacy-poricy {
  margin: 20px;
}
.widget-privacy-poricy h1 {
  font-size: 22px;
}
.widget-privacy-poricy h2 {
  font-size: 20px;
}
.widget-privacy-poricy p {
  margin: 20px 0;
}
.widget-privacy-poricy a {
  color: #005196;
}

#footer {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 40px 20px 20px;
  text-align: center;
  background-color: var(--sub-color);
}
#footer .widget-menu .title {
  color: var(--main-color);
}
#footer .widget-menu .description {
  margin-bottom: 10px;
  font-size: var(--salon-font-size-xs);
  color: var(--main-color);
}
#footer .widget-menu .items li a:hover img {
  opacity: 1;
  transform: none;
}
#footer .widget-menu .items li a img {
  width: 20px;
  margin-right: 6px;
  vertical-align: middle;
}
#footer .items li {
  display: inline-block;
  padding: 0;
  margin: 0 10px;
}
#footer .widget-list {
  padding: 8px;
  background-color: var(--color-white);
}
#footer a {
  color: var(--main-color);
}

ul.meta {
  display: block;
  padding: 20px;
  text-align: center;
  list-style: none;
  background-color: var(--sub-color);
}
ul.meta li {
  display: inline-block;
  margin: 0 10px;
}
ul.meta li a {
  color: var(--main-color);
}

.copyright {
  padding-top: 30px;
  font-size: 14px;
  color: var(--main-color);
  text-align: center;
  background-color: var(--sub-color);
}

.powerd-by {
  padding: 4px 0 50px;
  font-size: 14px;
  color: var(--main-color);
  text-align: center;
  background-color: var(--sub-color);
}

/* 投稿日時が横並びになる */
@media screen and (width <= 480px) {
  #body {
    margin-top: 30px;
  }
  #body .widget-search .items .item dl {
    display: inline-flex;
  }
}
/* メインビジュアルの切り抜き */
@media screen and (width >= 800px) {
  #body .widget-sentence .image img {
    aspect-ratio: auto;
    object-fit: contain;
  }
}
@media screen and (width >= 1025px) {
  #header .widget-logo img.position-left {
    margin-left: 20px;
  }
  #header .widget-logo img.position-right {
    margin-right: 60px;
  }
  #header .hamburger {
    right: 38px;
  }
  #header .close::before, #header .close::after {
    right: 60px;
  }
  #menu {
    padding: 42px 280px 16px;
  }
  #menu .widget-menu {
    margin-bottom: 150px;
  }
  #menu .widget-menu .header .title {
    font-size: var(--salon-font-size-l);
  }
  #menu .widget-menu .items {
    width: fit-content;
  }
  #menu .widget-menu .items li {
    float: left;
  }
  #menu .widget-list {
    clear: both;
  }
  #body .widget-list,
  #sub .widget-list {
    padding: 40px 280px;
    word-break: break-all;
  }
  #body .widget-list .header,
  #sub .widget-list .header {
    margin-bottom: 60px;
  }
  #body .widget-list .header .title,
  #sub .widget-list .header .title {
    padding: 20px 20px 12px;
  }
  #body .widget-list .header .title::before,
  #sub .widget-list .header .title::before {
    bottom: -19px;
  }
  #body .widget-list .header .title::after,
  #sub .widget-list .header .title::after {
    bottom: -19px;
  }
  #body .widget-content,
  #sub .widget-content {
    padding: 40px 280px;
    line-height: 36px;
  }
  #body .widget-comment,
  #sub .widget-comment {
    padding: 40px 280px;
  }
  #body .widget-plan,
  #sub .widget-plan {
    padding: 20px 280px;
  }
  #body .widget-plan .popup > .inner,
  #sub .widget-plan .popup > .inner {
    width: 500px;
  }
  #body .widget-search,
  #body .widget-specified-commercial-transaction-law,
  #body .widget-rule,
  #body .widget-privacy-poricy,
  #sub .widget-search,
  #sub .widget-specified-commercial-transaction-law,
  #sub .widget-rule,
  #sub .widget-privacy-poricy {
    padding: 40px 280px;
    line-height: 36px;
  }
}

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