@charset "UTF-8";
/* フォント */
/* 設定 */
/*
Reset Stylesheet
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a,
p {
  letter-spacing: 0.02em;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

figure {
  margin: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*common*/
html {
  scroll-behavior: smooth;
  min-width: 310px;
  font-feature-settings: "palt";
}

body {
  min-width: 310px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, ‘メイリオ’, meiryo, sans-serif;
  overflow-x: hidden;
  font-size: clamp(9px, 1.35vw, 16px);
  background-color: #e8e4e4;
  color: #11262e;
  scroll-padding: 20px;
  line-height: 1.5;
  font-weight: 600;
}
body.active {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(11px, 3.2vw, 16px);
  }
}

.frame {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .frame {
    width: 92%;
  }
}

li {
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}

a {
  text-decoration: none;
  transition: 0.3s;
  opacity: 1;
  display: inline-block;
}
a:active {
  transform: scale(0.95);
}
a:hover {
  opacity: 0.6;
}

h1,
h2,
h3 {
  font-size: initial;
  font-weight: 900;
  letter-spacing: 0.1em;
}

p {
  padding: 0.3em 0 0.8em;
}

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

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

.breadcrumb {
  margin-top: 2.5em;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  font-size: 0.8em;
  overflow: auto;
}
.breadcrumb li {
  white-space: nowrap;
}
.breadcrumb li:after {
  display: inline-block;
  padding: 0 0.65em;
  content: ">";
}
.breadcrumb li br {
  display: none !important;
}
.breadcrumb li:last-child::after {
  display: none;
}

/*header*/
header.main-header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 1% 0 1.2%;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header.main-header {
    padding: 2.6% 0;
  }
}
header.main-header:before {
  display: block;
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgb(87, 124, 0) 0%, rgb(44, 185, 255) 33%, rgb(137, 59, 248) 68%, rgb(203, 5, 8) 100%);
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  line-height: 1em;
}
header.main-header .frame {
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
header.main-header .frame > div:nth-child(1), header.main-header .frame > a {
  width: 10%;
}
@media screen and (max-width: 768px) {
  header.main-header .frame {
    justify-content: space-between;
    align-items: center;
  }
  header.main-header .frame > div:nth-child(1) {
    display: none;
  }
  header.main-header .frame > a {
    width: 39%;
  }
}
header.main-header .frame > ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 80%;
}
header.main-header .frame > ul li {
  width: 17%;
  text-align: center;
}
header.main-header .frame > ul li a {
  letter-spacing: 0.15em;
}
header.main-header .frame > ul li + li {
  border-left: 1px solid #45322c;
}
header.main-header .frame > ul li:nth-child(2) {
  border-right: 1px solid #45322c;
}
header.main-header .frame > ul li:nth-child(3) {
  width: 31%;
  padding: 0 6%;
  border-left: 0px solid #fff !important;
}
@media screen and (max-width: 768px) {
  header.main-header .frame > ul {
    width: 50%;
    padding-right: 11%;
  }
  header.main-header .frame > ul li:nth-child(3) {
    width: 100%;
    padding: 0;
  }
  header.main-header .frame > ul li:not(:nth-child(3)) {
    display: none;
  }
}

/* 携帯用メニュー用css*/
.hamburger {
  display: none;
  margin: auto 0;
  cursor: pointer;
  width: 7%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  aspect-ratio: 1/0.8;
  margin-left: 3%;
}
.hamburger span {
  width: 90%;
  height: 2px;
  background-color: #145b2d;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(120%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
nav.globalMenuSp figure {
  display: block;
  width: 60%;
  margin: 0 auto 2em;
}
nav.globalMenuSp .close_menu {
  width: 5em;
  height: 5em;
  top: 10px;
  right: 0px;
  position: absolute;
  cursor: pointer;
}
nav.globalMenuSp .close_menu:before, nav.globalMenuSp .close_menu:after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 30px;
  /* 棒の高さ */
  background: #145b2d;
}
nav.globalMenuSp .close_menu:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
nav.globalMenuSp .close_menu:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
nav.globalMenuSp.active {
  transform: translateX(0%);
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 60%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  transition: 0.4s all;
  font-size: 1.4em;
  width: 100%;
  margin: 0.2rem auto;
  padding: 0;
  padding-left: 0.3em;
  height: auto;
  text-align: left;
}
nav.globalMenuSp ul li a {
  margin: 0.7em 0;
  text-align: left;
  display: block;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  letter-spacing: 0.12em;
}
nav.globalMenuSp ul li a span {
  padding: 1em 0.7em 1em 2em;
  position: relative;
}
nav.globalMenuSp ul li a span:before {
  display: block;
  position: absolute;
  content: "";
  left: 0em;
  top: 50%;
  width: 1em;
  height: 1.5em;
  line-height: 1em;
  transform: translateY(-50%);
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/icon1.webp") no-repeat center/auto 100%;
}

/*footer*/
footer {
  margin-top: 3em;
  background-color: #145b2d;
  color: #fff;
  padding: 1.8em 0 3.5em;
}
footer ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
footer ul li + li {
  margin-left: 2em;
}
footer a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 0 1.5em;
  }
  footer ul {
    width: calc(108% + 2px);
    margin: 0 calc(-4% - 1px) 0.5em;
    background-color: #fff;
    flex-direction: column;
  }
  footer ul li {
    border-bottom: #e8e4e4 1px solid;
    width: 100%;
  }
  footer ul li + li {
    margin: 0 auto;
  }
  footer ul li a {
    display: block;
    width: 92%;
    margin: 0 auto;
    padding: 0.8em 0 0.8em 5%;
    color: #000000;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    width: 100%;
  }
}

/* pageの一番上に戻るボタン用 css*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #333;
  width: 60px;
  height: 60px;
  font-size: 200%;
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  font-size: 140%;
  border: 1px solid #333;
}
#page-top a:hover {
  background: #fff;
  opacity: 1;
  color: #333;
}

#page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

.single article .post-thumbnail {
  text-align: center;
  padding-top: 5em;
  margin-bottom: 2em;
  min-height: 8em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single article .post-thumbnail {
    margin: auto;
  }
}
.single article .post-thumbnail img {
  display: inline-block;
  width: auto;
}
.single article .entry-content {
  padding-bottom: 4em;
}
.single article .entry-content h1 {
  font-size: 2em;
  font-weight: 500;
}
.single article .entry-content h2 {
  font-size: 1.8em;
  font-weight: 500;
}
.single article .entry-content h3 {
  font-size: 1.6em;
  font-weight: 500;
}
.single article .entry-content h4 {
  font-size: 1.4em;
  font-weight: 500;
}
.single article .entry-content h5 {
  font-size: 1.2em;
  font-weight: 500;
}
.single article .entry-content h6 {
  font-size: 1em;
  font-weight: 500;
}
.single article .entry-content h1,
.single article .entry-content h2,
.single article .entry-content h3,
.single article .entry-content h4,
.single article .entry-content h5,
.single article .entry-content h6 {
  margin: 0.5em 0;
  padding: 0;
  line-height: 1.2em;
}
.single article .entry-content ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.single article blockquote {
  position: relative;
  padding: 2em;
  box-sizing: border-box;
  font-style: italic;
  color: #464646;
  background: #fafafa;
  border: none;
  border-top: solid 3px #cecece;
  border-bottom: solid 3px #cecece;
}
.single article blockquote:before {
  display: inline-block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  text-align: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  background: #cecece;
  top: 0;
  left: 0;
}
.single article blockquote:after {
  display: inline-block;
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  text-align: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  background: #fafafa;
  bottom: 0;
  right: 0;
}
.single article blockquote + p {
  margin-top: 1.6em;
}
.single article blockquote p {
  position: relative;
  padding: 0;
  margin: 0.7em 0;
  z-index: 3;
  line-height: 1.7;
}
.single article blockquote > p:last-child {
  margin-bottom: 0 !important;
}

ul.media_list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  font-size: clamp(9px, 1.23vw, 16px);
}
@media screen and (max-width: 768px) {
  ul.media_list {
    font-size: clamp(11px, 3.2vw, 16px);
  }
}
ul.media_list li {
  width: 32%;
  margin-bottom: 2%;
  border-radius: 0.8em;
  background-color: #fff;
  padding: 1.8em 2.5em 3.8em;
  margin-right: 2%;
  position: relative;
}
@media screen and (max-width: 768px) {
  ul.media_list li {
    width: 100%;
    padding: 1.8em 3.2em 4em;
  }
  ul.media_list li + li {
    margin-top: 2em;
  }
}
ul.media_list li:nth-child(3n) {
  margin-right: 0;
}
ul.media_list li figure {
  margin: 0 auto;
  width: 50%;
  border-radius: 50%;
  background-color: #d2dee0;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.media_list li figure img {
  display: inline-block;
  width: 48%;
}
ul.media_list li .publisher {
  padding: 0;
  text-align: right;
  margin: 0.5em 0;
}
ul.media_list li .publisher span {
  border: 3px solid #d7d7d7;
  border-radius: 999px;
  padding: 0.3em 1em;
  display: inline-block;
  font-size: 0.85em;
}
ul.media_list li .publisher span + span {
  margin-left: 0.5em;
}
ul.media_list li h3 {
  color: #145b2d;
  font-size: 1.15em;
  letter-spacing: 0.2em;
  margin-bottom: 1.5em;
}
ul.media_list li h4 {
  font-size: 0.95em;
  border-bottom: 2px solid #bababa;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
ul.media_list li p {
  padding: 0;
}
@media screen and (max-width: 768px) {
  ul.media_list li p {
    line-height: 1.8em;
  }
}
ul.media_list li a {
  display: block;
  position: absolute;
  bottom: 1.3em;
  right: 2.5em;
  width: 9em;
  padding-bottom: 0.2em;
  border-bottom: 2px solid #11262e;
  font-size: 0.9em;
}
ul.media_list li a:before {
  display: block;
  position: absolute;
  content: "";
  right: 0em;
  top: 50%;
  width: 1.2em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/icon2.webp") no-repeat center/100% auto;
}

h2 {
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 5%;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 8%;
  }
}
h2 b {
  position: relative;
  padding-left: 1.5em;
}
h2 b:before {
  display: block;
  position: absolute;
  content: "";
  left: 0em;
  top: 50%;
  width: 1em;
  height: 1.5em;
  line-height: 1em;
  transform: translateY(-50%);
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/icon1.webp") no-repeat center/auto 100%;
}
h2 span {
  font-size: 0.8em;
  padding-left: 0.1em;
  font-weight: 900;
}

.btn1 {
  border: 3px solid #145b2d;
  background-color: #fff;
  color: #145b2d;
  border-radius: 0.4em;
  text-align: center;
  width: 60%;
  max-width: 320px;
  padding: 1em 0;
  margin: 1.5em auto;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 800;
}
.btn1 span {
  padding-right: 1.8em;
  position: relative;
}
.btn1 span:before {
  display: block;
  position: absolute;
  content: "〉";
  right: 0em;
  top: 57%;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%) rotate(90deg);
}

#index .bg {
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/kv_bg.webp") no-repeat top/100% auto;
}
@media screen and (max-width: 1500px) {
  #index .bg {
    background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/kv_bg.webp") no-repeat top/1500px auto;
  }
}
@media screen and (max-width: 1300px) {
  #index .bg {
    background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/kv_bg.webp") no-repeat top/117% auto;
  }
}
@media screen and (max-width: 768px) {
  #index .bg {
    background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/kv_bg_sp.webp") no-repeat top/100% auto;
  }
}
#index #kv .frame {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 38vw;
  max-height: 580px;
  padding-top: 4%;
}
#index #kv figure {
  width: 62%;
  margin: 0 auto;
}
#index #kv .link_box {
  margin: 3% auto 0;
  width: 45%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#index #kv .link_box a {
  width: 47%;
}
@media screen and (max-width: 768px) {
  #index #kv .frame {
    height: 94vh;
    max-height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 23vw 0 0;
  }
  #index #kv figure {
    width: 72%;
    margin: 0;
  }
  #index #kv .link_box {
    width: 100%;
    flex-direction: column;
    margin-top: 1em;
  }
  #index #kv .link_box a {
    width: 100%;
  }
  #index #kv .link_box a + a {
    margin-top: 0.2em;
  }
}
@media screen and (max-width: 600px) {
  #index #kv .frame {
    height: auto;
    padding: 22vw 0 0;
    margin-bottom: 13vh;
  }
}
#index #sec1 .flex {
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #index #sec1 .flex {
    flex-direction: column-reverse;
  }
}
#index #sec1 .box:nth-child(1) {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1em;
  padding: 7% 3%;
}
@media screen and (max-width: 768px) {
  #index #sec1 .box:nth-child(1) {
    padding: 12% 8%;
  }
}
#index #sec1 .box:nth-child(1) p {
  text-align: center;
  line-height: 2.4em;
  letter-spacing: 0.2em;
  padding: 1em 0 0;
}
@media screen and (max-width: 768px) {
  #index #sec1 .box:nth-child(1) {
    width: 100%;
  }
}
#index #sec2 {
  margin-top: 3em;
}
#index #sec2 h3 {
  font-size: 3em;
}
@media screen and (max-width: 768px) {
  #index #sec2 h3 {
    font-size: 2em;
    margin-top: 1.5em;
  }
}
#index #sec2 .name {
  text-align: right;
}
#index #sec2 .name img {
  display: inline-block;
  max-width: 25%;
}
#index #sec2 .box {
  background: #fff;
  border-radius: 1em;
  padding: 5% 8%;
}
@media screen and (max-width: 768px) {
  #index #sec2 .box {
    padding: 8%;
  }
}
#index #sec2 .box p {
  line-height: 2;
  letter-spacing: 0.2em;
  padding: 0;
}
#index #sec2 .box p + p {
  margin-top: 2em;
}
#index #sec2 .box p:nth-child(2) {
  margin-top: 1.5em;
  text-align: right;
}
#index #sec2 .box > figure {
  margin: 2em auto;
  display: block;
}
#index #sec2 .flex {
  align-items: center;
  margin: 2em 0;
}
#index #sec2 .flex figure {
  width: 35%;
}
#index #sec2 .flex.type1 figure {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #index #sec2 .flex.type1 {
    align-items: flex-start;
  }
  #index #sec2 .flex.type1 figure {
    width: 80%;
  }
}
#index #sec2 .txt {
  width: 62%;
}
@media screen and (max-width: 768px) {
  #index #sec2 .flex {
    flex-direction: column-reverse;
  }
  #index #sec2 .flex figure {
    width: 100%;
    margin: 2em auto 1em;
  }
  #index #sec2 .txt {
    width: 100%;
  }
}
#index #sec3 {
  margin: 3em 0 0;
  padding-bottom: 1.5em;
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/index_sec3_img1.webp") no-repeat left top/90% auto;
}
#index #sec3 .frame {
  padding-top: 4%;
}
@media screen and (max-width: 768px) {
  #index #sec3 .frame {
    padding-top: 8%;
  }
}
#index #sec3 .frame > a {
  display: block;
  background-color: #145b2d;
  color: #fff;
  width: 21em;
  max-width: 380px;
  text-align: center;
  padding: 1.9em 1em;
  position: relative;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  border-radius: 0.6em;
  margin: 1em auto 0;
}
#index #sec3 .frame > a:before {
  display: block;
  position: absolute;
  content: "〉";
  right: 0.5em;
  top: 50%;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
}
#index #sec4 {
  margin-top: 3em;
}
#index #sec4 .box {
  background: #fff;
  border-radius: 1em;
  padding: 5% 8%;
}
@media screen and (max-width: 768px) {
  #index #sec4 .box {
    padding: 8%;
  }
}
#index #sec4 .map {
  overflow: hidden;
  border-radius: 0.6em;
  aspect-ratio: 16/5.7;
  margin-bottom: 3em;
}
#index #sec4 .map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #index #sec4 .map {
    aspect-ratio: 1/0.8;
  }
}
#index #sec4 h3 {
  color: #145b2d;
  text-align: center;
  font-size: 1.4em;
  letter-spacing: 0.25em;
  font-weight: 800;
  margin-bottom: 1.2em;
}
#index #sec4 p {
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.1em;
  padding: 0;
}

.other {
  padding-top: 5em;
}
@media screen and (max-width: 768px) {
  .other {
    margin-top: 6em;
  }
}
@media screen and (max-width: 600px) {
  .other {
    margin-top: 0;
    padding-top: 4em;
  }
}
.other .breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.other h1.entry-title,
.other h2.entry-title {
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin: 5% 0;
}
@media screen and (max-width: 768px) {
  .other h1.entry-title,
  .other h2.entry-title {
    margin-bottom: 8%;
  }
}
.other h1.entry-title b,
.other h2.entry-title b {
  position: relative;
  padding-left: 1.5em;
}
.other h1.entry-title b:before,
.other h2.entry-title b:before {
  display: block;
  position: absolute;
  content: "";
  left: 0em;
  top: 50%;
  width: 1em;
  height: 1.5em;
  line-height: 1em;
  transform: translateY(-50%);
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/icon1.webp") no-repeat center/auto 100%;
}
.other h1.entry-title span,
.other h2.entry-title span {
  font-size: 0.8em;
  padding-left: 0.1em;
  font-weight: 900;
}

#page .um-13.um .um-field {
  padding: 2em 0 0;
}
#page .um-13.um .um-field-label {
  position: relative;
}
#page .um-13.um .um-field-label:before {
  display: inline-block;
  content: "必須";
  line-height: 1;
  background-color: #e22426;
  color: #fff;
  padding: 0.4em 0.8em;
  margin-right: 0.5em;
  border-radius: 0.4em;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
#page .um-13.um .um-field-training_price .um-field-label:before,
#page .um-13.um .um-field-other .um-field-label:before,
#page .um-13.um .um-field-fhoto .um-field-label:before {
  content: "任意";
  background-color: #8e8e8e;
}
#page .um-13.um .um-field-privacy .um-field-checkbox-option {
  text-decoration: underline;
}
#page .um-13.um .um-field-privacy .um-field-checkbox {
  width: 100%;
  display: flex;
  justify-content: center;
}
#page .um-13.um .um-field-privacy .um-field-checkbox {
  position: relative;
}
#page .um-13.um .um-field-privacy .um-field-checkbox:before {
  display: inline-block;
  content: "必須";
  line-height: 1;
  background-color: #e22426;
  color: #fff;
  padding: 0.4em 0.8em;
  margin-right: 0.5em;
  border-radius: 0.4em;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}
#page .um-13.um .um-field-checkbox-state,
#page .um-13.um .um-field-radio-state {
  position: relative;
}
#page .um-13.um .um-field-checkbox-option,
#page .um-13.um .um-field-radio-option {
  margin: 0;
}
#page .um-13.um .um-col-alt {
  display: flex;
  justify-content: center;
}
#page .um-13.um .um-col-alt .um-left {
  float: none;
}
#page .um-13.um .um-col-alt .um-right {
  display: none;
}
#page .um-login.um-logout {
  max-width: 100% !important;
  width: 80%;
}
#page .um {
  opacity: 1;
  max-width: 100% !important;
  width: 80%;
  background-color: #fff;
  border-radius: 1em;
  padding: 2em 5em;
}
@media screen and (max-width: 768px) {
  #page .um {
    width: 100%;
    padding: 2em 6%;
  }
}
#page .um .um-form input[type=number],
#page .um .um-form input[type=password],
#page .um .um-form input[type=search],
#page .um .um-form input[type=tel],
#page .um .um-form input[type=text] {
  border: 0px solid #000 !important;
  border-bottom: 2px solid #145b2d !important;
  background-color: #eeeeee;
}
#page .um .um-form input[type=number],
#page .um .um-form input[type=password],
#page .um .um-form input[type=search],
#page .um .um-form input[type=tel],
#page .um .um-form input[type=text] {
  padding: 0.4em 0.8em !important;
}
#page .um .um-col-alt .um-left {
  position: relative;
}
#page .um .um-col-alt .um-left:before {
  display: block;
  position: absolute;
  color: #fff;
  content: "〉";
  right: 0.2em;
  top: 50%;
  font-size: 1.2em;
  width: 1em;
  height: 1em;
  line-height: 1em;
  transform: translateY(-50%);
  z-index: 5;
}
#page .um a.um-button,
#page .um a.um-button.um-disabled:active,
#page .um a.um-button.um-disabled:focus,
#page .um a.um-button.um-disabled:hover,
#page .um input[type=submit].um-button,
#page .um input[type=submit].um-button:focus {
  background-color: #145b2d;
}
#page .um:not(.um-admin):not(.um-directory) input,
#page .um:not(.um-admin):not(.um-directory) select,
#page .um:not(.um-admin):not(.um-directory) textarea {
  font-size: 1.3em;
  padding: 1.5em 0.5em !important;
  font-weight: 800 !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, ‘メイリオ’, meiryo, sans-serif;
  letter-spacing: 0.1em !important;
}
#page .um .um-button.um-alt,
#page .um input[type=submit].um-button.um-alt {
  background: #eee !important;
}
#page a.um-button {
  font-size: 1.3em;
  padding: 1.5em 0.5em !important;
  font-weight: 800 !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "游ゴシック Mediu", YuGothic, YuGothicM, ‘メイリオ’, meiryo, sans-serif;
  letter-spacing: 0.1em !important;
}
#page .um-center .um-button {
  min-width: 350px !important;
}

.signle-publishing_media .entry-content {
  background-color: #fff;
  border-radius: 1em;
  padding: 7%;
}
.signle-publishing_media .entry-content .flex {
  margin-bottom: 5%;
}
.signle-publishing_media .entry-content .flex figure {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d2dee0;
  border-radius: 50%;
  height: auto;
  aspect-ratio: 1/1;
}
.signle-publishing_media .entry-content .flex figure img {
  display: inline-block;
  width: 48%;
}
.signle-publishing_media .entry-content .flex .box {
  width: 74%;
}
.signle-publishing_media .entry-content .flex h4 {
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .signle-publishing_media .entry-content .flex {
    flex-direction: column;
  }
  .signle-publishing_media .entry-content .flex figure {
    width: 50%;
  }
  .signle-publishing_media .entry-content .flex .box {
    width: 100%;
    margin-top: 2em;
  }
}
.signle-publishing_media .entry-content p {
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.signle-publishing_media .entry-content p.publisher {
  padding: 0;
}

.news_list {
  background-color: #fff;
  border-radius: 1em;
  padding: 4% 7%;
}
.news_list a.news_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 1em 0;
}
.news_list a.news_box h3 {
  margin-left: 1.5em;
  border-left: 1px solid #bababa;
  padding-left: 1.5em;
}
.news_list a.news_box p {
  padding: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7%;
}
.nav-links span,
.nav-links a {
  min-width: 1.1em;
  text-align: center;
  aspect-ratio: 1/1;
  width: auto;
  height: 2.2em;
  line-height: 2em;
}
.nav-links span.prev, .nav-links span.next,
.nav-links a.prev,
.nav-links a.next {
  border: 0px solid #000 !important;
  font-size: 1.3em;
  margin-left: 0;
}
.nav-links span.prev + a,
.nav-links a.prev + a {
  margin-left: 0;
}
.nav-links span {
  color: #fff;
  background-color: #145b2d;
  border-radius: 0.4em;
  display: inline-block;
}
.nav-links a {
  color: #11262e;
  border: 1px solid #11262e;
  border-radius: 0.4em;
  margin-left: 0.5em;
}
.nav-links a:nth-child(1) {
  margin-left: 0;
}
.nav-links a + span {
  margin-left: 0.5em;
}

.input-box {
  position: relative;
  margin-bottom: 2em;
  display: block;
  width: 100%;
}
.input-box button {
  display: block;
  position: absolute;
  border: 0px solid #000;
  content: "";
  right: 0.7em;
  top: 50%;
  width: 1.5em;
  height: 1.5em;
  line-height: 1em;
  transform: translateY(-50%);
  background: url("/hibiya-new/wp-content/themes/hibiyaclub/img/icon3.webp") no-repeat center/80% auto;
  z-index: 3;
}
.input-box input {
  display: block;
  margin-left: auto;
  padding: 1em 2em 1em 1em;
  border-radius: 0.4em;
  letter-spacing: 0.1em;
  min-width: 20em;
}
@media screen and (max-width: 768px) {
  .input-box input {
    width: 100%;
  }
}

.membersonly .other .entry-content {
  margin-top: 5em;
}
.membersonly .other .entry-content h2 {
  margin-top: 4em;
}

.member_list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.member_list li {
  width: 19%;
  margin-bottom: 1.2%;
  margin-right: 1.2%;
  background-color: #fff;
  padding: 1.3em 0.8em 0.8em;
  display: flex;
  flex-direction: column;
}
.member_list li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .member_list li {
    width: 49%;
    margin-bottom: 2%;
    margin-right: 2%;
  }
  .member_list li:nth-child(5n) {
    margin-right: 2%;
  }
  .member_list li:nth-child(2n) {
    margin-right: 0;
  }
}
.member_list li figure {
  width: 55%;
  height: auto;
  aspect-ratio: 1/1.3;
  margin: 0 auto 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}
.member_list li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member_list li .box {
  letter-spacing: 0.05em;
  font-size: 0.9em;
}
.member_list li .box span {
  min-width: 4.2em;
  text-align: center;
  padding: 0.3em 0;
  margin-right: 0.4em;
  display: inline-block;
  font-size: 0.8em;
}
.member_list li .box + .box {
  margin-top: 0.5em;
}
.member_list li .box:nth-child(2) span {
  border: 1px solid #145b2d;
  color: #145b2d;
}
.member_list li .box:nth-child(3) span {
  border: 1px solid #145b2d;
  background-color: #145b2d;
  color: #fff;
}

.post {
  background-color: #fff;
  margin-top: 3em;
  border-radius: 1em;
  padding: 2em 10%;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .post {
    padding: 2em 5%;
  }
}
.post .data {
  margin-bottom: 2em;
}

#page .other .um-header.no-cover a.um-profile-photo-img {
  display: none !important;
}

.error-404 .page-content p {
  text-align: center;
  font-size: 1.2em;
}
.error-404 a {
  display: block;
  background-color: #145b2d;
  color: #fff;
  width: 21em;
  max-width: 380px;
  text-align: center;
  padding: 1.9em 1em;
  position: relative;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  border-radius: 0.6em;
  margin: 1em auto 0;
}