@charset "UTF-8";
:root {
  --curtain: 1000;
}

* {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

html {
  font-size: 14px;
}

body {
  overflow-x: hidden;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, Arial, sans-serif;
  line-height: 1.9;
}

p {
  margin: 30px 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.mr-10 {
  margin-right: 10px;
}

@keyframes dokudoku {
  0% {
    transform: translate(-50%, 0) rotate(3deg) scale(1.2, 1.2);
  }
  50% {
    transform: translate(-50%, -25px) rotate(-3deg) scale(1, 1);
  }
  100% {
    transform: translate(-50%, 0) rotate(3deg) scale(1.2, 1.2);
  }
}
#logo {
  position: absolute;
  top: 10px;
  z-index: 1;
  margin-left: 10px;
  text-align: center;
  opacity: 1;
}
#logo.logo-center {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dokudoku 2.5s infinite;
}
#logo > a {
  display: inline-block;
  display: block;
  width: 50px;
  transition: 0.4s;
  transform: rotateZ(0deg);
}
#logo > a img {
  width: 100%;
}
#logo > a:hover {
  transform: scale(1.2, 1.2);
}
#logo.left {
  left: 0;
}
#logo.center {
  left: 50%;
  width: 100%;
  transform: translate(-50%, 0%);
}
#logo.right {
  right: 0;
}
#logo img {
  width: 100%;
}

#login-bar {
  box-sizing: border-box;
  margin: 0 0 20px;
  line-height: 30px;
  color: var(--navigation-color);
  text-align: center;
  background-color: var(--navigation-background-color);
}
#login-bar a {
  display: block;
  padding: 20px;
  color: #fff;
}
#login-bar a:hover {
  opacity: 0.3;
}
#login-bar ul li:not(#login-bar ul li:last-child) {
  border-bottom: 1px solid #ccc;
}

.paginator ul {
  text-align: center;
}
.paginator ul li {
  display: inline-block;
}
.paginator ul li a {
  display: block;
  width: 20px;
  height: 20px;
  padding: 20px;
  margin-top: 20px;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  border-radius: 50%;
}
.paginator ul li a:hover {
  color: var(--main-color);
  background: #fff;
}

@keyframes move-border {
  50% {
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  }
  100% {
    background-size: 0% 100%, 100% 0%, 0% 100%, 100% 0%;
  }
}
@keyframes updown {
  0% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(0);
  }
}
.widget-plan {
  box-sizing: border-box;
  width: 96%;
  margin: 10px auto;
  background: #fff;
  background-image: linear-gradient(to bottom, transparent 10px, var(--main-color) 10px, var(--main-color) 13px, transparent 10px), linear-gradient(to left, transparent 10px, var(--main-color) 10px, var(--main-color) 13px, transparent 10px), linear-gradient(to top, transparent 10px, var(--main-color) 10px, var(--main-color) 13px, transparent 10px), linear-gradient(to right, transparent 10px, var(--main-color) 10px, var(--main-color) 13px, transparent 10px);
  background-repeat: no-repeat;
  background-position: top left, top left, right bottom, right bottom;
  background-size: 0% 100%, 100% 0%, 0% 100%, 100% 0%;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  animation-name: move-border;
  animation-duration: 5.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.widget-plan .items {
  padding: 20px;
}
.widget-plan .items .item {
  margin-bottom: 10px;
  border: 1px solid #ccc;
}
.widget-plan .items .item .title {
  font-weight: bold;
  margin-bottom: 8px;
}
.widget-plan .items .item .click-area {
  padding: 10px 20px;
  cursor: pointer;
}
.widget-plan .items .item .click-area .description {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.widget-plan .items .item .click-area > .image {
  height: 200px;
  text-align: center;
}
.widget-plan .items .item .click-area > .image > img {
  max-width: 100%;
  max-height: 100%;
}
.widget-plan .items .item .click-area .image, .widget-plan .items .item .click-area .title, .widget-plan .items .item .click-area .description, .widget-plan .items .item .click-area .menu {
  pointer-events: none;
  cursor: default;
}
.widget-plan .items .item .click-area .menu {
  margin-bottom: 8px;
}
.widget-plan .items .item .click-area .menu li {
  font-size: 0.8rem;
  margin: 0 4px 4px 0;
  color: #fff;
  padding: 3px;
  background: #ccc;
  border-radius: 5px;
  display: inline-block;
}
.widget-plan .items .item .click-area .price {
  width: 90%;
  margin: 0 auto 8px;
  padding: 10px;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.widget-plan .items .item .click-area .price .trial {
  color: #fcff7f;
}
.widget-plan .items .item .click-area .price:hover {
  cursor: pointer;
  box-shadow: none;
  transform: translate(0, 5px);
}
.widget-plan .items .item .click-area .planned-delete {
  color: #e42825;
  line-height: 1.4rem;
}
.widget-plan .items .item .click-area .limit {
  margin-bottom: 8px;
}
.widget-plan .items .item .click-area .limit .name, .widget-plan .items .item .click-area .limit .value {
  color: #e42825;
}
.widget-plan .header .title {
  display: flex;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  font-size: 1.6em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  opacity: 0;
  transition: 0.6s;
}
.widget-plan .header .title > span {
  display: block;
  transform: translateY(110%);
}
.widget-plan .header .title.active > span {
  animation: 0.4s updown linear forwards;
}
.widget-plan .header .title.active > span:nth-child(1) {
  animation-delay: 0s;
}
.widget-plan .header .title.active > span:nth-child(2) {
  animation-delay: 0.1s;
}
.widget-plan .header .title.active > span:nth-child(3) {
  animation-delay: 0.2s;
}
.widget-plan .header .title.active > span:nth-child(4) {
  animation-delay: 0.3s;
}
.widget-plan .header .title.active > span:nth-child(5) {
  animation-delay: 0.4s;
}
.widget-plan .header .title.active > span:nth-child(6) {
  animation-delay: 0.5s;
}
.widget-plan .header .title.active > span:nth-child(7) {
  animation-delay: 0.6s;
}
.widget-plan .header .title.active > span:nth-child(8) {
  animation-delay: 0.7s;
}
.widget-plan .header .title.active > span:nth-child(9) {
  animation-delay: 0.8s;
}
.widget-plan .header .description {
  padding: 20px;
  margin: 10px 0;
  font-size: 15px;
  font-weight: bold;
}

.widget-comment {
  padding: 10px;
}
.widget-comment textarea {
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  padding: 10px;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, Arial, sans-serif;
  border: 2px solid #eaeaea;
  border-radius: 6px;
}
.widget-comment .write-comment > button {
  display: block;
  padding: 16px 60px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--sub-color);
  appearance: none;
  cursor: pointer;
  background: #4676D7;
  background-color: var(--main-color);
  border: 0;
  border: solid 2px var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
}
.widget-comment .write-comment > button:hover {
  color: var(--main-color);
  background-color: var(--sub-color);
}
.widget-comment .comment .body {
  display: flex;
  flex-wrap: wrap;
}
.widget-comment .comment .body .file > img {
  max-width: 160px;
  cursor: pointer;
}
.widget-comment .comment .body .gift {
  display: block;
  margin: 10px;
}
.widget-comment .comment .body .gift .gift-image {
  position: relative;
  box-sizing: border-box;
  max-width: 160px;
  padding: 0;
  background-color: #ddd;
  border: 3px var(--main-color) solid;
}
.widget-comment .comment .body .gift .gift-image img {
  width: 100%;
}
.widget-comment .comment .body .gift::after {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 0 10px;
  line-height: 1;
  color: #fff;
  content: "Gift";
  background-color: var(--main-color);
  border-radius: 0 0 7px 7px;
}
.widget-comment .reply .to {
  display: inline;
}
.widget-comment .reply .to::after {
  margin-right: 3px;
  content: ":";
}
.widget-comment .reply .body {
  display: inline;
}
.widget-comment .reply .cancel {
  margin-left: 3px;
  line-height: 1;
  color: var(--main-color);
  cursor: pointer;
  background: none;
  border: none;
}
.widget-comment .comments {
  margin-bottom: 20px;
}
.widget-comment .comments ul {
  margin-top: 20px;
}
.widget-comment .comments ul li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  list-style-type: none;
}
.widget-comment .comments ul li .profile {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
}
.widget-comment .comments ul li .profile svg,
.widget-comment .comments ul li .profile img {
  width: 100%;
}
.widget-comment .comments ul li .profile .name {
  padding-top: 3px;
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
}
.widget-comment .comments ul li div.body {
  padding: 15px 20px;
  background-color: #f5f5f5;
  border-radius: 6px;
}
.widget-comment .comments ul li .created {
  font-size: 0.8;
  font-weight: bold;
  color: #888;
}
.widget-comment .comments ul li .reply-button {
  display: inline-block;
  margin: 8px 0 0;
}
.widget-comment .comments ul li .reply-button button {
  display: block;
  padding: 10px 40px;
  margin: 10px auto;
  line-height: 1;
  color: var(--sub-color);
  text-align: center;
  cursor: pointer;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 6px;
  transition: 0.3s;
}
.widget-comment .comments ul li .reply-button button:hover {
  color: var(--main-color);
  background-color: var(--sub-color);
}
.widget-comment .comments ul li .reply-count {
  display: inline-block;
  padding-left: 10px;
  margin: 8px 0 0;
  color: var(--main-color);
  cursor: pointer;
}
.widget-comment .comments ul li .report,
.widget-comment .comments ul li .delete-button {
  float: right;
  margin-left: 8px;
  color: var(--main-color);
  cursor: pointer;
}

.widget-privacy-poricy,
.widget-rule,
.widget-specified-commercial-transaction-law,
.widget-content {
  padding: 20px;
  margin: auto;
}
.widget-privacy-poricy .items ul,
.widget-rule .items ul,
.widget-specified-commercial-transaction-law .items ul,
.widget-content .items ul {
  list-style-type: disc;
}
.widget-privacy-poricy .items li,
.widget-rule .items li,
.widget-specified-commercial-transaction-law .items li,
.widget-content .items li {
  margin-left: 20px;
}
.widget-privacy-poricy .items .item,
.widget-rule .items .item,
.widget-specified-commercial-transaction-law .items .item,
.widget-content .items .item {
  margin-bottom: 30px;
}
.widget-privacy-poricy h1,
.widget-rule h1,
.widget-specified-commercial-transaction-law h1,
.widget-content h1 {
  padding-bottom: 17px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #eaeaea;
}
.widget-privacy-poricy p.pay-line,
.widget-rule p.pay-line,
.widget-specified-commercial-transaction-law p.pay-line,
.widget-content p.pay-line {
  padding: 26px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #fff;
  background-color: #068612;
  background-image: linear-gradient(to bottom, transparent 10px, #fff 10px, #fff 13px, transparent 10px), linear-gradient(to left, transparent 10px, #fff 10px, #fff 13px, transparent 10px), linear-gradient(to top, transparent 10px, #fff 10px, #fff 13px, transparent 10px), linear-gradient(to right, transparent 10px, #fff 10px, #fff 13px, transparent 10px);
  background-repeat: no-repeat;
  background-position: top left, top left, right bottom, right bottom;
  background-size: 0% 100%, 100% 0%, 0% 100%, 100% 0%;
  border-radius: 10px;
  animation-name: move-border;
  animation-duration: 2.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.widget-privacy-poricy dl.meta,
.widget-rule dl.meta,
.widget-specified-commercial-transaction-law dl.meta,
.widget-content dl.meta {
  margin: 15px 0;
  font-size: 0.8rem;
  font-weight: bold;
  color: #888;
}
.widget-privacy-poricy dl.meta dt,
.widget-rule dl.meta dt,
.widget-specified-commercial-transaction-law dl.meta dt,
.widget-content dl.meta dt {
  display: inline;
}
.widget-privacy-poricy dl.meta dt::after,
.widget-rule dl.meta dt::after,
.widget-specified-commercial-transaction-law dl.meta dt::after,
.widget-content dl.meta dt::after {
  content: ":";
}
.widget-privacy-poricy dl.meta dd,
.widget-rule dl.meta dd,
.widget-specified-commercial-transaction-law dl.meta dd,
.widget-content dl.meta dd {
  display: inline;
  margin-right: 8px;
}
.widget-privacy-poricy dl.meta dd ul,
.widget-rule dl.meta dd ul,
.widget-specified-commercial-transaction-law dl.meta dd ul,
.widget-content dl.meta dd ul {
  display: inline;
  margin: 0;
}
.widget-privacy-poricy dl.meta dd ul li,
.widget-rule dl.meta dd ul li,
.widget-specified-commercial-transaction-law dl.meta dd ul li,
.widget-content dl.meta dd ul li {
  display: inline;
  list-style-type: none;
}
.widget-privacy-poricy dl.meta dd ul li::after,
.widget-rule dl.meta dd ul li::after,
.widget-specified-commercial-transaction-law dl.meta dd ul li::after,
.widget-content dl.meta dd ul li::after {
  content: ",";
}
.widget-privacy-poricy dl.meta dd ul li:last-child::after,
.widget-rule dl.meta dd ul li:last-child::after,
.widget-specified-commercial-transaction-law dl.meta dd ul li:last-child::after,
.widget-content dl.meta dd ul li:last-child::after {
  content: "";
}
.widget-privacy-poricy dl dt,
.widget-rule dl dt,
.widget-specified-commercial-transaction-law dl dt,
.widget-content dl dt {
  font-weight: bold;
}
.widget-privacy-poricy dl dd,
.widget-rule dl dd,
.widget-specified-commercial-transaction-law dl dd,
.widget-content dl dd {
  margin: 0 0 10px;
}
.widget-privacy-poricy dl dd p,
.widget-rule dl dd p,
.widget-specified-commercial-transaction-law dl dd p,
.widget-content dl dd p {
  margin: 0;
}

#menu-icon.open {
  position: fixed;
}
#menu-icon.open > span:first-child {
  top: 35px;
  transform: rotate(45deg);
}
#menu-icon.open > span:nth-child(2) {
  opacity: 0;
}
#menu-icon.open > span:nth-child(3) {
  top: 35px;
  transform: rotate(-45deg);
}

#header {
  position: fixed;
  top: 50px;
  right: -100%;
  z-index: 3;
  width: 90%;
  height: 100%;
  overflow: hidden;
  font-weight: bold;
  text-align: left;
  background: #fff;
  border-radius: 20px;
  opacity: 0.9;
  transition: left 0.5s, right 0.5s;
}
#header .widget-menu img {
  max-width: 40px;
  max-height: 16px;
}
#header.open {
  position: fixed;
  right: 0;
  display: block;
  overflow-y: scroll;
}
#header.open .widget-menu {
  right: 0;
}
#header.open .widget-menu .items {
  padding-bottom: 70px;
}
#header.open .widget-menu .items .item {
  display: flex;
}
#header .items > li > a {
  display: block;
  padding: 20px 10px 20px 70px;
  color: var(--main-color);
}
#header .description {
  text-align: center;
}
#header .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

#sp-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 80px;
  background: var(--navigation-background-color);
}

#menu-icon {
  position: fixed;
  right: 0;
  z-index: 100;
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  margin-left: auto;
}
#menu-icon span {
  position: absolute;
  left: 10px;
  display: block;
  width: 60px;
  height: 10px;
  background: #fff;
  transition: all 0.5s ease;
}
#menu-icon span:nth-of-type(1) {
  top: 12.5px;
}
#menu-icon span:nth-of-type(2) {
  top: 35px;
}
#menu-icon span:nth-of-type(3) {
  bottom: 12.5px;
}

#body, #sub {
  box-sizing: border-box;
  width: 100%;
  margin: auto;
  background: var(--sub-color);
}
#body .more, #sub .more {
  padding-bottom: 20px;
}
#body .widget-button, #sub .widget-button {
  padding: 20px;
}
#body .display-title-only .texts > .title > a, #body .more > a, #body .widget-button > a, #sub .display-title-only .texts > .title > a, #sub .more > a, #sub .widget-button > a {
  display: block;
  width: 120px;
  padding: 1rem 4rem;
  margin: auto;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 100px;
  transition: 0.3s;
}
#body.search > div:first-child, #sub.search > div:first-child {
  padding-top: 0;
}
#body.search .widget-list .items > .item .image, #sub.search .widget-list .items > .item .image {
  margin-right: 20px;
}
#body .display-title-only > .items > .item > .texts > .title > a:hover, #body .more > a:hover, #body .widget-button > a:hover, #sub .display-title-only > .items > .item > .texts > .title > a:hover, #sub .more > a:hover, #sub .widget-button > a:hover {
  color: var(--main-color);
  background: #fff;
}
#body .widget-search, #sub .widget-search {
  padding: 10px 20px;
  /* crearFix */
}
#body .widget-search .items, #sub .widget-search .items {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--sub-color);
  border-left: 1px solid var(--sub-color);
}
#body .widget-search .item, #sub .widget-search .item {
  padding: 10px 0;
  border-collapse: collapse;
  border-top: 1px solid var(--sub-color);
  border-right: 1px solid var(--sub-color);
  border-bottom: 1px solid #ccc;
}
#body .widget-search .item > h2, #sub .widget-search .item > h2 {
  box-sizing: border-box;
  display: block;
  padding: 10px;
}
#body .widget-search .item > p, #sub .widget-search .item > p {
  width: 100%;
  padding: 10px;
  margin: 14px 0;
}
#body .widget-search .item > .image, #sub .widget-search .item > .image {
  float: left;
  width: 28%;
  margin-right: 20px;
}
#body .widget-search .item > .image img, #sub .widget-search .item > .image img {
  width: 100%;
}
#body .widget-search .item::after, #sub .widget-search .item::after {
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  visibility: hidden;
  content: ".";
}
#body .widget-search dl.meta, #sub .widget-search dl.meta {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: 11px;
}
#body .widget-search dl.meta dt, #sub .widget-search dl.meta dt {
  padding: 2px 3px;
  margin: 0 0 3px;
  color: #fff;
  background-color: var(--main-color, #f0f0f0);
  border: 1px solid var(--main-color, #f0f0f0);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#body .widget-search dl.meta dt:first-child, #sub .widget-search dl.meta dt:first-child {
  margin-left: 0;
}
#body .widget-search dl.meta dd, #sub .widget-search dl.meta dd {
  padding: 2px 3px;
  margin: 0 0 3px;
  margin-right: 10px;
  color: #535151;
  border: 1px solid var(--main-color, #f0f0f0);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#body .widget-sentence, #sub .widget-sentence {
  padding: 10px 20px 20px;
}
#body .widget-sentence > .title, #body .widget-sentence > .description, #sub .widget-sentence > .title, #sub .widget-sentence > .description {
  z-index: 0 !important;
  font-size: var(--theme-font-size-text);
  font-weight: bold;
  color: var(--visual-title-color);
}
#body .widget-sentence:first-of-type, #sub .widget-sentence:first-of-type {
  position: relative;
}
#body .widget-sentence:first-of-type .image, #body .widget-sentence:first-of-type .image > img, #sub .widget-sentence:first-of-type .image, #sub .widget-sentence:first-of-type .image > img {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 1440px;
  object-fit: cover;
}
#body .widget-list, #sub .widget-list {
  padding: 10px 20px;
}
#body .widget-list h2, #sub .widget-list h2 {
  text-align: center;
}
#body .widget-list a, #sub .widget-list a {
  transition: 0.3s;
}
#body .widget-list a:hover, #sub .widget-list a:hover {
  color: var(--main-color);
}
#body .widget-list .created, #sub .widget-list .created {
  display: inline-block;
  margin-bottom: 5px;
}
#body .widget-list .title, #sub .widget-list .title {
  margin-bottom: 5px !important;
}
#body .widget-list .header > .description > p, #sub .widget-list .header > .description > p {
  margin: 0 0 10px;
}
#body .widget-list .header > .title, #sub .widget-list .header > .title {
  font-size: 19px;
  font-weight: bold;
}
#body .widget-list .items, #sub .widget-list .items {
  margin-bottom: 20px;
}
#body .widget-list .items .item, #sub .widget-list .items .item {
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 20px;
}
#body .widget-list .items .item .texts, #sub .widget-list .items .item .texts {
  line-height: 140%;
  text-align: left;
}
#body .widget-list .items .item .texts .title, #sub .widget-list .items .item .texts .title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-weight: bold;
  color: var(--main-color);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
#body .widget-list .items .item .texts .description, #sub .widget-list .items .item .texts .description {
  margin: 30px 0 0;
}
#body .widget-list .items .item .texts .description p, #sub .widget-list .items .item .texts .description p {
  margin: 0;
}
#body .widget-list .items .item .image, #sub .widget-list .items .item .image {
  border-radius: 20px;
}
#body .widget-list .items .item .image > a, #sub .widget-list .items .item .image > a {
  overflow: hidden;
  transition: 0.3s;
}
#body .widget-list .items .item .image > a > img:hover, #sub .widget-list .items .item .image > a > img:hover {
  opacity: 0.8;
  transition: 0.3s;
  transform: scale(1.1);
}

#footer-wrapper {
  position: relative;
  background: var(--main-color);
}
#footer-wrapper > canvas {
  position: absolute;
  top: 0;
}

#footer {
  box-sizing: border-box;
  padding: 80px 20px 0;
  background: var(--main-color);
}
#footer .widget-menu {
  width: 100%;
  margin: auto;
}
#footer .widget-menu .header {
  display: flex;
  color: #fff;
}
#footer .widget-menu .header .description {
  line-height: 40px;
}
#footer .widget-menu .header .title {
  font-size: 1.6rem;
  font-weight: bold;
}
#footer .widget-menu .items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}
#footer .widget-menu .items li {
  width: 50%;
  list-style-type: none;
}
#footer .widget-menu .items li a {
  display: block;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}
#footer .widget-menu .items li a:hover {
  opacity: 0.3;
}
#footer .widget-menu .items li a::before {
  width: 20px;
  margin-right: 10px;
  content: "";
  border-top: 1px solid #fff;
}

ul.meta {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 10px 20px;
  margin: 0 auto 40px;
}
ul.meta li {
  width: 50%;
  list-style-type: none;
}
ul.meta li a {
  display: block;
  padding: 10px;
  color: #fff;
  transition: 0.3s;
}
ul.meta li a:hover {
  opacity: 0.3;
}

.copyright {
  box-sizing: border-box;
  padding: 20px;
  margin: auto;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  background: var(--main-color);
}

.powerd-by {
  box-sizing: border-box;
  padding: 20px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
  background: var(--main-color);
}

.p-c-wrapper-wrapper {
  padding-bottom: 80px;
  background: var(--main-color);
}

@media screen and (width >= 600px) {
  .p-c-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    margin: 0 auto;
  }
  .p-c-wrapper .powerd-by {
    margin: auto;
  }
  .copyright {
    width: 46%;
    text-align: left;
  }
  .powerd-by {
    width: 46%;
    text-align: right;
  }
  #logo.logo-center a {
    width: 200px;
  }
  #body .widget-sentence, #sub .widget-sentence {
    padding: 10px 40px;
  }
  #body .widget-list, #body .widget-search, #sub .widget-list, #sub .widget-search {
    padding: 10px 40px;
  }
  #body .widget-list dl.meta dt:first-child, #body .widget-search dl.meta dt:first-child, #sub .widget-list dl.meta dt:first-child, #sub .widget-search dl.meta dt:first-child {
    margin-left: 390px;
  }
  #body .widget-list .items .item .image, #body .widget-search .items .item .image, #sub .widget-list .items .item .image, #sub .widget-search .items .item .image {
    margin-right: 20px;
    margin-bottom: 46px;
  }
  #body .widget-list .items .item .texts, #body .widget-search .items .item .texts, #sub .widget-list .items .item .texts, #sub .widget-search .items .item .texts {
    padding: 10px;
  }
  #body .widget-list .items .item .texts .description, #body .widget-search .items .item .texts .description, #sub .widget-list .items .item .texts .description, #sub .widget-search .items .item .texts .description {
    margin-top: 0;
  }
  #body .widget-list .header > .title, #body .widget-search .header > .title, #sub .widget-list .header > .title, #sub .widget-search .header > .title {
    font-size: 20px;
  }
  ul.meta {
    justify-content: center;
    width: 100%;
    padding: 20px;
  }
  ul.meta li {
    width: auto;
  }
  ul.meta li:not(:last-child) {
    margin-right: 20px;
  }
  #footer {
    padding: 60px 20px;
  }
  #footer .widget-menu > .items {
    display: flex;
    justify-content: center;
  }
  #footer .widget-menu > .items li {
    width: auto;
    margin: 20px;
  }
  #footer .widget-menu > .items li > a {
    display: flex;
  }
  #footer .widget-menu .header {
    justify-content: center;
  }
  .widget-comment .comments ul li {
    width: 100%;
    padding-left: 100px;
  }
  .widget-comment .comments ul .profile {
    width: 80px;
  }
  .widget-plan {
    box-sizing: border-box;
    width: 96%;
    padding: 30px;
    margin: 20px auto;
    border-radius: 10px;
  }
  .widget-plan .items {
    display: flex;
    flex-wrap: wrap;
  }
  .widget-plan .items > .item {
    box-sizing: border-box;
    width: 33%;
    padding: 5px;
  }
  .widget-plan .items > .item .texts {
    padding: 30px;
  }
}
@media screen and (width >= 1300px) {
  #sp-header {
    display: none;
  }
  #login-bar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 10px;
    margin: 0;
    background: none;
  }
  #login-bar a {
    padding: 0;
  }
  #login-bar ul {
    display: flex;
  }
  #login-bar ul li {
    margin-right: 20px;
  }
  #login-bar ul li:not(#login-bar ul li:last-child) {
    border-bottom: none;
  }
  #header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    width: 100%;
    height: 50px;
    padding: 10px;
    background: none;
    border-radius: 0;
  }
  #header .description {
    text-align: center;
  }
  #header.header-background-active {
    background: var(--navigation-background-color);
  }
  #header .header .title {
    margin-right: 10px;
  }
  #header > .widget-menu {
    display: flex;
  }
  #header > .widget-menu .header {
    display: flex;
  }
  #header > .widget-menu .header .title, #header > .widget-menu .header .description {
    margin-right: 10px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  #header .items {
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
    text-align: center;
  }
  #header .items li {
    margin-left: 20px;
    list-style-type: none;
  }
  #header .items li a {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--navigation-color);
    text-decoration: none;
  }
  #header .items li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    content: "";
    background: var(--navigation-color);
    transition: all 0.3s ease 0s;
  }
  #header .items li a:hover {
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease 0s;
  }
  #header .items li a:hover::after {
    width: 100%;
  }
  #menu-icon {
    display: none;
  }
  .p-c-wrapper {
    display: flex;
    justify-content: center;
    width: 1100px;
    margin: 0 auto;
  }
  .p-c-wrapper ul.meta {
    width: auto;
    margin: 0 60px 0 0;
  }
  .p-c-wrapper .copyright {
    width: auto;
    margin: auto 0;
  }
  .p-c-wrapper .powerd-by {
    width: auto;
    margin: auto 0;
  }
  #body .widget-plan, #body .widget-list, #sub .widget-plan, #sub .widget-list {
    width: 950px;
  }
  #body .widget-privacy-poricy,
  #body .widget-rule,
  #body .widget-specified-commercial-transaction-law,
  #body .widget-content {
    width: 950px;
    padding: 80px 0 20px;
    margin-top: 0;
  }
  ul.meta {
    justify-content: right;
  }
  #logo > a {
    width: 180px;
  }
  #logo > a > img {
    width: 100%;
  }
  .widget-list, .widget-search, .widget-sentence:not(:first-of-type) {
    width: 950px;
    margin: 0 auto;
  }
  .widget-comment {
    width: 950px;
    margin: 0 auto;
    padding: 40px 0;
  }
  #body.search {
    padding: 140px 0 20px;
  }
  #body.search > div:first-child {
    padding-top: 0;
  }
}

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