@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Oswald-Medium.woff2") format("woff2");
  font-display: swap;
}
/********************************************
* header
********************************************/
body.fixed {
  position: fixed;
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 10px 30px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 10px rgba(17, 17, 17, 0.15);
          box-shadow: 0 0 10px rgba(17, 17, 17, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header {
    padding: 0.7692307692vw 2.3076923077vw;
    -webkit-box-shadow: 0 0 0.7692307692vw rgba(17, 17, 17, 0.15);
            box-shadow: 0 0 0.7692307692vw rgba(17, 17, 17, 0.15);
  }
}
@media (max-width: 767px) {
  .header {
    height: 13.3333333333vw;
    padding: 0 0 0 2vw;
    -webkit-box-shadow: 0 0 2vw rgba(17, 17, 17, 0.15);
            box-shadow: 0 0 2vw rgba(17, 17, 17, 0.15);
  }
}
.header .gnav {
  display: block;
  text-align: left;
  width: 100%;
  margin: auto;
}
.header .gnav .main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header .left {
  width: 244px;
  margin-right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .left {
    width: 18.7692307692vw;
    margin-right: 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .header .left {
    width: auto;
    height: 10.6666666667vw;
    padding: 0.6666666667vw 0;
    margin-right: 2.6666666667vw;
  }
}
.header .left .logo h1 {
  line-height: 1;
}
.header .left .logo h1 a {
  display: block;
}
@media (min-width: 768px) {
  .header .left .logo h1 a:hover img {
    opacity: 0.7;
  }
}
.header .left .logo h1 a img {
  width: 244px;
  height: 80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .left .logo h1 a img {
    width: 18.7692307692vw;
    height: 6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .header .left .logo h1 a img {
    width: auto;
    height: 12vw;
  }
}
.header .right {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.header .nav_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .nav_wrap {
    padding: 0.6153846154vw 0 0;
  }
}
@media (max-width: 767px) {
  .header .nav_wrap {
    display: block;
    padding: 0;
  }
}
.header .main_nav {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 767px) {
  .header .main_nav {
    margin-bottom: 3.3333333333vw;
  }
}
.header .main_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .header .main_nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .header .main_nav ul li {
    width: 48%;
  }
}
.header .main_nav ul li a {
  display: block;
  color: #221715;
  font-size: 17px;
  font-weight: bold;
  padding: 0 15px;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .main_nav ul li a {
    font-size: 1.3076923077vw;
    padding: 0 1.1538461538vw;
  }
}
@media (max-width: 767px) {
  .header .main_nav ul li a {
    text-align: center;
    font-size: 3.7333333333vw;
    padding: 1.6vw 1.3333333333vw;
    margin-bottom: 3.3333333333vw;
    border-radius: 1.3333333333vw;
    background-color: #fff;
    -webkit-box-shadow: 0 0.4vw 0.8vw rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.4vw 0.8vw rgba(0, 0, 0, 0.1);
  }
}
.header .main_nav ul li:first-child a {
  padding-left: 0;
}
.header .main_nav ul li:last-child a {
  padding-right: 0;
}
@media (min-width: 768px) {
  .header .main_nav ul li:hover a {
    color: #00d8f9;
  }
}
.header .sub_nav {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 88px 18px 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .sub_nav {
    margin: 0 6.7692307692vw 1.3846153846vw 0;
  }
}
@media (max-width: 767px) {
  .header .sub_nav {
    padding: 0;
    margin: 0 0 4vw;
  }
}
.header .sub_nav ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .header .sub_nav ul {
    display: block;
    border-top: 1px solid #221715;
  }
}
.header .sub_nav ul li a {
  display: block;
  color: #221715;
  font-size: 14px;
  line-height: 1;
  padding: 2px 20px;
  border-right: 1px solid #221715;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .sub_nav ul li a {
    font-size: 1.0769230769vw;
    padding: 0.1538461538vw 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .header .sub_nav ul li a {
    font-size: 3.7333333333vw;
    padding: 4.6666666667vw 4vw;
    border-right: 0;
    border-bottom: 1px solid #221715;
  }
}
.header .sub_nav ul li a .fa-solid {
  margin-left: 3px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .sub_nav ul li a .fa-solid {
    margin-left: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .header .sub_nav ul li a .fa-solid {
    margin-left: 0.5333333333vw;
  }
}
.header .sub_nav ul li:first-child a {
  padding-left: 0;
}
@media (max-width: 767px) {
  .header .sub_nav ul li:first-child a {
    padding: 4.6666666667vw 4vw;
  }
}
.header .sub_nav ul li:last-child a {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 767px) {
  .header .sub_nav ul li:last-child a {
    padding: 4.6666666667vw 4vw;
  }
}
@media (min-width: 768px) {
  .header .sub_nav ul li:hover a {
    color: #00d8f9;
  }
}
.header .sns_nav {
  position: absolute;
  top: 4px;
  right: 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .sns_nav {
    top: 0.3076923077vw;
  }
}
@media (max-width: 767px) {
  .header .sns_nav {
    position: static;
  }
}
.header .sns_nav .follow {
  display: none;
}
@media (max-width: 767px) {
  .header .sns_nav .follow {
    display: block;
    text-align: center;
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
    margin-left: 1.0666666667vw;
  }
}
.header .sns_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
}
@media (max-width: 767px) {
  .header .sns_nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header .sns_nav li {
  font-size: 22px;
  margin-left: 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header .sns_nav li {
    font-size: 1.6923076923vw;
    margin-left: 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .header .sns_nav li {
    font-size: 10.6666666667vw;
    margin-left: 8vw;
  }
  .header .sns_nav li:first-child {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .header .sns_nav li a:hover {
    color: #00d8f9;
  }
}
.header #menu-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99999;
  cursor: pointer;
  height: 13.3333333333vw;
  width: 14.6666666667vw;
  background-color: #221715;
}
.header #menu-icon .wrap span {
  width: 7.2vw;
  height: 0.4vw;
  display: block;
  line-height: 0;
  background-color: #fff;
  font-size: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 1.7333333333vw auto;
}
@media (min-width: 768px) {
  .header #menu-icon:hover .wrap span:nth-of-type(1) {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  .header #menu-icon:hover .wrap span:nth-of-type(3) {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
}
@media (max-width: 767px) {
  .header .nav_wrap {
    position: fixed;
    width: 100vw;
    min-height: 100vh;
    height: 100%;
    left: 100vw;
    overflow: scroll;
    top: 13.3333333333vw;
    background: #00d8f9;
    padding: 5.3333333333vw 5.3333333333vw 40vw;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.header.open .nav_wrap {
  left: 0;
}
.header.open #menu #menu-icon .wrap span:nth-of-type(1) {
  -webkit-transform: translateY(2.1333333333vw) rotate(30deg);
          transform: translateY(2.1333333333vw) rotate(30deg);
}
.header.open #menu #menu-icon .wrap span:nth-of-type(2) {
  opacity: 0;
}
.header.open #menu #menu-icon .wrap span:nth-of-type(3) {
  -webkit-transform: translateY(-2.1333333333vw) rotate(-30deg);
          transform: translateY(-2.1333333333vw) rotate(-30deg);
}

/********************************************
* header scroll
********************************************/
@media (min-width: 768px) {
  .header.scroll {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.scroll .sub_nav,
  .header.scroll .sns_nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header.scroll {
    padding-top: 0.7692307692vw;
    padding-bottom: 0.7692307692vw;
  }
}
@media (min-width: 768px) {
  .header.scroll .left {
    width: 183px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header.scroll .left {
    width: 14.0769230769vw;
  }
}
@media (min-width: 768px) {
  .header.scroll .left .logo h1 a img {
    width: 183px;
    height: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header.scroll .left .logo h1 a img {
    width: 14.0769230769vw;
    height: 4.6153846154vw;
  }
}
@media (min-width: 768px) {
  .header.scroll .nav_wrap {
    padding: 13px 0;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .header.scroll .nav_wrap {
    padding: 1vw 0;
  }
}

/********************************************
* kyosan
********************************************/
.kyosan {
  padding: 160px 0 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan {
    padding: 12.3076923077vw 0 0;
  }
}
@media (max-width: 767px) {
  .kyosan {
    padding: 26.6666666667vw 0 0;
  }
}
.kyosan .sec_inner {
  max-width: 1300px;
}
.kyosan .title_h2_wrap {
  text-align: center;
}
.kyosan .title_h3 {
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan .title_h3 {
    margin-bottom: 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .kyosan .title_h3 {
    margin-bottom: 4vw;
  }
}
.kyosan .kyosan_block {
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan .kyosan_block {
    margin-bottom: 4.6153846154vw;
  }
}
@media (max-width: 767px) {
  .kyosan .kyosan_block {
    margin-bottom: 10.6666666667vw;
  }
}
.kyosan .kyosan_block:last-child {
  margin-bottom: 0;
}
.kyosan .seisaku {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan .seisaku {
    font-size: 1.8461538462vw;
  }
}
@media (max-width: 767px) {
  .kyosan .seisaku {
    font-size: 4.2666666667vw;
  }
}

.post-type-archive-kyosan .kyosan {
  padding: 0;
}

/********************************************
* kyosan_list
********************************************/
.kyosan_list {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan_list {
    max-width: 92.3076923077vw;
  }
}
.kyosan_list .item_block {
  position: relative;
  width: 162px;
  margin: 10px 5px 0;
  border: 1px solid #ccc;
}
.kyosan_list .item_block:first-child {
  margin-left: 0;
}
.kyosan_list .item_block:nth-child(7n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .kyosan_list .item_block:nth-child(7n) {
    margin-right: 0.7%;
  }
}
.kyosan_list .item_block:nth-child(7n+1) {
  margin-left: 0;
}
@media (max-width: 767px) {
  .kyosan_list .item_block:nth-child(7n+1) {
    margin-left: 0.7%;
  }
}
.kyosan_list .item_block:nth-child(-n+7) {
  margin-top: 0;
}
@media (max-width: 767px) {
  .kyosan_list .item_block:nth-child(-n+7) {
    margin-top: 1.3333333333vw;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan_list .item_block {
    width: 12.3076923077vw;
    margin: 0.7692307692vw 0.3076923077vw 0;
  }
}
@media (max-width: 767px) {
  .kyosan_list .item_block {
    width: 23.8%;
    margin: 1.3333333333vw 0.7% 0;
  }
}
@media (max-width: 767px) {
  .kyosan_list .item_block:nth-child(-n+4) {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .kyosan_list .item_block:nth-child(4n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .kyosan_list .item_block:nth-child(4n+1) {
    margin-left: 0;
  }
}
.kyosan_list .item_block img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .kyosan_list a:hover img {
    opacity: 0.7;
  }
}
.kyosan_list .thumb img {
  width: 160px;
  height: 100px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan_list .thumb img {
    width: 12.3076923077vw;
    height: 7.6923076923vw;
  }
}
@media (max-width: 767px) {
  .kyosan_list .thumb img {
    width: 100%;
    height: auto;
  }
}

/********************************************
* kyosan_movie
********************************************/
.kyosan_movie {
  margin: 0 auto 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .kyosan_movie {
    margin: 0 auto 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .kyosan_movie {
    margin: 0 auto 2.6666666667vw;
  }
}

/********************************************
* history
********************************************/
.history .title_h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .history .title_h2 {
    margin-bottom: 2.3076923077vw;
  }
}
@media (max-width: 767px) {
  .history .title_h2 {
    margin-bottom: 5.3333333333vw;
  }
}
.history .history_list {
  max-width: 1000px;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 0 auto 50px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .history .history_list {
    padding: 0.7692307692vw 0;
    margin: 0 auto 3.8461538462vw;
  }
}
@media (max-width: 767px) {
  .history .history_list {
    padding: 2.6666666667vw 0;
    margin: 0 auto 10.6666666667vw;
  }
}
.history .history_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .history .history_list ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.history .history_list li {
  display: inline-block;
}
.history .history_list li a {
  display: block;
  color: #fff;
  font-family: "Oswald", "Noto Sans JP", "Arial", "游ゴシック", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro";
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 15px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .history .history_list li a {
    font-size: 2.1538461538vw;
    padding: 0 1.1538461538vw;
  }
}
@media (max-width: 767px) {
  .history .history_list li a {
    text-align: center;
    width: 14.6666666667vw;
    font-size: 3.7333333333vw;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .history .history_list li a:hover {
    color: #999;
  }
}

/********************************************
* footer
********************************************/
.footer {
  position: relative;
  z-index: 1;
  height: 666px;
  margin-top: 160px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer {
    height: 51.2307692308vw;
    margin-top: 12.3076923077vw;
  }
}
@media (max-width: 767px) {
  .footer {
    height: 118.6666666667vw;
    margin-top: 26.6666666667vw;
  }
}
.footer .footer_inner {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 100px 0 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .footer_inner {
    padding: 7.6923076923vw 0 0;
  }
}
@media (max-width: 767px) {
  .footer .footer_inner {
    padding: 10.6666666667vw 0 0;
  }
}
.footer .sec_inner {
  padding-bottom: 60px;
  max-width: 1300px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .sec_inner {
    padding-bottom: 4.6153846154vw;
  }
}
@media (max-width: 767px) {
  .footer .sec_inner {
    padding-bottom: 5.3333333333vw;
  }
}
.footer .logo {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .logo {
    margin-bottom: 2.3076923077vw;
  }
}
@media (max-width: 767px) {
  .footer .logo {
    margin-bottom: 6vw;
  }
}
.footer .logo img {
  width: 365px;
  height: 120px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .logo img {
    width: 28.0769230769vw;
    height: 9.2307692308vw;
  }
}
@media (max-width: 767px) {
  .footer .logo img {
    width: auto;
    height: 16vw;
  }
}
.footer .sns_nav .follow {
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  margin-left: 5px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .sns_nav .follow {
    font-size: 1.0769230769vw;
    margin-bottom: 0.6153846154vw;
    margin-left: 0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .footer .sns_nav .follow {
    font-size: 3.2vw;
    margin-bottom: 1.3333333333vw;
    margin-left: 1.0666666667vw;
  }
}
.footer .sns_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.footer .sns_nav li {
  margin: 0 15px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .sns_nav li {
    margin: 0 1.1538461538vw;
  }
}
@media (max-width: 767px) {
  .footer .sns_nav li {
    margin: 0 3.3333333333vw;
  }
}
.footer .sns_nav li a {
  color: #fff;
  font-size: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .sns_nav li a {
    font-size: 2.3076923077vw;
  }
}
@media (max-width: 767px) {
  .footer .sns_nav li a {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 768px) {
  .footer .sns_nav li a:hover {
    opacity: 0.7;
  }
}
.footer .copy_wrap {
  text-align: center;
  padding: 6px 0;
  background-color: #000;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .copy_wrap {
    padding: 0.4615384615vw 0;
  }
}
@media (max-width: 767px) {
  .footer .copy_wrap {
    padding: 1.3333333333vw 0;
  }
}
.footer .copy_wrap .copy {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .footer .copy_wrap .copy {
    font-size: 0.9230769231vw;
  }
}
@media (max-width: 767px) {
  .footer .copy_wrap .copy {
    font-size: 2.6666666667vw;
  }
}
.footer .footer_bg_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
@media (max-width: 767px) {
  .footer .footer_bg_wrap {
    height: 118.6666666667vw;
  }
}
.footer .footer_bg_wrap .footer_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/common/footer_bg_img.webp);
}
@media (max-width: 767px) {
  .footer .footer_bg_wrap .footer_bg {
    height: 118.6666666667vw;
    background-image: url(../images/common/sp/sp_footer_bg_img.webp);
  }
}

/********************************************
* animation
********************************************/
.text_effect {
  color: transparent !important;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 300%;
  background-image: linear-gradient(75deg, #221715 33.33%, #CF111B, #00d8f9, rgba(255, 255, 255, 0) 60%);
  background-position: right center;
}
.text_effect.active {
  -webkit-animation: textEffect 1.2s ease-in-out forwards;
          animation: textEffect 1.2s ease-in-out forwards;
}

.text_effect_white {
  color: transparent !important;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 300%;
  background-image: linear-gradient(75deg, #ffffff 33.33%, #CF111B, #00d8f9, rgba(255, 255, 255, 0) 60%);
  background-position: right center;
}
.text_effect_white.active {
  -webkit-animation: textEffect 1.2s ease-in-out forwards;
          animation: textEffect 1.2s ease-in-out forwards;
}

@-webkit-keyframes textEffect {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes textEffect {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/********************************************
* title
********************************************/
/* title_h2 */
.title_h2_wrap {
  margin-bottom: 50px;
}
.title_h2_wrap .title_h2 {
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .title_h2_wrap {
    margin-bottom: 3.8461538462vw;
  }
}
@media (max-width: 767px) {
  .title_h2_wrap {
    margin-bottom: 8vw;
  }
}

.title_h2 {
  font-size: 94px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .title_h2 {
    font-size: 7.2307692308vw;
    margin-bottom: 3.8461538462vw;
  }
}
@media (max-width: 767px) {
  .title_h2 {
    font-size: 15.2vw;
    margin-bottom: 6.6666666667vw;
  }
}
@media (max-width: 767px) {
  .title_h2.small {
    font-size: 12vw;
  }
}

.title_ja {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .title_ja {
    font-size: 1.5384615385vw;
    margin-top: 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .title_ja {
    font-size: 3.7333333333vw;
    margin-top: 3.3333333333vw;
  }
}

/* title_h3 */
.title_h3 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .title_h3 {
    font-size: 1.8461538462vw;
    margin-bottom: 3.0769230769vw;
  }
}
@media (max-width: 767px) {
  .title_h3 {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}

/********************************************
/* Wrap
********************************************/
.sec_inner {
  max-width: 1300px;
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .sec_inner {
    padding-left: 3.846vw;
    padding-right: 3.846vw;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .sec_inner {
    width: 100%;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}

.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .col2 {
    display: block;
  }
}

/********************************************
* Table
********************************************/
.wp-block-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-top: 1px solid #221715;
}
.wp-block-table td {
  width: 1000px;
  vertical-align: middle;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #221715;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .wp-block-table td {
    width: 76.9230769231vw;
    padding: 1.5384615385vw 1.5384615385vw 1.5384615385vw 0;
  }
}
@media (max-width: 767px) {
  .wp-block-table td {
    display: block;
    width: 100%;
    padding: 0 2.6666666667vw 2.6666666667vw;
  }
}
.wp-block-table td:first-child {
  vertical-align: middle;
  font-weight: bold;
  width: 300px;
  padding: 20px 20px 20px 20px;
  border-bottom: 1px solid #221715;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .wp-block-table td:first-child {
    width: 23.0769230769vw;
    padding: 1.5384615385vw 1.5384615385vw 1.5384615385vw 2.6923076923vw;
  }
}
@media (max-width: 767px) {
  .wp-block-table td:first-child {
    display: block;
    width: 100%;
    padding: 2.6666666667vw 2.6666666667vw 0;
    border: none;
  }
}
.wp-block-table td .arrow_btn {
  margin-bottom: 0 !important;
}

.wp-block-table tr:first-child td {
  border-top: none;
}

.wp-block-table td {
  border-top: none;
  border-left: none;
  border-right: none;
}

/********************************************
* btn
********************************************/
/* more_btn */
.more_btn {
  text-align: right;
  margin: 80px 80px 0 0;
  /* return */
  /* arrow_none */
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn {
    margin: 6.1538461538vw 6.1538461538vw 0 0;
  }
}
@media (max-width: 767px) {
  .more_btn {
    margin: 10.6666666667vw 16vw 0 0;
  }
}
.more_btn a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.more_btn a span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  color: #221715;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn a span {
    font-size: 2.7692307692vw;
  }
}
@media (max-width: 767px) {
  .more_btn a span {
    font-size: 6.4vw;
  }
}
.more_btn a span:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0;
  background-color: #221715;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn a span:before {
    height: 0.3076923077vw;
  }
}
@media (max-width: 767px) {
  .more_btn a span:before {
    height: 0.8vw;
  }
}
.more_btn a:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  position: absolute;
  top: 15px;
  bottom: 0;
  margin: auto;
  right: -80px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #CF111B;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn a:before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    border-radius: 4.6153846154vw;
    top: 1.1538461538vw;
    right: -6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .more_btn a:before {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    border-radius: 13.3333333333vw;
    top: 2.6666666667vw;
    right: -16vw;
  }
}
.more_btn a:after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 0;
  margin: auto;
  right: -55px;
  display: block;
  width: 18px;
  height: 18px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn a:after {
    top: 1.1538461538vw;
    right: -4.2307692308vw;
    width: 1.3846153846vw;
    height: 1.3846153846vw;
  }
}
@media (max-width: 767px) {
  .more_btn a:after {
    top: 2.6666666667vw;
    right: -10.6666666667vw;
    width: 4vw;
    height: 4vw;
  }
}
@media (min-width: 768px) {
  .more_btn a:hover span {
    color: #CF111B;
  }
  .more_btn a:hover span:before {
    background-color: #CF111B;
  }
}
@media (min-width: 768px) {
  .more_btn a:hover:before {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    right: -90px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn a:hover:before {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    border-radius: 6.1538461538vw;
    right: -5.3846153846vw;
  }
}
@media (min-width: 768px) {
  .more_btn a:hover:after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
.more_btn.return {
  text-align: left;
  margin: 80px 0 0 80px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn.return {
    margin: 6.1538461538vw 0 0 6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .more_btn.return {
    margin: 10.6666666667vw 0 0 16vw;
  }
}
.more_btn.return a:before {
  right: auto;
  left: -80px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn.return a:before {
    left: -6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .more_btn.return a:before {
    left: -16vw;
  }
}
.more_btn.return a:after {
  right: auto;
  left: -55px;
  border-top: none;
  border-right: none;
  border-left: solid 2px #fff;
  border-bottom: solid 2px #fff;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn.return a:after {
    left: -4.2307692308vw;
  }
}
@media (max-width: 767px) {
  .more_btn.return a:after {
    left: -10.6666666667vw;
  }
}
@media (min-width: 768px) {
  .more_btn.return a:hover:before {
    left: -90px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .more_btn.return a:hover:before {
    left: -5.3846153846vw;
  }
}
.more_btn.arrow_none {
  margin: 80px 0 0 0;
  text-align: center;
}
.more_btn.arrow_none a:before {
  content: none;
}
.more_btn.arrow_none a:after {
  content: none;
}

/* arrow_btn */
.arrow_btn,
.is-style-arrow_btn {
  margin-bottom: 20px !important;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .arrow_btn,
  .is-style-arrow_btn {
    margin-bottom: 1.5384615385vw !important;
  }
}
@media (max-width: 767px) {
  .arrow_btn,
  .is-style-arrow_btn {
    margin-bottom: 2.6666666667vw !important;
  }
}
.arrow_btn a,
.is-style-arrow_btn a {
  text-align: left;
  min-width: 300px;
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px 35px 20px 20px;
  border-radius: 10px;
  background-color: #CF111B !important;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .arrow_btn a,
  .is-style-arrow_btn a {
    min-width: 23.0769230769vw;
    font-size: 1.3846153846vw;
    padding: 1.5384615385vw 2.6923076923vw 1.5384615385vw 1.5384615385vw;
    border-radius: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .arrow_btn a,
  .is-style-arrow_btn a {
    min-width: initial;
    font-size: 3.7333333333vw;
    padding: 3.3333333333vw 10.6666666667vw 3.3333333333vw 3.3333333333vw;
    border-radius: 1.3333333333vw;
  }
}
.arrow_btn a:after,
.is-style-arrow_btn a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .arrow_btn a:after,
  .is-style-arrow_btn a:after {
    right: 1.9230769231vw;
    width: 0.7692307692vw;
    height: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .arrow_btn a:after,
  .is-style-arrow_btn a:after {
    right: 5.3333333333vw;
    width: 2vw;
    height: 2vw;
  }
}
@media (min-width: 768px) {
  .arrow_btn a:hover,
  .is-style-arrow_btn a:hover {
    background-color: #EC1420 !important;
  }
}
@media (min-width: 768px) {
  .arrow_btn a:hover:after,
  .is-style-arrow_btn a:hover:after {
    right: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .arrow_btn a:hover:after,
  .is-style-arrow_btn a:hover:after {
    right: 1.3846153846vw;
  }
}
.arrow_btn.small a,
.is-style-arrow_btn.small a {
  font-size: 16px;
  min-width: 160px;
  padding: 10px 15px;
  border-radius: 5px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .arrow_btn.small a,
  .is-style-arrow_btn.small a {
    font-size: 1.2307692308vw;
    min-width: 12.3076923077vw;
    padding: 0.7692307692vw 1.1538461538vw;
    border-radius: 0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .arrow_btn.small a,
  .is-style-arrow_btn.small a {
    font-size: 3.2vw;
    min-width: 29.3333333333vw;
    padding: 1.3333333333vw 2vw;
    border-radius: 0.6666666667vw;
  }
}
.arrow_btn.small a:after,
.is-style-arrow_btn.small a:after {
  right: 15px;
  display: block;
  width: 8px;
  height: 8px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .arrow_btn.small a:after,
  .is-style-arrow_btn.small a:after {
    right: 1.1538461538vw;
    width: 0.6153846154vw;
    height: 0.6153846154vw;
  }
}
@media (max-width: 767px) {
  .arrow_btn.small a:after,
  .is-style-arrow_btn.small a:after {
    right: 2vw;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
.arrow_btn.white a,
.is-style-arrow_btn.white a {
  color: #221715;
  background-color: #fff !important;
}
.arrow_btn.white a:after,
.is-style-arrow_btn.white a:after {
  border-top: solid 2px #221715;
  border-right: solid 2px #221715;
}
@media (min-width: 768px) {
  .arrow_btn.white a:hover,
  .is-style-arrow_btn.white a:hover {
    color: #fff;
    background-color: #CF111B !important;
  }
  .arrow_btn.white a:hover:after,
  .is-style-arrow_btn.white a:hover:after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}
.arrow_btn.black a,
.is-style-arrow_btn.black a {
  color: #fff;
  background-color: #000 !important;
}
.arrow_btn.black a:after,
.is-style-arrow_btn.black a:after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
@media (min-width: 768px) {
  .arrow_btn.black a:hover,
  .is-style-arrow_btn.black a:hover {
    color: #fff;
    background-color: #CF111B !important;
  }
  .arrow_btn.black a:hover:after,
  .is-style-arrow_btn.black a:hover:after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
}

/********************************************
* page_top
********************************************/
.page_top {
  position: fixed;
  z-index: 500;
  bottom: 40px;
  right: 40px;
  height: 80px;
  width: 80px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .page_top {
    bottom: 3.0769230769vw;
    right: 3.0769230769vw;
    height: 6.1538461538vw;
    width: 6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .page_top {
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
    height: 16vw;
    width: 16vw;
  }
}
.page_top a {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  background-color: #CF111B;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .page_top a {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .page_top a {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
.page_top a img {
  width: 35px;
  height: 19px;
  margin: 30px 22.5px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .page_top a img {
    width: 2.6923076923vw;
    height: 1.4615384615vw;
    margin: 2.3076923077vw 1.7307692308vw;
  }
}
@media (max-width: 767px) {
  .page_top a img {
    width: 8vw;
    height: 4.5333333333vw;
    margin: 4.2666666667vw 2.6666666667vw;
  }
}
@media (min-width: 768px) {
  .page_top a:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.home .page_top {
  display: none;
}

/********************************************
* reserve_btn
********************************************/
.reserve_btn {
  position: fixed;
  z-index: 500;
  bottom: 40px;
  right: 150px;
  height: 80px;
  width: 80px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .reserve_btn {
    bottom: 3.0769230769vw;
    right: 11.5384615385vw;
    height: 6.1538461538vw;
    width: 6.1538461538vw;
  }
}
@media (max-width: 767px) {
  .reserve_btn {
    bottom: 20vw;
    right: 2.6666666667vw;
    height: 16vw;
    width: 16vw;
  }
}
.reserve_btn a {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  letter-spacing: 0.15em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100%;
  border: 1px solid #CF111B;
  background-color: #CF111B;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .reserve_btn a {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 767px) {
  .reserve_btn a {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    font-size: 3.2vw;
  }
}
@media (min-width: 768px) {
  .reserve_btn a:hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    color: #CF111B;
    background-color: #fff;
  }
}

/********************************************
* cat_list
********************************************/
.cat_list {
  text-align: center;
  width: 100%;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .cat_list {
    margin: 0 auto 3.8461538462vw;
  }
}
@media (max-width: 767px) {
  .cat_list {
    text-align: left;
    margin: 0 auto 6.6666666667vw;
  }
}
.cat_list li {
  display: inline-block;
  margin: 0 15px 10px 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .cat_list li {
    margin: 0 1.1538461538vw 0.7692307692vw 0;
  }
}
@media (max-width: 767px) {
  .cat_list li {
    margin: 0 2vw 1.3333333333vw 0;
  }
}
.cat_list li a {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: #221715;
  text-decoration: none;
  line-height: 1;
  min-width: 80px;
  padding: 8px 10px;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #221715;
  background-color: #fff;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .cat_list li a {
    font-size: 1.0769230769vw;
    min-width: 6.1538461538vw;
    padding: 0.6153846154vw 0.7692307692vw;
    border-radius: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .cat_list li a {
    font-size: 2.9333333333vw;
    min-width: 16vw;
    padding: 1.3333333333vw 1.3333333333vw;
    border-radius: 0.6666666667vw;
  }
}
@media (min-width: 768px) {
  .cat_list li a:hover {
    border: 1px solid #00d8f9;
    background-color: #00d8f9;
  }
}
.cat_list li.current a {
  border: 1px solid #00d8f9;
  background-color: #00d8f9;
}

/********************************************
* news_list
********************************************/
.news_list .item:first-child {
  border-top: 1px solid #ccc;
}
.news_list .item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .news_list .item a {
    padding: 1.9230769231vw 0;
  }
}
@media (max-width: 767px) {
  .news_list .item a {
    display: block;
    padding: 4vw 0;
  }
}
@media (min-width: 768px) {
  .news_list .item a:hover {
    opacity: 0.8;
  }
  .news_list .item a:hover .title {
    color: #00d8f9;
  }
}
.news_list .item a .date_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .news_list .item a .date_wrap {
    margin-right: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .news_list .item a .date_wrap {
    margin-right: 1.1538461538vw;
  }
}
@media (max-width: 767px) {
  .news_list .item a .date_wrap {
    margin-bottom: 1.3333333333vw;
  }
}
.news_list .item a .date_wrap .date {
  font-family: "Oswald", "Noto Sans JP", "Arial", "游ゴシック", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro";
  width: 76px;
  margin-right: 10px;
  line-height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .news_list .item a .date_wrap .date {
    width: 5.8461538462vw;
    margin-right: 0.7692307692vw;
    line-height: 1.8461538462vw;
  }
}
@media (max-width: 767px) {
  .news_list .item a .date_wrap .date {
    width: 17.3333333333vw;
    margin-right: 2.6666666667vw;
    line-height: 5.3333333333vw;
  }
}
.news_list .item a .date_wrap .category {
  min-width: 130px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 12px;
  padding: 0 15px;
  border-radius: 3px;
  background-color: #00d8f9;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .news_list .item a .date_wrap .category {
    min-width: 10vw;
    height: 1.8461538462vw;
    line-height: 1.8461538462vw;
    font-size: 0.9230769231vw;
    padding: 0 1.1538461538vw;
    border-radius: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .news_list .item a .date_wrap .category {
    min-width: 28vw;
    height: 5.3333333333vw;
    line-height: 5.3333333333vw;
    font-size: 2.6666666667vw;
    padding: 0 2.6666666667vw;
    border-radius: 0.6666666667vw;
  }
}
.news_list .item a .title {
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news_list .item a .title {
    display: block;
  }
}

/********************************************
* artist_list
********************************************/
.artist_list {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list {
    max-width: 92.3076923077vw;
  }
}
.artist_list::after {
  content: "";
  display: block;
  width: 360px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list::after {
    width: 27.6923076923vw;
  }
}
@media (max-width: 767px) {
  .artist_list::after {
    content: none;
  }
}
.artist_list .item_block {
  position: relative;
  width: 360px;
  margin-top: 60px;
  border-radius: 10px;
}
.artist_list .item_block:nth-child(-n+3) {
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .item_block {
    width: 27.6923076923vw;
    margin-top: 4.6153846154vw;
    border-radius: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .artist_list .item_block {
    width: 48%;
    border-radius: 1.3333333333vw;
    margin-top: 6.6666666667vw;
  }
  .artist_list .item_block:nth-child(-n+3) {
    margin-top: 6.6666666667vw;
  }
  .artist_list .item_block:nth-child(-n+2) {
    margin-top: 0;
  }
}
.artist_list a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .artist_list a:hover .thumb {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .artist_list a:hover .thumb_img {
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.artist_list .thumb {
  width: 360px;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .thumb {
    width: 27.6923076923vw;
    height: 20.7692307692vw;
    border-radius: 0.7692307692vw;
    -webkit-box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767px) {
  .artist_list .thumb {
    width: 100%;
    height: 32.1333333333vw;
    border-radius: 1.3333333333vw;
    -webkit-box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
  }
}
.artist_list .thumb_img {
  width: 360px;
  height: 270px;
  background-size: cover;
  background-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .thumb_img {
    width: 27.6923076923vw;
    height: 20.7692307692vw;
  }
}
@media (max-width: 767px) {
  .artist_list .thumb_img {
    width: 100%;
    height: 32.1333333333vw;
  }
}
.artist_list .new {
  position: absolute;
  top: -20px;
  left: -20px;
  text-align: center;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  background-color: #CF111B;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 50px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .new {
    top: -1.5384615385vw;
    left: -1.5384615385vw;
    height: 3.8461538462vw;
    width: 3.8461538462vw;
    border-radius: 3.8461538462vw;
    font-size: 1.0769230769vw;
    line-height: 3.8461538462vw;
    -webkit-box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767px) {
  .artist_list .new {
    top: -2.6666666667vw;
    left: -2.6666666667vw;
    height: 8vw;
    width: 8vw;
    border-radius: 8vw;
    font-size: 2.4vw;
    line-height: 8vw;
    -webkit-box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
  }
}
.artist_list .info {
  padding: 10px 10px 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .info {
    padding: 0.7692307692vw 0.7692307692vw 0;
  }
}
@media (max-width: 767px) {
  .artist_list .info {
    padding: 2vw 1.3333333333vw 0;
  }
}
.artist_list .category {
  display: inline;
  text-align: center;
  color: #221715;
  font-size: 12px;
  line-height: 1;
  padding: 5px 20px;
  background-color: #00d8f9;
  border-radius: 3px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .category {
    font-size: 0.9230769231vw;
    padding: 0.3846153846vw 1.5384615385vw;
    border-radius: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .artist_list .category {
    font-size: 2.6666666667vw;
    padding: 1.0666666667vw 2.6666666667vw;
    border-radius: 0.8vw;
  }
}
.artist_list .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_list .title {
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 767px) {
  .artist_list .title {
    font-size: 3.2vw;
  }
}

/********************************************
* artist_modal
********************************************/
.artist_modal {
  width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .artist_modal {
    width: 100%;
  }
}
.artist_modal .img {
  margin-bottom: 25px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .img {
    margin-bottom: 1.9230769231vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .img {
    margin-bottom: 3.3333333333vw;
  }
}
.artist_modal .img img {
  width: 100%;
}
.artist_modal .single_column .artist_left {
  width: 100%;
}
.artist_modal .single_column .artist_right {
  display: none;
}
.artist_modal .artist_left {
  width: 400px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .artist_left {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .artist_modal .artist_left {
    width: 100%;
    margin-bottom: 6.6666666667vw;
  }
}
.artist_modal .artist_right {
  width: 280px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .artist_right {
    width: 39%;
  }
}
@media (max-width: 767px) {
  .artist_modal .artist_right {
    width: 100%;
  }
}
.artist_modal .artist_right .iframe iframe {
  width: 100%;
  border-radius: 0 !important;
}
.artist_modal .name_wrap {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .name_wrap {
    margin-bottom: 3.0769230769vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .name_wrap {
    margin-bottom: 5.3333333333vw;
  }
}
.artist_modal .name {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .name {
    font-size: 2.1538461538vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .name {
    font-size: 4.5333333333vw;
  }
}
.artist_modal .artist_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .artist_link {
    padding-bottom: 2.3076923077vw;
    margin-bottom: 2.3076923077vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .artist_link {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
.artist_modal .arrow_btn {
  margin-right: 29px;
  margin-bottom: 0 !important;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .arrow_btn {
    margin-right: 2.2307692308vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .arrow_btn {
    margin-right: 3.8666666667vw;
  }
}
.artist_modal .sns_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.artist_modal .sns_list li a {
  display: inline-block;
  color: #000;
  margin: 9px 8px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .sns_list li a {
    margin: 0.6923076923vw 0.6153846154vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .sns_list li a {
    margin: 0.5333333333vw 2.4vw;
  }
}
.artist_modal .sns_list li a i {
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .artist_modal .sns_list li a i {
    font-size: 1.8461538462vw;
  }
}
@media (max-width: 767px) {
  .artist_modal .sns_list li a i {
    font-size: 4.8vw;
  }
}
@media (min-width: 768px) {
  .artist_modal .sns_list li a:hover {
    color: #CF111B;
  }
}
.artist_modal .sns_list li:first-child a {
  margin-left: 0;
}
.artist_modal .sns_list li:last-child a {
  margin-right: 0;
}
.artist_modal .desc .text {
  color: #000;
}
.artist_modal .desc .text a {
  color: #000;
}

/********************************************
* colorbox
********************************************/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: visible !important;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* User Style:*/
#cboxOverlay {
  background: rgba(255, 255, 255, 0.95);
}

#colorbox {
  outline: 0;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}

#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
  display: none !important;
}

#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
  display: none !important;
}

#cboxNext,
#cboxPrevious {
  position: fixed;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background-color: #CF111B;
  text-indent: -9999px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: -20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext,
  #cboxPrevious {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    border-radius: 4.6153846154vw;
    margin-top: -1.5384615385vw;
  }
}
@media (max-width: 767px) {
  #cboxNext,
  #cboxPrevious {
    top: auto;
    bottom: -14vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 10.6666666667vw;
    margin-top: 0;
  }
}
#cboxNext:after,
#cboxPrevious:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 18px;
  height: 18px;
  border-top: solid 2px #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext:after,
  #cboxPrevious:after {
    width: 1.3846153846vw;
    height: 1.3846153846vw;
  }
}
@media (max-width: 767px) {
  #cboxNext:after,
  #cboxPrevious:after {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }
}
@media (min-width: 768px) {
  #cboxNext:hover,
  #cboxPrevious:hover {
    background-color: #EC1420 !important;
    width: 80px;
    height: 80px;
    border-radius: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext:hover,
  #cboxPrevious:hover {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    border-radius: 6.1538461538vw;
  }
}

#cboxNext {
  right: -80px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext {
    right: -6.1538461538vw;
  }
}
@media (max-width: 767px) {
  #cboxNext {
    right: 0;
  }
}
#cboxNext:after {
  right: 25px;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext:after {
    right: 1.9230769231vw;
  }
}
@media (max-width: 767px) {
  #cboxNext:after {
    right: 4vw;
  }
}
@media (min-width: 768px) {
  #cboxNext:hover {
    margin-top: -30px;
    right: -90px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext:hover {
    margin-top: -2.3076923077vw;
    right: -6.9230769231vw;
  }
}
@media (min-width: 768px) {
  #cboxNext:hover:after {
    right: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxNext:hover:after {
    right: 2.6923076923vw;
  }
}

#cboxPrevious {
  left: -80px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxPrevious {
    left: -6.1538461538vw;
  }
}
@media (max-width: 767px) {
  #cboxPrevious {
    left: 0;
  }
}
#cboxPrevious:after {
  left: 25px;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxPrevious:after {
    left: 1.9230769231vw;
  }
}
@media (max-width: 767px) {
  #cboxPrevious:after {
    left: 4vw;
  }
}
@media (min-width: 768px) {
  #cboxPrevious:hover {
    margin-top: -30px;
    left: -90px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxPrevious:hover {
    margin-top: -2.3076923077vw;
    left: -6.9230769231vw;
  }
}
@media (min-width: 768px) {
  #cboxPrevious:hover:after {
    left: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxPrevious:hover:after {
    left: 2.6923076923vw;
  }
}

#cboxClose {
  position: absolute;
  display: block;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  top: -60px;
  right: 0;
  background-color: #00d8f9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #cboxClose {
    width: 3.8461538462vw;
    height: 3.8461538462vw;
    border-radius: 3.8461538462vw;
    top: -4.6153846154vw;
  }
}
@media (max-width: 767px) {
  #cboxClose {
    width: 8vw;
    height: 8vw;
    top: -10.6666666667vw;
  }
}
#cboxClose:before, #cboxClose:after {
  content: "";
  top: 50%;
  left: 50%;
  width: 70%;
  height: 2px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  background: #000;
}
#cboxClose:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
#cboxClose:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media (min-width: 768px) {
  #cboxClose:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.close_btn {
  display: none;
}
@media (max-width: 767px) {
  .close_btn {
    display: block;
    pointer-events: none;
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: -14vw;
  }
  .close_btn a span {
    color: #fff;
    font-size: 5.0666666667vw;
    font-weight: normal;
  }
  .close_btn a span:before {
    height: 0.6666666667vw;
    background-color: #fff;
  }
}

/********************************************
* event_list
********************************************/
.event_list {
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list {
    max-width: 92.3076923077vw;
  }
}
.event_list::after {
  content: "";
  display: block;
  width: 360px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list::after {
    width: 27.6923076923vw;
  }
}
@media (max-width: 767px) {
  .event_list::after {
    content: none;
  }
}
.event_list .item_block {
  position: relative;
  width: 360px;
  margin-top: 60px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.event_list .item_block:nth-child(-n+3) {
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .item_block {
    width: 27.6923076923vw;
    margin-top: 4.6153846154vw;
    border-radius: 0.7692307692vw;
    -webkit-box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767px) {
  .event_list .item_block {
    width: 48%;
    border-radius: 1.3333333333vw;
    margin-top: 6.6666666667vw;
    -webkit-box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
  }
  .event_list .item_block:nth-child(-n+3) {
    margin-top: 6.6666666667vw;
  }
  .event_list .item_block:nth-child(-n+2) {
    margin-top: 0;
  }
}
.event_list a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .event_list a:hover .thumb_img {
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
}
.event_list .thumb {
  width: 360px;
  height: 240px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .thumb {
    width: 27.6923076923vw;
    height: 18.4615384615vw;
    border-radius: 0.7692307692vw 0.7692307692vw 0 0;
  }
}
@media (max-width: 767px) {
  .event_list .thumb {
    width: 100%;
    height: 28.5333333333vw;
    border-radius: 1.3333333333vw 1.3333333333vw 0 0;
  }
}
.event_list .thumb_img {
  width: 360px;
  height: 240px;
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .thumb_img {
    width: 27.6923076923vw;
    height: 18.4615384615vw;
  }
}
@media (max-width: 767px) {
  .event_list .thumb_img {
    width: 100%;
    height: 28.5333333333vw;
  }
}
.event_list .info {
  padding: 25px;
  border-radius: 0 0 10px 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .info {
    padding: 1.9230769231vw;
    border-radius: 0 0 0.7692307692vw 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .event_list .info {
    padding: 2.6666666667vw;
    border-radius: 0 0 1.3333333333vw 1.3333333333vw;
  }
}
.event_list .col2 {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .col2 {
    margin-bottom: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .event_list .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.3333333333vw;
  }
}
.event_list .date {
  position: absolute;
  top: -20px;
  left: -20px;
  padding: 10px 10px 5px;
  border-radius: 10px;
  background-color: #CF111B;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .date {
    top: -1.5384615385vw;
    left: -1.5384615385vw;
    padding: 0.7692307692vw 0.7692307692vw 0.3846153846vw;
    border-radius: 0.7692307692vw;
    -webkit-box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.3076923077vw 0.6153846154vw rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767px) {
  .event_list .date {
    top: -2vw;
    left: -2vw;
    line-height: 1.5;
    padding: 1.3333333333vw 1.3333333333vw 0.9333333333vw;
    border-radius: 1.6vw;
    -webkit-box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.5333333333vw 1.0666666667vw rgba(0, 0, 0, 0.2);
  }
}
.event_list .date.old {
  background-color: #999;
}
.event_list .date span {
  display: inline-block;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.event_list .date .year {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .date .year {
    font-size: 1.3846153846vw;
    margin-bottom: 0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .event_list .date .year {
    font-size: 2.9333333333vw;
    margin-bottom: 0;
  }
}
.event_list .date .day {
  font-size: 26px;
  font-weight: bold;
  margin-right: 3px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .date .day {
    font-size: 2vw;
    margin-right: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .event_list .date .day {
    font-size: 4vw;
    margin-right: 0.5333333333vw;
  }
}
.event_list .date .week {
  font-size: 16px;
  font-weight: bold;
  vertical-align: 2px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .date .week {
    font-size: 1.2307692308vw;
    vertical-align: 0.1538461538vw;
  }
}
@media (max-width: 767px) {
  .event_list .date .week {
    font-size: 2.6666666667vw;
    vertical-align: 0.5333333333vw;
  }
}
.event_list .category {
  display: inline;
  text-align: center;
  color: #221715;
  font-size: 12px;
  line-height: 1;
  padding: 5px 20px;
  background-color: #00d8f9;
  border-radius: 3px;
}
.event_list .category.talk_live {
  background-color: #CF111B;
  color: #fff;
}
.event_list .category.postar_master {
  background-color: #29ABE2;
  color: #fff;
}
.event_list .category.event {
  background-color: #FD9E06;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .category {
    font-size: 0.9230769231vw;
    padding: 0.3846153846vw 1.5384615385vw;
    border-radius: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .event_list .category {
    font-size: 2.1333333333vw;
    padding: 1.0666666667vw 1.0666666667vw;
    border-radius: 0.8vw;
  }
}
.event_list .place,
.event_list .time,
.event_list .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  font-size: 14px;
  color: #221715;
  line-height: 1.6;
  margin-bottom: 4px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .place,
  .event_list .time,
  .event_list .price {
    font-size: 1.0769230769vw;
  }
}
@media (max-width: 767px) {
  .event_list .place,
  .event_list .time,
  .event_list .price {
    font-size: 2.6666666667vw;
  }
}
.event_list .place .fa-solid,
.event_list .time .fa-solid,
.event_list .price .fa-solid {
  margin-right: 3px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .place .fa-solid,
  .event_list .time .fa-solid,
  .event_list .price .fa-solid {
    margin-right: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .event_list .place .fa-solid,
  .event_list .time .fa-solid,
  .event_list .price .fa-solid {
    margin-right: 0.5333333333vw;
  }
}
.event_list .place i,
.event_list .time i,
.event_list .price i {
  width: 14px;
  margin-top: 5px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .place i,
  .event_list .time i,
  .event_list .price i {
    width: 1.0769230769vw;
    margin-top: 0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .event_list .place i,
  .event_list .time i,
  .event_list .price i {
    width: 2.9333333333vw;
    margin-top: 1.0666666667vw;
  }
}
.event_list .place .place_text,
.event_list .time .place_text,
.event_list .price .place_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.event_list .title {
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 8px;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .event_list .title {
    padding-bottom: 0.3846153846vw;
    margin-bottom: 0.6153846154vw;
  }
}
@media (max-width: 767px) {
  .event_list .title {
    padding-bottom: 1.3333333333vw;
    margin-bottom: 1.8666666667vw;
  }
}

.old_event_btn {
  margin-top: 60px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .old_event_btn {
    margin-top: 4.6153846154vw;
  }
}
@media (max-width: 767px) {
  .old_event_btn {
    margin-top: 8vw;
  }
}
.old_event_btn a {
  background-color: #555 !important;
}
@media (min-width: 768px) {
  .old_event_btn a:hover {
    background-color: #777 !important;
  }
}

/********************************************
* pager
********************************************/
.pager {
  margin-top: 100px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .pager {
    margin-top: 7.6923076923vw;
  }
}
@media (max-width: 767px) {
  .pager {
    margin-top: 13.3333333333vw;
  }
}
.pager ul {
  text-align: center;
}
.pager ul li {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  border-radius: 5px;
  background-color: #f1f1f1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .pager ul li {
    font-size: 1.8461538462vw;
    width: 3.8461538462vw;
    height: 3.8461538462vw;
    margin: 0vw 0.3846153846vw;
    border-radius: 0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .pager ul li {
    font-size: 3.2vw;
    width: 7.3333333333vw;
    height: 7.3333333333vw;
    margin: 0vw 0.6666666667vw;
    border-radius: 0.6666666667vw;
  }
}
.pager ul li a {
  display: block;
  text-decoration: none;
  font-family: "Oswald", "Noto Sans JP", "Arial", "游ゴシック", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro";
  color: #221715;
  padding: 12px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .pager ul li a {
    padding: 0.9230769231vw 0;
  }
}
@media (max-width: 767px) {
  .pager ul li a {
    padding: 1.6vw 0;
  }
}
.pager ul li a span {
  font-family: "Oswald", "Noto Sans JP", "Arial", "游ゴシック", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro";
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  vertical-align: -1px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .pager ul li a span {
    font-size: 1.8461538462vw;
    line-height: 1;
    vertical-align: -0.0769230769vw;
  }
}
@media (max-width: 767px) {
  .pager ul li a span {
    font-size: 3.2vw;
    line-height: 1;
    vertical-align: -0.5333333333vw;
  }
}
.pager ul li.active {
  background: #00d8f9;
  padding: 12px 0;
  vertical-align: -1px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .pager ul li.active {
    padding: 0.9230769231vw 0;
    vertical-align: -0.0769230769vw;
  }
}
@media (max-width: 767px) {
  .pager ul li.active {
    padding: 1.6vw 0;
  }
  .pager ul li.active san {
    vertical-align: -0.2666666667vw;
  }
}
@media (min-width: 768px) {
  .pager ul li:hover {
    cursor: pointer;
    background: #00d8f9;
  }
}

/********************************************
* iframe
********************************************/
.iframe {
  text-align: center;
}
.iframe iframe {
  width: 560px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .iframe iframe {
    width: 43.0769230769vw;
  }
}
@media (max-width: 767px) {
  .iframe iframe {
    width: 100%;
  }
}

/********************************************
* main
********************************************/
main.main {
  margin-top: 100px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  main.main {
    margin-top: 7.6923076923vw;
  }
}
@media (max-width: 767px) {
  main.main {
    margin-top: 13.3333333333vw;
  }
}

/********************************************
* content_header
********************************************/
.content_header {
  position: relative;
  height: 350px;
  background-size: cover;
  background-image: url(../images/common/head_bg.webp);
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_header {
    height: 26.9230769231vw;
  }
}
@media (max-width: 767px) {
  .content_header {
    height: 46.6666666667vw;
    background-image: url(../images/common/sp/sp_head_bg.webp);
  }
}
.content_header .sec_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.content_header .title_h2_wrap {
  margin: 0;
}

/********************************************
* content_main
********************************************/
.content_main {
  padding: 100px 0 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_main {
    padding: 7.6923076923vw 0 0;
  }
}
@media (max-width: 767px) {
  .content_main {
    padding: 10.6666666667vw 0 0;
  }
}

/********************************************
* content_page
********************************************/
.content_page .sec_inner {
  max-width: 1100px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page .sec_inner {
    max-width: 84.6153846154vw;
  }
}
.content_page strong {
  font-weight: bold;
}
.content_page h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  margin: 100px 0 40px;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page h2 {
    font-size: 2.7692307692vw;
    margin: 7.6923076923vw 0 3.0769230769vw;
  }
}
@media (max-width: 767px) {
  .content_page h2 {
    font-size: 4.8vw;
    margin: 13.3333333333vw 0 5.3333333333vw;
  }
}
.content_page h2:first-child {
  margin-top: 0;
}
.content_page h2 + h3, .content_page h2 + h4 {
  margin-top: 0;
}
.content_page h3 {
  font-size: 24px;
  font-weight: bold;
  color: #1E9A4D;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 3px solid #1E9A4D;
  margin: 50px 0 20px;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page h3 {
    font-size: 1.8461538462vw;
    padding-bottom: 0.7692307692vw;
    margin: 3.8461538462vw 0 1.5384615385vw;
    border-width: 2px;
  }
}
@media (max-width: 767px) {
  .content_page h3 {
    font-size: 4vw;
    padding-bottom: 1.3333333333vw;
    margin: 6.6666666667vw 0 2.6666666667vw;
    border-width: 2px;
  }
}
.content_page h3:first-child {
  margin-top: 0;
}
.content_page h3 + .wp-block-table {
  border-top: none;
}
.content_page h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 15px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page h4 {
    font-size: 1.8461538462vw;
    padding-bottom: 0.7692307692vw;
    margin: 3.8461538462vw 0 1.5384615385vw;
    border-width: 2px;
  }
}
@media (max-width: 767px) {
  .content_page h4 {
    font-size: 4vw;
    padding-bottom: 1.3333333333vw;
    margin: 6.6666666667vw 0 2.6666666667vw;
    border-width: 2px;
  }
}
.content_page h4:first-child {
  margin-top: 0;
}
.content_page h4 + h4 {
  margin-top: 0;
}
.content_page p {
  margin: 0 0 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page p {
    margin: 0 0 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .content_page p {
    margin: 0 0 2.6666666667vw;
  }
}
.content_page iframe {
  max-width: 1000px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page iframe {
    max-width: 76.9230769231vw;
  }
}
@media (max-width: 767px) {
  .content_page iframe {
    width: 100%;
    max-height: 250px;
  }
}
.content_page .wp-block-image {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page .wp-block-image {
    margin-bottom: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .content_page .wp-block-image {
    margin-bottom: 1.3333333333vw;
  }
}
.content_page .wp-block-image + .wp-block-image {
  margin-top: 50px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .content_page .wp-block-image + .wp-block-image {
    margin-top: 3.8461538462vw;
  }
}
@media (max-width: 767px) {
  .content_page .wp-block-image + .wp-block-image {
    margin-top: 6.6666666667vw;
  }
}

/********************************************
* page archive
********************************************/
.post-type-archive-post .content_main .sec_inner,
.category .content_main .sec_inner {
  max-width: 1100px;
}

/********************************************
* single_content
********************************************/
.single_content {
  /* post_title */
  /* post_thumb */
  /* post_body */
  /* post_sns */
  /* paging */
}
.single_content .sec_inner {
  max-width: 840px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .sec_inner {
    max-width: 64.6153846154vw;
  }
}
.single_content .post_title {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 35px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title {
    padding-bottom: 1.1538461538vw;
    margin-bottom: 2.6923076923vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title {
    padding-bottom: 2vw;
    margin-bottom: 4.6666666667vw;
  }
}
.single_content .post_title .post_title_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .post_title_inner {
    margin-bottom: 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .post_title_inner {
    margin-bottom: 2.6666666667vw;
  }
}
.single_content .post_title .category {
  text-align: center;
  min-width: 130px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 3px;
  background-color: #00d8f9;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .category {
    min-width: 10vw;
    height: 1.8461538462vw;
    line-height: 1.8461538462vw;
    font-size: 1.0769230769vw;
    padding: 0 1.1538461538vw;
    border-radius: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .category {
    min-width: 28vw;
    height: 5.3333333333vw;
    line-height: 5.3333333333vw;
    font-size: 3.2vw;
    padding: 0 2.6666666667vw;
    border-radius: 0.6666666667vw;
  }
}
.single_content .post_title .category.talk_live {
  background-color: #CF111B;
  color: #fff;
}
.single_content .post_title .category.postar_master {
  background-color: #29ABE2;
  color: #fff;
}
.single_content .post_title .category.event {
  background-color: #FD9E06;
  color: #fff;
}
.single_content .post_title .date {
  line-height: 24px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .date {
    line-height: 1.8461538462vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .date {
    line-height: 5.3333333333vw;
  }
}
.single_content .post_title .hold_date {
  line-height: 1;
  padding: 8px 10px;
  border-radius: 10px;
  background-color: #CF111B;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .hold_date {
    padding: 0.6153846154vw 0.7692307692vw;
    border-radius: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .hold_date {
    padding: 1.0666666667vw 1.3333333333vw;
    border-radius: 1.6vw;
  }
}
.single_content .post_title .hold_date span {
  display: inline-block;
  line-height: 1;
  color: #fff;
  margin-right: 5px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .hold_date span {
    margin-right: 0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .hold_date span {
    margin-right: 0.6666666667vw;
  }
}
.single_content .post_title .hold_date .year {
  font-size: 18px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .hold_date .year {
    font-size: 1.3846153846vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .hold_date .year {
    font-size: 2.9333333333vw;
  }
}
.single_content .post_title .hold_date .day {
  font-size: 26px;
  font-weight: bold;
  margin-right: 3px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .hold_date .day {
    font-size: 2vw;
    margin-right: 0.2307692308vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .hold_date .day {
    font-size: 4vw;
    margin-right: 0.5333333333vw;
  }
}
.single_content .post_title .hold_date .week {
  font-size: 16px;
  font-weight: bold;
  vertical-align: 2px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .hold_date .week {
    font-size: 1.2307692308vw;
    vertical-align: 0.1538461538vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .hold_date .week {
    font-size: 2.6666666667vw;
    vertical-align: 0.5333333333vw;
  }
}
.single_content .post_title .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_title .title {
    font-size: 1.8461538462vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_title .title {
    font-size: 5.3333333333vw;
  }
}
.single_content .post_thumb {
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_thumb {
    margin-bottom: 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_thumb {
    margin-bottom: 2.6666666667vw;
  }
}
.single_content .post_body {
  margin-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_body {
    margin-bottom: 7.6923076923vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_body {
    margin-bottom: 13.3333333333vw;
  }
}
.single_content .post_body strong {
  font-weight: bold;
}
.single_content .post_body h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  border-left: 5px solid #00d8f9;
  padding: 5px 10px;
  background-color: #f1f1f1;
  margin: 50px 0 20px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_body h2 {
    font-size: 1.5384615385vw;
    border-width: 0.3846153846vw;
    padding: 0.3846153846vw 0.7692307692vw;
    margin: 3.8461538462vw 0 1.5384615385vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_body h2 {
    font-size: 4.2666666667vw;
    border-width: 0.8vw;
    padding: 1.0666666667vw 2.1333333333vw;
    margin: 6.6666666667vw 0 2.6666666667vw;
  }
}
.single_content .post_body h2:first-child {
  margin-top: 0;
}
.single_content .post_body h2 + h3, .single_content .post_body h2 + h4 {
  margin-top: -5px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_body h2 + h3, .single_content .post_body h2 + h4 {
    margin-top: -0.3846153846vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_body h2 + h3, .single_content .post_body h2 + h4 {
    margin-top: 0;
  }
}
.single_content .post_body h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 5px;
  border-bottom: 2px solid #00d8f9;
  margin: 30px 0 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_body h3 {
    font-size: 1.3846153846vw;
    padding-bottom: 0.3846153846vw;
    margin: 2.3076923077vw 0 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_body h3 {
    font-size: 4vw;
    padding-bottom: 0.6666666667vw;
    margin: 4vw 0 1.3333333333vw;
  }
}
.single_content .post_body h3:first-child {
  margin-top: 0;
}
.single_content .post_body h3 + h4 {
  margin-top: 0;
}
.single_content .post_body h4 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin: 20px 0 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_body h4 {
    font-size: 1.2307692308vw;
    margin: 1.5384615385vw 0 0;
  }
}
@media (max-width: 767px) {
  .single_content .post_body h4 {
    font-size: 3.7333333333vw;
    margin: 2.6666666667vw 0 0;
  }
}
.single_content .post_body h4:first-child {
  margin-top: 0;
}
.single_content .post_body p {
  margin: 0 0 30px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_body p {
    margin: 0 0 2.3076923077vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_body p {
    margin: 0 0 4vw;
  }
}
.single_content .post_body img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single_content .post_body a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .single_content .post_body a:hover {
    text-decoration: none;
  }
  .single_content .post_body a:hover img {
    opacity: 0.7;
  }
}
.single_content .post_body .btn a {
  text-decoration: none;
}
.single_content .wp-block-table td {
  width: 560px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .wp-block-table td {
    width: 43.0769230769vw;
  }
}
@media (max-width: 767px) {
  .single_content .wp-block-table td {
    width: 100%;
  }
}
.single_content .wp-block-table td:first-child {
  width: 180px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .wp-block-table td:first-child {
    width: 13.8461538462vw;
  }
}
@media (max-width: 767px) {
  .single_content .wp-block-table td:first-child {
    width: 100%;
  }
}
.single_content .wp-block-table td p {
  margin: 30px 0 0;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .wp-block-table td p {
    margin: 2.3076923077vw 0 0;
  }
}
@media (max-width: 767px) {
  .single_content .wp-block-table td p {
    margin: 4vw 0 0;
  }
}
.single_content .wp-block-table td p:first-child {
  margin-top: 0;
}
.single_content .post_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single_content .post_sns a {
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  padding: 15px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_sns a {
    padding: 1.1538461538vw 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_sns a {
    padding: 3.3333333333vw 1.3333333333vw;
  }
}
@media (min-width: 768px) {
  .single_content .post_sns a:hover {
    opacity: 0.7;
  }
}
.single_content .post_sns a i {
  font-size: 30px;
  vertical-align: -3px;
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_sns a i {
    font-size: 2.3076923077vw;
    vertical-align: -0.2307692308vw;
    margin-right: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  .single_content .post_sns a i {
    font-size: 6.6666666667vw;
    vertical-align: 0;
    margin-right: 0;
  }
}
.single_content .post_sns a .en {
  font-size: 20px;
  padding: 3px 0;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .post_sns a .en {
    font-size: 1.5384615385vw;
    padding: 0.2307692308vw 0;
  }
}
@media (max-width: 767px) {
  .single_content .post_sns a .en {
    display: none;
  }
}
.single_content .post_sns .post_twitter {
  background: #000;
}
.single_content .post_sns .post_facebook {
  background: #3b5998;
}
.single_content .post_sns .post_line {
  background: #1dcd00;
}
.single_content .paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.single_content .paging.next_none:after {
  content: "";
  display: inline-block;
  width: 154px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .paging.next_none:after {
    width: 11.8461538462vw;
  }
}
@media (max-width: 767px) {
  .single_content .paging.next_none:after {
    width: 29.0666666667vw;
  }
}
.single_content .paging.prev_none:before {
  content: "";
  display: inline-block;
  width: 154px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  .single_content .paging.prev_none:before {
    width: 11.8461538462vw;
  }
}
@media (max-width: 767px) {
  .single_content .paging.prev_none:before {
    width: 29.0666666667vw;
  }
}

/********************************************
* page privacy-policy
********************************************/
#privacy-policy .content_main .sec_inner {
  max-width: 1100px;
}
#privacy-policy .content_main .title {
  font-size: 20px;
  margin: 50px 0 6px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #privacy-policy .content_main .title {
    font-size: 1.5384615385vw;
    margin: 3.8461538462vw 0 0.4615384615vw;
  }
}
@media (max-width: 767px) {
  #privacy-policy .content_main .title {
    font-size: 3.7333333333vw;
    margin: 6.6666666667vw 0 0.8vw;
  }
}
#privacy-policy .content_main .title_small {
  font-size: 18px;
  margin: 25px 0 6px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #privacy-policy .content_main .title_small {
    font-size: 1.3846153846vw;
    margin: 1.9230769231vw 0 0.4615384615vw;
  }
}
@media (max-width: 767px) {
  #privacy-policy .content_main .title_small {
    font-size: 3.4666666667vw;
    margin: 3.3333333333vw 0 0.8vw;
  }
}
#privacy-policy .content_main .desc_list li {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #privacy-policy .content_main .desc_list li {
    margin-bottom: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  #privacy-policy .content_main .desc_list li {
    margin-bottom: 1.3333333333vw;
  }
}
#privacy-policy .content_main .text {
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 1300px) {
  #privacy-policy .content_main .text {
    margin-bottom: 0.7692307692vw;
  }
}
@media (max-width: 767px) {
  #privacy-policy .content_main .text {
    margin-bottom: 1.3333333333vw;
  }
}