@charset "UTF-8";
/* reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* common */
body {
  color: #000;
  font-weight: normal;
  font-weight: 300;
  line-height: 1.5;
  word-wrap: break-word;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6,
table th {
  font-weight: 300;
}

a {
  color: inherit;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

input[type=submit] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

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

/* base
-----------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

._pcOnly {
  display: inline-block;
}
@media (max-width: 766px) {
  ._pcOnly {
    display: none;
  }
}

._spOnly {
  display: none;
}
@media (max-width: 766px) {
  ._spOnly {
    display: inline-block;
  }
}

img {
  width: 100%;
}

/* l-header
-----------------------------------------*/
.l-header {
  width: 100%;
}
.l-header .lead {
  padding: 10px 0;
  background: #073E7E;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 766px) {
  .l-header .lead {
    display: none;
  }
}
.l-header .logo {
  position: fixed;
  display: flex;
  top: 0;
  align-items: center;
  padding: 0;
  z-index: 100001;
}
.l-header .logo .link {
  display: inline-flex;
  align-items: center;
}
.l-header .logo .link .img {
  max-width: 180px;
  height: auto;
  display: block;
}
@media (max-width: 766px) {
  .l-header .logo .link .img {
    height: calc(120 / 900 * 100vw);
  }
}

/* l-gnav
-----------------------------------------*/
.l-gnav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.l-gnav .hamburger {
  display: none;
}
@media (max-width: 766px) {
  .l-gnav .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
  }
  .l-gnav .hamburger span {
    width: 100%;
    height: 2px;
    background: #073E7E;
    transition: 0.3s ease;
  }
  .is-menu-open .l-gnav .hamburger {
    position: relative;
  }
  .is-menu-open .l-gnav .hamburger span {
    position: absolute;
  }
  .is-menu-open .l-gnav .hamburger span:nth-child(1) {
    top: 0;
    transform: translateY(10px) rotate(45deg);
  }
  .is-menu-open .l-gnav .hamburger span:nth-child(2), .is-menu-open .l-gnav .hamburger span:nth-child(3) {
    opacity: 0;
  }
  .is-menu-open .l-gnav .hamburger span:nth-child(4) {
    top: 21px;
    transform: translateY(-11px) rotate(-45deg);
  }
}
.l-gnav .gnav {
  justify-self: center;
}
.l-gnav .gnav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 766px) {
  .l-gnav .gnav {
    display: flex;
    position: absolute;
    top: calc(120 / 900 * 100vw);
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    background-color: #FFF;
  }
  .l-gnav .gnav .menu {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 5%;
  }
  .l-gnav .gnav .menu .item {
    width: 100%;
    border-bottom: 1px solid #CCC;
  }
  .l-gnav .gnav .menu .item .link {
    width: 100%;
  }
  .is-menu-open .l-gnav .gnav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
}
.l-gnav .item {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 400;
}
.l-gnav .item--ticket {
  justify-self: end;
  height: 55px;
}
@media (max-width: 766px) {
  .l-gnav .item--ticket {
    height: calc(76 / 900 * 100vw);
  }
}
.l-gnav .link {
  display: inline-flex;
  align-items: center;
  height: 55px;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 766px) {
  .l-gnav .link {
    height: calc(120 / 900 * 100vw);
  }
}
.l-gnav .link:hover {
  color: #959595;
}
.l-gnav .link--ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 10px;
  gap: 0 10px;
  background-color: #AC9340;
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
}
@media (max-width: 766px) {
  .l-gnav .link--ticket {
    height: calc(76 / 900 * 100vw);
    font-size: calc(23 / 900 * 100vw);
  }
}
.l-gnav .link--ticket .icon {
  width: 32px;
  height: auto;
  display: block;
}
@media (max-width: 766px) {
  .l-gnav .link--ticket .icon {
    height: calc(56 / 900 * 100vw);
  }
}
.l-gnav .link--ticket:hover {
  background-color: #DBC683;
}

/* l-footer
-----------------------------------------*/
.l-footer {
  margin-top: 60px;
  padding: 136px 0 30px;
  background-image: url(../img/cmn/bg_footer.png), url(../img/cmn/c-line.svg);
  background-size: 100% auto, 100% auto;
  background-position: top left, top left;
  background-repeat: no-repeat, no-repeat;
  text-align: center;
}
@media (max-width: 766px) {
  .l-footer {
    margin-top: calc(120 / 900 * 100vw);
    padding: calc(120 / 900 * 100vw) 0 30px;
    background-image: url(../img/top/sp-bg_performance.png), url(../img/cmn/sp-c-line.svg);
  }
}
.l-footer__nav .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media (max-width: 766px) {
  .l-footer__nav .nav {
    gap: 0 calc(40 / 900 * 100vw);
  }
}
.l-footer__nav .link {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 766px) {
  .l-footer__nav .link {
    font-size: calc(32 / 900 * 100vw);
  }
}
.l-footer__info {
  margin-top: 40px;
}
@media (max-width: 766px) {
  .l-footer__info {
    margin-top: calc(50 / 900 * 100vw);
  }
}
.l-footer__info .name {
  color: #17559D;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media (max-width: 766px) {
  .l-footer__info .name {
    font-size: calc(30 / 900 * 100vw);
  }
}
.l-footer__info .mail {
  margin-top: 6px;
}
@media (max-width: 766px) {
  .l-footer__info .mail {
    margin-top: calc(10 / 900 * 100vw);
  }
}
.l-footer__info .mail a {
  color: #17559D;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 766px) {
  .l-footer__info .mail a {
    font-size: calc(30 / 900 * 100vw);
  }
}
.l-footer__copyright {
  display: block;
  margin-top: 30px;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 766px) {
  .l-footer__copyright {
    margin-top: calc(50 / 900 * 100vw);
  }
}

.u-inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.u-inner--full {
  max-width: 100%;
  width: 100%;
}
.u-inner--gnav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  min-height: 55px;
}
@media (max-width: 766px) {
  .u-inner--gnav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 calc(50 / 900 * 100vw);
    padding: 0 5%;
    min-height: calc(120 / 900 * 100vw);
    height: calc(120 / 900 * 100vw);
  }
}
.u-inner--gnav::before {
  content: "";
}
@media (max-width: 766px) {
  .u-inner--performance {
    position: relative;
  }
}

/* c-pagehead
-----------------------------------------*/
.c-prev,
.c-next {
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: min(5.4545454545vw, 60px);
  height: min(5.4545454545vw, 60px);
  border-radius: min(5.4545454545vw, 60px);
  background-color: #FFF;
  border: 1px solid #AC9340;
}
@media (max-width: 766px) {
  .c-prev,
  .c-next {
    width: calc(60 / 900 * 100vw);
    height: calc(60 / 900 * 100vw);
    border-radius: calc(60 / 900 * 100vw);
  }
}
.c-prev::after,
.c-next::after {
  display: block;
  position: absolute;
  content: "";
  width: min(1.3636363636vw, 15px);
  height: min(1.3636363636vw, 15px);
  border-top: solid 1px #AC9340;
  border-right: solid 1px #AC9340;
}
@media (max-width: 766px) {
  .c-prev::after,
  .c-next::after {
    width: calc(15 / 900 * 100vw);
    height: calc(15 / 900 * 100vw);
  }
}
.c-prev--performance,
.c-next--performance {
  position: relative;
}

.c-prev::after {
  right: min(1.5454545455vw, 17px);
  transform: rotate(-135deg);
}
@media (max-width: 766px) {
  .c-prev::after {
    right: calc(17 / 900 * 100vw);
  }
}
.c-prev--performance {
  left: 0;
}

.c-next::after {
  left: min(1.5454545455vw, 17px);
  transform: rotate(45deg);
}
@media (max-width: 766px) {
  .c-next::after {
    left: calc(17 / 900 * 100vw);
  }
}
.c-next--performance {
  right: 0;
}

/* c-pagehead
-----------------------------------------*/
.c-pagehead {
  margin: 0 auto 50px auto;
  text-align: center;
}
@media (max-width: 766px) {
  .c-pagehead {
    margin-bottom: calc(70 / 900 * 100vw);
  }
}
.c-pagehead .sbj {
  padding-bottom: 20px;
  background-image: url(../img/cmn/c-line_subject.svg);
  background-size: auto;
  background-position: bottom;
  background-repeat: no-repeat;
  color: #17559D;
  font-family: "Montserrat", Arial, sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 766px) {
  .c-pagehead .sbj {
    padding-bottom: calc(30 / 900 * 100vw);
    background-size: calc(110 / 900 * 100vw) auto;
    font-size: calc(64 / 900 * 100vw);
  }
}
.c-pagehead .sub {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 766px) {
  .c-pagehead .sub {
    margin-top: calc(10 / 900 * 100vw);
    font-size: calc(30 / 900 * 100vw);
  }
}
.c-pagehead--event .sbj {
  background-image: url(../img/cmn/c-line_subject--white.svg);
  color: #AC9340;
}
.c-pagehead--event .sub {
  color: #fff;
}

/* c-information
-----------------------------------------*/
.c-information {
  scroll-margin-top: 100px;
  margin-top: 55px;
}
@media (max-width: 766px) {
  .c-information {
    scroll-margin-top: calc(140 / 900 * 100vw);
    margin-top: calc(120 / 900 * 100vw);
  }
}
.c-information__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px auto;
}
@media (max-width: 766px) {
  .c-information__list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(40 / 900 * 100vw);
    margin-bottom: calc(70 / 900 * 100vw);
  }
}
.c-information__list .link {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding-top: 20px;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0 rgba(190, 190, 190, 0.6);
  text-decoration: none;
  color: inherit;
}
@media (max-width: 766px) {
  .c-information__list .link {
    padding-top: calc(20 / 900 * 100vw);
  }
}
.c-information__list .link .thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin: 0;
}
.c-information__list .link .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.c-information__list .link .desc {
  padding: 20px 20px 30px 20px;
}
@media (max-width: 766px) {
  .c-information__list .link .desc {
    padding: calc(15 / 900 * 100vw) calc(20 / 900 * 100vw) calc(25 / 900 * 100vw) calc(20 / 900 * 100vw);
  }
}
.c-information__list .link .cat {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-information__list .link .cat .item {
  padding: 5px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 400;
  background-color: #17559D;
  color: #FFF;
}
@media (max-width: 766px) {
  .c-information__list .link .cat .item {
    padding: calc(5 / 900 * 100vw) calc(15 / 900 * 100vw);
    font-size: calc(20 / 900 * 100vw);
  }
}
.c-information__list .link .cat .item--musicisland {
  background-color: #D62D2D;
  border-color: #D62D2D;
  color: #FFF;
}
.c-information__list .link .cat .item--awajiballet {
  background-color: #DE8A35;
  border-color: #DE8A35;
  color: #FFF;
}
.c-information__list .link .cat .item--awajiopera {
  background-color: #DDB353;
  border-color: #DDB353;
  color: #FFF;
}
.c-information__list .link .cat .item--kotantaiko {
  background-color: #7BB990;
  border-color: #7BB990;
  color: #FFF;
}
.c-information__list .link .cat .item--seikaiha {
  background-color: #43B7D1;
  border-color: #43B7D1;
  color: #FFF;
}
.c-information__list .link .cat .item--awajiartcircus {
  background-color: #B290E8;
  border-color: #B290E8;
  color: #FFF;
}
.c-information__list .link .time {
  display: block;
  margin: 6px 0 10px 0;
  color: #BABABA;
  font-size: 0.75rem;
  font-weight: 400;
}
@media (max-width: 766px) {
  .c-information__list .link .time {
    margin: calc(5 / 900 * 100vw) 0 calc(5 / 900 * 100vw) 0;
    font-size: calc(26 / 900 * 100vw);
  }
}
.c-information__list .link .sbj {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 766px) {
  .c-information__list .link .sbj {
    font-size: calc(30 / 900 * 100vw);
  }
}
.c-information__list .link:hover .thumb img {
  transform: scale(1.1);
}
.c-information__pagination {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 766px) {
  .c-information__pagination {
    margin-top: calc(120 / 900 * 100vw);
  }
}
.c-information__pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
@media (max-width: 766px) {
  .c-information__pagination .nav-links {
    gap: calc(20 / 900 * 100vw);
    font-size: calc(28 / 900 * 100vw);
  }
}
.c-information__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #AC9340;
  color: #AC9340;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
}
@media (max-width: 766px) {
  .c-information__pagination .page-numbers {
    min-width: calc(20 / 900 * 100vw);
    padding: 0 calc(30 / 900 * 100vw);
    height: 40px;
    font-size: calc(28 / 900 * 100vw);
  }
}
.c-information__pagination .page-numbers.current, .c-information__pagination .page-numbers:hover {
  background-color: #AC9340;
  color: #FFF;
}

/* c-entry
-----------------------------------------*/
.c-entry-head .time {
  display: block;
  color: #707070;
  font-size: 0.875rem;
  font-weight: 400;
}
@media (max-width: 766px) {
  .c-entry-head .time {
    font-size: calc(30 / 900 * 100vw);
  }
}
.c-entry-head .cat {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}
.c-entry-head .cat .item {
  padding: 5px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 400;
  background-color: #FFF;
  border: 1px solid #000;
  color: #000;
}
@media (max-width: 766px) {
  .c-entry-head .cat .item {
    font-size: calc(28 / 900 * 100vw);
  }
}
.c-entry-head .cat .item--musicisland {
  background-color: #D62D2D;
  border-color: #D62D2D;
  color: #FFF;
}
.c-entry-head .cat .item--awajiballet {
  background-color: #DE8A35;
  border-color: #DE8A35;
  color: #FFF;
}
.c-entry-head .cat .item--awajiopera {
  background-color: #DDB353;
  border-color: #DDB353;
  color: #FFF;
}
.c-entry-head .cat .item--kotantaiko {
  background-color: #7BB990;
  border-color: #7BB990;
  color: #FFF;
}
.c-entry-head .cat .item--seikaiha {
  background-color: #43B7D1;
  border-color: #43B7D1;
  color: #FFF;
}
.c-entry-head .cat .item--awajiartcircus {
  background-color: #B290E8;
  border-color: #B290E8;
  color: #FFF;
}
.c-entry-head .sbj {
  margin-top: 7px;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 766px) {
  .c-entry-head .sbj {
    font-size: calc(50 / 900 * 100vw);
  }
}
.c-entry-hero {
  margin-top: 25px;
}
@media (max-width: 766px) {
  .c-entry-hero {
    margin-top: calc(50 / 900 * 100vw);
  }
}
.c-entry-toc {
  max-width: 900px;
  width: 100%;
  margin: 80px auto 0 auto;
  padding: 30px 40px;
  background-color: #F8F8F8;
  border: 1px solid #BEBEBE;
  border-radius: 10px;
}
@media (max-width: 766px) {
  .c-entry-toc {
    margin: calc(80 / 900 * 100vw) auto 0 auto;
    padding: calc(40 / 900 * 100vw);
    border-radius: calc(20 / 900 * 100vw);
  }
}
.c-entry-toc .c-toc__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #AFAFAF;
}
@media (max-width: 766px) {
  .c-entry-toc .c-toc__head {
    gap: 0 calc(20 / 900 * 100vw);
  }
}
.c-entry-toc .c-toc__head .title {
  margin-top: 0;
  font-size: 1.25rem;
  text-align: center;
}
@media (max-width: 766px) {
  .c-entry-toc .c-toc__head .title {
    font-size: calc(40 / 900 * 100vw);
  }
}
.c-entry-toc .c-toc__head .toggle {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}
@media (max-width: 766px) {
  .c-entry-toc .c-toc__head .toggle {
    font-size: calc(30 / 900 * 100vw);
  }
}
.c-entry-toc .c-toc__head .toggle:before {
  content: "[閉じる]";
}
.c-entry-toc .c-toc__list.is-close {
  display: none;
}
.c-entry-toc .c-toc__list li a {
  text-decoration: underline;
  font-weight: 400;
}
.c-entry-toc .c-toc__list > li {
  margin-top: 20px;
  list-style-type: decimal;
  font-size: 1rem;
  list-style-position: inside;
}
@media (max-width: 766px) {
  .c-entry-toc .c-toc__list > li {
    margin-top: calc(30 / 900 * 100vw);
    font-size: calc(32 / 900 * 100vw);
  }
}
.c-entry-toc .c-toc__list > li li {
  margin-top: 5px;
  padding-left: 2rem;
  font-size: 0.875rem;
}
@media (max-width: 766px) {
  .c-entry-toc .c-toc__list > li li {
    margin-top: calc(10 / 900 * 100vw);
    padding-left: 1rem;
    font-size: calc(28 / 900 * 100vw);
  }
}
.c-entry-toc .c-toc.is-close .c-toc__head .toggle:before {
  content: "[開く]";
}
.c-entry-toc .c-toc.is-close .c-toc__list {
  display: none;
}
.c-entry-content {
  max-width: 1000px;
  width: 100%;
  margin: 50px auto 0 auto;
}
@media (max-width: 766px) {
  .c-entry-content {
    margin-top: calc(50 / 900 * 100vw);
  }
}
.c-entry-content .wp-block-heading {
  margin-top: 60px;
  font-size: 1.625rem;
  font-weight: 600;
}
@media (max-width: 766px) {
  .c-entry-content .wp-block-heading {
    margin-top: calc(100 / 900 * 100vw);
  }
}
.c-entry-content h2.wp-block-heading {
  color: #17559D;
  font-size: 1.625rem;
}
@media (max-width: 766px) {
  .c-entry-content h2.wp-block-heading {
    font-size: calc(50 / 900 * 100vw);
  }
}
.c-entry-content h3.wp-block-heading {
  margin-top: 20px;
  font-size: 1.25rem;
}
@media (max-width: 766px) {
  .c-entry-content h3.wp-block-heading {
    margin-top: calc(30 / 900 * 100vw);
    font-size: calc(40 / 900 * 100vw);
  }
}
.c-entry-content p {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 766px) {
  .c-entry-content p {
    margin-top: calc(30 / 900 * 100vw);
    font-size: calc(34 / 900 * 100vw);
  }
}
.c-entry-content strong {
  font-weight: 600;
}
.c-entry-content a {
  text-decoration: underline;
}
.c-entry-content .wp-block-buttons {
  margin-top: 20px;
}
@media (max-width: 766px) {
  .c-entry-content .wp-block-buttons {
    margin-top: calc(30 / 900 * 100vw);
  }
}
.c-entry-content .wp-block-button__link {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  font-size: 1.25rem;
}
@media (max-width: 766px) {
  .c-entry-content .wp-block-button__link {
    font-size: calc(40 / 900 * 100vw);
  }
}
.c-entry-content .wp-block-button__link:hover {
  opacity: 0.6;
}
.c-entry-content .wp-block-embed {
  margin-top: 20px;
  width: 100%;
}
.c-entry-content .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.c-entry-content .wp-block-embed video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media (max-width: 766px) {
  .c-entry-content .wp-block-embed {
    margin-top: calc(30 / 900 * 100vw);
  }
}
.c-entry-content .wp-block-video {
  margin-top: 20px;
  width: 100%;
}
.c-entry-content .wp-block-video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media (max-width: 766px) {
  .c-entry-content .wp-block-video {
    margin-top: calc(30 / 900 * 100vw);
  }
}
.c-entry-content .wp-block-image {
  margin-top: 20px;
}
@media (max-width: 766px) {
  .c-entry-content .wp-block-image {
    margin-top: calc(30 / 900 * 100vw);
  }
}
.c-entry-content .wp-element-caption {
  font-size: 0.875rem;
}
@media (max-width: 766px) {
  .c-entry-content .wp-element-caption {
    font-size: calc(28 / 900 * 100vw);
  }
}
@media (max-width: 766px) {
  .c-entry-content :where(.wp-block-columns.is-layout-flex) {
    gap: calc(20 / 900 * 100vw);
  }
}

/* c-more
-----------------------------------------*/
.c-more {
  margin: 0 auto;
}
.c-more__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin: 0 auto;
  background-color: #FFF;
  border: 1px solid #AC9340;
  border-radius: 5px;
  color: #AC9340;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 766px) {
  .c-more__btn {
    width: calc(380 / 900 * 100vw);
    height: calc(70 / 900 * 100vw);
    font-size: calc(32 / 900 * 100vw);
  }
}
.c-more__btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #AC9340;
  border-right: solid 1px #AC9340;
  top: calc(50% - 5px);
  right: 20px;
}
@media (max-width: 766px) {
  .c-more__btn::after {
    width: calc(20 / 900 * 100vw);
    height: calc(20 / 900 * 100vw);
  }
}
.c-more__btn--right::after {
  transform: rotate(45deg);
}
.c-more__btn:hover {
  background-color: #AC9340;
  border: 1px solid #FFF;
  color: #FFF;
}
.c-more__btn:hover::after {
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
/*# sourceMappingURL=style.css.map */
