@charset "UTF-8";
/**======================================
	base
======================================**/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@3.4.1/dist/css/yakuhanjp.min.css');

/*--------------------------------------
	body, container
---------------------------------------*/

:root {
  --vh: 100vh;
}


body {
  position: relative;
  background-color: #000;
  font-family: Roboto, 'Noto Sans JP', 'Helvetica Neue', Arial,
    'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  -webkit-text-size-adjust: 100%;
  height: -webkit-fill-available;
  overscroll-behavior: contain;
}

body * {
  border-color: #ddd;
}

/* 強調されたグラデーション背景の例 */
body.post-type-archive-live,
body.live-template-default {
  background: linear-gradient(0deg, #de3d78 20%, #fa8b46 40%, #22b0ab 60%, #e83f7d 80%);
  background-size: 200vh 200vh;
  animation: gradientBG 10s ease infinite;
  color: #fff;
  background-color: #444;
}

/* ABOUTページ */
body.page-template-page-about {
  background: linear-gradient(66deg, #a8d0f1, #87ace1, #e8a1cd, #68d8bc, #91ded1);
  background-size: 800vh 800vh;
  animation: gradientBG1 12s ease infinite;
  color: #fff;
  background-color: #444;
}

/* Terms of Serviceページ */
body.page-template-page-terms_of_service  {
  background: linear-gradient(66deg, #a8d0f1, #87ace1, #e8a1cd, #68d8bc, #91ded1);
  background-size: 800vh 800vh;
  animation: gradientBG1 12s ease infinite;
  color: #fff;
  background-color: #444;
}

/* VIDEOアーカイブページ */
body.post-type-archive-video {
  background: linear-gradient(120deg, #f08a5d, #ffb97c, #f9ed69, #3db2ff, #1d84b5);
  background-size: 230vh 230vh;
  animation: gradientBG2 15s ease infinite;
  color: #fff;
  background-color: #444;
}

/* MEMBERSHIP VIDEOアーカイブページ 
body.member-video-archive {
  background: linear-gradient(90deg, #003b5d, #258e85, #109e62, #0cc41c, #186a08);
  background-size: 200vh 200vh;
  animation: gradientBG2 15s ease infinite;
  color: #fff;
  background-color: #444;
} ここまで */

/* BLOGアーカイブページ */
body.post-type-archive-blog,
body.blog-template-default {
  background: linear-gradient(120deg, #ff4d0097, #ff6822, #00633b, #122e7c, #06464f);
  background-size: 230vh 230vh;
  animation: gradientBG2 15s ease infinite;
  color: #fff;
  background-color: #444;
}

/* GALLERYアーカイブページ */
body.post-type-archive-gallery {
  background: linear-gradient(120deg, #5dd5f0, #7c94ff, #b169f9, #e8ff3d, #1d84b5);
  background-size: 230vh 230vh;
  animation: gradientBG2 15s ease infinite;
  color: #fff;
  background-color: #444;
}

/* DISCOGRAPHYアーカイブページ */
body.post-type-archive-discography,
body.tax-disco_cat {
  background: linear-gradient(90deg, #ff007f, #00bfff, #8a2be2, #ff007f, #00bfff);
  background-size: 200vh 200vh;
  animation: gradientBG3 30s ease infinite;
  color: #fff;
  background-color: #444;
}



/* WooCommerce関連ページ */
body.woocommerce-page,
body.page-id-842,
body.member-video-archive,
body.membership-content {
  /* background: linear-gradient(90deg, #007913, #0bb17c, #00aec9, #0037c3); */
  background: linear-gradient(90deg,
  #037944 0%, #037944 20%,  
  #63ba88 20%, #63ba88 40%,  
  #037944 40%, #037944 60%,  
  #63ba88 60%, #63ba88 80%,  
  #037944 80%, #037944 100%);
  /* background-size: 200vh 200vh; */
  color: #fff;
  /* background-color: #444; */
}

body.woocommerce-page::before,
body.page-id-842::before,
body.member-video-archive::before,
body.membership-content::before {
    content: "";
    position: fixed;
    top: 50%; /* 画面の縦中央 */
    left: 50%; /* 画面の横中央（必要なら変更） */
    width: 50vh; /* 画面の高さの50% */
    height: 50vh; /* 縦横比を維持 */
    background: url('https://stg.skipthechips.jp/wp-content/themes/eagleartist01/images/FCSKIP_logo_white01.png') no-repeat center center;
    background-size: contain;
    opacity: 0.5; /* 透明度 */
    transform: translate(-50%, -50%);/* 縦方向に自身の50%を上へずらす */
    z-index: -1; /* 背景として配置 */
}


/* CONTACTページ */
body.page-template-page-contact :root {
  background-color: transparent;
}

body.page-template-page-contact {
  background: linear-gradient(66deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
  background-size: 200vh 200vh;
  animation: gradientBG4 14s ease-in-out infinite;
  color: #fff;
  background-color: #444;
}





/* アニメーションの設定 */
@keyframes gradientBG {
  0% {
    background-position: 50% 0%;
}
50% {
    background-position: 50% 100%;
}
100% {
    background-position: 50% 0%;
}
}

@keyframes gradientBG1 {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gradientBG2 {
  0% { background-position: 20% 50%; }
  50% { background-position: 100% 50%; }
100% { background-position: 20% 50%; }
}

@keyframes gradientBG3 {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

@keyframes gradientBG4 {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media screen and (min-width: 600px) {
  body {
    color: #444;
  }
}

.container {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: calc(var(--vh) * 1); /* コンテナの高さも調整 */
  /* padding-top: 71px; */
  transition: 0.5s;
}

/*--------------------------------------
	global_tags
---------------------------------------*/

a {
  outline: none;
}

a,
a:visited {
  color: inherit;
  transition: 0.3s;
}

a:hover {
  transition: 0.3s;
}

a.block_link {
  display: block;
  text-decoration: none;
}

a.block_link,
a.block_link * {
  color: #333;
}

@media screen and (min-width: 600px) {
  a.block_link,
  a.block_link * {
    color: #444;
  }
}

/*--------------------------------------
	header
---------------------------------------*/

#header_wrap {
  position: absolute;
  top: 0;
  border-bottom: none;
  width: 100%;
  background-color: transparent;
  z-index: 4;
  transition: 0.5s;
}

#header_wrap #header {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  height: 70px;
}

#header_wrap #header #headercopy {
  line-height: 0.5em;
  position: fixed;
  left: 20px;
}

#header_wrap #header #headercopy small {
  font-size: 0.8rem;
  color: #fff;
  font-family: 'Vidaloka', serif;
  letter-spacing: 0.5px; /* フォントサイズの2%相当の文字間隔 */
  text-shadow: 0 0 3px rgba(128, 128, 128, 0.3); /* 薄いグレーの光彩 */
  line-height: 1.2em;
}

#header_wrap #header #headercopy {
  line-height: 0.5em;
  position: fixed;
  left: 20px;
}

/* 指定された全てのページで#headercopyと#logo_setを非表示に */
.page-template-page-about #headercopy, 
.page-template-page-about #logo_set,
.page-template-page-terms_of_service #headercopy, 
.page-template-page-terms_of_service #logo_set,
.post-type-archive-video #headercopy, 
.post-type-archive-video #logo_set,
.post-type-archive-discography #headercopy, 
.post-type-archive-discography #logo_set,
.tax-disco_cat #headercopy, 
.tax-disco_cat #logo_set,
.page-template-page-contact #headercopy, 
.page-template-page-contact #logo_set,
.post-type-archive-live #headercopy, 
.post-type-archive-live #logo_set,
.live-template-default #headercopy, 
.live-template-default #logo_set,
.post-type-archive-blog #headercopy,
.post-type-archive-blog #logo_set,
.blog-template-default #headercopy,
.blog-template-default #logo_set,
.page-template-default #headercopy,
.page-template-default #logo_set,
.woocommerce-page #headercopy,
.woocommerce-page #logo_set {
    display: none;
}

body pre {
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.5px; /* フォントサイズの2%相当の文字間隔 */
  text-shadow: 0 0 3px rgba(128, 128, 128, 0.3); /* 薄いグレーの光彩 */
  line-height: 1.2em;
  margin: 3px;
}


@media screen and (min-width: 600px) {
  #header_wrap #header {
    padding-left: 30px;
    /* max-width: 1300px; */
  }
}

@media screen and (min-width: 1025px) {
  #header_wrap #header {
    height: 72px;
    transition: 0.5s;
  }

  #header_wrap.header_wrap_change #header {
    height: 48px;
    transition: 0.5s;
  }
}

@media screen and (max-width: 1024px) {
  #header_wrap #header {
    height: 60px;
    transition: 0.5s;
  }

  #header_wrap.header_wrap_change #header {
    height: 48px;
    transition: 0.5s;
  }
}

#header_wrap #header #logo_set {
  position: fixed; /* ヘッダーから切り離して画面全体の中央に固定 */
  top: 50%; /* 縦方向の中央揃え */
  left: 50%; /* 横方向の中央揃え */
  transform: translate(-50%, -50%); /* 上下左右の中央揃え */
  z-index: 20; /* 必要に応じて他の要素より前に配置 */
  pointer-events: none; /* ロゴがクリックできないように（必要に応じて） */
  will-change: transform; /* 変形の保持をサポート */
  filter: drop-shadow(0 0 2px rgba(128, 128, 128, 0.5));

}

#header_wrap #header #logo_set #logo img {
  width: auto;
  height: 80px;
}

@media screen and (max-width: 1024px) {
  #header_wrap #header #logo_set #logo img {
    height: 62px;
    transition: 0.5s;
  }

  #header_wrap.header_wrap_change #header #logo_set #logo img {
    height: 55px;
    transition: 0.5s;
  }
}

@media screen and (min-width: 1025px) {
  #header_wrap #header #logo_set #logo img {
    height: 100px;
    transition: 0.5s;
  }

  #header_wrap.header_wrap_change #header #logo_set #logo img {
    height: 90px;
    transition: 0.5s;
  }
}

#header_wrap #header #header_navi {
  display: none;
}

#header .sns_icon {
  display: flex;
  margin: 20px 3em 0;
  flex-wrap: wrap;
  justify-content: center;
}

#header .sns_icon a {
  text-decoration: none;
}

#header .sns_icon li {
  margin-bottom: 15px;
  margin-left: 15px;
  margin-right: 15px;
}

#header .sns_icon li .icon::before {
  font-size: 3rem;
  color: #333;
}

/*--------------------------------------
	gnav
---------------------------------------*/

#header #gnav {
  font-family: Roboto, 'Lato', 'Noto Sans JP', sans-serif;
}

#header #gnav .menu-item:hover {
  cursor: pointer;
}

#header #gnav a {
  font-weight: 700;
}


#gnav_wrap #gnav.open,
#header #gnav.open {
    display: block; /* ハンバーガーメニュー開閉時に表示 */
    bottom: 0;
}

@media screen and (min-width: 1025px) {
  #gnav_wrap {
    position: relative;
    z-index: 10;
  }
  #gnav_wrap #gnav {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media screen and (min-width: 1025px) and (min-width: 600px) {
  #gnav_wrap #gnav {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1300px;
  }
}

@media screen and (min-width: 1025px) {
  #header #gnav {
    /* max-width: 980px; */
    position: fixed;
    top: 86px;
    bottom: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    z-index: 20;
    transition: 0.3s;
  }
}

/* gnav_btn */

#gnav_wrap #gnav_btn,
#header #gnav_btn_frame {
  display: block;
  width: 60px;
  height: 60px;
  padding-left: 20px;
  padding-top: 24px;
  border-left: 1px solid #fff; /* 太さとスタイル、色を指定 */
  border-bottom: 1px solid #fff; /* 太さとスタイル、色を指定 */
  border-radius: 1px;
  transition: all 0.4s;
  box-shadow: 0 0 1px rgba(128, 128, 128, 0.5);
}

#gnav_wrap #gnav_btn,
#header #gnav_btn {
  display: block;
  position: absolute;
  top: 24px;
  right: 0;
  margin-right: 20px;
  width: 20px;
  height: 11px;
  cursor: pointer;
  z-index: 25;
  transition: all 0.4s;
}

#gnav_wrap #gnav_btn span,
#header #gnav_btn span {
  display: inline-block;
  position: absolute;
  left: 0;
  border-radius: 1px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  font-size: 0;
  transition: all 0.4s;
  box-shadow: 0 1px 0 rgba(128, 128, 128, 0.1);
}

/* 一番下の線のみ短くして左寄せ */
#gnav_wrap #gnav_btn span.short,
#header #gnav_btn span.short {
  width: 75%; /* 長さを0.75倍に調整 */
  left: 0; /* 左寄せ */
  position: absolute;
  bottom: 0; /* 一番下に配置 */
}

/* ハンバーガーメニューが開いたときにshort spanの幅を100%に */
#gnav_wrap #gnav_btn.close span.short, 
#header #gnav_btn.close span.short {
    width: 100%;
}

#gnav_wrap #gnav_btn span:nth-of-type(1),
#header #gnav_btn span:nth-of-type(1) {
  top: 0;
}

#gnav_wrap #gnav_btn span:nth-of-type(2),
#header #gnav_btn span:nth-of-type(2) {
  top: 5px;
}

#gnav_wrap #gnav_btn span:nth-of-type(3),
#header #gnav_btn span:nth-of-type(3) {
  bottom: 0;
}

/* タップ時に回転させる
#gnav_wrap #gnav_btn.close,
#header #gnav_btn.close {
  transform: rotate(360deg);
}
*/

#gnav_wrap #gnav_btn.close span:nth-of-type(1),
#header #gnav_btn.close span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}

#gnav_wrap #gnav_btn.close span:nth-of-type(2),
#header #gnav_btn.close span:nth-of-type(2) {
  opacity: 0;
}

#gnav_wrap #gnav_btn.close span:nth-of-type(3),
#header #gnav_btn.close span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

@media screen and (min-width: 600px) {

  #gnav_wrap #gnav_btn,
  #header #gnav_btn_frame {
  display: block;
  width: 72px;
  height: 72px;
  }

  #gnav_wrap #gnav_btn,
  #header #gnav_btn {
    top: 27px;
    width: 30px;
    height: 17px;
  }

  #gnav_wrap #gnav_btn span:nth-of-type(1),
  #header #gnav_btn span:nth-of-type(1) {
    top: 0;
  }

  #gnav_wrap #gnav_btn span:nth-of-type(2),
  #header #gnav_btn span:nth-of-type(2) {
    top: 8px;
  }

  #gnav_wrap #gnav_btn span:nth-of-type(3),
  #header #gnav_btn span:nth-of-type(3) {
    bottom: 0;
  }

  #gnav_wrap #gnav_btn.close span:nth-of-type(1),
  #header #gnav_btn.close span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  #gnav_wrap #gnav_btn.close span:nth-of-type(2),
  #header #gnav_btn.close span:nth-of-type(2) {
    opacity: 0;
  }

  #gnav_wrap #gnav_btn.close span:nth-of-type(3),
  #header #gnav_btn.close span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

@media screen and (min-width: 1025px) {
  #gnav_wrap #gnav_btn,
  #header #gnav_btn {
    /* display: none; */
  }
}

/* gnav */

#gnav_list a.current span,
#gnav_list a:hover span {
  color: var(--link_color) !important;
}

@media screen and (max-width: 1024px) {
  #gnav #gnav_list {
    margin-top: 70px;
  }

  #gnav #gnav_list li a:active {
    color: var(--link_color);
  }

  #gnav_wrap #gnav,
  #header #gnav {
    position: fixed;
    top: 86px;
    bottom: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    z-index: 20;
    transition: 0.3s;
  }

  #gnav_wrap #gnav.open,
  #header #gnav.open {
    bottom: 0;
    overflow: scroll;
  }

  #gnav_wrap #gnav #topnavi_list,
  #header #gnav #topnavi_list {
    margin: 2em 0;
  }

  #gnav_wrap #gnav #topnavi_list li,
  #header #gnav #topnavi_list li {
    margin: 0 3em 6px;
  }

  #gnav_wrap #gnav #topnavi_list li a,
  #gnav_wrap #gnav #topnavi_list li a:visited,
  #header #gnav #topnavi_list li a,
  #header #gnav #topnavi_list li a:visited {
    display: block;
    position: relative;
    margin-top: 1rem;
    padding: 0;
    text-decoration: none;
    overflow: hidden;
  }

  #gnav_wrap #gnav #topnavi_list li a span,
  #gnav_wrap #gnav #topnavi_list li a:visited span,
  #header #gnav #topnavi_list li a span,
  #header #gnav #topnavi_list li a:visited span {
    display: block;
    padding: 0.9em 0 0.85em;
    border: 1px solid #999;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
  }

  #gnav_wrap #gnav #gnav_list > li,
  #header #gnav #gnav_list > li {
    margin: 0 3em;
  }

  #gnav_wrap #gnav #gnav_list > li > a,
  #gnav_wrap #gnav #gnav_list > li > a:visited,
  #header #gnav #gnav_list > li > a,
  #header #gnav #gnav_list > li > a:visited {
    display: block;
    position: relative;
    padding: 0;
    line-height: 3em;
    text-decoration: none;
    overflow: hidden;
  }

  #gnav_wrap #gnav #gnav_list > li > a > span,
  #gnav_wrap #gnav #gnav_list > li > a:visited > span,
  #header #gnav #gnav_list > li > a > span,
  #header #gnav #gnav_list > li > a:visited > span {
    display: block;
    padding: 0.9em 0 0.85em;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #gnav_wrap #gnav #gnav_list > li:active,
  #header #gnav #gnav_list > li:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  }

  #gnav_wrap #gnav #gnav_list > li a:focus,
  #header #gnav #gnav_list > li a:focus {
    outline: none !important;
  }
}

@media screen and (min-width: 1025px) {
  #gnav #gnav_list li a {
    color: #333;
  }

  #gnav_list > li > a span {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  #gnav_list > li > a span::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    background: var(--link_color);
  }
  #gnav_list > li > a:hover span::after {
    transform: scale(1, 1);
  }

  #gnav_list > li > a.current span::after {
    transform: none;
  }

  #gnav_wrap #gnav #gnav_list,
  #header #gnav #gnav_list {
    /* display: flex;
    width: 100%; */
    margin-top: 82px;
  }

  #gnav_wrap #gnav #gnav_list > li,
  #header #gnav #gnav_list > li {
    flex-grow: 1;
    flex-basis: auto;
    text-align: center;
    line-height: 1em;
    margin-right: 1px;
  }

  #gnav_wrap #gnav #gnav_list > li:last-child,
  #header #gnav #gnav_list > li:last-child {
    margin-right: 0;
  }

  #header #gnav #gnav_list > li:last-child {
    border-right: none;
  }

  #gnav_wrap #gnav #gnav_list > li > a,
  #gnav_wrap #gnav #gnav_list > li > a:visited,
  #header #gnav #gnav_list > li > a,
  #header #gnav #gnav_list > li > a:visited {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    height: 100%;
    line-height: 1.8em;
    text-decoration: none !important;
  }

  #gnav_wrap #gnav #gnav_list > li > a > span,
  #gnav_wrap #gnav #gnav_list > li > a:visited > span,
  #header #gnav #gnav_list > li > a > span,
  #header #gnav #gnav_list > li > a:visited > span {
    padding: 0.9em 0 0.85em;
    font-size: 1.6rem;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-weight: 400;
  }

  #gnav_wrap #gnav #gnav_list > li > a:not(.current),
  #header #gnav #gnav_list > li > a:not(.current) {
    transition: all 0.5s;
  }

  #gnav_wrap #gnav #gnav_list > li > a:not(.current) span,
  #gnav_wrap #gnav #gnav_list > li > a:not(.current)::before,
  #gnav_wrap #gnav #gnav_list > li > a:not(.current)::after,
  #header #gnav #gnav_list > li > a:not(.current) span,
  #header #gnav #gnav_list > li > a:not(.current)::before,
  #header #gnav #gnav_list > li > a:not(.current)::after {
    transition: all 0.5s;
  }
}

/* サブメニューに対応 */

#gnav .sub-menu li a {
  text-decoration: none;
  font-weight: 500;
}

#gnav .sub-menu li a span {
  font-weight: 500;
}

@media (max-width: 1024px) {
  #gnav li.menu-item-has-children > a {
    text-align: center;
  }

  #gnav li.menu-item-has-children > a span {
    position: relative;
    display: inline !important;
    padding-bottom: 0 !important;
  }

  #gnav li.menu-item-has-children > a > span::before {
    font-family: 'icomoon';
    font-size: 2em;
    position: absolute;
    top: 13px;
    right: -20px;
    content: '\e906';
    font-size: 10px;
  }

  #gnav .sub-menu {
    margin-top: -10px;
  }

  #gnav .sub-menu li:last-child span {
    border-bottom: none;
  }

  #gnav .sub-menu li a {
    text-align: center;
  }

  #gnav .sub-menu li a span {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0.9em 0 0.85em;
    font-size: 1.5rem;
    font-weight: normal;
  }
}

@media (min-width: 1025px) {
  #gnav li.menu-item-has-children > a {
    padding-right: 30px !important;
  }

  #gnav li.menu-item-has-children > a > span::before {
    font-family: 'icomoon';
    font-size: 2em;
    position: absolute;
    top: 5px;
    right: -15px;
    content: '\e906';
    font-size: 10px;
  }

  #gnav .sub-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
  }

  #gnav li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
  }

  #gnav .sub-menu li {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }

  #gnav .sub-menu li:first-child {
    border-top: 1px solid #ddd;
  }

  #gnav .sub-menu li a {
    display: block;
    padding: 10px 15px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.95);
    transition: 0.3s;
  }
}

/*--------------------------------------
	title / promo
---------------------------------------*/

#promo_wrap {
  position: relative;
  z-index: 3;
}

#title_wrap {
  position: relative;
  background-color: #777;
  z-index: 3;
}

#title_wrap #title {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #eee;
}

@media screen and (min-width: 600px) {
  #title_wrap #title {
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1300px;
  }
}
@media screen and (max-width: 599px) {
  #title_wrap #title .title_text {
    margin: 0;
    padding: 0.8em 5%;
    font-size: 2rem;
    line-height: 1.3em;
  }
}
@media screen and (min-width: 600px) {
  #title_wrap #title .title_text {
    padding: 50px 0;
    font-size: 2.6rem;
  }
}

/*--------------------------------------
	contents
---------------------------------------*/

#contents_wrap {
  position: relative;
  -webkit-box-flex: 1;
  flex-grow: 1;
  z-index: 3;
}

#contents_wrap .contents {
  position: relative;
}

.area > .box {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  max-width: 1200px;
}

.area > .box.full {
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 1024px) {
  .area > .box.full > * {
    margin-right: auto;
    margin-left: auto;
    width: 90%;
  }
}

@media screen and (min-width: 1025px) {
  .area > .box.w800 {
    width: 800px;
  }
}

#contents_wrap .contents .area .box,
#contents_wrap .contents .main_area .box {
  margin-bottom: 2em;
}

#contents_wrap .contents .area .box .part,
#contents_wrap .contents .main_area .box .part {
  margin-bottom: 1.5em;
}

#contents_wrap .contents.wide_contents {
  margin-bottom: 0;
  padding: 0;
}

#contents_wrap .contents.wide_contents .area,
#contents_wrap .contents.wide_contents .main_area {
  padding-top: 3em;
  padding-bottom: 3em;
}

#contents_wrap .contents.wide_contents .area .box:last-child,
#contents_wrap .contents.wide_contents .main_area .box:last-child {
  margin-bottom: 0;
}

#contents_wrap .contents.wide_contents .area .box:last-child .part:last-child,
#contents_wrap
  .contents.wide_contents
  .main_area
  .box:last-child
  .part:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  #contents_wrap .contents {
    margin-bottom: 3em;
    padding-top: 2em;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #contents_wrap .contents {
    margin-bottom: 4em;
    padding-top: 3em;
  }
}

@media screen and (min-width: 600px) {
  #contents_wrap .contents {
    margin-bottom: 0;
    padding-top: 40px;
  }

  #contents_wrap .contents .area.no_padding,
  #contents_wrap .contents .main_area.no_padding {
    padding-top: 0;
    padding-bottom: 0;
  }

  #contents_wrap .contents .area .box,
  #contents_wrap .contents .main_area .box {
    margin-bottom: 40px;
  }

  #contents_wrap .contents .area .box .part,
  #contents_wrap .contents .main_area .box .part {
    margin-bottom: 30px;
    padding: 0;
  }

  #contents_wrap .contents.wide_contents {
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  #contents_wrap .contents.wide_contents .area,
  #contents_wrap .contents.wide_contents .main_area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1025px) {
  #contents_wrap .contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 60px;
  }

  #contents_wrap .contents .side_area {
    flex-basis: 20%;
    max-width: 20%;
  }

  #contents_wrap .contents .main_area {
    flex-basis: 75%;
    max-width: 75%;
  }

  #contents_wrap .contents .area .box {
    margin-bottom: 80px;
  }

  #contents_wrap .contents .area {
    flex-basis: 100%;
    max-width: 100%;
  }

  #contents_wrap .contents.wide_contents {
    display: block;
    margin-bottom: 0;
  }
}

/*--------------------------------------
	footer
---------------------------------------*/

#footer_wrap {
  padding: 18px 0;
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
}

@media screen and (max-width: 599px) {
  #footer_wrap #sns_wrap,
  #footer_wrap #footer_nav,
  #footer_wrap #copyright_wrap,
  #footer_wrap #powered_wrap {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (min-width: 600px) {
  #footer_wrap {
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }

  #footer_wrap #sns_wrap,
  #footer_wrap #footer_nav,
  #footer_wrap #copyright_wrap,
  #footer_wrap #powered_wrap {
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1300px;
  }
}

/* sns_wrap */

#sns_wrap {
  margin-top: 7px;
  margin-bottom: 5px;
}

#sns_wrap .sns_icon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#sns_wrap .sns_icon li {
  margin-right: 20px;
  margin-left: 20px;
}

#sns_wrap .sns_icon li .icon::before {
  font-size: 25px;
  line-height: 34px;
  color: #444;
}

#sns_wrap .sns_icon a {
  text-decoration: none;
}

#sns_wrap .sns_icon a .icon::before {
  transition: 0.3s;
}

#sns_wrap .sns_icon a:hover .icon::before {
  color: var(--link_color);
  transition: 0.3s;
}

@media screen and (max-width: 599px) {
  #sns_wrap .sns_icon li {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 600px) {
  #sns_wrap {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

/* footer_nav */

#footer_nav {
  margin-top: 5px;
  margin-bottom: 15px;
}

#footer_nav .footer_menu_ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 5%;
  padding-right: 5%;
}

#footer_nav .footer_menu_ul li {
  margin-right: 15px;
}

#footer_nav .footer_menu_ul li:last-child {
  margin-right: 0;
}

#footer_nav .footer_menu_ul li a span {
  font-size: 1.2rem;
  transition: 0.3s;
}

#footer_nav .footer_menu_ul li a:hover span {
  opacity: 0.8;
  transition: 0.3s;
}

@media screen and (min-width: 600px) {
  #footer_nav {
    margin-top: 10px;
  }
}

/* copyright_wrap */

#copyright_wrap #copyright {
  text-align: center;
  text-shadow: 0 0 4px rgba(128, 128, 128, 0.5); /* 薄いグレーの光彩 */
}

#copyright_wrap #copyright small {
  font-size: 0.8rem;
  line-height: 1em;
  color: #fff;
  font-family: 'Vidaloka', serif;
  letter-spacing: 0.5px; /* フォントサイズの2%相当の文字間隔 */
}

/* powered_wrap */

#powered_wrap {
  text-align: center;
}

#powered_wrap .powered a {
  font-size: 1.1rem;
  color: #999;
  text-decoration: none;
  font-weight: 500;
}

/*--------------------------------------
	pagetop
---------------------------------------*/

#pagetop {
  position: fixed;
  bottom: 10%;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 10;
  opacity: 0;
}

#pagetop a {
  padding: 0 !important;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
}

#pagetop a:hover {
  color: #fff;
  background: var(--link_color);
  border: 2px solid var(--link_color);
}
#pagetop a:hover span::before {
  color: #fff;
}
#pagetop a span {
  display: block;
  position: relative;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  border: none !important;
  background: none !important;
}

#pagetop a span::before {
  font-size: 21px;
  line-height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -13px;
  color: #fff;
}

@media screen and (max-width: 599px) {
  #pagetop a {
    display: block;
    position: relative;
    padding: 0;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
  }

  #pagetop a span {
    display: block;
    padding: 0.7em 1em 0.65em;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
  }

  #pagetop a:active span {
    border: 1px solid var(--link_color);
    background: var(--link_color);
    color: #fff;
  }

  #pagetop a:focus {
    outline: none !important;
  }

  #pagetop a,
  #pagetop a::before,
  #pagetop a::after,
  #pagetop a > *,
  #pagetop a > *::before,
  #pagetop a > *::after,
  #pagetop a > * > * {
    font-weight: 500;
    color: #333;
  }
}

@media screen and (min-width: 600px) {
  #pagetop a {
    display: inline-block;
    padding: 0;
    text-decoration: none !important;
    outline: none;
    cursor: pointer;
  }

  #pagetop a span {
    display: block;
    padding: 1em 3.5em 0.95em;
    text-align: center;
    vertical-align: baseline;
    color: #333;
  }

  #pagetop a:visited span {
    color: #333;
  }

  #pagetop a:hover span {
    background: #aaa;
  }

  #pagetop a:hover span,
  #pagetop a:hover span::before,
  #pagetop a:hover span::after {
    color: #fff;
  }

  #pagetop a,
  #pagetop a::before,
  #pagetop a::after,
  #pagetop a > *,
  #pagetop a > *::before,
  #pagetop a > *::after,
  #pagetop a > * > * {
    transition: all 0.3s;
  }

  #pagetop a:focus {
    outline: none !important;
  }
}

/*--------------------------------------
	wpadminbar
---------------------------------------*/

#wpadminbar {
  position: fixed !important;
}

#gnav_list a {
  color: #333;
}

/*--------------------------------------
	reCAPTCHA
---------------------------------------*/

.grecaptcha-badge {
  display: none;
}
