@charset "UTF-8";
@font-face {
  font-family: "YuMincho";
  font-weight: normal;
  src: url("../font/A-OTF-A1MinchoStd-Bold.otf");
}
/*====================================================================
Reset
====================================================================*/
*,
html,
body,
div,
figure,
section,
header,
footer,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: noto-sans-cjk-jp, sans-serif;
  line-height: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #000;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

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

/*-----------------------------------------------
@keyframes
------------------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(50px);
         transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
       -moz-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes zoomOut {
  0% {
    -moz-transform: scale3d(1.2, 1.2, 1.2);
         transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
         transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
       -moz-transform: scale3d(1.2, 1.2, 1.2);
            transform: scale3d(1.2, 1.2, 1.2);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
       -moz-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-moz-keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -moz-transform: translate(-50%, -50%) rotate(45deg);
         transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes HamBtnOpenTop {
  50% {
    top: 50%;
  }
  100% {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -moz-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@-moz-keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -moz-transform: translate(-50%, 50%) rotate(-45deg);
         transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@keyframes HamBtnOpenBottom {
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
       -moz-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
@-webkit-keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-moz-keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseTop {
  50% {
    top: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    top: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-moz-keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -moz-transform: translateX(-50%);
         transform: translateX(-50%);
  }
}
@keyframes HamBtnCloseBottom {
  50% {
    bottom: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.u-visualEditArea {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea {
    font-size: 1rem;
  }
}
.u-visualEditArea * + * {
  margin-top: 1.75em;
}
.u-visualEditArea a {
  color: #0077FF;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .u-visualEditArea a:hover {
    opacity: 0.6;
  }
}
.u-visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.u-visualEditArea h2 {
  margin-top: 2em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  background: #434343;
  padding: 10px 30px;
  color: #fff;
}
.u-visualEditArea h3 {
  color: #8337f4;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.u-visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.u-visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.u-visualEditArea h5,
.u-visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.u-visualEditArea h1 + h2,
.u-visualEditArea h2 + h3,
.u-visualEditArea h3 + h4,
.u-visualEditArea h4 + h5,
.u-visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.u-visualEditArea p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .u-visualEditArea p {
    font-size: 1rem;
  }
}
.u-visualEditArea strong,
.u-visualEditArea strong * {
  font-weight: bold;
}
.u-visualEditArea em,
.u-visualEditArea em * {
  font-style: italic;
}
.u-visualEditArea ul {
  list-style-type: disc;
}
.u-visualEditArea ol {
  list-style-type: decimal;
}
.u-visualEditArea ul,
.u-visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.u-visualEditArea ul li,
.u-visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.u-visualEditArea sup,
.u-visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.u-visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #000;
}
.u-visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.u-visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.u-visualEditArea table thead th,
.u-visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea table tr th,
.u-visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.u-visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.u-visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.u-visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.u-visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.u-visualEditArea .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.u-visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.u-visualEditArea .gallery-columns-2 .gallery-item {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}
.u-visualEditArea .gallery-columns-3 .gallery-item {
  width: -webkit-calc((100% - 80px) / 3);
  width: -moz-calc((100% - 80px) / 3);
  width: calc((100% - 80px) / 3);
}
.u-visualEditArea .wp-block-list.alphabet {
  list-style-type: none;
  counter-reset: alphabet-counter;
}
.u-visualEditArea .wp-block-list.alphabet > li {
  counter-increment: alphabet-counter;
}
.u-visualEditArea .wp-block-list.alphabet > li::marker {
  content: counter(alphabet-counter, lower-alpha) ". ";
}

.lowerPageContents__main {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .lowerPageContents__main {
    width: 100%;
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .lowerPageContents__main {
    font-size: 1rem;
  }
}
.lowerPageContents__main * + * {
  margin-top: 1.75em;
}
.lowerPageContents__main a {
  color: #0077FF;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .lowerPageContents__main a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .lowerPageContents__main a:hover {
    opacity: 0.6;
  }
}
.lowerPageContents__main h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.lowerPageContents__main h2 {
  margin-top: 2em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  background: #434343;
  padding: 10px 30px;
  color: #fff;
}
.lowerPageContents__main h3 {
  color: #8337f4;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.lowerPageContents__main h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.lowerPageContents__main h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.lowerPageContents__main h5,
.lowerPageContents__main h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.lowerPageContents__main h1 + h2,
.lowerPageContents__main h2 + h3,
.lowerPageContents__main h3 + h4,
.lowerPageContents__main h4 + h5,
.lowerPageContents__main h5 + h6 {
  margin-top: 0.5em;
}
.lowerPageContents__main p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .lowerPageContents__main p {
    font-size: 1rem;
  }
}
.lowerPageContents__main strong,
.lowerPageContents__main strong * {
  font-weight: bold;
}
.lowerPageContents__main em,
.lowerPageContents__main em * {
  font-style: italic;
}
.lowerPageContents__main ul {
  list-style-type: disc;
}
.lowerPageContents__main ol {
  list-style-type: decimal;
}
.lowerPageContents__main ul,
.lowerPageContents__main ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.lowerPageContents__main ul li,
.lowerPageContents__main ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.lowerPageContents__main sup,
.lowerPageContents__main sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.lowerPageContents__main hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #000;
}
.lowerPageContents__main blockquote {
  padding: 30px;
  background: #292929;
}
.lowerPageContents__main table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.lowerPageContents__main table thead th,
.lowerPageContents__main table thead td {
  font-weight: bold;
  text-align: center;
}
.lowerPageContents__main table tr th,
.lowerPageContents__main table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.lowerPageContents__main table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.lowerPageContents__main img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.lowerPageContents__main img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.lowerPageContents__main img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.lowerPageContents__main .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.lowerPageContents__main .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.lowerPageContents__main .gallery-columns-2 .gallery-item {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}
.lowerPageContents__main .gallery-columns-3 .gallery-item {
  width: -webkit-calc((100% - 80px) / 3);
  width: -moz-calc((100% - 80px) / 3);
  width: calc((100% - 80px) / 3);
}
.lowerPageContents__main .wp-block-list.alphabet {
  list-style-type: none;
  counter-reset: alphabet-counter;
}
.lowerPageContents__main .wp-block-list.alphabet > li {
  counter-increment: alphabet-counter;
}
.lowerPageContents__main .wp-block-list.alphabet > li::marker {
  content: counter(alphabet-counter, lower-alpha) ". ";
}

/*====================================================================
siteHeader
====================================================================*/
.siteHeader {
  background: #000;
  padding: 15px 15px 15px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .siteHeader {
    gap: 15px;
    padding: 10px 20px;
  }
}
.siteHeader__logoLink {
  font-size: 24px;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 5px;
}
.siteHeader__logoLink span {
  font-size: 28px;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .siteHeader__logoLink {
    font-size: 1.4rem;
    min-height: 30px;
  }
  .siteHeader__logoLink span {
    font-size: 1.6rem;
  }
}
.siteHeader__form {
  background: #fff;
}
.siteHeader__search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.siteHeader__searchInput {
  width: 300px;
  height: 40px;
  padding: 5px 15px;
  padding-left: 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .siteHeader__searchInput {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
            flex: 1;
    width: auto;
  }
}
.siteHeader__searchForm {
  position: relative;
}
@media screen and (max-width: 768px) {
  .siteHeader__searchForm {
    display: none;
  }
}
.siteHeader__searchBtn {
  height: 40px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
  background-image: -webkit-gradient(linear, left top, right top, from(#8038f8), to(#fe0080));
  background-image: -webkit-linear-gradient(left, #8038f8, #fe0080);
  background-image: -moz-linear-gradient(left, #8038f8, #fe0080);
  background-image: linear-gradient(90deg, #8038f8, #fe0080);
}
@media screen and (min-width: 769px) {
  .siteHeader__searchBtn:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader__searchBtn {
    font-size: 1.4rem;
    height: 30px;
    padding: 5px 15px;
    border-radius: 3px;
  }
}
.siteHeader__searchSubmitBtn {
  width: 16px;
  height: 16px;
  background: url(../images/search-b.png) center center/contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .siteHeader__searchSubmitBtn {
    width: 12px;
    height: 12px;
  }
}
.siteHeader__searchBtnIcon {
  width: 16px;
  height: 16px;
  background: url(../images/search-w.png) center center/contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .siteHeader__searchBtnIcon {
    width: 12px;
    height: 12px;
  }
}

/* フィルターメニュー */
.filterMenu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .filterMenu {
    top: 50px;
  }
}

.filterMenu__form {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .filterMenu__form {
    width: 100%;
    padding: 0 25px;
  }
}

.filterMenu.is-active {
  display: block;
}

.filterMenu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.filterMenu__content {
  position: fixed;
  top: 70px;
  right: 0;
  width: 100%;
  height: auto;
  max-height: -webkit-calc(100vh - 70px);
  max-height: -moz-calc(100vh - 70px);
  max-height: calc(100vh - 70px);
  background: #000;
  color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 60px 0 40px;
  -webkit-transform: translateX(100%);
     -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .filterMenu__content {
    width: 100%;
    padding: 60px 0 40px;
    top: 50px;
    height: 70vh;
    max-height: 70vh;
  }
}

.filterMenu.is-active .filterMenu__content {
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.filterMenu__close {
  position: fixed;
  top: 90px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
}

.filterMenu__close:hover {
  opacity: 0.7;
}

.filterMenu__checkboxGroupWrap {
  width: 85%;
}
@media screen and (max-width: 768px) {
  .filterMenu__checkboxGroupWrap {
    width: auto;
  }
}

.filterMenu__title {
  font-size: 26px;
  margin-bottom: 70px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.filterMenu__category {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}
@media screen and (max-width: 768px) {
  .filterMenu__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}

.filterMenu__categoryTitle {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  width: 15%;
}
@media screen and (max-width: 768px) {
  .filterMenu__categoryTitle {
    width: 100%;
  }
}

.filterMenu__checkboxGroup {
  margin-bottom: 15px;
}

.filterMenu__checkboxGrid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}
@media screen and (max-width: 768px) {
  .filterMenu__checkboxGrid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.filterMenu__checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
}
.filterMenu__checkbox.u-all {
  border-bottom: none;
}

.filterMenu__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 3px;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.filterMenu__checkbox input[type=checkbox]:checked {
  background: #b24bf3;
  border-color: #b24bf3;
}

.filterMenu__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.filterMenu__checkboxLabel {
  line-height: 1.4;
  color: #fff;
}

.filterMenu__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .filterMenu__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
  }
}

.filterMenu__submitBtn,
.filterMenu__resetBtn {
  padding: 15px 60px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .filterMenu__submitBtn:hover,
  .filterMenu__resetBtn:hover {
    opacity: 0.6;
  }
}

.filterMenu__submitBtn {
  background-image: -webkit-gradient(linear, left top, right top, from(#8038f8), to(#fe0080));
  background-image: -webkit-linear-gradient(left, #8038f8, #fe0080);
  background-image: -moz-linear-gradient(left, #8038f8, #fe0080);
  background-image: linear-gradient(90deg, #8038f8, #fe0080);
}

.filterMenu__resetBtn {
  background: #666666;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .filterMenu__submitBtn,
  .filterMenu__resetBtn {
    width: 100%;
  }
}
/*====================================================================
siteFooter
====================================================================*/
.siteFooter {
  padding: 50px 0 20px;
  background: #fff;
}
.siteFooter__innerArea {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .siteFooter__innerArea {
    width: 100%;
    padding: 0 25px;
  }
}
.siteFooter__clmArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .siteFooter__clmArea {
    display: block;
  }
}
.siteFooter__leftArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  width: 400px;
}
@media screen and (max-width: 768px) {
  .siteFooter__leftArea {
    width: auto;
  }
}
.siteFooter__ttl {
  font-size: 26px;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 5px;
}
.siteFooter__ttl span {
  font-size: 30px;
  font-family: "WDXL Lubrifont JP N", sans-serif;
}
@media screen and (max-width: 768px) {
  .siteFooter__ttl {
    font-size: 2rem;
  }
  .siteFooter__ttl span {
    font-size: 2.4rem;
  }
}
.siteFooter__snsList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .siteFooter__snsList {
    gap: 20px;
  }
}
.siteFooter__snsAreaTtl {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .siteFooter__snsAreaTtl {
    margin-top: 60px;
    font-size: 1.2rem;
  }
}
.siteFooter__snsListItem {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .siteFooter__snsListItem {
    width: 2.4rem;
  }
}
.siteFooter__rightArea {
  width: -webkit-calc(100% - 400px);
  width: -moz-calc(100% - 400px);
  width: calc(100% - 400px);
}
@media screen and (max-width: 768px) {
  .siteFooter__rightArea {
    display: none;
  }
}
.siteFooter__nav {
  width: 100%;
}
.siteFooter__pageList {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 20px;
}
.siteFooter__pageItem:nth-child(4) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.siteFooter__pageItem:nth-child(5) {
  margin-top: 20px;
}
.siteFooter__pageLink {
  font-size: 17px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 769px) {
  .siteFooter__pageLink:hover {
    opacity: 0.6;
  }
}
.siteFooter__childPageList {
  width: 33.3333333333%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 230px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 20px;
}
.siteFooter__childPageList.u-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  width: 100%;
  max-width: 100%;
}
.siteFooter__childPageList.u-flex li {
  width: 33.3333333333%;
}
.siteFooter__childPageLink {
  font-size: 15px;
  color: #828282;
}
.siteFooter__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .siteFooter__hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: -webkit-gradient(linear, left top, right top, from(#8038f8), to(#fe0080));
    background-image: -webkit-linear-gradient(left, #8038f8, #fe0080);
    background-image: -moz-linear-gradient(left, #8038f8, #fe0080);
    background-image: linear-gradient(90deg, #8038f8, #fe0080);
    border: none;
    cursor: pointer;
    z-index: 9998;
  }
  .siteFooter__hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .siteFooter__hamburger span:nth-child(1) {
    top: -6px;
  }
  .siteFooter__hamburger span:nth-child(3) {
    top: 6px;
  }
  .siteFooter__hamburger.is-active span:nth-child(1) {
    top: 2px;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .siteFooter__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .siteFooter__hamburger.is-active span:nth-child(3) {
    top: 0;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
.siteFooter__copy {
  margin-top: 110px;
  font-size: 15px;
  color: #828282;
}
@media screen and (max-width: 768px) {
  .siteFooter__copy {
    font-size: 1rem;
    margin-top: 60px;
  }
}

/*====================================================================
footerMenu (SP版)
====================================================================*/
.footerMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  .footerMenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9997;
    display: none;
  }
  .footerMenu.is-active {
    display: block;
  }
}
.footerMenu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.footerMenu__content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #000;
  color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  -webkit-transform: translateY(100%);
     -moz-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}
.footerMenu.is-active .footerMenu__content {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.footerMenu__ttlArea {
  padding: 0 25px;
}
.footerMenu__searchForm {
  margin-bottom: 40px;
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}
.footerMenu__searchInput {
  width: -webkit-calc(100% - 110px);
  width: -moz-calc(100% - 110px);
  width: calc(100% - 110px);
  height: 30px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  background: #fff;
}
.footerMenu__searchBtn {
  height: 40px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
  background-image: -webkit-gradient(linear, left top, right top, from(#8038f8), to(#fe0080));
  background-image: -webkit-linear-gradient(left, #8038f8, #fe0080);
  background-image: -moz-linear-gradient(left, #8038f8, #fe0080);
  background-image: linear-gradient(90deg, #8038f8, #fe0080);
}
@media screen and (min-width: 769px) {
  .footerMenu__searchBtn:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu__searchBtn {
    font-size: 1.4rem;
    height: 30px;
    padding: 5px 15px 5px 8px;
    border-radius: 3px;
  }
}
.footerMenu__searchSubmitBtn {
  width: 16px;
  height: 16px;
  background: url(../images/search-b.png) center center/contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .footerMenu__searchSubmitBtn {
    width: 12px;
    height: 12px;
  }
}
.footerMenu__searchBtnIcon {
  width: 16px;
  height: 16px;
  background: url(../images/search-w.png) center center/contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .footerMenu__searchBtnIcon {
    width: 12px;
    height: 12px;
  }
}
.footerMenu__nav {
  margin-top: 30px;
}
.footerMenu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  gap: 0;
}
.footerMenu__item--parent > .footerMenu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
.footerMenu__link {
  display: block;
  padding: 20px 25px;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
.footerMenu__arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
     -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s;
}
.footerMenu__item--parent.is-open .footerMenu__arrow {
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.footerMenu__childList {
  display: none;
  padding-left: 40px;
  padding-bottom: 10px;
  background: #323232;
}
.footerMenu__item--parent.is-open .footerMenu__childList {
  display: block;
}
.footerMenu__childItem {
  padding: 10px 0;
}
.footerMenu__childLink {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  padding: 10px 0;
}
.footerMenu__bottomList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #333;
}
.footerMenu__bottomLink {
  font-size: 1.2rem;
  color: #999;
}

/*====================================================================
hamMenuBtn
====================================================================*/
.hamMenuBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamMenuBtn {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
  .hamMenuBtn__border {
    width: 80%;
    height: 2px;
    background: #000;
    display: block;
    position: absolute;
    left: 50%;
  }
  .hamMenuBtn__border:nth-child(1) {
    top: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
            animation: HamBtnCloseTop 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn__border:nth-child(2) {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .hamMenuBtn__border:nth-child(3) {
    bottom: 12px;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
            animation: HamBtnCloseBottom 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(1) {
    -webkit-animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
            animation: HamBtnOpenTop 0.3s ease-in-out 0s forwards;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(2) {
    opacity: 0;
  }
  .hamMenuBtn.is-active [class$=__border]:nth-child(3) {
    -webkit-animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
       -moz-animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
            animation: HamBtnOpenBottom 0.3s ease-in-out 0s forwards;
  }
}
/*====================================================================
hamMenuContent
====================================================================*/
.hamMenuContent {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamMenuContent {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
            flex-direction: row;
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    padding-top: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
  .hamMenuContent__pageList {
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    -moz-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
    padding: 40px;
    background: #212121;
    overflow: hidden;
  }
  .hamMenuContent__pageItem {
    overflow: hidden;
  }
  .hamMenuContent__pageLink {
    -webkit-transition: all 0.2s ease-in-out 0.3s;
    -moz-transition: all 0.2s ease-in-out 0.3s;
    transition: all 0.2s ease-in-out 0.3s;
    color: #000;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 10px;
    display: block;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .hamMenuContent__pageLink {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .hamMenuContent.is-active {
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
/*====================================================================
contentCenter
====================================================================*/
.contentCenter {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contentCenter {
    width: 100%;
    padding: 0 25px;
  }
}

/*====================================================================
visualEditArea
====================================================================*/
.visualEditArea {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea {
    font-size: 1rem;
  }
}
.visualEditArea * + * {
  margin-top: 1.75em;
}
.visualEditArea a {
  color: #0077FF;
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .visualEditArea a {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .visualEditArea a:hover {
    opacity: 0.6;
  }
}
.visualEditArea h1 {
  font-size: 4.5rem;
  line-height: 1.4;
}
.visualEditArea h2 {
  margin-top: 2em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  background: #434343;
  padding: 10px 30px;
  color: #fff;
}
.visualEditArea h3 {
  color: #8337f4;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
.visualEditArea h4 {
  padding-left: 25px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
}
.visualEditArea h4::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #0077FF;
}
.visualEditArea h5,
.visualEditArea h6 {
  font-size: 1.6rem;
  line-height: 1.6;
}
.visualEditArea h1 + h2,
.visualEditArea h2 + h3,
.visualEditArea h3 + h4,
.visualEditArea h4 + h5,
.visualEditArea h5 + h6 {
  margin-top: 0.5em;
}
.visualEditArea p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .visualEditArea p {
    font-size: 1rem;
  }
}
.visualEditArea strong,
.visualEditArea strong * {
  font-weight: bold;
}
.visualEditArea em,
.visualEditArea em * {
  font-style: italic;
}
.visualEditArea ul {
  list-style-type: disc;
}
.visualEditArea ol {
  list-style-type: decimal;
}
.visualEditArea ul,
.visualEditArea ol {
  margin-top: 1em;
  padding-left: 1.4em;
}
.visualEditArea ul li,
.visualEditArea ol li {
  margin-top: 0.6em;
  line-height: 1.5;
}
.visualEditArea sup,
.visualEditArea sub {
  font-size: 1rem;
  line-height: 1 !important;
}
.visualEditArea hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #000;
}
.visualEditArea blockquote {
  padding: 30px;
  background: #292929;
}
.visualEditArea table {
  margin-top: 3em;
  width: 100% !important;
  height: auto !important;
  border-collapse: collapse;
  background: #292929;
}
.visualEditArea table thead th,
.visualEditArea table thead td {
  font-weight: bold;
  text-align: center;
}
.visualEditArea table tr th,
.visualEditArea table tr td {
  padding: 15px 20px;
  border: #666 1px solid;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}
.visualEditArea table tr th {
  width: 25%;
  font-weight: bold;
  text-align: center;
}
.visualEditArea img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: 1em;
}
.visualEditArea img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.visualEditArea img.alignright {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
.visualEditArea .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.visualEditArea .gallery-item {
  margin-top: 0;
  float: none;
  text-align: center;
}
.visualEditArea .gallery-columns-2 .gallery-item {
  width: -webkit-calc((100% - 40px) / 2);
  width: -moz-calc((100% - 40px) / 2);
  width: calc((100% - 40px) / 2);
}
.visualEditArea .gallery-columns-3 .gallery-item {
  width: -webkit-calc((100% - 80px) / 3);
  width: -moz-calc((100% - 80px) / 3);
  width: calc((100% - 80px) / 3);
}
.visualEditArea .wp-block-list.alphabet {
  list-style-type: none;
  counter-reset: alphabet-counter;
}
.visualEditArea .wp-block-list.alphabet > li {
  counter-increment: alphabet-counter;
}
.visualEditArea .wp-block-list.alphabet > li::marker {
  content: counter(alphabet-counter, lower-alpha) ". ";
}

/*====================================================================
space
====================================================================*/
.space-s,
.space-m,
.space-l {
  border: none;
}

.space-s {
  padding-top: 30px;
}

.space-m {
  padding-top: 50px;
}

.space-l {
  padding-top: 80px;
}

/*====================================================================
bnrA
====================================================================*/
.bnrA {
  color: #0077FF;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 10px 90px 10px 0;
  position: relative;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .bnrA {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .bnrA {
    font-size: 1rem;
  }
}
.bnrA::before, .bnrA::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.bnrA::before {
  width: 100%;
  height: 2px;
  left: 0;
  background: #0077FF;
}
.bnrA::after {
  width: 15px;
  height: 15px;
  display: block;
  right: 0;
  border-right: 3px solid #0077FF;
  -webkit-transform: translateX(-50%) skewX(60deg);
     -moz-transform: translateX(-50%) skewX(60deg);
      -ms-transform: translateX(-50%) skewX(60deg);
          transform: translateX(-50%) skewX(60deg);
}

/*====================================================================
bnrB
====================================================================*/
.bnrB {
  display: inline-block;
  position: relative;
}
.bnrB::before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #002BFF;
}
@media screen and (min-width: 769px) {
  .bnrB::before {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .bnrB:hover::before {
    width: 100%;
  }
}
.bnrB__layer {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 15px 100px 15px 15px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bnrB__layer {
    font-size: 1rem;
  }
}
.bnrB__layer::before {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}
.bnrB__layer::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  border-right: 3px solid #000;
  -webkit-transform: translate(-50%, -100%) skewX(60deg);
     -moz-transform: translate(-50%, -100%) skewX(60deg);
      -ms-transform: translate(-50%, -100%) skewX(60deg);
          transform: translate(-50%, -100%) skewX(60deg);
}

/*====================================================================
bnrC
====================================================================*/
.bnrC {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 20px 80px;
  border: 2px solid #0077FF;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .bnrC {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .bnrC {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .bnrC:hover {
    background: #0077FF;
  }
}

/*====================================================================
gridArea
====================================================================*/
.gridArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  margin: 0 -1% -40px;
}
.gridArea__col {
  padding: 0 1%;
  margin-bottom: 40px;
}
.gridArea__col.u-col-1 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 8.3333333333%;
          flex-basis: 8.3333333333%;
}
.gridArea__col.u-col-2 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 16.6666666667%;
          flex-basis: 16.6666666667%;
}
.gridArea__col.u-col-3 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 25%;
          flex-basis: 25%;
}
.gridArea__col.u-col-4 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 33.3333333333%;
          flex-basis: 33.3333333333%;
}
.gridArea__col.u-col-5 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 41.6666666667%;
          flex-basis: 41.6666666667%;
}
.gridArea__col.u-col-6 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
}
.gridArea__col.u-col-7 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 58.3333333333%;
          flex-basis: 58.3333333333%;
}
.gridArea__col.u-col-8 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 66.6666666667%;
          flex-basis: 66.6666666667%;
}
.gridArea__col.u-col-9 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 75%;
          flex-basis: 75%;
}
.gridArea__col.u-col-10 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 83.3333333333%;
          flex-basis: 83.3333333333%;
}
.gridArea__col.u-col-11 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 91.6666666667%;
          flex-basis: 91.6666666667%;
}
.gridArea__col.u-col-12 {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  .gridArea__col.u-col-sp-1 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 8.3333333333%;
            flex-basis: 8.3333333333%;
  }
  .gridArea__col.u-col-sp-2 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 16.6666666667%;
            flex-basis: 16.6666666667%;
  }
  .gridArea__col.u-col-sp-3 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
  }
  .gridArea__col.u-col-sp-4 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 33.3333333333%;
            flex-basis: 33.3333333333%;
  }
  .gridArea__col.u-col-sp-5 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 41.6666666667%;
            flex-basis: 41.6666666667%;
  }
  .gridArea__col.u-col-sp-6 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
  }
  .gridArea__col.u-col-sp-7 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 58.3333333333%;
            flex-basis: 58.3333333333%;
  }
  .gridArea__col.u-col-sp-8 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 66.6666666667%;
            flex-basis: 66.6666666667%;
  }
  .gridArea__col.u-col-sp-9 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
  }
  .gridArea__col.u-col-sp-10 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 83.3333333333%;
            flex-basis: 83.3333333333%;
  }
  .gridArea__col.u-col-sp-11 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 91.6666666667%;
            flex-basis: 91.6666666667%;
  }
  .gridArea__col.u-col-sp-12 {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
            align-items: stretch;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
  }
}
.gridArea__col img {
  width: 100%;
}

/*====================================================================
card
====================================================================*/
.card {
  display: block;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .card:hover [class$=__thumb] {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .card {
    border-radius: 7px;
  }
}
@media screen and (min-width: 769px) {
  .card__thumb {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.card__textArea {
  width: 100%;
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 768px) {
  .card__textArea {
    padding: 5px 7px;
  }
}
.card__time {
  color: #000;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .card__time {
    font-size: 1rem;
  }
}
.card__postTitle {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .card__postTitle {
    font-size: 1rem;
  }
}

/*====================================================================
tabArea
====================================================================*/
.tabArea__btnList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
}
.tabArea__btnItem {
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  margin: 0 2px;
}
.tabArea__btnItem:nth-child(1) {
  margin-left: 0;
}
.tabArea__btnItem:nth-last-child(1) {
  margin-right: 0;
}
.tabArea__btnLink {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 20px 15px;
  display: block;
  background: #000;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink:hover {
    background: #000;
    color: #000;
  }
}
@media screen and (max-width: 768px) {
  .tabArea__btnLink {
    padding: 5px 10px;
  }
}
.tabArea__btnLink.is-open {
  background: #666;
  cursor: default;
}
@media screen and (min-width: 769px) {
  .tabArea__btnLink.is-open:hover {
    background: #666;
    color: #000;
  }
}
.tabArea__contentItem {
  padding: 40px 50px;
  background: #666;
  display: none;
}
@media screen and (max-width: 768px) {
  .tabArea__contentItem {
    padding: 20px 15px;
  }
}
.tabArea__contentItem.is-open {
  display: block;
}

/*====================================================================
accordionBtn
====================================================================*/
.accordionBtn {
  padding: 20px;
  border: 1px solid #000;
  display: block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .accordionBtn {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .accordionBtn {
    padding: 10px 15px;
  }
}
.accordionBtn.is-open [class$=__icon]::after {
  opacity: 0;
}
@media screen and (min-width: 769px) {
  .accordionBtn:hover {
    background: #000;
  }
  .accordionBtn:hover [class$=__text] {
    color: #000;
  }
  .accordionBtn:hover [class$=__icon]::before, .accordionBtn:hover [class$=__icon]::after {
    background: #000;
  }
}
.accordionBtn__text {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .accordionBtn__text {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
.accordionBtn__icon {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon {
    width: 35px;
  }
}
.accordionBtn__icon::before, .accordionBtn__icon::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
}
@media screen and (min-width: 769px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (max-width: 768px) {
  .accordionBtn__icon::before, .accordionBtn__icon::after {
    width: 15px;
  }
}
.accordionBtn__icon::before {
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.accordionBtn__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
     -moz-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
accordionContent
====================================================================*/
.accordionContent {
  padding: 30px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  display: none;
}
@media screen and (max-width: 768px) {
  .accordionContent {
    padding: 20px 15px;
  }
}

/*====================================================================
modalWrap
====================================================================*/
.modalWrap {
  display: block;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .modalWrap img {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .modalWrap:hover img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.modalWrap__button {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #0077FF;
}
@media screen and (max-width: 768px) {
  .modalWrap__button {
    width: 25px;
    height: 25px;
  }
}
.modalWrap__button::before, .modalWrap__button::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #000;
}
@media screen and (max-width: 768px) {
  .modalWrap__button::before, .modalWrap__button::after {
    width: 15px;
    height: 1px;
  }
}
.modalWrap__button::before {
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modalWrap__button::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
     -moz-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/*====================================================================
postListA
====================================================================*/
.postListA__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .postListA__item {
    padding: 7px 0;
  }
}
.postListA__time {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 5px 20px 5px 0;
}
@media screen and (max-width: 768px) {
  .postListA__time {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .postListA__time {
    padding: 3px 10px 3px 0;
  }
}
.postListA__catLabel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
          align-items: stretch;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  min-width: 140px;
  padding: 5px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__catLabel:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .postListA__catLabel {
    min-width: 90px;
    padding: 3px;
  }
}
.postListA__postLink {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink {
    -webkit-transition: all 0.6s ease-in-out 0s;
    -moz-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s;
  }
}
@media screen and (min-width: 769px) {
  .postListA__postLink:hover {
    color: #0077FF;
  }
}
@media screen and (max-width: 768px) {
  .postListA__postLink {
    padding-left: 10px;
  }
}

/*====================================================================
lowerPageFv
====================================================================*/
.lowerPageFv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  padding: 35px;
  background: #efefef;
  margin-bottom: 70px;
}
.lowerPageFv__pageTitle {
  font-size: 2.8rem;
  font-weight: bold;
  color: #8337f4;
  text-align: center;
}

/*====================================================================
COMMON LAYOUT
====================================================================*/
* {
  color: #000;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-feature-settings: "palt" 1;
     -moz-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

/*-----------------------------------------------
PC/SP 出し分け
------------------------------------------------*/
.u-pcDb {
  display: block;
}

.u-pcDib {
  display: inline-block;
}

.u-pcDin {
  display: inline;
}

.u-pcDf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.u-pcDt {
  display: table;
}

.u-pcDtc {
  display: table-cell;
}

.u-spDb,
.u-spDib,
.u-spDin,
.u-spDf,
.u-spDt,
.u-spDtc {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pcDb,
  .u-pcDib,
  .u-pcDin,
  .u-pcDf,
  .u-pcDt,
  .u-pcDtc {
    display: none;
  }
  .u-spDb {
    display: block;
  }
  .u-spDib {
    display: inline-block;
  }
  .u-spDin {
    display: inline;
  }
  .u-spDf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
  }
  .u-spDt {
    display: table;
  }
  .u-spDtc {
    display: table-cell;
  }
}
/*-----------------------------------------------
サイトコンテンツ
------------------------------------------------*/
.siteContent {
  min-height: -webkit-calc(100vh - 320px);
  min-height: -moz-calc(100vh - 320px);
  min-height: calc(100vh - 320px);
}
@media screen and (max-width: 768px) {
  .siteContent {
    min-height: -webkit-calc(100vh - 50px);
    min-height: -moz-calc(100vh - 50px);
    min-height: calc(100vh - 50px);
  }
}

/*-----------------------------------------------
WPツールバー
------------------------------------------------*/
@media screen and (max-width: 600px) {
  .is_login_user #wpadminbar {
    position: fixed;
  }
}
.breadListArea {
  background: #efefef;
  margin-top: 90px;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .breadListArea {
    margin-top: 20px;
  }
}

.breadList {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 3px;
}
@media screen and (max-width: 768px) {
  .breadList {
    width: 100%;
    padding: 0 25px;
  }
}

.breadListItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 3px;
}
.breadListItem::after {
  display: block;
  content: ">";
  color: #7c7c7c;
  font-size: 10px;
  width: auto;
  height: auto;
}
.breadListItem:last-child::after {
  display: none;
}

.breadListItemLink {
  color: #7c7c7c;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) {
  .breadListItemLink:hover {
    opacity: 0.6;
  }
}

.searchPage__wordArea {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .searchPage__wordArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    gap: 10px;
  }
}

.searchPage__kvLead {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .searchPage__kvLead {
    font-size: 1rem;
  }
}

.searchPage__container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .searchPage__container {
    width: 100%;
    padding: 0 25px;
  }
}

.anchor {
  padding-top: 20px;
  margin-top: -20px;
}

.common__linkBtnArea {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.common__linkBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 220px;
  height: 50px;
  border-radius: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#8038f8), to(#fe0080));
  background-image: -webkit-linear-gradient(left, #8038f8, #fe0080);
  background-image: -moz-linear-gradient(left, #8038f8, #fe0080);
  background-image: linear-gradient(90deg, #8038f8, #fe0080);
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (min-width: 769px) {
  .common__linkBtn:hover {
    opacity: 0.6;
  }
}

/*====================================================================
topPageFvSec
====================================================================*/
.topPage__kvArea {
  background: #efefef;
  padding: 55px 0;
}
@media screen and (max-width: 768px) {
  .topPage__kvArea {
    padding: 40px 0;
  }
}
.topPage__kvAreaInner {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .topPage__kvAreaInner {
    width: 100%;
    padding: 0 25px;
  }
}
@media screen and (max-width: 768px) {
  .topPage__kvAreaInner {
    margin-bottom: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    gap: 3%;
  }
}
.topPage__kvFig {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .topPage__kvFig {
    width: 43%;
  }
}
.topPage__kvTtl {
  font-size: 4rem;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  margin-bottom: 40px;
  line-height: 57px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 5px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.topPage__kvTtl span {
  font-size: 4.7rem;
  font-family: "WDXL Lubrifont JP N", sans-serif;
}
@media screen and (max-width: 768px) {
  .topPage__kvTtl {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .topPage__kvTtl span {
    font-size: 2.4rem;
  }
}
.topPage__kvLead {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topPage__kvLead {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .topPage__kvLead {
    padding: 0 25px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.topPage__container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .topPage__container {
    width: 100%;
    padding: 0 25px;
  }
}
.topPage__leftMenu {
  padding-top: 70px;
  width: 20%;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  -webkit-align-self: flex-start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
  max-height: -webkit-calc(100vh - 40px);
  max-height: -moz-calc(100vh - 40px);
  max-height: calc(100vh - 40px);
}
@media screen and (max-width: 768px) {
  .topPage__leftMenu {
    display: none;
  }
}
.topPage__leftMenuItemLink {
  display: block;
  padding: 16px;
  -webkit-transition: 0.4 0.6s ease-in-out 0s;
  -moz-transition: 0.4 0.6s ease-in-out 0s;
  transition: 0.4 0.6s ease-in-out 0s;
  font-size: 15px;
  font-weight: 600;
  border-left: 3px solid #efefef;
  -webkit-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.topPage__leftMenuItemLink.u-active {
  color: #8337f4;
  border-left: 3px solid #8337f4;
  font-weight: bold;
  -webkit-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.topPage__leftChildMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}
.topPage__leftChildMenuItemLink {
  display: block;
  padding: 10px 0;
  padding-left: 34px;
  font-weight: 400;
  font-size: 15px;
  -webkit-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
  border-left: 3px solid #efefef;
}
.topPage__leftChildMenuItemLink.u-active {
  color: #8337f4;
  border-left: 3px solid #8337f4;
  font-weight: bold;
  -webkit-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.topPage__mainWrap {
  padding-top: 70px;
  width: 85%;
}
@media screen and (max-width: 768px) {
  .topPage__mainWrap {
    width: 100%;
  }
}
.topPage__mainCategory {
  margin-bottom: 50px;
}
.topPage__mainCategory.u-new {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .topPage__mainCategory {
    margin-bottom: 40px;
  }
  .topPage__mainCategory.u-new {
    margin-bottom: 60px;
  }
}
.topPage__mainCategoryTtl {
  font-size: 28px;
  font-weight: bold;
  color: #8337f4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .topPage__mainCategoryTtl {
    font-size: 2rem;
  }
}
.topPage__mainCategoryList {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .topPage__mainCategoryList {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .topPage__mainCategoryList {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.topPage__mainCategoryListItem {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
}
.topPage__mainCategoryListThumb {
  aspect-ratio: 295/166;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #ccc;
}
.topPage__mainCategoryListThumbWrap {
  aspect-ratio: 295/166;
  width: 100%;
  position: relative;
}
.topPage__mainCategoryListThumbWrap::before {
  display: block;
  content: "";
  width: 30%;
  height: 30%;
  background: url(../images/movie-arrow.png) center center/contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.topPage__mainCategoryListItemTxtArea {
  background: #efefef;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .topPage__mainCategoryListItemTxtArea {
    padding: 10px;
  }
}
.topPage__mainCategoryListTagWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.topPage__mainCategoryAllTtl {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .topPage__mainCategoryAllTtl {
    font-size: 1rem;
  }
}
.topPage__noPosts p {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .topPage__noPosts p {
    font-size: 1rem;
  }
}

.category-new {
  font-size: 14px;
  color: #fff;
  background: #8337f4;
  padding: 5px 10px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .category-new {
    font-size: 1rem;
  }
}

.taxonomy-terms {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 10px;
}

.term-item a {
  display: block;
  font-size: 14px;
  color: #000;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .term-item a {
    font-size: 1rem;
  }
}

.post-date {
  color: #7f7f7f;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .post-date {
    font-size: 1rem;
  }
}

.post-ttl {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media screen and (max-width: 768px) {
  .post-ttl {
    font-size: 1rem;
  }
}
.post-ttl:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .post-ttl {
    margin-bottom: 10px;
  }
}

.taxonomy-tag {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 5px;
}

.tag-item a {
  display: block;
  color: #7f7f7f;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .tag-item a {
    font-size: 1rem;
  }
}

.parmalink {
  display: block;
  aspect-ratio: 295/166;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 769px) {
  .parmalink:hover {
    opacity: 0.6;
  }
}
.parmalink::before {
  display: block;
  content: "";
  width: 30%;
  height: 30%;
  background: url(../images/movie-arrow.png) center center/contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.parmalink:hover .topPage__mainCategoryListThumbWrap {
  opacity: 0.7;
}
.parmalink:hover .post-ttl {
  text-decoration: underline;
}

/*====================================================================
たくそのみー一覧ページ
====================================================================*/
.topPage__noResult {
  text-align: center;
  padding: 60px 20px;
}

.topPage__noResult p {
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .topPage__noResult p {
    font-size: 15px;
  }
}

.topPage__backBtn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#8038f8), to(#fe0080));
  background-image: -webkit-linear-gradient(left, #8038f8, #fe0080);
  background-image: -moz-linear-gradient(left, #8038f8, #fe0080);
  background-image: linear-gradient(90deg, #8038f8, #fe0080);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.topPage__backBtn:hover {
  opacity: 0.8;
}

/*====================================================================
Pickup Slider
====================================================================*/
.topPage__pickupSlider {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .topPage__pickupSlider {
    margin-bottom: 60px;
  }
}

.pickupSlider {
  position: relative;
}
.pickupSlider__container {
  overflow: hidden;
  width: 170%;
}
@media screen and (max-width: 768px) {
  .pickupSlider__container {
    width: 100%;
  }
}
.pickupSlider__item {
  background: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  height: 100%;
}
.pickupSlider__thumb {
  aspect-ratio: 295/166;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #ccc;
}
.pickupSlider__navigation {
  position: absolute;
  top: -60px;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .pickupSlider__navigation {
    top: -45px;
  }
}
.pickupSlider__prev, .pickupSlider__next {
  width: 50px;
  height: 50px;
  border: 2px solid #bebebe;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.6s ease-in-out 0s;
  -moz-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  background: #fff;
}
.pickupSlider__prev::after, .pickupSlider__next::after {
  font-size: 18px;
  color: #bebebe;
}
.pickupSlider__prev:hover, .pickupSlider__next:hover {
  border-color: #8337f4;
}
.pickupSlider__prev:hover::after, .pickupSlider__next:hover::after {
  color: #8337f4;
}
.pickupSlider__prev.swiper-button-disabled, .pickupSlider__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pickupSlider__prev {
  right: 75px;
  left: auto;
}
@media screen and (max-width: 768px) {
  .pickupSlider__prev {
    right: 70px;
  }
}

.swiper-slide {
  height: auto;
}
/*# sourceMappingURL=style.css.map */