@charset "utf-8";
/* CSS Document */
/*  typography */
html{
  scroll-behavior: smooth;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #000;
  margin: 0;
  padding: 0;
}
h1,h2,h3,h4,h5,h6,p,ul,li,img,dl{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-wrap: break-word;
}
p {
  font-size: 16px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8;
}
a {
    color: #222;
}
h3, .h3 {
  font-size: 28px;
}
h4, .h4 {
  font-size: 20px;
}
article, aside, figcaption, figure, footer, header, hgroup, legend, main, nav, section {
    display: block;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.fixed-top {
    top: 0;
}
.fixed-bottom, .fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}
.lh2 {
  line-height: 2.4;
}

.fl-jcb {
   justify-content: space-between;
}
.grid-sp {
  display: flex;
}
.fl-jcc {
  justify-content: center;
}

/*item*/
.news-date {
    color: #0064ff;
    font-size: 14px;
}
.movie-date {
    color: #ff0078;
    font-size: 14px;
}
.interview-date {
    color: #00c800;
    font-size: 14px;
}
.aktio-date {
    color: #d7073b;
    font-size: 14px;
}
.column-date{
    font-size: 16px;
}
.more a {
    font-size: 18px;
    text-align: right;
    display: block;
    position: relative;
    padding-right: 24px;
    color: #222;
    margin-bottom: 10px;
}
.more a::after {
    position: absolute;
    content: '>';
    font-weight: bold;
    line-height: 1.7;
    top: 0px;
    bottom: 0;
    right: 0;
    margin: auto;
}

.section-inner,
.section-inner-wide{
    position: relative;
    width: 100%;
    padding: 20px 10px;
}
.section-inner-pick{
    position: relative;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 0;
}
.col-3 {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .grid {
    display: flex;
    flex-wrap: wrap;
  }
  .col-2 > * {
    flex-basis: 50%;
    justify-content: space-between;
  }
  .col-3 > * {
    flex-basis: 30.3333%;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .col-3 > *:not(:first-child) {
    margin-left: 4.5%;
  }
  .col-3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1025px) {
  h3, .h3 {
    font-size: 36px;
  }
  h4, .h4 {
    font-size: 22px;
  }
   section {
    background: #e6e5e0;
  }
  .section-inner {
    position: relative;
    width: 100%;
    padding: 70px 10px 60px;
    max-width: 1270px;
    margin: 0 auto;
  }
  .section-inner-wide {
    position: relative;
    width: 100%;
    padding: 0 10px;
    max-width: 1500px;
    margin: 0 auto;
  }
  .section-inner-pick{
    position: relative;
    width: 100%;
    padding: 0px;
    max-width: 1500px;
    margin: 0 auto;
  }
  .more a {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }
}


/*head*/
nav{
  width: 100%;
  position: fixed;
  background: #fff;
  z-index: 1;
  height: 100px;
  padding: 20px 10px 0;
}
@media (max-width: 1026px) {
    .nav-inner {
        height: 0;
    }
}
#logo h1 {
    width: 200px;
}
#logo h1 img {
    width: 100%;
}
/*ナビゲーション部分*/
.menu ul li a {
  position: relative;
  display: inline-block;
}
.menu .news a::after,
.menu .column a::after,
.menu .movie a::after,
.menu .photo a::after,
.menu .magazine a::after,
.menu .link a::after{
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 6px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.menu .news a::after{
  background: #0064ff;
}
.menu .column a::after{
  background: #00c800;
}
.menu .movie a::after{
  background: #ff0078;
}
.menu .photo a::after{
  background: #ffdc00;
}
.menu .magazine a::after{
  background: #ff5a00;
}
.menu .link a::after{
  background: #999999;
}
.menu .news a:hover::after,
.menu .column a:hover::after,
.menu .movie a:hover::after,
.menu .photo a:hover::after,
.menu .magazine a:hover::after,
.menu .link a:hover::after{
  bottom: -15px;
  opacity: 1;
  visibility: visible;
}
.menu{
  text-align:center;
  background-color:rgba(255,255,255,0.5);
  transition: .5s ease;/*滑らかに表示*/
  -webkit-transform: translateX(-10s5%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding: 10px 0 20px;
}

/*OPEN時の動き*/
.menu.open {
 -webkit-transform: translateX(0%);
 transform: translateX(0%);/*中身を表示（右へスライド）*/
}
.menu.open ul {
    padding: 0;
}
.menu ul li {
    padding: 5px 0;
}
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 3;
    right: 20px;
    top: 40px;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 42px;
    border-bottom: solid 4px #333;
    -webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
    transition: .35s ease-in-out;     /*変化の速度を指定*/

}
.Toggle span:nth-child(1) {
    top:5px;
}
.Toggle span:nth-child(2) {
    top: 18px;
}
.Toggle span:nth-child(3) {
    top: 32px;
}

.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-inner .guest p {
  margin-bottom: 5px;
  text-align: center;
}
.nav-inner .guest ul {
  display: block;
  padding: 10px;
}
.nav-inner .guest ul li {
  margin-bottom: 10px;
}
.register-btn a {
    display: block;
    width: 220px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 2;
    color: #fff;
    background: #ff5a00;
    border: 2px solid #ff5a00;
	transition: all  0.3s ease;
}
.login-btn a {
    display: block;
    width: 220px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 2;
    background: #fff;
    border: 2px solid #ff5a00;
	transition: all  0.3s ease;
}
.register-btn a:hover {
    color: #fff;
}
.login-btn a:hover {
    color: #ff5a00;
}
.login-btn a:visited {
    color: #ff5a00;
}
.main-bg {
  background: url(../images/main.jpg) no-repeat;
  width: 100%;
  height: 380px;
  /* z-index: -1; */
  position: relative
}
.main-title {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    max-width: 400px;
    margin: auto;
    padding: 10px;
}
.main-title img {
  width: 100%;
}

@media (min-width: 1025px)  {
  nav{
    display: flex;
    justify-content: center;
    position: fixed;
    background: #fff;
    padding: 0;
    height: 130px;
  }
 .nav-inner{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 10px;
    max-width: 1270px;
    margin: 0 auto;
  }
 .nav-inner .guest p {
    text-align: left;
  }
#logo h1 {
    width: 244px;
}
.navi {
     padding: 0 80px;
    }
 .guest{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
  }
.nav-inner .guest ul li {
  margin-bottom: 0px;
}
 .register{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
  }
  header::after{
    display:none;
  }
  .Toggle{
    display: none;
  }
  .nav-inner .guest ul {
    display: flex;
    align-items: flex-end;
  }
  .register ul li {
    padding: 0 20px;
    border-right: 1px solid #000;
  }
  .register ul li:last-child {
    border-right: none;
  }
  .menu{
    background-color: transparent;
    margin-top:0;
   -webkit-transform: translateX(0);
   transform: translateX(0);
   padding: 0;
  }
  .menu ul{
    display: flex;
  }
  .menu ul li a{
      padding: 0 .6em;
    margin: 0 .6em;
  }
  .main-title img {
    width: 100%;
 }
  .main-bg {
    height: 790px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .main-title {
    padding-top: 95px;
    max-width: 800px;
    display: flex;
    justify-content: center;
  }
}

/*pickup*/
.pick {
    display: block;
}
.pick-ph {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 10% 0 10% 10%;
}
.pick-ph img {
    width: 100%;
    max-width: 100%;
    display: block;
}
.pick-ph p {
    margin: 0;
}
.pick-text {
    padding: 40px;
}
.pick-text p{
    line-height: 2;
}
.read-btn a {
    display: block;
    width: 160px;
    padding: 10px;
    text-align: center;
    font-size: 17px;
    line-height: 2;
    color: #fff;
    background: #ff5a00;
    border: 2px solid #ff5a00;
	transition: all  0.3s ease;
}
.read-btn a:hover {
    color: #fff;
}
.read-btn.news a {
    background: #0064ff;
    border: 2px solid #0064ff;
}
.read-btn.interview a {
    background: #00c800;
    border: 2px solid #00c800;
}
.read-btn.aktio a {
    background: #d7073b;
    border: 2px solid #d7073b;
}

@media only screen and (min-width: 1025px) {
  .pick {
    display: flex;
    flex-wrap: wrap;
  }
  .pick> * {
    flex-basis: 50%;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1490px) {
  .pick-ph img {
      width: 100%;
      max-width: 640px;
  }
}
@media only screen and (min-width: 1025px) {
  .pick-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .pick-text-inner {
    width: 430px;
  }
  .pick-ph {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 7% 0 7% 7%;
  }
}


/*list-box*/
@media only screen and (max-width: 600px) {
  .list-ph {
    margin-bottom: 20px;
  }
}
.list-ph > p {
    aspect-ratio: 350 / 234;
    overflow-y: hidden;
}
.list-ph img {
    width: 100%;
}
.list-text {
    background: #fff;
    padding: 20px 15px 20px;
}
.list-lead {
    font-size: 18px;
}
@media only screen and (min-width: 1025px) {
.list-text {
    background: #fff;
    padding: 30px 35px 20px;
}
.list-lead {
    font-size: 22px;
}
}

/*news*/
.icon-news {
    position: relative;
    z-index: 0;
}
.icon-news::before {
    content: ' ';
    position: absolute;
    background: url(../images/icon-new-b.png);
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1;
}
.news-title {
    margin-bottom: 20px;
}
.news-title span {
    width: 120px;
    display: block;
    border-bottom: 6px solid #0064ff;
    padding-bottom: 16px;
}
@media only screen and (min-width: 1025px) {
  .news-title {
    margin-bottom: 50px;
  }
}

/*interview / column*/
.icon-interview {
    position: relative;
    z-index: 0;
}
.icon-interview::before {
    content: ' ';
    position: absolute;
    background: url(../images/icon-new-g.png);
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1;
}
.interview-title {
    margin-bottom: 20px;
}
.column-title {
    padding-bottom: 30px;
}
.column-ph img {
    width: 100%;
}
.column-ph-cap {
    text-align: left;
    padding-top: 6px;
}
@media only screen and (max-width: 600px) {
  .interview-title img {
    width: 300px;
  }
  .column-title img {
    max-width: 300px;
  }
}
.interview-title span {
    width: 120px;
    display: block;
    border-bottom: 6px solid #00c800;
    padding-bottom: 16px;
}
@media only screen and (min-width: 1025px) {
  .column-ph-cap {
      text-align: center;
  }
  .column-detail-box figcaption {
      text-align: center;
  }
  .interview-title {
    margin-bottom: 50px;
  }
}

/*aktio*/
.icon-aktio {
    position: relative;
    z-index: 0;
}
.icon-aktio::before {
    content: ' ';
    position: absolute;
    background: url(../images/icon-new-r.png);
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1;
}
.aktio-title {
    margin-bottom: 20px;
    width: 100%;
}
.aktio-title span {
    width: 120px;
    display: block;
    border-bottom: 6px solid #d7073b;
    padding-bottom: 16px;
}
@media only screen and (min-width: 1025px) {
  .news-title {
    margin-bottom: 50px;
  }
}

/*MOVIE*/
.icon-movie {
    position: relative;
    z-index: 0;
}
.icon-movie::before {
    content: ' ';
    position: absolute;
    background: url(../images/icon-new-p.png);
    width: 60px;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1;
}
.movie-title {
    margin-bottom: 20px;
}
.movie-title span {
    width: 120px;
    display: block;
    border-bottom: 6px solid #ff0078;
    padding-bottom: 16px;
}
@media only screen and (min-width: 1025px) {
.movie-title {
    margin-bottom: 50px;
  }
}

/*gallery*/
.gallery-inner {
  padding: 40px 10px;
}
.gallery-title {
  margin-bottom: 20px;
}
.gallery-title span {
  width: 120px;
  display: block;
  border-bottom: 6px solid #ffdc00;
  padding-bottom: 16px;
}
.gallery-ph {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.gallery-ph img {
  width: 100%;
  max-width: 750px;
}
@media only screen and (min-width: 1025px) {
  .gallery-inner {
    padding: 80px 0;
  }
  .gallery-title-inner {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
  }
  .gallery-ph {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
  }
  .gallery-ph li {
    width: 50%;
  }
  .gallery-title {
    margin-bottom: 50px;
  }
}

/*ボタンを大きくする　btn*/
.btn:hover
{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;
}

/*magazine*/
.magazine-logo {
    margin-bottom: 10px;
}
.magazine-logo img {
    width: 100%;
}
.magazine-btn a {
    display: block;
    border: 2px solid #ff5a00;
    padding: 14px 20px;
    color: #ff5a00;
    font-size: 20px;
}
.magazine-dt {
    color: #fff;
    font-size: 18px;
}
.magazine-title {
    margin-bottom: 50px;
    padding: 10px;
}
.magazine-name {
    color: #ff5a00;
    padding-top: 10px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}

/* /footer */
* { box-sizing: border-box; }
.flickity-viewport {
    height: 260px!important;
}
.carousel-cell {
  width: 128px;
  height: 230px;
  margin: 15px;
  counter-increment: carousel-cell;
}
.flickity-page-dots,
.flickity-button svg {display: none;}
.flickity-button:disabled {
    /* opacity: 1; */
}
.flickity-prev-next-button {
    transform: translateY(-50%);
}
.previous {
    position: absolute;
    background: url(../images/mga-arrow-prev.png) no-repeat;
    width: 28px;
    height: 54px;
}
.previous:hover {
    background: url(../images/mga-arrow-prev.png) no-repeat;
}
.next {
    position: absolute;
    background: url(../images/mga-arrow-next.png) no-repeat;
    width: 28px;
    height: 54px;
}
.next:hover {
    background: url(../images/mga-arrow-next.png) no-repeat;
}
.flickity-prev-next-button.next {
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.flickity-prev-next-button.previous {
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.footer-wrap {
    padding: 40px 0 200px;
    margin-bottom: 20px;
}
#page-top {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
}
.sns-link {
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    padding: 100px 0 30px;
}
.sns-link ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sns-link ul li {
    padding: 0 20px;
}
.footer-link ul{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
.footer-link ul li {
    padding: 0 20px;
    font-size: 15px;
    border-right: 1px solid #000;
  }
.footer-link ul li:last-child {
    border-right: none;
  }
.copyright {
    font-size: 14px;
    text-align: center;
}
@media only screen and (min-width: 1025px) {
  .sns-link {
    padding: 140px 0 30px;
  }
}
/*common*/
.bold {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
section {
    background: #e6e5e0;
}
.bg-blue {
    background: #060b1e;
}
.bg-orange {
    background: #ff5a00;
}
.bg-orange.news {
    background: #0064ff;
}
.bg-orange.interview {
    background: #00c800;
}
.bg-orange.aktio {
    background: #d7073b;
}
.bg-white {
    background: #fff;
}
.bb-line {
            border-bottom: 2px solid #222;
}
.frame-ln {
outline: 2px solid #545454;
}
ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}
a:hover {
  color: #ff5a00;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}
.bg-gray {
  background: #eaeaea !important;
}

.text-primary {
  color: #fff!important;
}

.text-color {
  color: #4c4c4c;
}

.text-dark {
  color: #000 !important;
}

.text-light {
  color: #999999 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}
.zindex-1 {
  z-index: 1;
}
.rounded-lg {
  border-radius: 15px;
}
.overflow-hidden {
  overflow: hidden;
}

/*210422*/
.wrap {
    width: 100%;
    padding: 0 10px;
}
.list {
    padding: 20px 0;
}
.fl-aib {
    align-items: baseline;
}
.magazine-title {
    width: 100%;
}
.gallery-title, .link-title, .news-title, .interview-title, .movie-title, .column-title {
    width: 100%;
    max-width: 450px;
}
/*magazine*/
.list-magazine {
    background: #fff;
}
.magazine-title {
    margin-bottom: 20px;
}
.list-magazine {
    background: #fff;
    padding: 30px;
}
.list-magazine-ph {
    text-align: center;
    padding: 30px 0 10px;
}
.list-magazine-ph img {
    width: 100%;
    max-width: 200px;
}
.list-magazine-text {
    font-size: 20px;
    text-align: center;
}
@media only screen and (min-width: 1025px) {
.magazine-title {
    margin-bottom: 50px;
  }
}
/*link*/
.link {
    width: 100%;
    padding: 40px 10px 80px;
}
.link-text {
    border-bottom: 1px solid #222;
    padding: 8px 10px;
}
.link-text p {
    font-size: 18px;
}
.link-title {
    margin-bottom: 20px;
}
.link-date {
    position: relative;
    padding-left: 30px;
}
.link-date::before {
    position: absolute;
    content: "■";
    font-size: 24px;
    color: #82805f;
    top: -5px;
    bottom: 0;
    left: 0;
    margin: auto;
}
@media only screen and (min-width: 1025px) {
    .link-title {
        margin-bottom: 50px;
    }
    .link {
        width: 100%;
        max-width: 1070px;
        margin: 0 auto;
        padding: 60px 0 120px;
    }
    .link-date {
        position: relative;
        width: 20%;
        padding-left: 30px;
    }
    .link-date::before {
        top: 0px;
    }
    .link-text {
        display: flex;
    }
    .link-text p {
        font-size: 22px;
    }
    .link-body {
        width: 80%;
    }
}
/*photo gallery*/
.photo-detail-main {
    background: #ffdc00;
    position: relative;
    width: 75.8%;
    height: 75.8%;
}
.photo-detail-inner {
    width: 100%;
    padding: 140px 0 107px;
    position: relative;
    margin: 0px 0 0 140px;
    background-color: rgb(255 255 255 / 0%);
}
.photo-detail-inner img {
    width: 100%;
}
.photo-detail-date {
    font-size: 14px;
    font-weight: bold;
    color: #444;
    padding-top: 8px;
    text-align: right;
    display: block;
}
.photo-detail-text {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    font-size: 20px;
    padding: 30px 0;
}
.photo-detail-text p {
    font-size: 20px;
    line-height: 2;
}
/*photo-slide*/
.photogallery-slide {
    padding: 120px 0 150px;
}
.photogallery-slide ul {
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: center;
}
.photogallery-slide .ps-square {
    width: 110px;
}
.photogallery-slide .ps-square img {
    width: 100%;
}
.photogallery-slide .ps-square {
    padding: 0 10px;
}
.photogallery-slide .ps-prev,
.photogallery-slide .ps-next{
    position: relative;
    font-size: 18px;
    font-weight: bold;
}
.photogallery-slide .ps-next {
    padding: 0 26px 0 70px;
}
.photogallery-slide .ps-prev {
    padding: 0 70px 0 26px;
}
.photogallery-slide .ps-next::after {
    width: 14px;
    height: 14px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 6px;
    margin: auto;
    content: "";
}
.photogallery-slide .ps-prev::before {
    width: 14px;
    height: 14px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(225deg);
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 6px;
    margin: auto;
    content: "";
}
.photogallery-slide .ps-square a.active {
    background-color: #ffdc00;
    display: inline-block;
}
.photogallery-slide .ps-square a.active img {
    opacity: 0.5;
}
@media only screen and (min-width: 1025px) {
  .photo-detail-inner {
      padding: 120px 0 87px;
      margin: 0px 0 0 120px;
  }
}
@media only screen and (max-width: 600px) {
  .photo-detail-inner {
      padding: 60px 0 27px;
      margin: 0px 0 0 60px;
  }
  .photogallery-slide ul {
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
  }
  .photogallery-slide .ps-square {
      width: 18%;
      padding: 10px;
  }
}
/*column*/
.column-detail-wrap {
    margin-bottom: 50px;
}
.column-detail-main {
    background: #00c800;
    position: relative;
    width: 75.8%;
    height: 75.8%;
}
.column-detail-main.news {
    background: #0064ff;
}
.column-detail-main.aktio {
    background: #d7073b;
}
.column-detail-inner {
    width: 100%;
    padding: 120px 0 120px;
    position: relative;
    margin: 0px 0 0 120px;
    background-color: rgb(255 255 255 / 0%);
}
.column-detail-inner img {
    width: 100%;
}
.column-detail-box {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    /* font-size: 20px; */
    padding: 30px 0;
}
.column-detail-box .text {
    font-size: 18px;
    line-height: 2;
    padding: 40px 10px;
}
.column-note {
    border: 1px solid #222;
    padding: 20px 50px;
    font-size: 20px;
    text-align: center;
    width: 90%;
    margin: 0 auto 70px;
}
.column-regist {
    width: 100%;
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 0 150px;
}
.column-special {
    padding: 50px 20px;
    box-shadow: 0 0 10px #cdcdcd;
}
.column-special-lead {
    font-size: 26px;
    text-align: center;
    padding-bottom: 40px;
}
.column-special-title {
    text-align: center;
    font-size: 24px;
    padding-bottom: 15px;
}
.column-speciall-list {
    border-bottom: 1px solid #222;
    margin-bottom: 30px;
}
.column-speciall-list li {
    border-top: 1px solid #222;
    padding: 6px;
}
.column-special-item {
    font-size: 22px;
}
.column-special-body {
    font-size: 18px;
}
.link-date {
    position: relative;
    padding-left: 30px;
}
.column-speciall-price {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.column-speciall-price li {
    padding: 20px 10px;
    background: #e6e5e0;
    margin-bottom: 20px;
}
.column-speciall-price p.price {
    font-size: 30px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.column-speciall-price li span {
    font-size: 18px;
}
.column-speciall-price p.plan {
    font-size: 24px;
    text-align: center;
}
.column-speciall-price .sla {
    position: relative;
}
.column-speciall-price .sla::before {
    position: absolute;
    content: " ";
    background: url(../images/column-sla.png) no-repeat;
    width: 108px;
    height: 108px;
    width: 78px;
    height: 78px;
    background-size: contain;
}
.column-speciall-price .arrow {
    padding: 0 8px;
}
@media only screen and (min-width: 1025px) {
    .column-detail-main {
        width: 75.8%;
        height: 75.8%;
    }
    .column-note {
        width: 80%;
        margin: 50px auto 70px;
    }
    .column-detail-box .text {
        font-size: 20px;
        padding: 0 0 30px;
    }
    .column-detail-inner {
        padding: 140px 0 140px;
        margin: 0px 0 0 140px;
    }
    .column-speciall-price {
        display: flex;
        justify-content: space-evenly;
    }
    .column-special {
        padding: 50px 100px;
        box-shadow: 0 0 10px #cdcdcd;
    }
    .column-speciall-list li {
        border-top: 1px solid #222;
        padding: 6px;
        display: flex;
        align-items: center;
    }
    .column-special-item {
        font-size: 24px;
        width: 38%
    }
    .column-special-body {
        font-size: 20px;
        width: 62%
    }
    .column-speciall-price li {
        width: 500px;
        padding: 20px;
        margin: 0 5px;
    }
    .column-speciall-price p.price {
        font-size: 40px;
    }
    .column-speciall-price li span {
        font-size: 24px;
        padding: 0 10px;
    }
    .column-speciall-price p.plan {
        font-size: 24px;
    }
    .column-speciall-price .sla::before {
        width: 108px;
        height: 108px;
    }
}
@media only screen and (max-width: 600px) {
    .column-detail-inner {
        padding: 60px 0 60px;
        margin: 0px 0 0 60px;
    }
    .column-note {
        width: 98%;
    }
}
.fc-column {
    color: #00c800;
}
.fc-movie {
    color: #ff0078;
}
.fc-photo {
    color: #ffdc00;
}
.fc-magazine {
    color: #ff5a00;
}
.register-l-btn a {
    display: block;
    width: 78%;
    margin: 50px auto 0;
    text-align: center;
    font-size: 28px;
    line-height: 2;
    color: #fff;
    background: #ff5a00;
    border: 2px solid #ff5a00;
	transition: all  0.3s ease;
}
.register-l-btn a:hover {
    color: #fff;
}
/*pagination*/
.pagination {
    padding-bottom: 80px;
}
.pagination ul {
    display: flex;
    align-items: center;
}
.pagination li {
    padding: 6px
}
.pagination .num a {
    color: #222;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 2px solid #222;
}
.pagination .num a.active {
    background-color: #ff5a00;
    color: #fff;
    border: 2px solid #ff5a00;
}
.pagination .num a:hover:not(.active) {
    color: #fff;
    background: #ff5a00;
    border: 2px solid #ff5a00;
}
.pagination .pg-prev,
.pagination .pg-next{
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
}
.pagination .pg-next {
    padding: 0 22px 0 12px;
}
.pagination .pg-prev {
    padding: 0 12px 0 22px;
}
.pagination .pg-next::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 10px;
    margin: auto;
    content: "";
}
.pagination .pg-prev::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(225deg);
    position: absolute;
    top: 2px;
    bottom: 0;
    left: 10px;
    margin: auto;
    content: "";
}
/*breadcrumbs*/
.breadcrumbs {
    padding: 150px 10px 30px;
}
.breadcrumbs-list {
    display: flex;
    padding: 0;
}
.breadcrumbs-list li {
    font-size: 13px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}
.breadcrumbs-list li:not(:last-child) {
    padding-right: 18px;
}
.breadcrumbs-list li:not(:last-child)::after {
    font-size: 13px;
    font-weight: bold;
    width: 9px;
    height: 9px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: -3px;
    bottom: 0;
    right: 6px;
    margin: auto;
    content: "";
}
@media only screen and (min-width: 1025px) {
  .wrap {
      width: 100%;
      max-width: 1270px;
      margin: 0 auto;
      padding: 0;
  }
  .list {
      padding: 60px 0;
  }
    .breadcrumbs {
      padding: 190px 0px 30px;
  }
    .pagination {
      padding-bottom: 150px;
  }
    .register-l-btn a {
       width: 60%;
       padding: 15px 0;
       margin: 70px auto 0;
       text-align: center;
       font-size: 38px;
    }
}
@media only screen and (max-width: 600px) {
.pagination .num a {
    color: #222;
    font-size: 16px;
    padding: 6px 10px;
    line-height: 2;
}
  .pagination ul {
    display: flex;
    flex-wrap: wrap;;
  }
}
/*210423*/
.list-ph a:hover{
    opacity: 0.6;
    transition-duration: 0.8s;
}
.gallery-ph img {
    backface-visibility: hidden;
    display: block;
}
.gallery-ph a img:hover {
    opacity: 0.6;
    transition-duration: 0.8s;
}
.magazine-ph {
    background: #fff;
    width: 128px;
    height: 180px;
}
.magazine-ph a:hover{
    opacity: 0.6;
    transition-duration: 0.8s;
}
.magazine-ph img{
    width: 100%;
    height: 100%;
}
.icon-play,
.icon-movie {
    display: block;
    position: relative;
}
.icon-play::after,
.icon-movie::after {
    content: ' ';
    position: absolute;
    background: url(../images/icon-play.png);
    width: 76px;
    height: 76px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
}

.regist-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    background:rgba(255,255,255,0.5);
}
.regist-box-inr {
    width: 100%;
    max-width: 750px;
    padding: 40px;
    margin: 0 auto;
}
.regist-box-text {
    font-size: 20px;
    padding-bottom: 20px;
    text-align: left!important;
}
.regist-box-btn a {
    display: block;
    width: 97%;
    padding: 10px;
    margin: 0 auto;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    background: #ff5a00;
    border: 2px solid #ff5a00;
    transition: all 0.3s ease;
}
.pc-br {
  display: none;
}
.sp-br {
  display: block;
}
@media only screen and (min-width: 1025px) {
  .regist-box-inr {
    padding: 40px 10px;
    max-width: 1290px;
    display: flex;
  }
  .regist-box-text {
    font-size: 23px;
  }
  .regist-box-btn a {
    width: 90%;
    padding: 25px 10px;
  }
  .sp-br {
    display: none;
  }
}
@media only screen and (min-width: 1210px) {
    .pc-br {
        display: block;
    }
}
@media only screen and (max-width: 600px) {
    .regist-box-inr {
        padding: 10px;
    }
    .regist-box-text {
        font-size: 14px;
        padding-bottom: 10px;
    }
    .regist-box-btn a {
        font-size: 14px;
    }
}
.wp-block-image{
    margin: 1em 0;
}
.wp-block-image img{
    height: auto;
}
button{
    cursor: pointer;
}
.btn-primary {
    background-color: #ff5a00;
    border: 1px solid #ff5a00;
    color: #fff;
    text-align: center;
    width: 190px;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 15px;
    line-height: 28px;
}
@media only screen and (max-width: 600px) {
    .btn-primary{
        border-radius: 10px;
        line-height: 18px;
    }
}
.btn-secondary {
    background-color: #ff5a00;
    border: 1px solid #ff5a00;
    color: #fff;
    text-align: center;
    width: 190px;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 20px;
    line-height: 38px;
}
@media only screen and (max-width: 600px) {
    .btn-secondary {
        border-radius: 15px;
        line-height: 28px;
    }
}
.tac{
    text-align: center;
}
.form{
    font-size: 18px;
}
@media only screen and (max-width: 600px) {
    .form{
        font-size: 14px;
    }
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 20px 0;
    padding: 20px;
    text-align: center;
}
fieldset table{
    margin: auto;
}
fieldset th,
fieldset td{
    padding: 10px;
    text-align: left;
}
fieldset th{
    font-weight: 800;
}
.input{
    line-height: normal;
    width: 50%;
    margin: 10px auto;
}
@media only screen and (max-width: 600px) {
    .input{
        width: auto;
    }
}
.input label{
    margin: 0 10px;
    display: inline-block;
    width: 30%;
    vertical-align: top;
}
@media only screen and (max-width: 600px) {
    .input label{
        display: block;
        width: auto;
    }
}
.btn-form{
    margin: 20px 0;
}
.login-user--hint{
    padding-bottom: 40px;
    text-align: center;
}
/* ラジオボタン01 */
input[type=radio] {
    display: none;
}
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.radio01::before {
    background: #fff;
    border: 1px solid #231815;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.radio01::after {
    background: #ff5a00;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 8px;
    margin-top: -5px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}
table.membership{
    width: 80%;
    margin: auto;
    text-align: left;
}
@media only screen and (max-width: 600px) {
    table.membership {
        width: 100%;
    }
}
table.membership th,
table.membership td{
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}
table.membership thead th{
    text-align: center;
}
table.membership thead td{
    text-align: center;
    vertical-align: middle;
}
table.legal{
    width: 80%;
    margin: auto;
    text-align: left;
    background: #fff;
}
table.legal th,
table.legal td{
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.admin-template{
    padding-bottom: 30px;
}
.admin-template table{
    max-width: 100%;
}
.admin-template th,
.admin-template td{
    padding: 5px 10px;
}
.admin-template .prev,
.admin-template .next{
    position: static;
    background: none;
    width: auto;
    height: auto;
}
.admin-template li{
    display: inline;
    padding: 0 10px;
}
.admin-menu{
    background: #f00;
}
/*20210523*/
.soldout {
    position: relative;
    background: #060b1e;
}
.soldout img {
    opacity: 0.3;
}
.soldout::before {
    content: ' ';
    position: absolute;
    background: url(../images/soldout.png) no-repeat;
    z-index: 1;
    width: 157px;
    height: 25px;
    top: 0;
    left: -15px;
    bottom: 0;
    margin: auto;
}
/* AKTIO バナー */
.main-title-banner{
    position: absolute;
    bottom: 60px;
}
@media only screen and (min-width: 600px) {
    .main-title-banner{
        width: 720px;
    }
    .main-title-banner img{
        width: 100%;
    }
}
@media only screen and (max-width: 600px) {
    .main-title-banner{
        bottom: 10px;
        text-align: center;
    }
    .main-title-banner img{
        width: 50%;
    }
}
.breadcrumbs-banner{
    text-align: right;
    margin-top: 20px;
}
.breadcrumbs-banner img{
    max-width: 300px;
}
@media only screen and (max-width: 600px) {
    .breadcrumbs-banner{
        margin: 20px auto 0;
    }
    .breadcrumbs-banner img{
        width: 50%;
    }
}
