@charset "UTF-8";
@import url("https://cloud.typography.com/7189296/6381212/css/fonts.css");
@import url("https://cloud.typography.com/7189296/6381212/css/fonts.css");
@keyframes scrollLine {
  0% {
    top: auto;
    bottom: 0;
    height: 100%;
  }
  20% {
    top: auto;
    bottom: 0;
    height: 100%;
  }
  60% {
    top: auto;
    bottom: 0;
    height: 0;
  }
  60.1% {
    top: 0;
    bottom: auto;
    height: 0;
  }
  90% {
    top: 0;
    bottom: auto;
    height: 100%;
  }
  100% {
    top: auto;
    bottom: 0;
    height: 100%;
  }
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

/*base*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    sans-serif;
  font-weight: bold;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #242424;
}

body.is-no-scroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: #242424;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  cursor: pointer;
  transition: all 0.3s;
}

::-webkit-input-placeholder {
  color: #bcbec0;
}

:-ms-input-placeholder {
  color: #bcbec0;
}

::-ms-input-placeholder {
  color: #bcbec0;
}

::placeholder {
  color: #bcbec0;
}

/* Layouts */
.l-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100px;
}

@media all and (max-width: 1400px) {
  .l-wrapper {
    padding-top: 100px;
  }
}

@media all and (max-width: 1199px) {
  .l-wrapper {
    padding-top: 75px;
  }
}

@media all and (max-width: 991px) {
  .l-wrapper {
    padding-top: 75px;
  }
}

@media all and (max-width: 767px) {
  .l-wrapper {
    padding-top: 55px;
  }
}

@media all and (max-width: 575px) {
  .l-wrapper {
    padding-top: 55px;
  }
}

@media all and (min-width: 576px) {
  .l-wrapper {
    position: relative;
  }
}

@media all and (min-width: 768px) {
  .l-wrapper {
    position: relative;
  }
}

@media all and (min-width: 992px) {
  .l-wrapper {
    position: relative;
  }
}

@media all and (min-width: 1200px) {
  .l-wrapper {
    position: relative;
  }
}

@media all and (min-width: 1400px) {
  .l-wrapper {
    position: relative;
  }
}

.l-frame {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 767px) {
  .l-frame.is-pd,
  .l-frame.is-pd-sm {
    max-width: 1440px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-frame.is-pd.is-content,
  .l-frame.is-pd-sm.is-content {
    max-width: 660px;
  }
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  .l-frame.is-pd,
  .l-frame.is-pd-lg {
    max-width: 1460px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .l-frame.is-pd.is-content,
  .l-frame.is-pd-lg.is-content {
    max-width: 680px;
  }
}

@media all and (min-width: 1200px) {
  .l-frame.is-pd,
  .l-frame.is-pd-xl {
    max-width: 1480px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .l-frame.is-pd.is-content,
  .l-frame.is-pd-xl.is-content {
    max-width: 700px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  transition: all 0.3s;
  transform: translateY(0);
}

.logged-in .l-header {
  margin-top: 32px;
}

@media all and (max-width: 767px) {
  .logged-in .l-header {
    margin-top: 46px;
  }
}

.l-header.is-hidden {
  transform: translateY(-100%);
}

.l-header .header-inner {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header .header-content {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 160px);
}

.l-header .logo {
  width: 160px;
  height: auto;
}

.l-header .category-list {
  display: flex;
  align-items: center;
  margin-right: 25px;
}

.l-header .category-list a {
  display: block;
  text-align: center;
  margin: 0 15px;
}

.l-header .category-list .slug {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.l-header .category-list .cat-name {
  display: block;
  font-size: 10px;
}

.l-header .header-button {
  display: none;
}

@media all and (max-width: 1199px) {
  .l-header .header-inner {
    height: 75px;
  }
  .l-header .header-content {
    width: calc(100% - 140px);
  }
  .l-header .logo {
    width: 120px;
  }
  .l-header .category-list {
    margin-right: 20px;
  }
  .l-header .category-list a {
    margin: 0 10px;
  }
  .l-header .category-list .slug {
    font-size: 15px;
  }
}

@media all and (max-width: 991px) {
  .l-header .category-list {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .l-header .header-inner {
    height: 55px;
  }
  .l-header .header-button {
    display: block;
    padding: 15px 20px;
  }
  .l-header .header-button i {
    font-size: 16px;
  }
  .l-header .header-content {
    display: none;
  }
  .l-header .header-content.is-active {
    display: block;
    opacity: 1;
    animation-duration: 0.3s;
    animation-name: fade-in;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 20px 15px;
    background: #fff;
  }
  .l-header .logo {
    width: 100px;
  }
}

@media all and (min-width: 768px) {
  .l-header .logo:hover {
    opacity: 0.7;
  }
  .l-header .category-list a:hover {
    color: #ee3281;
  }
}

.l-header-side-menu {
  display: none;
}

.l-header-side-menu.is-active {
  display: block;
  opacity: 1;
  position: fixed;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  animation-duration: 0.3s;
  animation-name: fade-in;
}

.logged-in .l-header-side-menu.is-active {
  margin-top: 32px;
}

@media all and (max-width: 767px) {
  .logged-in .l-header-side-menu.is-active {
    margin-top: 46px;
  }
}

.l-header-side-menu.is-active .bg {
  position: fixed;
  top: 55px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.logged-in .l-header-side-menu.is-active .bg {
  margin-top: 32px;
}

@media all and (max-width: 767px) {
  .logged-in .l-header-side-menu.is-active .bg {
    margin-top: 46px;
  }
}

.l-header-side-menu.is-active .wrap {
  position: fixed;
  top: 55px;
  width: 70%;
  min-height: 100%;
}

.logged-in .l-header-side-menu.is-active .wrap {
  margin-top: 32px;
}

@media all and (max-width: 767px) {
  .logged-in .l-header-side-menu.is-active .wrap {
    margin-top: 46px;
  }
}

.l-header-side-menu.is-active .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #fff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.l-header-side-menu.is-active .title {
  font-size: 14px;
  background: #f9f9f9;
  padding: 10px 20px;
  margin-bottom: 5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.l-header-side-menu.is-active ul {
  margin-bottom: 10px;
}

.l-header-side-menu.is-active ul a {
  display: block;
  font-size: 13px;
  padding: 10px 20px;
  letter-spacing: 0.05em;
}

.l-footer {
  background: #f9f9f9;
}

.l-footer .navi-small-list li {
  margin-top: 10px;
}

.l-footer .navi-small-list a {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.l-footer .navi {
  margin-bottom: 40px;
}

.l-footer .navi .title {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-footer .navi a {
  letter-spacing: 0.05em;
}

.l-footer .category-list .slug {
  display: inline-block;
  width: 130px;
  font-size: 16px;
}

.l-footer .category-list .cat-name {
  font-size: 12px;
}

.l-footer .copy {
  letter-spacing: 0.05em;
  font-weight: 500;
}

.l-footer .logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-footer .logo-inner .logo {
  display: block;
  width: 100%;
}

.l-footer .logo-inner .logo img {
  width: 100%;
  height: auto;
}

.l-footer .logo-inner .sns-wrap {
  margin-top: 16px;
  width: 100%;
}

.l-footer .logo-inner .sns-wrap .sns-list {
  justify-content: center;
  gap: 12px;
}

.l-footer .navi-wrap {
  display: flex;
  flex-direction: column;
}

.l-footer .navi-small-list {
  position: static;
}

.l-footer .footer-copy {
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

@media all and (max-width: 767px) {
  .l-footer {
    padding: 40px 0;
    text-align: center;
  }
  .l-footer .sns-list li a {
    width: 35px;
    height: 35px;
  }
  .l-footer .sns-list li i {
    font-size: 16px;
    line-height: 35px;
  }
  .l-footer .logo-inner {
    width: 160px;
    margin: 0 auto 40px;
    align-items: center;
  }
  .l-footer .logo-inner .sns-wrap .sns-list {
    gap: 16px;
  }
  .l-footer .navi .title {
    font-size: 20px;
    line-height: 50px;
    border-bottom: 1px solid #bcbec0;
  }
  .l-footer .navi li {
    font-size: 15px;
  }
  .l-footer .navi li .slug {
    font-size: 16px;
    margin-right: 30px;
    width: auto;
  }
  .l-footer .navi li .cat-name {
    font-size: 14px;
  }
  .l-footer .navi a {
    display: block;
    width: 100%;
    line-height: 50px;
    border-bottom: 1px solid #bcbec0;
  }
  .l-footer .copy {
    font-size: 12px;
  }
  .l-footer .navi-small-list {
    margin-bottom: 40px;
  }
  .l-footer .navi-small-list a {
    font-size: 12px;
  }
}

@media all and (min-width: 768px) {
  .l-footer {
    padding: 100px 0;
  }
  .l-footer .logo-wrap {
    width: 30%;
  }
  .l-footer .logo-wrap .logo:hover {
    opacity: 0.7;
  }
  .l-footer .logo-inner {
    width: 220px;
    align-items: flex-start;
  }
  .l-footer .logo-inner .sns-wrap {
    margin-top: 24px;
  }
  .l-footer .logo-inner .sns-wrap .sns-list {
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }
  .l-footer .sns-list li a {
    width: 40px;
    height: 40px;
  }
  .l-footer .sns-list li i {
    font-size: 20px;
    line-height: 40px;
  }
  .l-footer .navi .title {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .l-footer .navi ul {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer .navi li {
    width: 50%;
    margin-bottom: 20px;
  }
  .l-footer .navi a:hover {
    color: #ee3281;
  }
  .l-footer .navi-small-list a:hover {
    color: #ee3281;
  }
  .l-footer .footer-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
  }
  .l-footer .navi-small-list {
    margin-top: auto;
  }
  .l-footer .navi-small-list a {
    font-size: 13px;
  }
  .l-footer .navi-wrap {
    width: 70%;
    padding-left: 60px;
    border-left: solid 1px #242424;
    display: flex;
    flex-direction: column;
  }
  .l-footer .footer-copy {
    margin-top: auto;
    text-align: right;
  }
  .l-footer .copy {
    font-size: 10px;
  }
}

.l-sect.is-white {
  background: #fff;
}

@media all and (max-width: 767px) {
  .l-sect.is-white-sm {
    background: #fff;
  }
  .l-sect.is-pd,
  .l-sect.is-pd-sm,
  .l-sect.is-pdt,
  .l-sect.is-pdt-sm {
    padding-top: 40px;
  }
  .l-sect.is-pd,
  .l-sect.is-pd-sm,
  .l-sect.is-pdb,
  .l-sect.is-pdb-sm {
    padding-bottom: 40px;
  }
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  .l-sect.is-white-lg {
    background: #fff;
  }
  .l-sect.is-pd,
  .l-sect.is-pd-lg,
  .l-sect.is-pdt,
  .l-sect.is-pdt-lg {
    padding-top: 60px;
  }
  .l-sect.is-pd,
  .l-sect.is-pd-lg,
  .l-sect.is-pdb,
  .l-sect.is-pdb-lg {
    padding-bottom: 60px;
  }
}

@media all and (min-width: 1200px) {
  .l-sect.is-white-xl {
    background: #fff;
  }
  .l-sect.is-pd,
  .l-sect.is-pd-xl,
  .l-sect.is-pdt,
  .l-sect.is-pdt-xl {
    padding-top: 100px;
  }
  .l-sect.is-pd,
  .l-sect.is-pd-xl,
  .l-sect.is-pdb,
  .l-sect.is-pdb-xl {
    padding-bottom: 100px;
  }
}

@media all and (max-width: 767px) {
  .l-sect-small {
    margin-bottom: 10px;
  }
}

@media all and (min-width: 768px) {
  .l-sect-small {
    margin-bottom: 40px;
  }
  .l-sect-small.is-lg {
    margin-bottom: 60px;
  }
}

@media all and (max-width: 767px) {
  .l-side {
    margin-bottom: 10px;
  }
}

@media all and (min-width: 768px) {
  .l-side {
    margin-bottom: 40px;
  }
}

.l-content {
  position: relative;
  background: #f9f9f9;
}

.l-content .breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.mce-content-body,
.l-article {
  font-weight: 500;
}

.mce-content-body h2,
.mce-content-body h3,
.mce-content-body h4,
.l-article h2,
.l-article h3,
.l-article h4 {
  margin: 2em 0 1em;
  line-height: 1.8em;
  font-weight: bold;
}

.mce-content-body h2,
.l-article h2 {
  position: relative;
  padding-left: 1em;
}

.mce-content-body h2:before,
.l-article h2:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0.4em;
  background: #ee3281;
  border-radius: 2px;
  content: "";
}

.mce-content-body h3,
.l-article h3 {
  padding-bottom: 0.2em;
  border-bottom: 1px solid #ee3281;
}

.mce-content-body p,
.l-article p {
  line-height: 1.8em;
  margin: 1em 0;
}

.mce-content-body ul li,
.mce-content-body ol li,
.l-article ul li,
.l-article ol li {
  margin: 0.5em 0;
  line-height: 1.8em;
}

.mce-content-body ul li,
.l-article ul li {
  position: relative;
  padding-left: 1em;
}

.mce-content-body ul li:before,
.l-article ul li:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  content: "・";
  color: #ee3281;
  font-weight: bold;
  text-align: center;
}

.mce-content-body ol,
.l-article ol {
  list-style: decimal;
  padding-left: 1.5em;
}

.mce-content-body em,
.l-article em {
  font-style: italic;
}

.mce-content-body .marker-yellow,
.l-article .marker-yellow {
  background: linear-gradient(transparent 60%, #fef381 40%);
}

.mce-content-body b,
.mce-content-body strong,
.l-article b,
.l-article strong {
  font-weight: bold;
}

.mce-content-body a:not([class]),
.l-article a:not([class]) {
  color: #ee3281;
}

.mce-content-body blockquote,
.l-article blockquote {
  position: relative;
  background: #f9f9f9;
}

.mce-content-body blockquote cite,
.l-article blockquote cite {
  display: block;
  width: 100%;
  font-size: 80%;
  font-style: italic;
  text-align: right;
}

.mce-content-body blockquote:before,
.l-article blockquote:before {
  position: absolute;
  color: #bcbec0;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.mce-content-body table,
.l-article table {
  width: 100%;
  margin: 1em 0;
}

.mce-content-body table th,
.l-article table th {
  background: #bcbec0;
  border: solid 1px #242424;
}

.mce-content-body table td,
.l-article table td {
  border: solid 1px #242424;
}

.mce-content-body .movie,
.l-article .movie {
  margin: 1em 0;
  position: relative;
  width: 100%;
  padding-bottom: 56.3%;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}

.mce-content-body .movie.is-square,
.l-article .movie.is-square {
  padding-bottom: 100%;
}

.mce-content-body .movie iframe,
.l-article .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mce-content-body img,
.l-article img {
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}

.mce-content-body iframe,
.l-article iframe {
  max-width: 100%;
}

@media all and (max-width: 767px) {
  .mce-content-body,
  .l-article {
    margin: 25px 0 40px;
  }
  .mce-content-body h2,
  .l-article h2 {
    font-size: 18px;
  }
  .mce-content-body h3,
  .l-article h3 {
    font-size: 16px;
  }
  .mce-content-body h4,
  .l-article h4 {
    font-size: 15px;
  }
  .mce-content-body p,
  .mce-content-body li,
  .l-article p,
  .l-article li {
    font-size: 14px;
  }
  .mce-content-body blockquote,
  .l-article blockquote {
    border-radius: 10px;
    padding: 10px 20px 20px 60px;
  }
  .mce-content-body blockquote:before,
  .l-article blockquote:before {
    top: 20px;
    left: 20px;
    font-size: 25px;
  }
  .mce-content-body table th,
  .mce-content-body table td,
  .l-article table th,
  .l-article table td {
    padding: 10px;
  }
}

@media all and (min-width: 768px) {
  .mce-content-body,
  .l-article {
    margin: 30px 0 60px;
  }
  .mce-content-body h2,
  .l-article h2 {
    font-size: 22px;
  }
  .mce-content-body h3,
  .l-article h3 {
    font-size: 20px;
  }
  .mce-content-body h4,
  .l-article h4 {
    font-size: 18px;
  }
  .mce-content-body p,
  .mce-content-body li,
  .l-article p,
  .l-article li {
    font-size: 16px;
  }
  .mce-content-body blockquote,
  .l-article blockquote {
    border-radius: 10px;
    padding: 40px 20px 20px 70px;
  }
  .mce-content-body blockquote:before,
  .l-article blockquote:before {
    top: 25px;
    left: 25px;
    font-size: 30px;
  }
  .mce-content-body a:not([class]):hover,
  .l-article a:not([class]):hover {
    opacity: 0.7;
  }
  .mce-content-body table th,
  .mce-content-body table td,
  .l-article table th,
  .l-article table td {
    padding: 20px;
  }
}

/* Components */
.c-fv-video {
  position: relative;
}

.c-fv-video .video-container {
  position: relative;
}

.c-fv-video .video-container:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/common/bg_mask.svg);
  background-size: 2px;
  opacity: 0.1;
  content: "";
}

.c-fv-video video {
  width: 100%;
  height: auto;
}

.c-fv-video .scroll-down {
  display: none;
}

@media all and (min-width: 768px) {
  .c-fv-video .video-container:after {
    background-size: 4px;
  }
  .c-fv-video .scroll-down {
    display: block;
    position: absolute;
    bottom: 40px;
    right: 60px;
    padding-bottom: calc(15vmin + 20px);
  }
  .c-fv-video .scroll-down .text {
    transform: rotate(90deg);
    transform-origin: 100% 100%;
    color: #fff;
    font-family: "Gotham A", "Gotham B", sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 20px;
  }
  .c-fv-video .scroll-down .line {
    display: block;
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 2px;
    height: 15vmin;
    background: #ee3281;
    content: "";
  }
  .c-fv-video .scroll-down .line:after {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 2px;
    height: 0;
    background: #fff;
    animation: scrollLine 2s ease-in-out infinite normal;
    content: "";
  }
}

@media all and (min-width: 992px) {
  .c-fv-video .scroll-down {
    bottom: 20vmin;
    padding-bottom: calc(20vmin + 20px);
  }
  .c-fv-video .scroll-down .line {
    height: 20vmin;
  }
}

@media all and (min-width: 1400px) {
  .c-fv-video .scroll-down {
    bottom: 25vmin;
    padding-bottom: calc(25vmin + 20px);
  }
  .c-fv-video .scroll-down .line {
    height: 25vmin;
  }
}

.mce-content-body .c-bg-box,
.c-bg-box {
  margin: 2em 0;
  background: #f9f9f9;
  border-radius: 10px;
}

@media all and (min-width: 768px) {
  .mce-content-body .c-bg-box,
  .c-bg-box {
    padding: 30px;
  }
}

@media all and (max-width: 767px) {
  .mce-content-body .c-bg-box,
  .c-bg-box {
    padding: 20px;
  }
}

.mce-content-body .c-border-box,
.c-border-box {
  margin: 2em 0;
  border: solid 1px #242424;
  border-radius: 10px;
}

.mce-content-body .c-border-box.is-gray,
.c-border-box.is-gray {
  background: #f9f9f9;
}

@media all and (min-width: 768px) {
  .mce-content-body .c-border-box,
  .c-border-box {
    padding: 30px;
  }
}

@media all and (max-width: 767px) {
  .mce-content-body .c-border-box,
  .c-border-box {
    padding: 20px;
  }
}

.c-category-list li a .slug {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.c-category-list li a .cat-name {
  letter-spacing: 0.05em;
}

.c-header-cat-navi {
  background: #f1f1f1;
}

.c-header-cat-navi ul {
  display: flex;
  justify-content: space-around;
}

.c-header-cat-navi a {
  display: block;
  font-size: 10px;
  padding: 10px 0;
}

.c-top-banner {
  position: relative;
  width: 100%;
}

.c-top-banner a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.c-top-banner a img {
  width: 100%;
}

@media all and (min-width: 768px) {
  .c-top-banner {
    height: 0;
    padding-bottom: 62.5%;
  }
  .c-top-banner a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }
  .c-top-banner a:hover {
    opacity: 0.7;
  }
}

.c-bottom-banner {
  background: #fff;
  width: 100%;
  height: auto;
}

.c-bottom-banner a {
  display: block;
}

.c-bottom-banner a img {
  width: 100%;
}

@media all and (min-width: 768px) {
  .c-bottom-banner a:hover {
    opacity: 0.7;
  }
}

.c-searchform {
  position: relative;
  border-radius: 9999px;
  border: solid 1px #242424;
}

.c-searchform .searchfield {
  display: block;
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 20px;
}

.c-searchform .searchsubmit {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 20px;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media all and (min-width: 1200px) {
  .c-searchform {
    width: 260px;
  }
}

@media all and (max-width: 767px) {
  .c-searchform {
    width: 100%;
  }
}

.c-sns-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.c-sns-list a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #242424;
  text-align: center;
}

.c-sns-list i {
  font-size: 30px;
  color: #fff;
  line-height: 60px;
}

@media all and (min-width: 768px) {
  .c-sns-list a:hover {
    opacity: 0.7;
  }
}

.c-share-list {
  display: flex;
  justify-content: space-between;
}

.c-share-list i,
.c-share-list img {
  vertical-align: middle;
  color: #242424;
}

.c-share-list a {
  display: block;
  width: 100%;
  border-radius: 5px;
  border: solid 1px #242424;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .c-share-list li {
    width: calc(100% / 4 - 3.75px);
  }
  .c-share-list a {
    height: 40px;
  }
  .c-share-list i {
    font-size: 20px;
  }
  .c-share-list img {
    width: 18px;
  }
}

@media all and (min-width: 768px) {
  .c-share-list li {
    width: calc(100% / 4 - 7.5px);
  }
  .c-share-list a {
    height: 60px;
  }
  .c-share-list a:hover {
    opacity: 0.7;
  }
  .c-share-list i {
    font-size: 30px;
  }
  .c-share-list img {
    width: 28px;
  }
}

.c-side-sns ul {
  max-width: 300px;
  margin: auto;
}

.c-slider {
  position: relative;
}

.c-slider .swiper-pagination {
  bottom: 0;
}

.c-slider .swiper-pagination-bullet-active {
  background: #ee3281;
}

@media all and (max-width: 767px) {
  .c-slider {
    padding-bottom: 30px;
  }
}

@media all and (min-width: 768px) {
  .c-slider {
    padding-bottom: 60px;
  }
  .c-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }
}

.c-pickup {
  position: relative;
  width: 100%;
}

.c-pickup .pickup-title {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  z-index: 10;
  text-shadow: 1px 1px #fff;
}

.c-pickup .slider {
  overflow: hidden;
  padding-bottom: 0;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.c-pickup .swiper-pagination {
  bottom: 10px;
}

.c-pickup .title {
  margin: 0.5em 0;
}

@media all and (max-width: 767px) {
  .c-pickup {
    padding-bottom: 40px;
  }
  .c-pickup .pickup-title {
    width: 100%;
    font-size: 36px;
    text-align: center;
    transform: translateY(-80%);
  }
  .c-pickup .content-wrap {
    padding: 12px 20px;
  }
}

@media all and (min-width: 768px) {
  .c-pickup {
    height: 100%;
    border-radius: 15px;
  }
  .c-pickup .pickup-title {
    left: 0;
    font-size: 55px;
    letter-spacing: 0.05em;
    transform: translate(-20px, -80%);
  }
  .c-pickup .slider {
    border-radius: 15px;
  }
  .c-pickup .slide {
    display: flex;
  }
  .c-pickup .thumbnails {
    width: 60%;
  }
  .c-pickup .content-wrap {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
  }
}

.c-white-frame {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.c-white-frame.is-pd {
  padding-left: 20px;
  padding-right: 20px;
}

@media all and (max-width: 767px) {
  .c-white-frame.is-no-mobile {
    background: none;
  }
}

@media all and (min-width: 768px) {
  .c-white-frame {
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 15px;
  }
  .c-white-frame.is-pd {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.c-main-title {
  margin-bottom: 30px;
  text-align: center;
}

.c-main-title .main {
  display: block;
  font-size: 24px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1em;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

.c-main-title .main.is-no-upper {
  text-transform: initial;
}

.c-main-title .sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.c-main-title .sub:before {
  margin-right: 0.5em;
  content: "-";
}

.c-main-title .sub:after {
  margin-left: 0.5em;
  content: "-";
}

@media all and (max-width: 767px) {
  .c-main-title.is-one-line-sp {
    text-align: left;
  }
  .c-main-title.is-one-line-sp .main {
    display: inline-block;
  }
  .c-main-title.is-one-line-sp .sub {
    display: inline-block;
    margin-left: 10px;
  }
}

@media all and (min-width: 768px) {
  .c-main-title {
    margin-bottom: 40px;
  }
  .c-main-title .main {
    font-size: 30px;
  }
  .c-main-title .sub {
    font-size: 15px;
  }
  .c-main-title.is-lg .main {
    font-size: 40px;
  }
  .c-main-title.is-lg .sub {
    font-size: 16px;
  }
  .c-main-title.is-one-line-pc {
    text-align: left;
  }
  .c-main-title.is-one-line-pc .main {
    display: inline-block;
  }
  .c-main-title.is-one-line-pc .sub {
    display: inline-block;
    margin-left: 20px;
  }
}

@media all and (min-width: 1200px) {
  .c-main-title .main {
    font-size: 40px;
  }
  .c-main-title .sub {
    font-size: 18px;
  }
  .c-main-title.is-lg {
    margin-bottom: 60px;
  }
  .c-main-title.is-lg .main {
    font-size: 46px;
  }
  .c-main-title.is-lg .sub {
    font-size: 20px;
  }
}

.c-titles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.c-titles .main {
  letter-spacing: 0.05em;
  line-height: 1.5em;
}

.c-titles .sub {
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-titles .en {
  letter-spacing: 0.1em;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

@media all and (max-width: 767px) {
  .c-titles {
    margin-bottom: 20px;
  }
  .c-titles .main {
    font-size: 14px;
  }
  .c-titles .main span {
    font-size: 18px;
  }
  .c-titles .sub .big {
    font-size: 20px;
  }
  .c-titles .sub .small {
    font-size: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-titles {
    margin-bottom: 40px;
  }
  .c-titles .main {
    font-size: 32px;
  }
  .c-titles .main span {
    font-size: 36px;
  }
  .c-titles .sub .big {
    font-size: 40px;
  }
  .c-titles .sub .small {
    font-size: 24px;
  }
}

.c-list-title {
  display: block;
  font-size: 14px;
  line-height: 1.5em;
}

@media all and (min-width: 768px) {
  .c-list-title:hover {
    color: #ee3281;
  }
  .c-list-title.is-sm {
    font-size: 16px;
  }
  .c-list-title.is-md {
    font-size: 18px;
  }
  .c-list-title.is-lg {
    font-size: 20px;
  }
  .c-list-title.is-xl {
    font-size: 24px;
  }
}

@media all and (min-width: 1200px) {
  .c-list-title.is-xs {
    font-size: 16px;
  }
  .c-list-title.is-sm {
    font-size: 18px;
  }
  .c-list-title.is-md {
    font-size: 20px;
  }
  .c-list-title.is-lg {
    font-size: 22px;
  }
  .c-list-title.is-xl {
    font-size: 26px;
  }
}

.c-single-title {
  line-height: 1.6em;
}

@media all and (max-width: 768px) {
  .c-single-title {
    font-size: 20px;
  }
}

@media all and (min-width: 768px) {
  .c-single-title {
    font-size: 26px;
  }
}

@media all and (max-width: 768px) {
  .c-content-text {
    font-size: 14px;
    margin: 2em;
  }
}

@media all and (min-width: 768px) {
  .c-content-text {
    font-size: 16px;
    margin: 2em;
  }
}

.c-ranking {
  padding: 0 20px;
}

.c-ranking li {
  position: relative;
}

.c-ranking .rank {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 2px;
  font-size: 10px;
  color: #fff;
  background-color: #242424;
  text-align: center;
  z-index: 10;
}

.c-ranking li:first-child .rank {
  background-color: #ee3281;
}

@media all and (max-width: 767px) {
  .c-ranking {
    margin-bottom: 10px;
  }
}

@media all and (min-width: 768px) {
  .c-ranking {
    padding: 0 30px;
  }
  .c-ranking .rank {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 3px;
  }
}

.c-cta-bg {
  background: #f9f9f9;
}

.c-cta-bg .head {
  display: flex;
}

.c-cta-bg .head p {
  margin: 0;
}

.c-cta-bg .head .img {
  width: 50%;
  margin-bottom: 1em;
  padding-right: 20px;
}

.c-cta-bg .head .img img {
  border-radius: 10px;
}

.c-cta-bg .head .img img[data-loaded] {
  overflow: hidden;
}

.c-cta-bg .main-title,
.c-cta-bg .product-title {
  margin-bottom: 1em;
}

.c-cta-bg .main-title .main,
.c-cta-bg .product-title .main {
  font-weight: bold;
  margin: 0;
}

.c-cta-bg .main-title .main span,
.c-cta-bg .product-title .main span {
  display: inline-block;
}

.c-cta-bg .main-title .sub,
.c-cta-bg .product-title .sub {
  font-weight: bold;
  margin-top: 0.5em;
}

.c-cta-bg .main-title small,
.c-cta-bg .product-title small {
  font-size: 90%;
  margin-left: 0.5em;
}

.c-cta-bg .main-title .text,
.c-cta-bg .product-title .text {
  margin-top: 0.5em;
}

.c-cta-bg .meddium {
  margin-bottom: 1em;
}

.c-cta-bg .bottom {
  display: flex;
  justify-content: center;
}

.c-cta-bg .bottom + .bottom {
  margin-top: 1em;
}

.c-cta-bg .bottom a {
  margin: 0 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-cta-bg .product-title {
  width: 50%;
}

@media all and (max-width: 767px) {
  .c-cta-bg {
    padding: 20px;
    border-radius: 10px;
  }
  .c-cta-bg .head {
    flex-direction: column-reverse;
  }
  .c-cta-bg .head .img {
    width: 100%;
    padding-right: 0;
  }
  .c-cta-bg .product-title {
    width: 100%;
  }
  .c-cta-bg .product-title .main {
    font-size: 18px;
  }
  .c-cta-bg .product-title .sub {
    font-size: 16px;
  }
  .c-cta-bg.is-mg {
    margin: 30px 0;
  }
  .c-cta-bg .bottom {
    flex-wrap: wrap;
  }
  .c-cta-bg .bottom a + a {
    margin-top: 0.5em;
  }
}

@media all and (min-width: 768px) {
  .c-cta-bg {
    padding: 30px;
    border-radius: 15px;
  }
  .c-cta-bg .product-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .c-cta-bg .product-title .main {
    font-size: 20px;
  }
  .c-cta-bg .product-title .sub {
    font-size: 18px;
  }
  .c-cta-bg.is-mg {
    margin: 60px 0;
  }
}

.post-categories a {
  display: inline-block;
  border-radius: 9999px;
  font-size: 10px;
  padding: 0 1em;
  line-height: 2em;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #bcbec0;
}

@media all and (min-width: 768px) {
  .post-categories a {
    font-size: 14px;
  }
  .post-categories a:hover {
    opacity: 0.7;
  }
}

.c-category-tag {
  display: inline-block;
  border-radius: 9999px;
  font-size: 10px;
  padding: 0 1em;
  line-height: 2em;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #bcbec0;
}

@media all and (min-width: 768px) {
  .c-category-tag:hover {
    opacity: 0.7;
  }
  .c-category-tag.is-md {
    font-size: 12px;
  }
  .c-category-tag.is-lg {
    font-size: 14px;
  }
}

.c-date {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #bcbec0;
}

.is-top-page .c-date {
  /* 2025-10-22 TOP でのみ非表示（データ保持のためDOMには残す） */
  display: none;
}

@media all and (min-width: 768px) {
  .c-date.is-sm {
    font-size: 10px;
  }
  .c-date.is-md {
    font-size: 12px;
  }
  .c-date.is-lg {
    font-size: 14px;
  }
}

.c-thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.c-thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-thumbnail img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.c-thumbnail.is-square {
  padding-bottom: 100%;
}

.c-thumbnail.is-square img {
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: initial;
  transform: translate(-50%, 0);
}

.c-thumbnail.is-no-radius {
  border-radius: 0;
}

@media all and (min-width: 768px) {
  .c-thumbnail a:hover {
    opacity: 0.7;
  }
  .c-thumbnail.is-lg {
    border-radius: 15px;
  }
  .c-thumbnail.is-no-radius {
    border-radius: 0;
  }
}

.c-thumbnail-circle {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.c-thumbnail-circle .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.c-thumbnail-movie {
  position: relative;
}

.c-thumbnail-movie::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 20%;
  height: 20%;
  max-width: 40px;
  max-height: 40px;
  content: "";
  background: url(../images/common/icon_play.svg) no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
}

.c-thumbnail-no-resize img {
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

@media all and (min-width: 768px) {
  .c-thumbnail-no-resize a:hover {
    opacity: 0.7;
  }
}

.c-movie-play {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.c-movie-play iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media all and (min-width: 768px) {
  .c-movie-play {
    border-radius: 15px;
  }
}

.c-thumbnail-list li {
  display: flex;
}

.c-thumbnail-list li + li {
  margin-top: 20px;
}

.c-thumbnail-list .thumbnail {
  width: 50%;
}

.c-thumbnail-list .content-wrap {
  width: 50%;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-thumbnail-list .cat {
  margin-bottom: 0.5em;
}

.c-thumbnail-list .title {
  margin-bottom: 0.5em;
}

@media all and (min-width: 768px) {
  .c-thumbnail-list li + li {
    margin-top: 40px;
  }
  .c-thumbnail-list .content-wrap {
    padding-left: 25px;
  }
}

.c-thumbnail-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 15px;
}

.c-thumbnail-col-list .thumbnail {
  margin-bottom: 1em;
}

.c-thumbnail-col-list .cat {
  margin-bottom: 0.5em;
}

.c-thumbnail-col-list .title {
  margin-bottom: 0.5em;
}

.c-thumbnail-col-list.is-lg {
  grid-template-columns: 1fr;
}

@media all and (min-width: 768px) {
  .c-thumbnail-col-list {
    grid-gap: 30px 30px;
  }
  .c-thumbnail-col-list.is-md {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .c-thumbnail-col-list.is-lg {
    grid-template-columns: 1fr 1fr;
  }
}

.c-thumbnail-list-2 .title {
  margin-bottom: 0.5em;
}

.c-thumbnail-list-2 .cat {
  margin-bottom: 0.5em;
}

.c-thumbnail-list-2 .thumbnail {
  margin-bottom: 1em;
}

@media all and (min-width: 992px) {
  .c-thumbnail-list-2 {
    display: grid;
    grid-gap: 30px 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media all and (max-width: 991px) {
  .c-thumbnail-list-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 15px;
  }
  .c-thumbnail-list-3 .thumbnail {
    margin-bottom: 1em;
  }
  .c-thumbnail-list-3 .cat {
    margin-bottom: 0.5em;
  }
  .c-thumbnail-list-3 .title {
    margin-bottom: 0.5em;
  }
}

@media all and (min-width: 992px) {
  .c-thumbnail-list-3 li {
    display: flex;
  }
  .c-thumbnail-list-3 li + li {
    margin-top: 20px;
  }
  .c-thumbnail-list-3 .thumbnail {
    width: 50%;
  }
  .c-thumbnail-list-3 .content-wrap {
    width: 50%;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .c-thumbnail-list-3 .cat {
    margin-bottom: 0.5em;
  }
  .c-thumbnail-list-3 .title {
    margin-bottom: 0.5em;
  }
}

@media all and (max-width: 767px) {
  .c-special-lists .special-image {
    padding-right: 0;
  }
  .c-special-lists .special-content {
    padding-left: 0;
  }
  .c-special-lists .special-list-wrap {
    padding: 20px 20px 0 10px;
  }
}

@media all and (min-width: 768px) {
  .c-special-lists .special-list-wrap {
    margin: 30px 30px 30px 0;
  }
}

@media all and (min-width: 1400px) {
  .c-special-lists .special-list-wrap {
    margin: 30px 0;
  }
}

.c-special-banner {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}

.c-special-banner img {
  max-width: 800px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .c-special-banner {
    margin-bottom: 40px;
  }
}

@media all and (min-width: 768px) {
  .c-special-banner {
    margin-bottom: 60px;
  }
}

.c-pagination .screen-reader-text {
  display: none;
}

.c-pagination .nav-links {
  display: flex;
  justify-content: center;
}

.c-pagination .page-numbers {
  display: block;
  border: 1px solid #242424;
  border-radius: 3px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  background: #fff;
  text-align: center;
}

.c-pagination .page-numbers.current {
  background: #242424;
  color: #fff;
}

@media all and (max-width: 767px) {
  .c-pagination.is-mgt {
    margin-top: 40px;
  }
  .c-pagination .page-numbers {
    margin: 0 3px;
    width: 30px;
    line-height: 30px;
    font-size: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-pagination.is-mgt {
    margin-top: 60px;
  }
  .c-pagination .page-numbers {
    margin: 0 5px;
    width: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .c-pagination .page-numbers:not(.dots):hover {
    background: #242424;
    color: #fff;
  }
}

.c-breadcrumb {
  display: none;
}

@media all and (min-width: 768px) {
  .c-breadcrumb {
    display: block;
    padding: 1em 0;
  }
  .c-breadcrumb ul {
    display: flex;
  }
  .c-breadcrumb li {
    font-size: 12px;
  }
  .c-breadcrumb li:first-child i {
    margin-right: 1em;
  }
  .c-breadcrumb li:after {
    margin: 0 1.5em;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #bcbec0;
  }
  .c-breadcrumb li:last-child:after {
    display: none;
  }
  .c-breadcrumb a {
    text-decoration: underline;
  }
  .c-breadcrumb a:hover {
    text-decoration: none;
  }
}

.c-button-wrap {
  margin-top: 30px;
  text-align: center;
}

.c-button-wrap.is-pd {
  padding: 0 20px;
}

@media all and (min-width: 768px) {
  .c-button-wrap {
    margin-top: 60px;
  }
}

.mce-content-body .c-border-small,
.c-border-button {
  display: block;
  border-radius: 9999px;
  border: solid 1px #242424;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding: 0.85em 2em;
  margin: auto;
  max-width: 320px;
  background: #fff;
  text-align: center;
}

@media all and (min-width: 768px) {
  .mce-content-body .c-border-small,
  .c-border-button {
    font-size: 18px;
  }
  .mce-content-body .c-border-small:hover,
  .c-border-button:hover {
    background: #242424;
    color: #fff;
  }
}

.mce-content-body .c-border-button-small,
.c-border-button-small {
  display: block;
  border-radius: 9999px;
  border: solid 1px #242424;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  padding: 0.85em 1em;
  margin: auto;
  width: 100%;
  max-width: 300px;
  background: #fff;
  font-weight: bold;
  text-align: center;
}

@media all and (max-width: 767px) {
  .mce-content-body .c-border-button-small,
  .c-border-button-small {
    font-size: 13px;
  }
}

@media all and (min-width: 768px) {
  .mce-content-body .c-border-button-small,
  .c-border-button-small {
    font-size: 15px;
  }
  .mce-content-body .c-border-button-small:hover,
  .c-border-button-small:hover {
    background: #242424;
    color: #fff;
  }
}

.mce-content-body .c-pink-small,
.c-pink-button {
  display: block;
  border-radius: 9999px;
  border: solid 1px #ee3281;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding: 0.85em 1em;
  margin: auto;
  width: 100%;
  max-width: 300px;
  background: #ee3281;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.mce-content-body .c-pink-small.is-block,
.c-pink-button.is-block {
  display: block;
  margin: 2em auto;
}

@media all and (max-width: 767px) {
  .mce-content-body .c-pink-small,
  .c-pink-button {
    font-size: 13px;
  }
}

@media all and (min-width: 768px) {
  .mce-content-body .c-pink-small,
  .c-pink-button {
    font-size: 15px;
  }
  .mce-content-body .c-pink-small:hover,
  .c-pink-button:hover {
    opacity: 0.7;
  }
}

.c-tag-list {
  width: 100%;
}

.c-tag-list a {
  display: inline-block;
  color: #ee3281;
}

.c-tag-list a:before {
  content: "#";
}

@media all and (max-width: 767px) {
  .c-tag-list {
    font-size: 13px;
    text-align: center;
  }
  .c-tag-list a {
    margin: 0 10px 10px 0;
  }
  .c-tag-list.is-small {
    font-size: 11px;
  }
  .c-tag-list.is-small a {
    margin: 0 6px 6px 0;
  }
}

@media all and (min-width: 768px) {
  .c-tag-list {
    font-size: 16px;
  }
  .c-tag-list a {
    margin: 0 20px 15px 0;
  }
  .c-tag-list a:hover {
    opacity: 0.7;
  }
  .c-tag-list.is-small {
    font-size: 13px;
  }
  .c-tag-list.is-small a {
    margin: 0 15px 10px 0;
  }
}

.c-text-link-list {
  margin-top: 1em;
}

.c-text-link-list a {
  display: inline-block;
  margin: 0 1em 1em 0;
  font-weight: bold;
}

.c-text-link-list a:before {
  margin-right: 0.3em;
}

.c-text-link-list .website:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f2d0";
  color: #242424;
}

.c-text-link-list .facebook:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  content: "\f082";
}

.c-text-link-list .twitter:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  content: "\f081";
}

.c-text-link-list .instagram:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  content: "\f16d";
}

.c-text-link-list .youtube:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  content: "\f431";
}

.c-text-link-list .tumblr:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  content: "\f174";
}

@media all and (max-width: 767px) {
  .c-text-link-list {
    font-size: 12px;
  }
}

@media all and (min-width: 768px) {
  .c-text-link-list {
    font-size: 14px;
  }
  .c-text-link-list a:hover {
    color: #ee3281;
  }
}

.c-top-cotegory-list .frame {
  background: #fff;
}

.c-top-cotegory-list .first-title {
  margin: 0.5em 0;
}

@media all and (max-width: 767px) {
  .c-top-cotegory-list .frame {
    padding: 40px 20px;
    margin-bottom: 10px;
  }
  .c-top-cotegory-list .first-list-item {
    margin-bottom: 20px;
  }
}

@media all and (min-width: 768px) {
  .c-top-cotegory-list .frame {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 60px 40px;
  }
  .c-top-cotegory-list .frame + .frame {
    margin-top: 60px;
  }
}

.c-author-box {
  background: #f9f9f9;
  display: flex;
  flex-wrap: wrap;
}

.c-author-box .thumbnail-wrap img {
  width: 100%;
}

.c-author-box .job-title {
  line-height: 1.8em;
}

.c-author-box .name {
  line-height: 1.8em;
  margin-bottom: 0.5em;
}

.c-author-box .text {
  line-height: 1.8em;
  font-weight: 500;
}

.c-author-box .thumbnail-wrap {
  width: 30%;
}

.c-author-box .name-wrap {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-author-box .text-wrap {
  width: 100%;
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .c-author-box {
    padding: 20px;
    border-radius: 10px;
  }
  .c-author-box .job-title {
    font-size: 11px;
  }
  .c-author-box .name {
    font-size: 14px;
  }
  .c-author-box .text {
    font-size: 13px;
  }
  .c-author-box .thumbnail-wrap {
    padding-right: 15px;
  }
}

@media all and (min-width: 768px) {
  .c-author-box {
    border-radius: 15px;
    padding: 30px;
  }
  .c-author-box:after {
    content: "";
    display: block;
    clear: both;
  }
  .c-author-box .thumbnail-wrap {
    padding-right: 30px;
  }
  .c-author-box .thumbnail-wrap a:hover {
    opacity: 0.7;
  }
  .c-author-box .job-title {
    font-size: 12px;
  }
  .c-author-box .name {
    font-size: 16px;
    margin-bottom: 1em;
  }
  .c-author-box .name a:hover {
    color: #ee3281;
  }
  .c-author-box .text {
    font-size: 14px;
  }
}

@media all and (max-width: 767px) {
  .c-expert-slider .slide {
    width: 220px;
    padding: 0 10px;
  }
}

@media all and (min-width: 768px) {
  .c-expert-slider .slide {
    width: 350px;
    padding: 0 15px;
  }
}

.c-expert {
  text-align: center;
}

.c-expert .image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.c-expert img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-expert .job-title {
  margin-top: 2em;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.c-expert .name {
  margin: 0.5em 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5em;
}

@media all and (min-width: 768px) {
  .c-expert:hover img {
    transition: all 0.3s;
    opacity: 0.7;
  }
  .c-expert:hover .job-title,
  .c-expert:hover .name {
    transition: all 0.3s;
    color: #ee3281;
  }
}

.c-form .form-row {
  margin-bottom: 1em;
}

.c-form .label {
  display: block;
  font-weight: bold;
}

.c-form .field input,
.c-form .field textarea {
  width: 100%;
  font-size: 16px;
  line-height: 1.8em;
  border-radius: 10px;
  background: #f9f9f9;
}

@media all and (max-width: 767px) {
  .c-form .label {
    font-size: 14px;
    margin-bottom: 0.5em;
  }
  .c-form .field input,
  .c-form .field textarea {
    padding: 0.5em 10px;
  }
  .c-form textarea {
    height: 6em;
  }
}

@media all and (min-width: 768px) {
  .c-form .form-row {
    display: flex;
    align-items: center;
  }
  .c-form .label {
    width: 30%;
    padding-right: 30px;
    text-align: right;
    font-size: 16px;
  }
  .c-form .field {
    width: 70%;
  }
  .c-form .field input,
  .c-form .field textarea {
    padding: 0.5em 15px;
  }
  .c-form textarea {
    height: 12em;
  }
}

.p-single .title-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-single .page-annotation {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #bcbec0;
}

@media all and (max-width: 767px) {
  .p-single .title-bottom {
    margin-bottom: 15px;
  }
  .p-single .author-wrap + .author-wrap {
    margin-top: 10px;
  }
  .p-single .cat {
    margin: 20px 0 10px;
  }
  .p-single .date {
    margin-bottom: 15px;
  }
  .p-single .title-bottom {
    margin-top: 15px;
  }
}

@media all and (min-width: 768px) {
  .p-single .title-bottom {
    margin-bottom: 20px;
  }
  .p-single .author-wrap + .author-wrap {
    margin-top: 20px;
  }
  .p-single .cat {
    margin: 30px 0 20px;
  }
  .p-single .date {
    margin-bottom: 20px;
  }
  .p-single .title-bottom {
    margin-top: 20px;
  }
}

.p-expert {
  overflow: hidden;
}

.p-expert .calousel .swiper-slide {
  padding: 0 15px;
}

.p-expert .calousel .swiper-slide img {
  border-radius: 10px;
  overflow: hidden;
}

.p-expert .job-title {
  line-height: 1.8em;
}

.p-expert .name {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

.p-expert .name small {
  display: inline-block;
  font-size: 70%;
  margin-left: 0.5em;
}

@media all and (max-width: 767px) {
  .p-expert .job-title {
    font-size: 12px;
  }
  .p-expert .name {
    font-size: 16px;
  }
  .p-expert .calousel {
    margin-bottom: 20px;
  }
}

@media all and (min-width: 768px) {
  .p-expert .name-wrap {
    margin-bottom: 20px;
  }
  .p-expert .job-title {
    font-size: 16px;
  }
  .p-expert .name {
    font-size: 24px;
  }
  .p-expert .calousel .swiper-slide {
    width: auto;
    max-width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-expert .calousel .swiper-slide img {
    max-height: 400px;
  }
}

.lozad {
  opacity: 0;
  transition: 0.3s;
}

.lozad[data-loaded] {
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  background: none;
  margin: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  text-align: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 30px;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@media all and (min-width: 768px) {
  .swiper-button-prev:hover:after,
  .swiper-button-next:hover:after {
    color: #ee3281;
  }
}

.swiper-button-next:after {
  content: "\f054";
}

.swiper-button-prev:after {
  content: "\f053";
}

div#toc_container {
  position: relative;
  width: 100% !important;
  font-size: 100%;
}

div#toc_container .toc_toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0 !important;
}

div#toc_container .toc_toggle a {
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

div#toc_container .toc_list li {
  padding: 0;
}

div#toc_container .toc_list li:before {
  display: none;
}

div#toc_container .toc_list > li + li {
  margin-top: 0.5em;
}

div#toc_container .toc_list a {
  font-weight: bold;
  line-height: 1.8em;
}

div#toc_container .toc_number {
  display: none;
}

@media all and (max-width: 767px) {
  div#toc_container {
    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  div#toc_container .toc_title {
    font-size: 14px;
  }
  div#toc_container .toc_toggle {
    top: 10px;
    right: 15px;
  }
  div#toc_container .toc_toggle a {
    font-size: 16px;
  }
  div#toc_container .toc_list a {
    font-size: 12px;
  }
}

@media all and (min-width: 768px) {
  div#toc_container {
    padding: 20px 30px;
    margin-bottom: 60px;
    border-radius: 15px;
  }
  div#toc_container .toc_title {
    font-size: 18px;
  }
  div#toc_container .toc_toggle {
    top: 20px;
    right: 20px;
  }
  div#toc_container .toc_toggle a {
    font-size: 20px;
  }
  div#toc_container .toc_toggle a:hover {
    text-decoration: none;
    opacity: 1;
  }
  div#toc_container .toc_list a {
    font-size: 14px;
  }
  div#toc_container .toc_list a:hover {
    text-decoration: none;
    opacity: 1;
  }
}

body.mce-content-body {
  margin: 0 !important;
  padding: 20px !important;
}

.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.bottom-cta .bottom-cta-link {
  display: block;
  width: 100%;
  height: auto;
}

.bottom-cta .bottom-cta-link .bottom-cta-link-img {
  width: 100%;
  height: auto;
}

/* Utility */
@media all and (max-width: 767px) {
  .u-sp-block {
    display: block !important;
  }
}

@media all and (min-width: 768px) {
  .u-pc-block {
    display: block !important;
  }
}

@media all and (max-width: 767px) {
  .u-sp-hidden {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-pc-hidden {
    display: none !important;
  }
}

.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

@media all and (max-width: 767px) {
  .u-sp-center {
    text-align: center !important;
  }
  .u-sp-left {
    text-align: left !important;
  }
  .u-sp-right {
    text-align: right !important;
  }
}

@media all and (min-width: 768px) {
  .u-pc-mgt-l {
    margin-top: 100px !important;
  }
  .u-pc-mgb-l {
    margin-bottom: 100px !important;
  }
}

@media all and (max-width: 768px) {
  .u-sp-mgt-l {
    margin-top: 40px !important;
  }
  .u-sp-mgb-l {
    margin-bottom: 40px !important;
  }
}

@media all and (max-width: 768px) {
  .u-sp-order-1 {
    order: 1;
  }
  .u-sp-order-2 {
    order: 2;
  }
  .u-sp-order-3 {
    order: 3;
  }
  .u-sp-order-4 {
    order: 4;
  }
  .u-sp-order-5 {
    order: 5;
  }
}

.u-hover-opacity:hover {
  opacity: 0.7;
}
