@charset "UTF-8";

:root {
  --clubtvo-color-blue: #1eb9ee;
  --clubtvo-color-orange: #f8b308;
  --clubtvo-color-text-main: #362215;
  --clubtvo-color-emphasis: #ff0c8a;
  --clubtvo-font-sm: 14px;
  --clubtvo-font-md: 20px;
  --clubtvo-font-lg: 32px;
  --clubtvo-font-heading: "din-condensed", sans-serif;
  --clubtvo-mg-inline-sm: 16px;
  --clubtvo-width-outer: 1344px;
  --clubtvo-width-container: 1152px;
  --clubtvo-sp-menu-button-height: 54px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


* {
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html,
body {
  padding: 0;
  border: 0;
}

body {
  color: var(--clubtvo-color-text-main);
  font-family: "noto-sans-cjk-jp", sans-serif;
  /*font-feature-settings: "palt";*/
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
}

.p-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a,
area,
button,
[role="button"],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

table {
  border-collapse: collapse;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

video {
  vertical-align: bottom;
}

::placeholder {
  opacity: .25;
}



/* utility */

.u-lg-visible {
  display: none;
}

.u-sm-visible {
  display: initial;
}

.u-fz-md {
  font-size: var(--clubtvo-font-md);
}

.u-fz-lg {
  font-size: var(--clubtvo-font-lg);
}

.u-frame {
  border: 3px solid currentColor;
  border-radius: 10px;
  box-shadow: #ffa800 5px 5px;
  overflow: hidden;
}

.u-thumbnail--1-1 {
  aspect-ratio: 1/1;
}

.u-thumbnail--3-2 {
  aspect-ratio: 3/2;
}

.u-button {
  background-color: #ff722c;
  color: #fff;
  border: none;
  border-radius: calc(25px + 1em);
  font-size: 30px;
  font-weight: 700;
  display: block;
  padding: 25px 15px;
  text-align: center;
  transition: opacity .3s;
}

.u-button:hover {
  opacity: .8;
}

.u-button--header {
  display: block;
  font-size: 16px;
  font-weight: 400;
  min-width: 250px;
  padding: 15px;
  text-align: center;
}

.u-button--yellow {
  background-color: #f6cb00;
}

.u-button--pink {
  background-color: #ff84a6;
}

.u-button--brown{
  background-color: #5d3e2a;
}

.u-button--wisteria{
  background-color: #6f88bb;
}

.u-button--white {
  color: var(--clubtvo-color-text-main);
  background-color: #fff;
}

.u-button--about {
  font-size: 28px;
}

.u-button--members-only {
  font-size: 25px;
  padding-block: 15px;
}

.u-button--view-more {
  font-family: "area-normal", sans-serif;
  font-size: 25px;
  padding: 30px 15px 20px;
}

.u-button-rectangle {
  background-color: #ff84a6;
  color: #fff;
  display: inline-block;
  font-family: "area-normal", "noto-sans-cjk-jp", sans-serif;
  font-size: 20px;
  padding: 20px 40px 15px;
  text-align: center;
  transition: opacity .3s;
}

.u-button-rectangle:hover {
  opacity: .8;
}

.u-hover-opacity{
  transition: opacity .3s;
}

.u-hover-opacity:hover{
  opacity: .6;
}


/* grid */

.grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-col2-1fr {
  display: grid;
  gap: 45px;
}

.grid-col3-1fr {
  display: grid;
  gap: 45px;
}

.grid-col4-1fr {
  display: grid;
  gap: 45px;
}


/* gridに付随する要素 */

.grid-tag {
  display: inline-block;
}

.grid-date {
  display: inline-block;
  float: right;
}

.grid-border {
  background: linear-gradient(transparent 50%, #fcff00 50%);
  font-size: 25px;
  line-height: 1.3;
  padding-inline: 10px;
  font-weight: 700;
}

.grid-text {
  line-height: 1.5;
}

.grid-content--ranking {
  position: relative;
  margin-top: 20px;
}

.grid-content--members {
  position: relative;
}

.grid-mailmagazine-articles {
  align-items: end;
  gap: 33px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  text-align: center;
}

.grid-about-registration {
  gap: 65px;
}

/* flex */

.flex-col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
}

.flex-col2__main,
.flex-col2__aside {
  width: 100%;
}


/* header */

.p-u-navigation {
  width: min(100%, var(--clubtvo-width-outer));
  /* margin-inline: auto; */
}

.p-u-menu {
  color: #fff;
  margin-inline: auto;
  width: 100%;
}

.p-u-menu__item {
  border-top: dotted 1px #fff;
  align-self: center;
  flex: 1 1 0;
}

.p-u-menu__item:first-child {
  border: none;
}

.p-u-menu__button {
  padding: 8px;
}

.p-u-menu__button > a{
  margin-inline: auto;
  max-width: 450px;
}

.p-u-menu__link {
  display: block;
  font-size: clamp(14px, 1.5625vw, 30px);
  padding-block: min(2dvh, 60px);
  text-align: center;
}

.p-u-menu__search{
  padding: 15px;
  background-color: rgba(255, 255, 255, .5);
}

.p-header__in {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 6.25%;
  margin-inline: auto;
  padding: 20px 10px;
  width: min(100%, var(--clubtvo-width-outer));
}

.c-tvo-logo,
.c-drawer {
  flex: 0 0 20%;
}

.c-club-logo {
  flex: 1 1 0;
}

.p-header__lower {
  background-color: var(--clubtvo-color-text-main);
  display: none;
  overflow-y: scroll;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.p-header__lower.open {
  display: block;
}

header button,
.p-g-header button {
  display: none;
}

.c-club-logo{
  text-align: center;
}

.c-tvo-logo {
  text-align: right;
}

.c-header-actions {
  display: none;
}

.c-header-actions__item {
  width: calc(50% - 8px);
}

.c-header-actions__item--extra {
  width: 100%;
}

.c-search-form__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px solid var(--clubtvo-color-text-main);
  width: 100%;
}

.c-search-form__button label {
  width: 100%;
}

.c-search-form__button input {
  width: 100%;
  height: 60px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 1em;
}

.c-search-form__button input::placeholder {
  color: #767d83;
}

.c-search-form__button button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 60px;
  border: none;
  background-color: var(--clubtvo-color-text-main);
  cursor: pointer;
}

.c-search-form__button button::after {
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  content: '';
}

.c-search-form__button--wide button{
  width: 120px;
}

/* 会員登録、ログインボタン */
/* .u-button--headerを上書き */
.c-header-actions__item .u-button--header {
  min-width: fit-content;
  font-size: 16px;
}

/* スマホハンバーガーメニューボタン */
.c-drawer {
  display: block;
  /* position: absolute;
  top: 20px;
  right: 20px; */
  position: relative;
  z-index: 2;
}

.c-drawer__button {
  position: relative;
  height: var(--clubtvo-sp-menu-button-height);
  margin-left: auto;
  width: 54px;
  transition: all 0.4s;
}

.c-drawer__button.open {
  transform: rotate(720deg);
}

.c-drawer__button>span,
.c-drawer__button::before,
.c-drawer__button::after {
  background-color: var(--clubtvo-color-text-main);
  border-radius: 2px;
  display: inline-block;
  height: 3px;
  width: 100%;
  position: absolute;
  content: '';
  transition: all 0.4s;
}

.c-drawer__button>span {
  top: calc(((var(--clubtvo-sp-menu-button-height) - (3px * 3)) / 5) * 2 + 3px);
}

.c-drawer__button::before {
  top: calc((var(--clubtvo-sp-menu-button-height) - (3px * 3)) / 5);
}

.c-drawer__button::after {
  top: calc(((var(--clubtvo-sp-menu-button-height) - (3px * 3)) / 5) * 3 + 6px);
}

/* ハンバーガーメニューON時 */
.c-drawer__button.open>span {
  opacity: 0;
}

.c-drawer__button.open::before,
.c-drawer__button.open::after {
  top: 20px;
  width: 80%;

}

.c-drawer__button.open::before {
  transform: rotate(45deg);
}

.c-drawer__button.open::after {
  transform: rotate(-45deg);
}


/* footer */

.p-footer__in > *:last-child {
  padding-bottom: 10px;
}

.p-footer__navigation {

  display: flex;
  justify-content: space-between;
  max-width: var(--clubtvo-width-container);
  margin: 50px auto auto;
  flex-direction: column;
  gap: 40px;
}

.p-footer__banner {
  background-color: var(--clubtvo-color-text-main);
  padding-inline: 10px;
}

.p-footer__banner-list {
  display: flex;
  justify-content: center;
  max-width: max-content;
  margin-inline: auto;
  padding-block: 40px;
  flex-direction: column;
  gap: 20px;
}

.p-footer__list {
  margin-top: 15px;
}

.p-footer__item {

  border-top: 1px solid;
  padding: 20px 10px 20px 30px;
}

.p-footer__item::before {
  content: "";
  border: 5px solid transparent;
  border-left: 7px solid;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.p-footer__item:last-of-type {
  border-bottom: 1px solid;
}

.p-footer__index {
  font-weight: 900;
  font-size: 20px;
  padding-left: 10px;
}

.c-footer__copyright {
  font-family: "area-normal", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  margin-top: 60px;
  text-align: center;
}
  

/* ページ共通・汎用 */

.p-articles__in>*:nth-of-type(n+2) {
  margin-top: 150px;
}

.p-articles--yellow {
  background: repeating-linear-gradient(45deg, #f9eca3, #f9eca3 15px, #f9f3cd 15px, #f9f3cd 35px);
  padding-inline: 10px;
}

.p-articles--mint {
  background: repeating-linear-gradient(45deg, #c8ffea, #c8ffea 15px, #ecfff8 15px, #ecfff8 35px);
  padding-inline: 10px;
}

.p-articles--lblue {
  background: repeating-linear-gradient(45deg, #c5eeff, #c5eeff 15px, #e3f7ff 15px, #e3f7ff 35px);
  padding-inline: 10px;
}

.p-articles--pink {
  background: repeating-linear-gradient(45deg, #ffe3ed, #ffe3ed 15px, #fff5f5 15px, #fff5f5 35px);
  padding-inline: 10px;
}

.p-articles--green {
  background: repeating-linear-gradient(45deg, #84f9b2, #84f9b2 15px, #99ffcc 15px, #99ffcc 35px);
  padding-inline: 10px;
}

.p-articles__container {
  background-color: #fff;
  margin-inline: auto;
  max-width: var(--clubtvo-width-outer);
  padding: 50px 10px 160px;
}

.p-articles__in {
  margin-inline: auto;
  max-width: var(--clubtvo-width-container);
}

.p-heading {
  text-align: center;
  font-size: 25px;
}

.p-heading__en {
  font-family: var(--clubtvo-font-heading);
  font-size: 100px;
  border-bottom: 2px solid;
  display: block;
  margin-bottom: 15px;
}

.p-heading__ja {
  font-weight: 700;
}

.p-heading+* {
  margin-top: 45px;
}

.p-subhead {
  border-bottom: 2px solid;
  font-size: 22px;
  padding-bottom: 20px;
}

.p-subhead__en {
  display: inline-block;
  font-family: var(--clubtvo-font-heading);
  font-size: 70px;
  margin-right: 10px;
}

.p-subhead__ja {
  display: inline-block;
  font-size: 16px;
}

.p-noto-heading{
  border-bottom: 2px solid;
  font-size: 35px;
  font-weight: 900;
  padding-bottom: 15px;
  text-align: center;
}

.c-articles__lead{
  font-weight: 700;
  line-height: 1.5;
  margin-top: 45px;
  text-align: center;
}

.p-character-crop{
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}


/* label */

.c-label-pr {
  font-size: 14px;
  border: 1px solid;
  line-height: 1;
  padding: 3px 10px;
  display: inline-block;
}

.c-label-member {
  background-color: var(--clubtvo-color-emphasis);
  border-radius: 0 20px 20px 0;
  color: #fff;
  font-size: 20px;
  padding: 10px 20px;
  position: absolute;
  top: 15px;
  z-index: 1;
}


/* tabmenu */

.p-tab-label {
  display: flex;
}

.p-tab-label__item {
  flex: 1 1 0;
}

.p-tab-label__item {
  background-color: #c7c29f;
  border-bottom: var(--clubtvo-color-text-main) 3px solid;
}

.p-tab-label--aside__item {
  background-color: #e9c7c6;
}

.p-tab-label__item.is-active {
  background-color: var(--clubtvo-color-text-main);
  color: #fff;
}

.p-tab-label--aside__item.is-active {
  background-color: var(--clubtvo-color-text-main);
  color: #fff;
}

.p-tab-label__link {
  display: block;
  font-size: 25px;
  padding: 25px 10px;
  text-align: center;
}

.p-tab-label--aside__link {
  display: block;

  padding: 15px 10px;
  text-align: center;
}

.p-tab__content {
  display: none;
}

.p-tab__content.is-active {
  display: block;
}

.p-tab--aside-top {
  margin-top: 20px;
}


/* ranking */

.p-ranking-order {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  z-index: 1;
}

.p-ranking-order--sm {
  width: 55px;
  height: 55px;
}

.p-ranking-order::after {
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  content: "";
  width: 100%;
  height: 100%;
  display: block;
}

.p-ranking-order span {
  font-family: var(--clubtvo-font-heading);
  font-size: 60px;
  position: absolute;
  z-index: 1;
  color: #fff;
}

.p-ranking-order--sm span{
  font-size: 45px;
}

.p-ranking-order--1st {
  background-color: #c3b300;
}

.p-ranking-order--1st::after {
  background-color: #a99b00;
}

.p-ranking-order--2nd {
  background-color: #8a9aa0;
}

.p-ranking-order--2nd::after {
  background-color: #738287;
}

.p-ranking-order--3rd {
  background-color: #ffa736;
}

.p-ranking-order--3rd::after {
  background-color: #ff9000;
}

.p-ranking-order--n4 {
  background-color: #a49b5a;
}

.p-ranking-order--n4::after {
  background-color: #8a834c;
}


/* home */

.swiper.p-swiper-home {
  margin-bottom: -40px;
  padding-bottom: 40px;
}

.p-slide-wrapper .p-home-slide-article {
  height: auto;
}

.p-home-slide-article {
  padding-inline: 5px;
}

/*.p-slide-details>* {
  display: block;
  max-width: max-content;
  margin: auto;
}*/

.p-slide-details>* .p-post__categories {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.p-slide-details>* .c-category-label-sm {
  font-size: 20px;
}

.swiper-home .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}


.swiper-pagination--home.swiper-pagination-horizontal.swiper-pagination-bullets>.swiper-pagination-bullet {
  height: 12px;
  margin: 0 10px;
  width: 12px;
}

.swiper-pagination--home .swiper-pagination-bullet-active {
  background-color: #dec000;
}

.c-home-article__thumbnail {
  position: relative;
}

.c-home-article__thumbnail img {
  transition: transform .3s;
}

.p-home-present__excerpt {
  margin-top: 10px;
}

.p-home-present__title {
  background: linear-gradient(transparent 50%, #fcff00 50%);
  font-size: 20px;
  line-height: 1.5;
  padding: 0 10px 0;
  font-weight: 700;
}

.p-home-present__title .em {
  color: var(--clubtvo-color-emphasis);
  font-style: normal;
}

.p-home-present__note {
  font-size: 16px;
  margin-top: 10px;
}

.p-home-present__deadline {
  color: var(--clubtvo-color-emphasis);
  font-weight: 700;
  margin-top: 10px;
  margin-left: auto;
  max-width: max-content;
}

.p-home-present__view-more {
  margin: 50px auto auto;
  max-width: 580px;
}

a:hover .c-home-article__thumbnail img {
  transform: scale(1.1);
}

.p-home-pickup__articles {
  margin-top: 50px;
}

.p-home-swiper-ranking{
  padding-inline: 40px;
  position: relative;
}

.p-swiper-ranking-slide{
  padding-right: 5px;
}

.swiper-button-prev.c-swiper-button-prev--ranking,
.swiper-button-next.c-swiper-button-next--ranking {
  height: 30px;
  top: calc(50% - 30px);
  width: 30px;
}

.swiper-button-prev.c-swiper-button-prev--ranking {
  left: 0;
}

.swiper-button-next.c-swiper-button-next--ranking {
  right: 0;
}

.swiper-button-prev.c-swiper-button-prev--ranking::after,
.swiper-rtl .swiper-button-prev.c-swiper-button-prev--ranking::after {
  content: "";
  background-image: url(../images/arrow_yellow_circle_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width:30px;
  height: 30px;
  display: inline-block;
}

.swiper-button-next.c-swiper-button-next--ranking::after,
.swiper-rtl .swiper-button-next.c-swiper-button-next--ranking::after {
  content: "";
  background-image: url(../images/arrow_yellow_circle_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
}

.p-home-member-registration {
  margin: 60px auto auto;
  max-width: 800px;
}

.p-home-article__excerpt {
  margin-top: 20px;
}

.p-home-new__title {
  font-size: 22px;
  line-height: 1.5;
  max-height: calc(1em * 4 *1.5);
  -webkit-line-clamp: 4;
}

.p-home-ranking__title{
  font-size: 25px;
  max-height: calc(1em * 2 * 1.3);
  padding-bottom: 10px;
  -webkit-line-clamp: 2;
}

.p-home-pickup__title{
  font-size: 25px;
  max-height: calc(1em * 2 * 1.3);
  padding-bottom: 10px;
  -webkit-line-clamp: 2;
}

.p-grid-thumbnail-mail img {
  bottom: 0;
  left: 0;
  position: absolute;
  padding: 8px
}

.c-home-mail__name {
  bottom: 0;
  font-size: min(40px, 2.08333vw);
  font-weight: 900;
  left: 0;
  position: absolute;
}

.c-home-mail__name--sm {
  font-size: min(35px, 1.82291666vw);
}

.c-home-mail__name--en {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  margin-bottom: -5px;
  padding-left: 10px;
  text-transform: uppercase;

}

.p-home-members__articles {
  margin: 45px auto auto;
  max-width: 480px;
}

.p-home-members__lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-home-members__excerpt {
  font-size: 22px;
  line-height: 1.3;
  padding-top: 45px;
  position: relative;
}

.p-home-members__belt {
  padding: 8px;
  width: 90%;
  transform: rotate(-10deg);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  left: 0;
  right: 0;
  margin-inline: auto;
  max-width: 240px;
  position: absolute;
  line-height: 1;
  top: -10px;
}

.p-home-members__belt--magenta {
  background-color: #ff54f1;
}

.p-home-members__belt--cyan {
  background-color: #03c8f9;
}

.c-home-members__thumbnail {
  text-align: center;
  padding: 10px;
}

.p-home-mailmagazine__articles {
  margin-top: 45px;
}

.p-home-mailmagazine__lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.p-home-mailmagazine__articles {
  margin-top: 45px;
}


/* terms */

.c-terms__lead {
  font-size: 16px;
  line-height: 1.6;
}

.p-terms__list {
  margin-top: 80px;
}

.p-terms__item+.p-terms__item {
  margin-top: 80px;
}

.p-terms__title {
  border-bottom: 2px solid;
  border-left: 10px solid;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 10px 15px 15px;
}

.p-terms__item>p:not([class]) {
  font-size: 16px;
  line-height: 1.6;
}

.p-terms__item>p:not([class])+p:not([class]) {
  margin-top: 1em;
}

.p-terms__item a:not([class]) {
  color: var(--clubtvo-color-emphasis);
}

.p-terms__sublist {
  margin-block: 30px;
}

.p-terms__item>p:not([class])+.p-terms__sublist {
  margin-top: 10px;
}

.p-terms__subitem {
  font-size: 14px;
  line-height: 1.8;
  overflow: hidden;
  padding-left: 1.25em;
  position: relative;
  text-overflow: ellipsis;
}

.p-terms__subitem::before {
  content: "■";
  margin-right: 1em;
  position: absolute;
  left: 0;
}

.p-terms__subitem+.p-terms__subitem {
  margin-top: .1em;
}

.p-terms__update {
  font-size: 16px;
  line-height: 1.8;
  margin-left: auto;
  margin-top: 80px;
  max-width: max-content;
  text-align: right;
}


/* what's club tvo */

.p-about__lead {
  font-size: 20px;
  line-height: 1.8;
}

.p-about-section {
  margin-top: 100px;
}

.p-about-section:first-of-type {
  margin-top: 45px;
}

.p-about__heading {
  text-align: center;
}

.p-about-point {
  overflow: visible;
  padding: 20px 15px;
  position: relative;
  margin-top: 45px;
}

.p-about__number {
  display: block;
  margin: -65px auto auto;
}

.c-about-point__heading {
  background: linear-gradient(transparent 60%, #fcff00 60%);
  color: #ff6000;
  font-size: 35px;
  font-weight: 900;
  font-feature-settings: "palt";
  margin-block: 15px;
  padding-bottom: 5px;
  text-align: center;
}

.p-about-point>p:not([class]) {

  line-height: 1.5;
}

.p-about__registration {
  margin-top: 25px;
}

.p-about__step {
  background-color: var(--clubtvo-color-text-main);
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 30px;
  max-width: max-content;
  margin-right: auto;
  padding: 10px 15px;
}

.p-thumbnail__step {
  border-top-left-radius: 0;
  overflow: visible;
  padding: 20px;
  position: relative;
  text-align: center;
}

.c-about__arrow {
  position: absolute;
  left: 0;
  top: -80px;
  transform: translateY(-50%) rotate(90deg);
  right: 0;
  margin-inline: auto;
}

.p-thumbnail__step>p:not([class]) {
  font-size: 22px;
  text-align: center;
}

.p-thumbnail__step>p:not([class]):first-of-type {
  margin-top: 20px;
}

.p-about-registration {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 100px auto auto;
  max-width: 575px;
}


/* login */

.p-login__error {
  color: var(--clubtvo-color-emphasis);
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.p-login__form {
  border: 2px solid;
  margin-top: 50px;
  padding: 40px 10px;

}

.p-login-form__name {
  background-color: #35a6d5;
  color: #fff;
  flex: 0 1 290px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 20px 10px;
}

.p-login-form__name:nth-of-type(n+2) {
  margin-top: 30px;
}

.p-login-form__input {
  flex: 0 0 calc(100% - 290px);
}

.p-login-form__input input {
  border: 2px solid #35a6d5;
  font-size: 25px;
  font-weight: 700;
  height: 100%;
  padding: 10px;
  width: 100%;
}

.p-login__reset {
  line-height: 1.3;
  margin-top: 50px;
  text-align: center;
}

.p-login__reset p:not([class]) + p:not([class]) {
  margin-top: 30px;
}

.p-login__reset a:not([class]) {
  text-decoration: underline;
}

/*.p-login-spiral{

  .sml-login .submit{
    margin: 40px auto;
    max-width: 575px;
  }
  
  .sml-login p:not([class]){
    border: 2px solid var(--clubtvo-color-text-main);
    font-size: 25px;
    font-weight: 700;
    height: 100%;
    padding: 40px 10px;
    width: 100%;
  }
  
  .sml-login p:not([class]):first-of-type{
    border-bottom: none;
    padding-bottom: 20px;
  }
  
  .sml-login p:not([class]):nth-of-type(2){
    border-top: none;
    padding-top: 20px;
  }
  
  label[for="sml-label-user-login"],
  label[for="sml-label-user-pass"]{
    background-color: #35a6d5;
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px;
  }
  
  .sml-login .input{
    border: 2px solid #35a6d5;
    font-size: 25px;
    font-weight: 700;
    padding: 10px;
    width: 100%;
  }
  
  .sml-login-submit{
    background-color: #f6cb00;
    color: #fff;
    border: none;
    border-radius: calc(25px + 1em);
    font-size: 28px;
    font-weight: 700;
    display: block;
    padding: 25px 15px;
    text-align: center;
    transition: opacity .3s;
    width: 100%;
  }
  
  .sml-login-submit span{
    font-weight: 700;
  }
  
  .sml-login-submit:hover{
    opacity: .8;
  }
  
  .sml-login .sml-login-error-message {
    color: var(--clubtvo-color-emphasis);
    font-weight: 700;
    line-height: 1.8;
    margin-top: 45px;
    text-align: center;
  }
  
  .sml-login .sml-login-error-message::before{
    content: url(../images/icon_error_cyan.png);
    display: block;
  }
  
  [class*="sml-action-links-"] {
    margin: 10px auto;
    max-width: max-content;
  }

}*/


/* contents */

.p-contents__heading {
  border-bottom: 2px solid;
  font-size: 65px;
  font-weight: 900;
  padding-bottom: 15px;
  text-align: center;
}

.p-contents__subhead {
  font-size: 35px;
  border-bottom: 2px solid;
  font-weight: 900;
  padding-bottom: 15px;
}

.p-sidebar {
  display: block;
  left: 0;
  margin-inline: auto;
  max-width: var(--clubtvo-width-outer);
  position: sticky;
  top: 96px;
  width: 100%;
  z-index: 2;
}

.p-contents-articles {
  display: flex;
  flex-direction: column;
  gap: 150px;
}

.p-contents-contents {
  margin-top: 80px;
}

.p-contents-archives {
  margin-top: 50px;
}


.p-contents-archives--more {
  display: none;
}

.p-contents-archives.is-show {
  display: grid;
}

.c-contents-article__title {
  font-size: 22px;
  font-weight: 700;
  width: 100%;
  line-height: 1.2;
  max-height: calc(1em * 2 *1.2);
  -webkit-line-clamp: 2;
}

.p-view-more {
  margin-top: 50px;
  text-align: center;
}


.p-contents-arcticle__thumbnail {
  position: relative;
}

.p-contents-arcticle__thumbnail img {
  width: 100%;
}

.p-contents-arcticle__more {
  border: 1px solid;
  border-radius: calc(10px + 1em);
  display: block;

  padding: 10px 20px;
  margin-left: auto;
  max-width: max-content;
  transition: padding .3s;
}

.p-contents-arcticle__more:hover {
  padding-inline: 40px;
}

.p-contents-arcticle__details {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/*.c-contents-article__excerpt {
  font-size: 20px;
  line-height: 1.5;
  max-height: calc(1em * 3 *1.5);
  overflow: hidden;
  position: relative;
}

.c-contents-article__excerpt:before,
.c-contents-article__excerpt:after {
  position: absolute;
}

.c-contents-article__excerpt:before {
  background: linear-gradient(to right, transparent 0%, #fff 25%);
  content: "...";
  top: calc(1em * 2 *1.5);
  right: 0;
  padding-left: .8em;
}

.c-contents-article__excerpt:after {
  background: #fff;
  content: "";
  height: 100%;
  width: 100%;
}*/

.c-contents-article__excerpt{
  font-size: 20px;
  line-height: 1.5;
  max-height: calc(1em * 3 *1.5);
  -webkit-line-clamp: 3;
}

/* タグ別記事 */

.p-tag__content {
  margin-top: 50px;
}

.p-tag-article__thumbnail {
  overflow: hidden;
  position: relative;
}

a:hover .p-tag-article__thumbnail img {
  transform: scale(1.1);
}

.p-tag-article__thumbnail img {
  transition: transform .3s;
  width: 100%;
}

.p-heading-tag {
  font-size: 40px;
  max-width: max-content;
  margin-inline: auto;
  position: relative;
}

.p-heading-tag::before {
  background-image: url(../images/icon_tag.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 40px;
  margin-right: 5px;
  vertical-align: bottom;
  width: 40px;
}

.p-heading-notag {
  font-size: 40px;
  max-width: max-content;
  margin-inline: auto;
  position: relative;
}


/* 検索結果ページのフォーム */

.c-search-form__results{
  margin-top: 50px;
}


/* 検索結果0件ページ */

.p-search-results--no{
  margin-top: 50px;
}

.p-search-results--no__p{
  line-height: 1.5;
  text-align: center;
}

.p-search-results--no__aside{
  margin-top: 105px;
}


/* contents,single aside */

.p-aside__content+.p-aside__content {
  margin-top: 100px;
}

.p-aside--contents {
  margin-top: 35px;
}

.p-aside__heading {
  border-bottom: 2px solid;
  font-family: var(--clubtvo-font-heading);
  font-size: 40px;
  padding-bottom: 15px;
}

.p-aside__articles {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 20px;
}

.p-aside__article {
  margin-inline: auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  display: grid;
  gap: 20px;
}

.p-aside__article-thumbnail--member{
  position: relative;
}

.p-aside__article-thumbnail img {
  width: 100%;
}

.p-aside__article-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-aside__article-title {
  font-size: 20px;
  font-weight: 700;
  max-height: calc(1em * 1 *1);
  -webkit-line-clamp: 1;
}

.c-aside-article__excerpt {
  line-height: 1.3;
  max-height: calc(1em * 4 *1.3);
  -webkit-line-clamp: 4;
}


/* pagination */

.p-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 100px;
}

.p-pagination__item--prev,
.p-pagination__item--next {
  position: relative;
}

.p-pagination__item.disabled{
  pointer-events: none;
  opacity: .3;
}

.p-pagination__item--prev::before,
.p-pagination__item--next::after {
  content: "";
  right: 3px;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 45%;

}

.p-pagination__item--next::after {
  right: 3px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg) translateY(-45%);
}

.p-pagination__item--prev::before {
  left: 3px;
  border-top: 1px solid;
  border-left: 1px solid;
  transform: rotate(-45deg) translateY(-45%);
}

.p-pagination__link {
  display: grid;
  font-family: "area-normal", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  height: 100%;
  text-align: center;
  padding: 10px 10px 3px;
  place-items: center;
}

.p-pagination__link.current {
  border: 1px solid;
  height: 55px;
  width: 55px;
}


/* single */

.p-post__title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin-block: 20px 25px;
}

.p-post__content.is-enlarge .p-post__title {
  font-size: 45px;
}

.p-article__label,
.p-post__label {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  width: 100%;
}

.p-post__thumbnail img {
  width: 100%;
}

.p-post__lead {
  font-size: 20px;
  line-height: 1.5;
  margin-block: 50px;
}

.p-post__content.is-enlarge .p-post__lead {
  font-size: 30px;
}

.p-post__toc {
  border: 1px solid;
  padding: 20px;
}

.p-post__toc-heading {
  text-align: center;
  font-size: 20px;
  letter-spacing: 1em;
}

.p-post__toc-heading::after,
.p-post__toc-heading::before {
  content: "◆";
  letter-spacing: normal;
}

.p-post__toc-heading::before {
  margin-right: 10px;
}

.p-post__toc-heading::after {
  margin-left: calc(-1em + 10px);
}

.p-post__content.is-enlarge .p-post__toc-heading {
  font-size: 30px;
}

.p-post__toc-index {
  margin-top: 20px;
  padding-left: 1em;
}

.p-post__toc-index li {
  font-size: 20px;
  list-style-type: disc;
  line-height: 1.3;
}

.p-post__content.is-enlarge .p-post__toc-index li {
  font-size: 30px;
}

.p-post__toc-index li+li {
  margin-top: 1em;
}

.p-post__information {
  margin-top: 50px;
  border: 1px solid;
}

.p-post__information-thumbnail img {
  width: 100%;
}

.p-post__content.is-enlarge .p-post__information {
  display: block;
}

.p-post__information-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 12px 20px;
}

.p-post__information-name {
  font-size: 20px;
  font-weight: 700;
}

.p-post__information-body {
  line-height: 1.3;
}

.p-post__information-body a{
  text-decoration: underline;
}

.p-post__information-dl {
  display: flex;
  flex-wrap: wrap;
  margin-block: 20px 15px;
  row-gap: 10px;
}

.p-post__information-dl dt {
  width: 3em;
}

.p-post__information-dl dt::after {
  content: ":";
  margin-left: 5px;
}

.p-post__information-dl dd {
  width: calc(100% - 3em);
}

.p-post__social {
  display: flex;
  gap: 25px;
}

.p-post__social--author {
  margin-left: auto;
}

.p-post__social-item {
  width: 25px;
}

.p-post__text h2, .p-post__heading {
  margin-block: 50px 20px;
  border-bottom: solid 2px;
  padding-block: 5px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.p-post__text h3 {
  border-bottom: solid 2px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin-block: 50px 20px;
  padding-block: 5px;
}

.p-post__text h4 {
  margin-block: 50px 15px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.p-post__text a:not([class*="flex-"]){
  color: #ff85a5;
  text-decoration: underline;
}

.p-post__text ul:not([class]){
  list-style-type: disc;
  margin-block: 40px;
  padding-left: 1.25em;
}

.p-post__text ul:not([class]) li{
  line-height: 1.3;
}

.p-post__content.is-enlarge ul:not([class]) li{
  font-size: 25px;
}

.p-post__text ul:not([class]) li + li{
  margin-top: 10px;
}

.p-post__text ol:not([class]){
  list-style-type: decimal;
  margin-block: 40px;
  padding-left: 1.25em;
}

.p-post__content.is-enlarge ol:not([class]) li{
  font-size: 25px;
}

.p-post__text ol:not([class]) li{
  line-height: 1.3;
}

.p-post__text ol:not([class]) li + li{
  margin-top: 10px;
}

.p-post__subhead {
  margin-block: 30px 20px;
  padding-block: 5px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}

.p-post__categories {
  display: inline-block;
  margin-right: auto;
}

.p-post__content.is-enlarge .p-slide-caption {
  font-size: 25px;
}

.c-post__tag {
  color: #8d8d8d;
  display: inline-block;
  font-size: 16px;

}

.c-post__tag::before {
  background-image: url(../images/icon_tag_gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 27px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
}

.p-post__share {
  margin-top: 50px;
}

.p-post__share-x {
  background-color: var(--clubtvo-color-text-main);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  padding: 5px;
}

.p-post__share-x img {
  vertical-align: text-bottom;
}

.p-post-footer{
  margin-top: 50px;
}

.p-post__author {
  border: 1px solid;
  margin-top: 50px;
  padding: 15px;
}

.p-post__author-information {
  display: flex;
  gap: 20px;
  flex-direction: column;
  width: 100%;
}

.c-post__author-thumbnail {
  margin-bottom: 15px;
  text-align: center;
}

.c-post__author-name {
  font-size: 20px;
  font-weight: 700;
}

.p-post__content.is-enlarge .c-post__author-name {
  font-size: 30px
}

.c-post__author-details {
  font-size: 18px
}

.p-post__content.is-enlarge .c-post__author-details {
  font-size: 25px
}

.p-post__back {
  margin-top: 50px;
  text-align: center;
}

.p-post-related-posts {
  margin-top: 100px;
}

.p-post-related-posts__articles {
  margin-top: 30px;
}

.grid-related-posts__articles {
  justify-content: center;
}

.grid-related-post__thumbnail{
  position: relative;
}

.p-post-related-post__article-title {
  font-weight: 700;
  line-height: 1.2;
  max-height: calc(1em * 1 *1.2);
  -webkit-line-clamp: 1;
}

.p-post-related-post__details {
  margin-top: 5px;
}

.p-post-members-only {
  border: 1px solid;

  margin-top: 50px;
  padding: 50px 10px;
  text-align: center;
}

.p-post-member-registration {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px auto auto;
  max-width: 450px;
}

.p-post__text p {
  line-height: 1.5;
  font-size: 20px;
  margin-block: 20px;
}

.p-post__text img {
  display: block;
  margin: 25px auto;
}

.p-post__login{
  margin-top: 100px;
}

.p-post__login-p{
  margin-inline: auto;
  max-width: max-content;
}


/* table */

.p-post__text table{
  border-collapse: collapse;
}

.p-post__text table th,
.p-post__text table td {
  border: 1px solid var(--clubtvo-color-text-main);
  padding: 10px;
}


/* table */

.p-post__text blockquote{
  background-color: #fff5f5;
  border-left: 3px solid var(--clubtvo-color-emphasis);
  font-style: italic;
  margin-block: 50px;
  padding: 20px;
}

.p-post__text blockquote a{
  font-size: 85%;
  font-style: normal;
  margin-top: 40px;
  text-decoration: underline;
}


/* single パーツ */

.p-embed{
  margin: 50px auto;
}

.p-embed iframe {
  aspect-ratio: 16/9;
  height: auto;
  width: 100%;
}

.p-embed--vertical{
  margin: 50px auto;
  max-width: max(375px, 33.333%);
  width: 100%;
}

.p-embed--vertical iframe{
  aspect-ratio: 9/16; 
}

.p-tag-article__excerpt {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.p-tag-article__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  max-height: calc(1em * 2 *1.3);
  -webkit-line-clamp: 2;
}

.p-tag-article__title .em {
  color: var(--clubtvo-color-emphasis);
  font-style: normal;
}

/* single slider */

.flexslider{
  margin-block: 80px;
  padding-inline: 30px;
  position: relative;
}

.flex-direction-nav{
  position: absolute;
  top: calc(50% - 40px);
  display: flex;
  justify-content: space-between;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* 以前のページャーのCSS */

.flex-control-paging{
  display: flex;
  font-size: 30px;
  gap: 10px;
  justify-content: center;
  bottom: 0;
}

.flex-control-paging a:not([class*="flex-active"]){
  opacity: .5;
}

.flex-active{
  color: #ff85a5;
  opacity: 1;
}

/* !-- 以前のページャーのCSS */


/* 今使っているページャーのCSS */
  
.flex-control-paging{
  color: #ff85a5;
  display: flex;
  font-size: 30px;
  gap: 10px;
  justify-content: center;
  bottom: 0;
}

.flex-control-paging{
  counter-reset: flex-number;
  display: grid;
  grid-template-columns: 1fr;
}

.flex-control-paging li{
  grid-area: 1 / 1;
  position: relative;
  text-align: center;
}

.flex-control-paging li::after{
  counter-increment: flex-number;
  content: "/" counter(flex-number);
  margin-left: .75em;
  visibility: hidden;
}

.flex-control-paging li:last-of-type::after{
  visibility: visible;
}

.flex-control-paging li a:not([class*="flex-active"]){
  display: none;
}

.flex-active{
  color: #ff85a5;
  display: inline-block;
  position: absolute;
}

/* !-- 今使っているページャーのCSS */

.flexslider img{
  margin: 0;
  width: 100%;
}

.caption-wrap{
  padding: 10px;
}

.caption-wrap .caption{
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
}

.swiper-button-prev.c-swiper-button-prev--article,
.swiper-button-next.c-swiper-button-next--article {
  height: 25px;
  top: calc(50% - 30px);
  width: 25px;
}

.swiper-button-prev.c-swiper-button-prev--article {
  left: 0;
}

.swiper-button-next.c-swiper-button-next--article {
  right: 0;
}

.flex-nav-prev {
  content: "";
  background-image: url(../images/arrow_pink_circle_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width:25px;
  height: 25px;
  display: inline-block;
}

.flex-nav-next {
  content: "";
  background-image: url(../images/arrow_pink_circle_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
}

.flex-prev,
.flex-next {
  color: transparent;
  display: block;
  height: 25px;
	overflow:hidden;
  width: 25px;
}

.p-post-slide-area {
  margin-block: 50px;
  padding-inline: 30px;
  position: relative;
}

.p-post-slide-area .p-swiper-article {
  padding-bottom: 60px;
}

.swiper-pagination--article.swiper-pagination-fraction {
  font-size: 40px;
  color: #ff85a5;
  bottom: 0;
}

.swiper-button-prev.c-swiper-button-prev--article,
.swiper-button-next.c-swiper-button-next--article {
  height: 25px;
  top: calc(50% - 30px);
  width: 25px;
}

.swiper-button-prev.c-swiper-button-prev--article {
  left: 0;
}


.swiper-button-next.c-swiper-button-next--article {
  right: 0;
}

.swiper-button-prev.c-swiper-button-prev--article::after,
.swiper-rtl .swiper-button-prev.c-swiper-button-prev--article::after {
  content: "";
  background-image: url(../images/arrow_pink_circle_left.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width:25px;
  height: 25px;
  display: inline-block;
}

.swiper-button-next.c-swiper-button-next--article::after,
.swiper-rtl .swiper-button-next.c-swiper-button-next--article::after {
  content: "";
  background-image: url(../images/arrow_pink_circle_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
}

.p-slide-card img {
  margin: 0;
  width: 100%;
}

.p-slide-details {
  background-color: #fff;
  max-width: 734px;
  padding: 15px 10px;
  text-align: center;
}

.p-slide__title{
  line-height: 1.2;
  margin-top: 5px;
  max-height: calc(1em * 2 * 1.2);
  -webkit-line-clamp: 2;
}

.p-slide-caption {
  font-size: 15px;
  margin-top: 10px;
  text-align: center;
}

/* category */

.c-category-label {
  background-color: #ff6000;
  border-radius: calc(10px + 1em);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-family: "din-condensed", "noto-sans-cjk-jp", sans-serif;
  padding: 8px 20px;
  text-align: center;
  vertical-align: middle;
}

.c-category-label--event {
  font-size: 20px;
  padding: 5px 20px;
}

.c-category-label--member {
  background-color: var(--clubtvo-color-emphasis);
}

.c-category-label--special {
  background-color: #00c1f8;
}

.c-category-label--information {
  background-color: #4ce2c8;
}

.c-category-label-sm {
  background-color: #ff6000;
  border-radius: calc(10px + 1em);
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-family: "din-condensed", "noto-sans-cjk-jp", sans-serif;
  padding: 3px 15px;
  text-align: center;
}

.c-category-label-sm--special {
  background-color: #00c1f8;
}

.c-category-label-sm--information{
  background-color: #4ce2c8;
}


/* post 文字 enlarge */

.c-enlarge {
  background-image: url("../images/icon_enlarge.png");
  background-size: contain;
  border: none;
  border-radius: 5px;
  display: block;
  height: 40px;
  right: 20px;
  position: fixed;
  bottom: 40px;
  width: 40px;
}

.p-post__content.is-enlarge .p-post__heading {
  font-size: 40px;
}

.p-post__subhead {
  margin-block: 30px 20px;
  padding-block: 5px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}

.p-post__content.is-enlarge .p-post__subhead {
  font-size: 35px;
}

.p-post__content.is-enlarge .p-post__information-name {
  font-size: 30px;
}

.p-post__information-dl {
  display: flex;
  flex-wrap: wrap;
  margin-block: 20px 15px;
  row-gap: 10px;
}

.p-post__content.is-enlarge .p-post__information-dl {
  font-size: 25px;
}

.p-post__content.is-enlarge .p-post__text p {
  font-size: 25px;
}


/* faq */

.p-faq-articles + .p-faq-articles{
  margin-top: 130px;
}

.p-faq-articles__title{
  background-color: var(--clubtvo-color-text-main);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  padding: 10px 15px;
}

.p-faq-article{
  border-bottom: 1px dashed;
  margin-top: 30px;
  padding-bottom: 30px;
}

.p-faq-article__question{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  list-style-type: none;
  min-height: 40px;
  padding-inline: calc(40px + .5em) 20px;
  position: relative;
}

.p-faq-article__question::before{
  background-color: #f6cb00;
  border-radius: 50%;
  color: #fff;
  content: "Q";
  display: grid;
  font-family: "area-normal", sans-serif;
  font-size: 22px;
  height: 40px;
  left: 0;
  line-height: 1.5;
  padding-top: 5px;
  position: absolute;
  place-content: center;
  top: 0;
  width: 40px;
}

.p-faq-article__question::after {
  border: 1px solid;
  border-radius: 50%;
  content: "+";
  font-size: 20px;
  display: grid;
  height: 20px;
  line-height: 1.5;
  padding-bottom: 5px;
  place-content: center;
  position: absolute;
  right: 0;
  top: .25em;
  width: 20px;
}

.p-faq-article[open] > .p-faq-article__question::after {
  content: "-";
}

.p-faq-article__answer{
  align-items: center;
  display: grid;
  margin-top: 20px;
  min-height: 40px;
  padding-left: calc(40px + .5em);
  position: relative;
}

.p-faq-article__answer::before{
  background-color: #ff722c;
  border-radius: 50%;
  color: #fff;
  content: "A";
  display: grid;
  font-family: "area-normal", sans-serif;
  font-size: 22px;
  height: 40px;
  left: 0;
  line-height: 1.5;
  padding-top: 5px;
  position: absolute;
  place-content: center;
  top: 0;
  width: 40px;
}

.p-faq-article__answer p{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.p-faq-article__answer p + p{
  margin-top: 1em;
}

.p-faq-article__answer a{
  color: var(--clubtvo-color-emphasis);
  font-weight: 700;
}


/* wp01 */

.p-wp01__form .error{
  color: var(--clubtvo-color-emphasis);
}


/* 404 */

.p-404{
  background-image: url(../images/takoru_bk.jpg);
  background-size: 150%;
  background-repeat: no-repeat;
  background-position: left bottom;
  padding: 150px 20px 60%;
}

.p-404__in{
  margin-inline: auto;
  max-width: var(--clubtvo-width-outer);
}

.p-404__heading{
  font-family: var(--clubtvo-font-heading);
  font-size: 60px;
  text-align: center;
}

.p-404__message{
  display: none;
}

.p-404__search{
  max-width: 800px;
  margin-left: auto;
  margin-top: 35px;
}



/* CLUB LP */

.p-club__button{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.p-club__button > *{
  flex: 0 1 100%;
}

.p-club__button > .u-button{
  font-size: 20px;
  padding-block: 20px;
}

.p-club-forward{
  margin-top: 30px;
  text-align: center;
}

.p-club-forward__small{
  font-size: 75%;
}

.p-club-forward > p{ 
  line-height: 1.5;
}

.p-club-forward a:not([class]){ 
  text-decoration: underline;
}

.p-club__mailmagazine{
  margin-top: 50px;
}

.p-club__present{
  margin-top: 50px;
}

.p-club__members{
  margin-top: 50px;
}

.p-club__banner{
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  margin-top: 80px;
  text-align: center;
}

.p-tab-frame{
  color: var(--clubtvo-color-text-main);
  position: relative;
}

.p-tab-frame--cyan{
  color: var(--clubtvo-color-emphasis);
}

.p-tab-frame__takoru{
  display: none;
}

.p-tab-frame-frame{
  border: 4px solid currentColor;
  border-radius: 0 20px 20px 20px;
}

.p-tab-frame__tab{
  background-color: currentColor;
  border-radius: 10px 10px 0 0;
  font-size: 30px;
  max-width: max-content;
  margin-right: auto;
  padding: 10px 15px;
}

.p-tab-frame__tab__en {
  color: #fff;
  display: inline-block;
  font-family: var(--clubtvo-font-heading);
  font-size: 40px;
}

.p-tab-frame__tab__ja{
  color: #fff;
  font-size: 18px;
}

.p-tab-frame-frame__in{
  color: var(--clubtvo-color-text-main);
  padding: 40px 10px;
}

.p-tab-frame-frame__section + .p-tab-frame-frame__section{
  border-top: 1px dashed;
  margin-top: 50px;
  padding-top: 50px;
}

.p-tab__heading{
  color: var(--clubtvo-color-text-main);
  font-size: 45px;
  font-weight: 900;
  text-align: center;
}

.p-tab__heading-border{
  background: linear-gradient(transparent 1em, #fcff00 1em);
  font-size: 25px;
  line-height: 1.3;
  padding-inline: 10px;
  font-weight: 900;
}

.p-tab__heading-border .em{
  color: var(--clubtvo-color-emphasis);
  display: inline-block;
  font-weight: inherit;
}

.p-tab-frame__text{
  line-height: 1.5;
  margin-block: 50px;
  text-align: center;
}

.p-tab-frame-frame__button{
  margin-inline: auto;
  max-width: 780px;
}

.p-tab-frame-frame-image{
  display: block;
  max-width: 780px;
  margin: 50px auto;
  text-align: center;
}

.p-tab-frame-frame__hr{
  border: 1px dashed;
}

.p-subhead-center{
  align-items: center;
  display: flex;
  font-family: var(--clubtvo-font-heading);
  font-size: 55px;
  justify-content: center;
  margin-right: 10px;
  text-align: center;
  position: relative;
}

.p-subhead-center::before,
.p-subhead-center::after{
  background-color: currentColor;
  content: "";
  display: block;
  height: 3px;
  width: 50%;
}

.p-subhead-center::before{
  margin-right: 30px;
}
.p-subhead-center::after{
  margin-left: 30px;
}

.p-tab-frame__text-em{
  color: var(--clubtvo-color-emphasis);
  font-size: 150%;
}

.p-tab-frame__text-subhead{
  font-size: 150%;
  font-weight: 900;
  margin-block: 10px;
}


/* ログインフォーム SPIRALのスタイルを上書きする */

.p-login-spiral{
  
  .sml-login{
    margin-top: 45px;
  }
  
  .sml-user-links-title{
    display: none;
  }

  .sml-login .submit {
    margin: 40px auto;
    max-width: 575px;
  }

  .sml-login p:not([class]) {
    border: 2px solid var(--clubtvo-color-text-main);
    font-size: 25px;
    font-weight: 700;
    height: 100%;
    padding: 40px 10px;
    width: 100%;
    
    margin: 0;
  }

  .sml-login p:not([class]):first-of-type {
    border-bottom: none;
    padding-bottom: 20px;
  }

  .sml-login p:not([class]):nth-of-type(2) {
    border-top: none;
    padding-top: 20px;
  }

  .sml-login p label {
    background-color: #ff8a2c;
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px;

    width: 100%;
  }

  .sml-login input[name="login_id"], .sml-login input[name="password"] {
    border: 2px solid #ff8a2c;
    font-size: 25px;
    font-weight: 700;
    padding: 10px;
    width: 100%;

    border-radius: 0;
    margin-left: 0;
  }

  .sml-login-submit {
    background-color: #f6cb00;
    color: #fff;
    border: none;
    border-radius: calc(25px + 1em);
    font-size: 28px;
    font-weight: 700;
    display: block;
    padding: 25px 15px;
    text-align: center;
    transition: opacity .3s;
    width: 100%;

    background: #f6cb00;
    height: auto;
    margin-inline: auto;
  }

  .sml-login-submit span {
    font-weight: 700;
  }

  .sml-login-submit:hover {
    opacity: .8;
  }

  .sml-login .sml-login-error-message {
    color: var(--clubtvo-color-emphasis);
    font-weight: 700;
    line-height: 1.8;
    margin-top: 45px;
    text-align: center;
  }
  
  .sml-login .sml-login-error-message::before{
    content: url(../images/icon_error_cyan.png);
    display: block;
  }
  
  [class*="sml-action-links-"] {
    margin: 10px auto;
    max-width: max-content;

    display: none;
  }


  @media (min-width: 768px) {

    .sml-login p:not([class]){
      border: none;
      padding-inline: 0;
    }
    
    .sml-login p label {
      font-size: 25px;
      padding: 40px 10px;
    }
    
  }

}

.p-login-spiral--blue{

  .sml-login p label {
    background-color: #35a6d5;
  }

  .sml-login input[name="login_id"], .sml-login input[name="password"] {
    border: 2px solid #35a6d5;
  }

}

.p-login-spiral--post{

  .sml-login .submit {
    max-width: 450px;
  }

  .sml-login-submit{
    padding-block: 15px;
  }

  @media (min-width: 768px) {
    .sml-login p label {
      font-size: 25px;
      padding: 25px 10px;
    }
  }

}



@media (min-width: 768px) {


  /* utility */

  
  .u-sm-visible {
    display: none;
  }

  .u-button--header {
    font-size: min(1.82291666vw, 35px);
    padding: 20px;
  }
  
  .u-button-rectangle {
    min-width: 375px;
  }


  /* grid */

  .grid-col2-1fr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }

  .grid-col3-1fr {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }

  .grid-col4-1fr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }

  .grid-about-registration {
    gap: 65px;
  }


  .grid-related-posts__articles {
    gap: 25px;
  }


  /* header */
  
  .p-header {
    position: static;
  }

  .p-header__in{
    padding-inline: 0;
    justify-content: center;
  }

  .c-tvo-logo{
    flex: 0 0 15%;
  }

  .c-club-logo{
    flex: 0 0 30%;
  }

  .p-header__lower {
    position: static;
    display: block;
  }

  .p-u-menu__link {
    padding-block: min(4vw, 60px);
  }

  .c-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 10px;
  }

  .c-drawer {
    display: none;
  }

  .p-u-navigation {
    align-items: center;
    display: flex;
    width: min(100%, var(--clubtvo-width-outer));
    margin-inline: auto;
  }
  
  /* 会員登録、ログインボタン */
  /* .u-button--headerを上書き */
  .c-header-actions__item .u-button--header {
    font-size: min(1.82291666vw, 24px);
  }

  .p-u-menu {
    display: flex;
    margin-inline: auto;
    width: 100%;
  }

  .p-u-menu__item {
    border: none;
    align-self: center;
  }

  .p-u-menu__item:last-child {
    padding-inline: 8px;
  }

  .p-u-menu--hidden{
    display: none;
  }

  .p-home-members__belt {
    font-size: min(2.25vw, 23px);
  }


  /* footer */

  .p-footer__navigation {
    flex-direction: row;
    padding-inline: 10px;
  }

  .p-footer__banner-list {
    flex-direction: row;
    justify-content: space-between;
    max-width: var(--clubtvo-width-container);
  }

  .p-footer__item+.p-footer__item {
    margin-top: 10px;
  }

  .p-footer__index {
    padding-left: 0;
  }

  .p-footer__item::before {
    content: none;
  }

  .p-footer__item,
  .p-footer__item:last-of-type {
    border: 0;
    padding: 0;
  }


  /* ページ共通・汎用 */

  .p-articles__container {
    padding-top: 105px;
  }

  .p-subhead__ja {
    display: inline-block;
    font-size: 18px;
  }

  .p-noto-heading{
    font-size: 65px;
  }

  .c-articles__lead{
    font-size: 22px;
  }


  /* home ranking */

  .p-home-members__articles {
    display: flex;
    gap: 45px;
    justify-content: center;
    max-width: 100%;
  }
  
  .p-home-members__articles > *{
    flex: 0 1 360px;
  }


  /* terms */

  .c-terms__lead {
    font-size: 20px;
  }

  .p-terms__title {
    font-size: 25px;
  }

  .p-terms__item>p:not([class]) {
    font-size: 20px;
    line-height: 1.8;
  }

  .p-terms__subitem {
    font-size: 20px;
  }

  .p-terms__update {
    font-size: 18px;
  }


  /* what's club tvo */

  .c-about__arrow {
    left: -45px;
    margin-inline: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-about-registration {
    gap: 50px;
  }


  /* login */

  .p-login__form {
    border: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    row-gap: 50px;
  }

  .p-login-form__name {
    font-size: 25px;
    padding: 40px 10px;
  }

  .p-login-form__name:nth-of-type(n+2){
    margin-top: 0;
  }

  .sml-login p:not([class]){
    border: none;
    display: flex;
    padding-inline: 0;
  }
  
  .sml-login p:not([class]):first-of-type{
    border-bottom: none;
    padding-bottom: 20px;
  }
  
  .sml-login p:not([class]):nth-of-type(2){
    border-top: none;
    padding-top: 20px;
  }
  
  label[for="sml-label-user-login"],
  label[for="sml-label-user-pass"]{
    font-size: 25px;
    flex: 0 0 290px;
    padding: 40px 10px;
  }

  .sml-login .submit{
    margin-block: 80px;
  }
  

  /* contents */

  .p-contents-archives--more {
    display: none;
  }

  .p-contents-archives--more.is-show {
    display: grid;
  }


  /* contents pagination */

  .p-pagination {
    gap: 20px;
    margin-top: 150px;
  }


  .p-pagination__link {
    padding: 20px 20px 15px;
  }

  /* single */

  .p-posts {
    padding-inline: 15px;
  }

  .p-posts__container {
    padding-inline: 15px;
  }

  .p-post__information {
    margin-top: 50px;
    border: 1px solid;
    display: flex;
  }

  .p-post__information-thumbnail {
    flex: 0 0 min(45%, 315px);
  }

  .p-post__author {
    display: flex;
    gap: 15px;
  }

  .c-post__author-thumbnail {
    flex: 0 0 131px;
  }


  /* single slider */


  .p-post-slide-area{
    padding-inline: 70px;
  }

  .flexslider{
    padding-inline: 70px;
  }
  
  .flex-direction-nav{
    top: calc(50% - 50px);
  }
  
  .flex-nav-prev,
  .flex-nav-next {
    width: 50px;
    height: 50px;
  }


  /* 今使っているページャーのCSS */

  .flex-control-paging{
    font-size: 40px;
  }

  /* !-- 今使っているページャーのCSS */

  .swiper-button-prev.c-swiper-button-prev--article,
  .swiper-button-next.c-swiper-button-next--article {
    height: 50px;
    top: calc(50% - 30px);
    width: 50px;
  }

  .swiper-button-prev.c-swiper-button-prev--article::after,
  .swiper-rtl .swiper-button-prev.c-swiper-button-prev--article::after {
    width: 50px;
    height: 50px;
  }
  
  .swiper-button-next.c-swiper-button-next--article::after,
  .swiper-rtl .swiper-button-next.c-swiper-button-next--article::after {
    width: 50px;
    height: 50px;
  }

  
  .flex-prev,
  .flex-next {
    height: 50px;
    width: 50px;
  }

  
  /* faq */
  
  .p-faq-articles__title{
    font-size: 25px;
  }
  
  .p-faq-article__question{
    align-items: center;
    display: grid;
    font-size: 22px;
    font-weight: 700;
    min-height: 60px;
    padding-inline: calc(60px + .5em) 40px;
  }
  
  .p-faq-article__question::before{
    font-size: 30px;
    height: 60px;
    width: 60px;
  }

  .p-faq-article__question::after {
    font-size: 22px;
    height: 40px;
    width: 40px;
  }
  
  .p-faq-article__answer{
    min-height: 60px;
    padding-left: calc(60px + .5em);
  }
  
  .p-faq-article__answer::before{
    font-size: 30px;
    height: 60px;
    width: 60px;
  }
  
  .p-faq-article__answer p{
    font-size: 22px;
  }
  

  /* 404 */
  
  .p-404{
    background-size: min(100%, 1920px);
    padding: 150px 20px 380px;
  }

  .p-404__message{
    display: block;
    font-size: 25px;
    font-weight: 700;
    max-width: max-content;
    margin-left: auto;
    margin-top: 15px;
  }

  .p-404__heading{
    font-size: 100px;
    text-align: right;
  }




  .p-club__button > .u-button{
    font-size: 25px;
  }

  .p-club__button--row{
    gap: 50px;
  }

  .p-club__button--row > *{
    flex: 0 1 calc(50% - (50px / 2));
    gap: 50px;
  }

  .p-tab-frame-frame{
    box-shadow: #69f39f 10px 10px;
  }
  
  .p-tab-frame--takoru .p-tab-frame-frame{
    box-shadow: #ff98cd 10px 10px;
  }

  .p-club-forward > p{
    font-size: 25px;
  }

  .p-tab__heading-border{
    font-size: 45px;
  }

  .p-tab-frame-frame__in{
    padding: 40px;
  }  

  .p-tab-frame__text > p:not([class]){
    font-size: 20px;
  }

  .p-club__mailmagazine{
    margin-top: 100px;
  }
  
  .p-club__members{
    margin-top: 30px;
  }

  .p-club__present{
    margin-top: 100px;
  }

  .p-tab-frame--takoru {
    padding-top: 100px;
  }

  .p-tab-frame__takoru{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  .p-club__banner{
    gap: 50px;
    margin-top: 145px;
  }

}



@media (min-width: 1024px) {


  /* flex */

  .flex-col2 {
    flex-wrap: nowrap;
    gap: 45px;
    justify-content: space-between;
  }

  .flex-col2__main {
    flex: 1 1 0;
    max-width: 750px;
  }

  .flex-col2__aside {
    width: 290px;
  }


  /* header */

  .p-header__in{
    flex-wrap: nowrap;
  }

  .c-tvo-logo, .c-header-actions{
    flex: 0 1 30%;
    margin-top: 0;
  }

  .c-club-logo {
    flex: 0 0 min(460px, 40%);
  }


  /* home */

  .p-slide-wrapper .p-home-slide-article {
    height: 100%;
  }

  .p-home-slide-article {
    padding-inline: 0;
  }

  .p-slide-card {
    display: grid;
  }


  .p-slide-thumbnail {
    grid-area: 1/-1;
  }

  .p-slide-details {
    align-self: end;
    grid-area: 1/-1;
    justify-self: center;
    margin-bottom: 20px;
    max-width: 734px;
    padding: 25px 20px;
    width: 90%;
  }

  .p-slide__title{
    max-height: calc(1em * 1 * 1.2);
    -webkit-line-clamp: 1;
  }


  /* contents,single aside */

  .p-aside__article {
    gap: 10px;
  }

  .p-aside__article-details {
    gap: 10px;
  }

  .p-sidebar{
    top: 0;
  }


  /* category */

  .c-category-label {
    font-size: 25px;
  }

  .c-category-label--event {
    font-size: 30px;
    min-width: 175px;
  }

  .c-category-label--member {
    min-width: 175px;
  }



  .p-club__in{
    padding-inline: 60px;
  }

}

@media (min-width: 1366px){
  .c-enlarge {
    left: 25px;
    position: absolute;
    top: 105px;
  }
}