@charset "UTF-8";
:root {
  --col-text: #231815;
  --col-assort: #1272b4;
  --col-accent: #e91e79;
  --col-accent__light: #ffe9f3;
  --col-assort__light: #f0faff;
  --width: 1280;
  --max-width: calc(1080 / var(--width) * 100vw);
  --max-width__mid: calc(980 / var(--width) * 100vw);
  --max-width__sml: calc(740 / var(--width) * 100vw);
  --header-height: 6.25rem;
  /* Font size tokens */
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-22: 1.375rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-34: 2.125rem;
  --fs-40: 2.5rem;
  --fs-52: 3.25rem;
  /* Common aliases */
  --font-size: clamp(13px, var(--fs-15), 17px);
  --font-size__big: clamp(20px, var(--fs-24), 28px);
  --font-size__mid: clamp(17px, var(--fs-18), 22px);
  --font-size__sml: clamp(13px, var(--fs-15), 15px);
  --font-size__h2: clamp(26px, var(--fs-32), 36px);
  --section-space: var(--space-80);
  --block-space: var(--space-50);
  --content-space: var(--space-30);
}

@media screen and (max-width: 768px) {
  :root {
    --width: 768;
    --header-height: 5rem;
    --max-width__mid: 100%;
    --max-width__sml: 100%;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --width: 375;
    --font-size: clamp(14px, var(--fs-15), 16px);
    --font-size__big: clamp(18px, var(--fs-20), 22px);
    --font-size__mid: clamp(15px, var(--fs-17), 18px);
    --font-size__sml: clamp(12px, var(--fs-13), 12px);
    --font-size__h2: clamp(20px, var(--fs-22), 24px);
    --section-space: var(--space-60);
    --block-space: var(--space-40);
    --content-space: var(--space-24);
  }
}
@media (min-width: 1501px) {
  :root {
    --width: 1440;
    --max-width__mid: calc(840 / var(--width) * 100vw);
    --max-width__sml: calc(680 / var(--width) * 100vw);
    --font-size: clamp(17px, var(--fs-17), 18px);
  }
}
body {
  color: var(--col-text);
  font-family: "Noto Sans JP", sans-serif;
}

.pc {
  display: none;
}

html,
body {
  height: 100%;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-feature-settings: "palt";
  font-size: var(--font-size);
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 1.05px;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  background-color: #fff;
  font-weight: 400;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #fff !important;
    color: #000 !important;
  }
}
ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

article > * + * {
  margin-top: 1rem;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

html {
  scroll-padding-top: var(--header-height);
}

[id] {
  scroll-margin-top: var(--header-height);
}

.c-container {
  padding-block: 2rem;
}

.c-lowerCont {
  margin-top: 0.625rem;
}

.p-schedule-inner {
  padding: 0 1.25rem;
}

.p-schedule-inner picture:last-child {
  display: block;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-60 {
  margin-top: 3.75rem;
}

.mt-80 {
  margin-top: 5rem;
}

.mt-100 {
  margin-top: 6.25rem;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.mb-60 {
  margin-bottom: 3.75rem;
}

.mb-80 {
  margin-bottom: 5rem;
}

.mb-100 {
  margin-bottom: 6.25rem;
}

.text {
  line-height: 1.75rem;
}

.wp-element-button,
.c-linkbtn {
  position: relative;
  display: block;
  padding: 15px 20px;
  color: #fff;
  background-color: var(--col-assort);
}

.wp-block-button__link::after,
.c-linkbtn:not(.__coming)::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-50%, 0);
}

.nav-pc-item a[target=_blank]::after,
.p-footer-nav a[target=_blank]::after,
.blank_link-icon {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
  background-color: currentColor;
  mask-image: url(../images/link_blank-icon.svg);
  mask-size: 100% 100%;
}

.l-fv {
  margin-top: var(--header-height);
}

.p-fv-inner h2 {
  margin: 0;
}

.p-fv-visual {
  position: relative;
}

.p-fv-bg,
.p-fv-illust {
  display: block;
  width: 100%;
  height: auto;
}

.p-fv-bg {
  object-fit: cover;
}

.p-fv-illust {
  animation: fv-illust-fade-in 1s ease 1s forwards;
  left: 50%;
  max-width: 90%;
  opacity: 0;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 768px) {
  .p-fv-illust {
    max-width: 100%;
  }
}

@keyframes fv-illust-fade-in {
  from {
    opacity: 0;
    translate: -50% calc(-50% + 1.5rem);
  }
  to {
    opacity: 1;
    translate: -50% -50%;
  }
}
.l-header {
  background-color: #fff;
  background-image: url(../images/common/header-bg-sp.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: var(--header-height);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9900;
}

.p-header-inner {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding: 0 calc(20 / var(--width) * 100vw);
}

.p-header-logo {
  width: auto;
  height: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-header-logo {
    width: 13.4375rem;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .p-header-logo {
    width: 12.5rem;
  }
}
.p-header-logo img {
  object-fit: cover;
}

.p-header-drawer {
  position: absolute;
  right: calc(15 / var(--width) * 100vw);
  top: 50%;
  transform: translateY(-50%);
}

header .nav-pc-item:has(a) {
  color: #fff;
}

body:has(.header-drawer.is-open),
body:has(.p-header-drawer.is-open) {
  overflow: hidden;
}

.hamburger {
  z-index: 9999;
}

.hamburger span {
  background: #fff;
  display: block;
  height: calc(2 / var(--width) * 100vw);
  max-width: 50px;
  position: relative;
  transition: ease 0.3s;
  width: 7.3746312684vw;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 0.425rem 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.hamburger.is-open span:nth-child(1) {
  top: 0.45rem;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%);
}

.hamburger.is-open span:nth-child(3) {
  top: -0.575rem;
  transform: rotate(-45deg);
}

.nav-pc {
  display: none;
  height: inherit;
}

.nav-pc-list,
.nav-pc-items {
  display: flex;
  height: inherit;
}

.nav-pc-item {
  align-items: center;
  display: flex;
  font-size: var(--font-size);
  height: inherit;
}

.nav-pc-item::before,
.nav-pc-item:last-child::after {
  background-color: currentColor;
  content: "";
  height: calc(16 / var(--width) * 100vw);
  width: 0.0625rem;
}

.nav-pc-item a {
  display: grid;
  height: inherit;
  letter-spacing: 0.05rem;
  padding: 0 calc(16 / var(--width) * 100vw);
  place-items: center;
  position: relative;
}

.nav-pc-item a[target=_blank] {
  display: flex;
  flex-direction: row;
}

.nav-sp {
  background: rgba(3, 110, 178, 0.95);
  box-sizing: border-box;
  height: 100vh;
  max-height: calc(100vh - var(--header-height));
  overflow-y: scroll;
  padding: 0 1rem;
  position: absolute;
  right: -100%;
  top: var(--header-height);
  transition: right 0.5s 0s ease-in-out;
  width: 100%;
}

.nav-sp.is-open {
  right: 0;
}

.nav-sp-items {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: calc(30 / var(--width) * 100vw);
}

.nav-sp-item {
  border-bottom: 0.0625rem solid #00436d;
  width: 100%;
}

.nav-sp-item a {
  color: #fff;
  display: block;
  font-weight: 400;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-header-drawer {
    display: block;
  }
  .nav-pc {
    display: none;
  }
  .nav-sp {
    display: block;
  }
}
@media (min-width: 1100px) {
  .l-fv {
    margin-top: 6.5625rem;
  }
  .l-header {
    background-image: url(../images/common/header-bg-pc.png);
    height: 6.5625rem;
  }
  .p-header-inner {
    padding: 0 1.5625rem;
  }
  .p-header-drawer {
    display: none;
  }
  .nav-pc {
    display: block;
  }
  .nav-sp {
    display: none;
  }
}
.footer-cont {
  background: linear-gradient(transparent 0%, #ccf2ff 100%);
  display: block;
}

.p-footer-wrap {
  padding: calc(40 / var(--width) * 100vw) calc(20 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
}

.p-footer-under {
  margin-top: 2rem;
}

.p-footer-under__item {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-bottom: 0.75rem;
}

.p-footer-under__item._jr {
  align-items: center;
  display: flex;
}

.p-footer-under__item._jr__icon {
  padding-bottom: 0;
  position: relative;
  vertical-align: middle;
}

.p-footer-under__item._jr__icon::before {
  background-image: url("../images/jr.svg");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 2.1875rem;
  vertical-align: middle;
  width: 3.125rem;
}

.p-footer-mail {
  font-size: 0.85rem;
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  .p-footer-mail {
    text-align: center;
  }
}

.p-footer-mail__textCont {
  align-items: center;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 480px) {
  .p-footer-mail__textCont {
    justify-content: center;
  }
}

.p-footer-mail__textCont img {
  height: 1.25rem;
  width: 1.25rem;
}

.p-footer-mail__text {
  color: var(--col-assort);
}

.p-footer-mail__text._first::after {
  content: "@";
  display: inline-block;
}

.p-footer-logo img {
  box-sizing: border-box;
  max-width: 16rem;
  object-fit: cover;
  padding-right: 1rem;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-footer-logo img {
    padding-right: 0;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}

.p-footer-nav__list {
  color: var(--col-assort);
  display: flex;
  justify-content: flex-end;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .p-footer-nav__list {
    flex-wrap: wrap;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-footer-nav__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}

.p-footer-nav__item {
  align-items: center;
  display: flex;
  font-size: var(--fs-14);
  height: inherit;
  justify-content: flex-end;
  text-align: center;
  white-space: inherit;
}
@media screen and (max-width: 480px) {
  .p-footer-nav__item {
    justify-content: flex-start;
  }
}

.p-footer-nav__item a {
  box-sizing: border-box;
  width: 100%;
  height: inherit;
  letter-spacing: 0.05rem;
  padding: 0 1rem;
  place-items: center;
  position: relative;
}

.p-footer-nav__item::before,
.p-footer-nav__item:last-child::after {
  background-color: var(--col-assort);
  content: "";
  height: 1rem;
  width: 0.0625rem;
}
@media screen and (max-width: 480px) {
  .p-footer-nav__item::before,
  .p-footer-nav__item:last-child::after {
    display: none;
  }
}

footer .nav-pc-item:has(a) {
  color: var(--col-assort);
}

.footer,
.footer-banner {
  margin-top: 3.125rem;
}

.footer-banner img {
  border: 0.0625rem solid #ddd;
}

.footer-banner2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer-banner3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-1 {
  grid-column-start: 1;
  grid-column-end: 3;
}

.footer-logo img {
  margin: 0 auto;
  max-width: calc(576 / var(--width) * 100vw);
  width: 80%;
}

.p-footer_text {
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 2;
  margin-top: calc(50 / var(--width) * 100vw);
}

.footer-copyright {
  background-color: var(--col-assort);
  color: #fff;
  font-size: calc(15 / var(--width) * 100vw);
  letter-spacing: 0;
  margin-top: calc(30 / var(--width) * 100vw);
  padding: calc(20 / var(--width) * 100vw) 0;
  text-align: center;
}

.p-footer-menu {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: end;
  height: inherit;
}
@media screen and (max-width: 480px) {
  .p-footer-menu {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  display: none;
}

.footer-banner {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1.25fr 1.75fr;
  margin: 0 auto;
  width: 100%;
}

.footer-banner1 {
  display: grid;
  gap: calc(15 / var(--width) * 100vw);
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(15 / var(--width) * 100vw);
  max-width: 68.75rem;
  width: 100%;
}

.footer-banner2 {
  display: grid;
  gap: clamp(5px, 0.5vw, 15px);
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(15 / var(--width) * 100vw);
  max-width: 68.75rem;
  width: 100%;
}

.footer-banner3 {
  display: grid;
  gap: clamp(5px, 0.5vw, 15px);
  grid-template-columns: repeat(4, 1fr);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(15 / var(--width) * 100vw);
  max-width: 68.75rem;
  width: 100%;
}

.p-footer_text {
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

.footer-copyright {
  font-size: 0.9375rem;
  padding: 0.625rem 0;
}

@media screen and (max-width: 768px) {
  .footer-banner_right {
    margin-top: 1.25rem;
  }
}
.c-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
.c-inner + .c-inner {
  margin-top: 5rem;
}
@media screen and (max-width: 480px) {
  .c-inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.l-lower-header {
  margin-top: 15.4867256637vw;
  position: relative;
  padding: 3.125rem 1rem;
  background-color: #fff;
  border-bottom: 0.1875rem solid var(--col-accent);
  background: linear-gradient(transparent 0%, hsla(333, 82%, 52%, 0.15) 100%);
}
.l-lower-header h2 {
  color: var(--col-accent);
  text-align: center;
}

@media (min-width: 1100px) {
  .l-lower-header {
    margin-top: 6.5625rem;
  }
}
.c-block-wrap {
  margin-inline: auto;
  max-width: var(--max-width__mid);
}

.c-title,
.wp-block-heading {
  color: var(--col-assort);
  font-size: var(--font-size__h2);
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.wp-block-heading {
  margin-bottom: 1.25rem;
  margin-top: 10px;
  text-align: left;
}

.c-title {
  padding-top: 1.5625rem;
}

[class*=c-title] {
  position: relative;
  letter-spacing: 2.5px;
  line-height: 1.25;
  color: var(--col-assort);
}
@media screen and (max-width: 768px) {
  [class*=c-title] {
    letter-spacing: 2.15px;
  }
}

.c-title_02 {
  font-size: var(--font-size__big);
  font-weight: 500;
  border-bottom: 1px solid #6bb6ff;
  padding-bottom: 0.9375rem;
  text-align: left;
}

.c-title__sub {
  color: var(--col-assort);
  font-size: var(--font-size__mid);
  margin: 10px auto;
}

.c-title__sub--cont {
  background: #caf0ff;
  margin-top: 1rem;
  padding: 1rem;
}

.c-title__sub--cont strong {
  font-size: 1.25rem;
}

.c-block-item,
.p-news_items_inner {
  margin-bottom: 3.75rem;
}

.c-block-item:last-child,
.p-news_items_inner:last-child {
  margin-bottom: 0;
}

.c-block-item.bg-blue {
  background-color: #caf0ff;
  padding: 1rem;
}

.p-news_items_inner .c-title {
  border-bottom: 2px solid var(--col-assort);
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  padding-top: 0;
  text-align: left;
}

.c-block-item ul li,
.p-news_items_inner ul li {
  margin-bottom: 15px;
}

.c-block-item ul li a::after,
.p-news_items_inner ul li a::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  display: inline-block;
  height: 8px;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: rotate(45deg) translate(-50%, 0);
  width: 8px;
}

.p-news_items_inner ul li:last-child {
  margin-bottom: 0;
}

.p-news_items_inner .message {
  margin-top: 1.25rem;
}

.p-news_items_inner .message .message_text {
  background-color: #eee;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
}

.p-news_items_inner .message .message_text h4 {
  color: var(--col-assort);
  margin-bottom: 5px;
}

.p-news_items_inner .message01 .message_img {
  display: flex;
  justify-content: space-between;
}

.p-news_items_inner .message01 .message_img img {
  width: calc(50% - 1.25rem);
}

.p-news_items_inner .message02 .message_block {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.p-news_items_inner .message02 .message_block .message_text,
.p-news_items_inner .message02 .message_img {
  width: calc(50% - 1.25rem);
}

.p-news_items_inner .message02 .message_img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-news_items_inner .message01 .message_img {
    display: block;
  }
  .p-news_items_inner .message01 .message_img img {
    margin-bottom: 1.25rem;
    width: 100%;
  }
  .p-news_items_inner .message01 .message_img img:last-child {
    margin-bottom: 0;
  }
  .p-news_items_inner .message02 .message_block {
    display: block;
    width: 100%;
  }
  .p-news_items_inner .message02 .message_block .message_text,
  .p-news_items_inner .message02 .message_img {
    width: 100%;
  }
  .p-news_items_inner .message02 .message_img {
    margin-bottom: 1.25rem;
  }
}
.p-top-container__grd {
  padding: 2.5rem 1.5625rem;
}

.p-top-container__grd-wrap {
  padding-block: 2.5rem;
}

.p-top-container__grd-inner {
  padding: 1.25rem;
  margin-inline: auto;
  max-width: var(--max-width__sml);
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-container__grd-inner {
    padding: 0.625rem 2.5rem;
  }
}
.p-top-container__grd-inner p {
  font-size: var(--fs-17);
  line-height: 2.25;
  text-align: justify;
  letter-spacing: 0.25px;
}
.p-top-container__grd-inner :last-child {
  margin-top: calc(16 / var(--width) * 100vw);
}

@media (max-width: 480px) {
  .p-top-container__grd {
    padding: 1.25rem 0;
  }
}
.p-top-concept_shuna {
  font-size: var(--font-size__big);
  font-weight: 600;
  color: var(--col-accent);
  letter-spacing: 0.3125rem;
}

.p-top-concept_shuna-cont {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}
.p-top-concept_shuna-cont > div {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-top-concept_shuna-cont {
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-concept_shuna-cont .col-1 {
    max-width: 12.5rem;
  }
}

.p-top-concept_shuna-img {
  width: 45vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-concept_shuna-img {
    width: 100%;
  }
}

a:has(.p-top-concept_shuna-link) {
  margin-top: 2vw;
}

.p-top-concept_shuna-link {
  content: "しゅうなが紹介！";
  position: absolute;
  top: -1.5vw;
  left: -1.25vw;
  padding: 0.35rem 1.5rem;
  background-color: var(--col-accent);
  border-radius: 1rem;
  font-size: 0.85rem;
  z-index: 2;
}

.p-top-concept_shuna-link::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  bottom: -0.75vw;
  width: 0.85rem;
  height: 0.85rem;
  background-color: var(--col-accent);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-top-menu__wrap {
  padding: calc(40 / var(--width) * 100vw) calc(20 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
  max-width: var(--max-width);
}

.p-top-menu__grid {
  display: grid;
  gap: 2.5rem 3.75rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-menu__grid {
    gap: 1.25rem 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .p-top-menu__grid {
    grid-template-columns: 1fr;
  }
}

.p-top-menu__link {
  color: var(--col-assort);
  display: block;
}
.p-top-menu__link:not(:first-child) {
  margin-top: 0;
}
.p-top-menu__link:nth-child(2), .p-top-menu__link:nth-child(3) {
  color: var(--col-accent);
}
.p-top-menu__link:nth-child(2) .p-top-menu__title, .p-top-menu__link:nth-child(3) .p-top-menu__title {
  border-bottom: 0.125rem solid var(--col-accent);
}
.p-top-menu__link img {
  max-width: 100%;
  position: relative;
  width: 100%;
}

.p-top-menu__card {
  filter: drop-shadow(0.625rem 0.625rem 0 rgba(0, 0, 0, 0.1));
  position: relative;
}

.p-top-menu__card-inner {
  aspect-ratio: 4/2.5;
  mask-image: url(../images/top/top-menu__mask.webp);
  mask-position: center;
  mask-size: 100% 100%;
  width: 100%;
}
.p-top-menu__card-inner img {
  height: auto;
  width: 100%;
}
.p-top-menu__card-inner::after {
  height: 100%;
  width: 100%;
}

.p-top-menu__link:has(.__coming) {
  pointer-events: none;
}
.p-top-menu__link:has(.__coming) .p-top-menu__card-inner::after {
  font-size: var(--fs-17);
  height: 100%;
  width: 100%;
}

.p-top-menu__title {
  border-bottom: 0.125rem solid var(--col-assort);
  font-size: var(--fs-20);
  font-weight: 600;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  margin-left: 0;
  margin-top: calc(20 / var(--width) * 100vw);
  padding-bottom: calc(16 / var(--width) * 100vw);
  padding-left: 1rem;
  width: 100%;
}

@media (any-hover: hover) {
  .p-top-menu__card,
  .p-top-menu__card-inner {
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  a:has(.p-top-menu__card):hover .p-top-menu__card {
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.1));
  }
  a:has(.p-top-menu__card):hover .p-top-menu__card-inner {
    transform: translate(0.625rem, 0.625rem);
  }
}
.nav-sp-item.__coming::after {
  width: 100%;
}

.__coming {
  pointer-events: none;
  position: relative;
}
.__coming::after {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  content: "Coming soon..";
  display: flex;
  font-size: 11px;
  font-style: italic;
  font-weight: 700;
  height: 2.5rem;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.025rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  white-space: nowrap;
  width: 90%;
}

a.c-linkbtn.__coming::after {
  height: 100%;
  width: 100%;
}

.p-top-news__inner {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0.3) 100%);
  padding: 0 1.25rem;
}

.p-top-news__title {
  align-items: center;
  color: var(--col-assort);
  display: flex;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  margin-bottom: -1.25rem;
  padding: 0 1.25rem;
  text-align: center;
  text-transform: uppercase;
}

.p-top-news__title::before,
.p-top-news__title::after {
  background-color: var(--col-assort);
  content: "";
  display: block;
  height: 1px;
  width: 90%;
}

.p-top-news__title::before {
  margin-right: 1.25rem;
}

.p-top-news__title::after {
  margin-left: 1.25rem;
}

.p-top-news__items {
  border-bottom: 1px solid var(--col-assort);
  list-style: none;
  margin: 0;
  padding-bottom: 1rem;
  padding-inline: 1.25rem;
  padding-top: 1.875rem;
}
@media screen and (max-width: 480px) {
  .p-top-news__items {
    padding-inline: 0;
  }
}

.p-top-news__link {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  padding: 1rem 0.625rem;
  border-top: 1px solid #ddd;
}

.p-top-news__item:last-child .p-top-news__link {
  border-bottom: 1px solid #ddd;
}

.p-top-news__date {
  color: var(--col-assort);
  flex-shrink: 0;
  font-size: 0.9375rem;
}

.p-top-news__meta {
  color: var(--col-assort);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.25rem;
}

.p-top-news__cat {
  color: var(--col-assort);
  font-size: 0.75rem;
  line-height: 1.4;
}

.p-top-news__post {
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.p-top-news__arrow {
  display: none;
}

.sns-cont .p-top-news__title {
  color: var(--col-accent);
}

.sns-cont .p-top-news__title::before,
.sns-cont .p-top-news__title::after {
  background-color: var(--col-accent);
}

.sns-cont .p-top-news__items {
  text-align: center;
  border-color: var(--col-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.75rem 0;
}

.sns-icon {
  width: 5rem;
}

@media screen and (max-width: 768px) {
  .p-top-news__date {
    font-size: var(--font-size__sml);
  }
}
@media screen and (max-width: 480px) {
  .p-top-news__post {
    margin-left: 0;
  }
}
.p-top-news__inner {
  background: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, transparent 100%);
  padding: 0 1.5625rem;
}

.p-top-news__title {
  font-size: 1.3125rem;
  margin-inline: auto;
  max-width: var(--max-width__mid);
  width: 100%;
}

.p-top-news__items {
  margin-inline: auto;
  max-width: var(--max-width__mid);
}

.p-top-news__arrow {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
}
.p-top-news__arrow a {
  color: var(--col-assort);
  font-size: 1.5625rem;
  font-weight: 400;
}

.p-top-news__entry {
  color: var(--col-assort);
  text-align: center;
}

.c-block-item .c-news-banner h2,
.p-news_items_inner .c-news-banner h2 {
  font-size: 3.25rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.c-block-item .c-news-banner h2 span.note,
.p-news_items_inner .c-news-banner h2 span.note {
  font-size: 2.5rem;
}

.c-block-item .c-news-banner h2 span.note.day,
.p-news_items_inner .c-news-banner h2 span.note.day {
  font-size: 1.5rem;
}

.overview {
  background-image: url(../images/green-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overview-wrap {
  padding: 5rem 0;
}

.overview-inner {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0.9) 100%);
  padding: 0.0625rem 1.5625rem;
}

.overview-ttl {
  color: var(--col-accent);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  padding-top: 1.5625rem;
  text-align: center;
  text-transform: uppercase;
}

.overview-table {
  border-collapse: collapse;
  border-top: solid 1px var(--col-accent);
  margin-bottom: 3.125rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5625rem;
  padding: 1.5625rem 1.25rem;
  width: 100%;
}

.overview-table tr {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem;
}

.overview-table th {
  color: var(--col-accent);
}

.overview-table th,
.overview-table td {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.overview-wrap {
  padding: 5rem 1.5625rem;
}

.overview-inner {
  background: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, transparent 100%);
  padding: 0.0625rem 1.5625rem;
}

.overview-ttl {
  font-size: 1.3125rem;
}

.overview-table {
  border-bottom: solid 1px var(--col-accent);
  margin-left: auto;
  margin-right: auto;
  max-width: 46.25rem;
  width: 80%;
}

.overview-table tr {
  display: table-row;
  padding-left: initial;
  padding-right: initial;
}

.overview-table th {
  width: 6.25rem;
}

.overview-table th,
.overview-table td {
  border-top: dashed 1px var(--col-accent);
  font-size: 1rem;
  padding: 0.625rem 0.5rem;
}

.c-shunaCommentCont {
  display: flex;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  width: 100%;
}

.c-shunaCommentCont._reverse {
  flex-direction: row-reverse;
}

.c-shunaCommentImg {
  display: inline-block;
  width: 120px;
}

.c-shunaCommentText {
  align-items: center;
  display: inline-flex;
  max-width: 300px;
  width: 100%;
}

.c-shunaCommentText::before {
  content: "";
  border-color: transparent;
  border-right-color: currentColor;
  border-style: solid;
  border-width: 0.375rem 0.64952rem;
  color: #fff;
  display: inline-block;
  height: 0;
  line-height: 1;
  vertical-align: middle;
  width: 0;
}

.c-shunaCommentText p {
  background-color: #fff;
  border-radius: 10px;
  padding: 3% 1.25rem;
  width: 100%;
}

.nav-links {
  margin-top: 5rem;
  text-align: center;
}

.page-numbers {
  background: var(--col-assort__light);
  border-radius: 10px;
  color: var(--col-assort);
  padding: 0.65rem 1rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-numbers.prev,
.page-numbers.next {
  background: none;
  border: 1px solid;
  color: var(--col-assort);
  font-size: 0.75rem;
}

.page-numbers.current {
  background: var(--col-assort);
  color: var(--col-assort__light);
}

a.page-numbers:hover {
  background: var(--col-assort);
  box-shadow: 0 0.375rem 1rem rgba(18, 114, 180, 0.18);
  color: #fff;
  transform: translateY(-0.125rem);
}

.page-numbers.prev {
  margin-right: 2rem;
}

.page-numbers.next {
  margin-left: 2rem;
}

.l-lower .l-fv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5rem 0.9375rem 0.9375rem;
  background-color: #fff;
  border-bottom: 0.1875rem solid var(--col-accent);
  background: linear-gradient(transparent 0%, hsla(333, 82%, 52%, 0.15) 100%);
  height: 15rem;
}

.l-lower .l-fv h2 {
  text-align: center;
  color: var(--col-accent);
}

/***** breadcrumb *****/
.breadcrumb {
  max-width: var(--max-width);
  font-size: 0.75rem;
}

._strong {
  color: var(--col-accent);
  font-size: var(--font-size__big);
  margin-top: 3%;
  display: block;
}

._small {
  font-size: var(--font-size__sml);
}

._center {
  text-align: center;
}

._left {
  text-align: left;
}

.c-icon {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.c-button {
  background-color: currentColor;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 15.625rem;
  height: 100%;
  max-height: 4.6875rem;
  padding: 2%;
  background-color: #fff;
}

.bg-dot {
  background-image: url(../images/common/bg_dot.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-sky,
.concept {
  background-image: url(../images/common/bg_sky.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.concept-inner {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0.3) 100%);
}

/* 駐車場状況 */
/* 15日のみ */
.is-unknown {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

a:hover {
  opacity: 0.8;
}

.l-section,
.c-lowerCont {
  padding-bottom: 5rem;
  padding-top: 3.125rem;
}

.p-schedule {
  margin-top: 1.5625rem;
}

.p-schedule-inner {
  padding: 0 1.5625rem;
}

.p-schedule-inner img {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-schedule-inner img {
    width: 100%;
  }
}

@media screen and (min-width: 1281px) {
  :where(html) {
    font-size: 1rem;
  }
}
.twoCol {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nav-pc-item a[target=_blank]::after,
.blank_link-icon {
  width: 0.85rem;
  height: 0.85rem;
}

@media screen and (max-width: 768px) {
  :where(html) {
    font-size: 1rem;
  }
  .top-character-banner {
    bottom: 5%;
    width: 6.25rem;
  }
  .footer-banner_right {
    margin-top: 1.25rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 0.875rem;
  }
}
.c-linkbtn {
  position: relative;
  color: #fff;
  display: block;
  padding: 0.9375rem 1.25rem;
  background-color: var(--col-assort);
}

.c-linkbtn:not(.__coming)::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg) translate(-50%, 0);
}

.nav-pc-item a[target=_blank]::after,
.p-footer-nav a[target=_blank]::after,
.blank_link-icon {
  content: "";
  margin-left: 0.25rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: currentColor;
  mask-image: url(../images/link_blank-icon.svg);
  mask-size: 100% 100%;
  vertical-align: middle;
}

/*
Unused old footer aliases kept for reference after renaming to p-footer-*:
.about-wrap
nav.p-footer-nav.about-nav
.about-logo img
.about-items
.nav-pc-item .about-item
.about-item::before
.about-item:last-child::after
.about-item a
.about-nav a[target="_blank"]::after
*/
.p-schedule-inner {
  padding: 0 calc(20 / var(--width) * 100vw);
}

.p-schedule-inner picture:last-child {
  display: block;
}

.c-block-item .c-news-banner h2,
.p-news_items_inner .c-news-banner h2 {
  font-size: 3.25rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.c-block-item .c-news-banner h2 span.note,
.p-news_items_inner .c-news-banner h2 span.note {
  font-size: 2.5rem;
}

.c-block-item .c-news-banner h2 span.note.day,
.p-news_items_inner .c-news-banner h2 span.note.day {
  font-size: 1.5rem;
}

.twoCol {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.nav-pc-item a[target=_blank]::after,
.blank_link-icon {
  width: 0.85rem;
  height: 0.85rem;
}

@media screen and (max-width: 480px) {
  /**********************

  共通

  ***********************/
  /**********************

  トップ

  ***********************/
  .p-top-container__grd {
    padding: 1.25rem 0;
  }
}
.lower-cont,
.c-lowerCont {
  padding: 3.125rem 0;
  background: #fff;
}

.img-1c,
.img-2c {
  padding-top: 30px;
}

.text-area p:not(:first-child) {
  padding-top: 15px;
}

.asterisk {
  padding-top: 15px;
}

.img-2c:not(:first-child) {
  padding-top: 30px;
}

.img-2c {
  display: flex;
  justify-content: space-between;
}

.img-2c .img-wrapper {
  width: 49%;
  padding-top: 0;
}

/**********************

アクセス

***********************/
.p-access-intro {
  margin: 50px 0;
}

#access,
#trainSchedule {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

.p-access-section {
  padding: 3.125rem 0;
}

.p-access_items {
  border-bottom: none;
}

.p-access-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #6bb6ff;
  text-align: left;
}

.c-textCont {
  padding-top: 30px;
}

.p-access-way_carMap {
  padding-top: 15px;
}

.access-post {
  max-width: 100%;
}

.access-item {
  display: flex;
}

.img-1c {
  margin-top: 50px;
}

.p-access_linkWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.p-access_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5%;
  height: 4.6875rem;
  color: #fff;
  font-size: var(--font-size__mid);
  vertical-align: middle;
}

.p-access_link._car {
  background-color: var(--col-assort);
}

.p-access_link._train {
  background-color: var(--col-accent);
}

.p-access_link._car::before,
.p-access_link._train::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-access_link._car::before {
  background-image: url("../../assets/images/access/access-icon_car.svg");
}

.p-access_link._train::before {
  background-image: url("../../assets/images/access/access-icon_train.svg");
}

.p-access_link.c-linkbtn::after {
  transform: rotate(135deg) translate(-50%, 0);
}

.p-access-way_carTitle {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--col-accent);
  font-size: var(--font-size__mid);
}

.p-access-way_carTitle__sub {
  font-size: var(--font-size__mid);
  font-weight: 500;
}

.p-access-way_carTitle__sub::before {
  content: "●";
  margin-right: 5px;
  color: #d9d9d9;
}

.p-access-way_carText .block:not(:last-child) {
  margin-bottom: 10px;
}

.p-access-way_carTitle,
.p-access-way_carText .c-title__sub {
  display: block;
  font-weight: bold;
}

.access-title {
  font-size: var(--font-size__big);
  font-weight: 700;
}

.access-title b {
  color: var(--col-accent);
}

.access-title b > span {
  font-size: 1.5rem;
}

.access-title b,
.access-address {
  font-size: 0.95rem;
}

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

.access-address a {
  color: #1272b6;
}

.p-access-way_carCont {
  margin-top: 50px;
}

.p-access-way_carWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 0;
}

.p-access-way_car {
  width: 49%;
}

.date-limited {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 1% 2%;
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  background-color: var(--col-assort);
}

.date-limited::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -10px;
  width: 15px;
  height: 15px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--col-assort);
}

#trainSchedule {
  text-align: center;
}

.schedule-img {
  margin: 20px auto;
  padding: 2%;
  background-color: var(--col-assort);
}

.schedule-img img {
  width: auto;
  max-height: 75px;
  margin: 0 auto;
}

.schedule-title {
  padding: 2% 3%;
  border: 3px solid;
  color: var(--col-accent);
  font-size: 2rem;
  font-weight: bold;
}

.mini {
  font-size: 0.75rem;
}

.schedule-flex {
  display: flex;
  justify-content: space-between;
}

.schedule-wrap {
  display: flex;
  margin-top: 3%;
  background-color: #fcebf3;
}

.schedule-wrap .c-title {
  width: 15%;
  max-width: 40px;
  padding: 1%;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: var(--col-assort);
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-cont .from,
.schedule-cont .to {
  font-size: 1.25rem;
}

.schedule-cont .from .home,
.schedule-cont .to .home {
  font-size: clamp(16px, 1.25rem, 18px);
  font-weight: bold;
}

.schedule-cont .from,
.schedule-cont .to,
.schedule-cont .from .schedule .time {
  display: flex;
  flex-direction: row;
  gap: 5%;
}

.schedule-cont {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 5%;
  padding: 20px 2%;
}

.schedule-cont .schedule .time p {
  display: flex;
  align-items: center;
  width: 100%;
  letter-spacing: 1.2px;
}

.schedule-cont .from .schedule .time,
.schedule-cont .from .schedule .time p {
  position: relative;
}

.schedule-cont .from .schedule .time::after {
  content: "→";
  margin-right: 1%;
}

.schedule-cont .from .schedule .time p::after {
  content: "発";
  font-size: 0.95rem;
}

.schedule-cont .to .schedule .time p::after {
  content: "着";
  font-size: 0.95rem;
}

.schedule-cont .schedule .time {
  position: relative;
}

span.zoketsu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  width: 80px;
  padding: 5%;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.25;
  background-color: var(--col-assort);
}

span.zoketsu::before {
  content: "";
  position: absolute;
  left: -10px;
  width: 15px;
  height: 15px;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
  background-color: var(--col-assort);
}

span.zoketsu.top::before {
  top: 10%;
}

span.zoketsu.bottom::before {
  bottom: 10%;
}

.schedule-cont .home {
  width: 30px;
  padding: 3%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 5px;
  writing-mode: vertical-rl;
}

.schedule-cont .schedule {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0;
}

.schedule-cont .other {
  display: grid;
  gap: 5%;
}

.schedule-wrap:not(.return) {
  width: 70%;
}

.schedule-wrap.return {
  width: 28%;
}

.schedule-wrap.return .flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.note {
  margin-top: 10px;
  font-size: 0.95rem;
  text-align: left;
}

.p-access-way_trainCont {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}

.p-access-way_trainCont .c-title__sub {
  font-size: var(--font-size__big);
  font-weight: 700;
}

.p-access-way_tran__titile-sub {
  color: var(--col-accent);
  font-size: var(--font-size__mid);
  font-weight: 500;
}

ul.p-access-way_train__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  color: var(--col-accent);
  font-weight: 500;
}

li.p-access-way_train__items {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: stretch;
  width: calc(33.3333333333% - 20px);
  min-height: 140px;
  height: 100%;
  padding: 20px 2vw;
  background-color: #fbe6ef;
}

.p-access-way_train__items span {
  font-size: 0.95rem;
}

.p-access-way_train__items p {
  font-size: var(--font-size__mid);
  font-weight: 700;
  line-height: 1.25;
}

.p-access-way_train__items-note {
  display: block;
  margin-top: 5px;
  color: var(--col-text);
  font-size: 0.65rem;
}

.p-access-way_trainImg {
  width: 100%;
  height: auto;
}

.p-access-way_trainImg:first-of-type {
  width: 75%;
}

.p-access-way_trainImg:last-of-type {
  width: 30%;
}

li.p-access-way_train__items .date-limited {
  position: absolute;
  top: -15%;
  left: 0;
  scale: 0.75;
}

.p-access-way_train__line {
  width: 100%;
  height: 2px;
  margin: 80px 0;
  background-color: #e1f3fc;
}

.p-shuttlebusCont {
  margin-top: 5rem;
  text-align: center;
}

.twocol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  text-align: left;
}

.p-shuttlebus-note {
  display: block;
  font-size: 0.85rem;
}

.p-shuttlebus-time__table {
  display: block;
  width: 100%;
  margin-top: 1rem;
}

.p-shuttlebus-time__table table,
.p-shuttlebus-time__table tbody,
.p-shuttlebus-time__table tr {
  width: 100%;
  font-size: 1.15rem;
}

.p-shuttlebus-time__table tbody {
  outline: 1px solid #ccc;
}

.p-shuttlebus-time__table tr {
  display: grid;
  grid-template-columns: 30% 35% 35%;
  border-bottom: 5px solid #fff;
  text-align: center;
}

.p-shuttlebus-time__table tr:last-child {
  border-bottom: none;
}

.p-shuttlebus-time__table th,
.p-shuttlebus-time__table td {
  padding: 1rem 0;
}

.p-shuttlebus-time__table th {
  color: #fff;
  background-color: var(--col-assort);
}

.p-shuttlebus-time__table tr:nth-child(2n+1) {
  background-color: #caf0ff;
}

.p-access-snsCont {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-top: 24px;
  padding: 20px 5%;
  background: #e1f3fc;
}

@media screen and (min-width: 1281px) {
  .schedule-wrap.return .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1280px) {
  .schedule-flex {
    flex-direction: column;
  }
  .schedule-wrap {
    width: 100% !important;
    gap: 20px;
  }
}
@media screen and (max-width: 960px) {
  .schedule-wrap {
    width: 100% !important;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .schedule-wrap .c-title {
    width: 100%;
    max-width: none;
  }
  .schedule-wrap:last-child {
    margin-top: 0;
  }
  .schedule-wrap.return .flex {
    flex-direction: column;
  }
  .schedule-cont .other {
    height: 100%;
  }
  .schedule-cont .from .home,
  .schedule-cont .to .home {
    font-size: 1.25rem;
  }
  .schedule-cont .home {
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-access-way_car {
    width: 100%;
  }
  .p-access-way_train__line {
    margin: 40px 0;
  }
  #access {
    width: 100%;
  }
  .schedule-cont .from,
  .schedule-cont .to,
  .schedule-cont .from .schedule .time {
    gap: 8%;
  }
  span.zoketsu {
    width: fit-content;
    max-width: 50px;
  }
  .schedule-wrap {
    margin-top: 20px;
    padding-bottom: 0;
    gap: 0;
  }
  .schedule-cont .home {
    width: 30px;
  }
  .p-access-snsCont {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  ul.p-access-way_train__item {
    gap: 10px;
  }
  li.p-access-way_train__items {
    width: calc(50% - 10px);
  }
  li.p-access-way_train__items .date-limited {
    top: -10%;
  }
  .p-access-way_train__items:first-child {
    width: 100%;
  }
  .hikikae .sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    outline: 5px solid var(--col-accent);
    background-color: #fcebf3;
  }
  .hikikae .sp .date {
    width: 50%;
    padding: 3%;
  }
  .hikikae .sp .text {
    width: 100%;
    padding: 5% 3%;
    background-color: #fff;
  }
  .hikikae .sp .text img:first-child {
    margin-bottom: 3%;
  }
  .hikikae .sp .text img {
    width: auto;
    max-height: 100px;
  }
}
@media screen and (max-width: 380px) {
  .schedule-cont .from,
  .schedule-cont .to,
  .schedule-cont .from .schedule .time {
    gap: 3%;
  }
  .schedule-cont {
    justify-content: flex-start;
  }
  .schedule-cont .other {
    position: absolute;
    top: 0;
    right: 0;
  }
  .p-access_linkWrap {
    flex-direction: column;
    gap: 1rem;
  }
  .p-access_link {
    width: 100%;
  }
}
.p-access-way__shunaText::before {
  order: 2;
  scale: -1;
  color: #e1f3fc;
}

.p-access-way__shunaText p {
  background-color: #e1f3fc;
}

.twocol {
  gap: 1rem;
}

/* ==============================
   Base
============================== */
.wp-block-image {
  margin-block: 2rem;
}

.wp-block-heading {
  font-weight: 500;
}

h4.wp-block-heading {
  position: relative;
  font-size: var(--font-size__mid);
}

.text-area p {
  font-size: var(--fs-17);
  text-align: justify;
  margin-bottom: 1.25rem;
  line-height: 2.5;
  letter-spacing: 1.25px;
}

@media screen and (max-width: 768px) {
  .text-area p {
    font-size: var(--font-size);
    line-height: 2.25;
    letter-spacing: 0.6px;
  }
}
.text-area p ~ h3 {
  margin-top: 3.125rem;
}

.text-area p ~ h4 {
  margin-top: 1.875rem;
}

.wp-element-button {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 250px;
  max-height: 75px;
  height: 100%;
  color: #fff;
  border-radius: 0;
  background-color: var(--col-assort);
}

/* ==============================
   Components
============================== */
.c-article-item {
  display: block;
  border-top: 1px solid #ddd;
}

.c-article-item:last-child {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #ddd;
}

.c-article-meta-wrap {
  display: flex;
  flex-shrink: 0;
  gap: 0.25rem;
  margin-bottom: 0.625rem;
}

.c-article-meta {
  color: var(--col-assort);
  font-size: var(--fs-14);
}

.c-article-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--col-assort);
  border-radius: 30px;
  color: var(--col-assort);
  padding: 0.125rem 0.625rem;
  line-height: 1.2;
  font-size: var(--fs-12);
  margin-left: 0.625rem;
}

.c-article-post {
  margin-top: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .c-article-post {
    letter-spacing: 0.25px;
  }
}
.c-article-item__inner {
  display: flex;
  flex-direction: column;
  padding: 0.9375rem 0.625rem;
}

.c-article__title {
  background-image: linear-gradient(90deg, #1272b6 0%, #6bb6ff 50%, #ea5498 100%);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 0.125rem;
  font-size: var(--font-size__big);
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9375rem;
  padding-top: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .c-article__title {
    font-size: var(--font-size__mid);
  }
}
.c-article__title-wrap {
  margin-inline: auto;
  max-width: var(--max-width__sml);
}

@media screen and (max-width: 768px) {
  .c-article__title-wrap {
    max-width: none;
  }
}
.c-article__block {
  margin-inline: auto;
  max-width: var(--max-width__sml);
}

/**********************

見どころ

***********************/
:root {
  --col-event: #ec6d5b;
}

.p-sight-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #6bb6ff;
  text-align: left;
}

.c-textCont {
  padding-top: 30px;
}

.p-event_otherImg,
.p-event_otherText {
  width: 47.5%;
}

.p-event_otherTitle__sub {
  margin-bottom: 40px;
}

.p-event_otherTitle img {
  margin-bottom: 60px;
}

.img-1c {
  margin-top: 50px;
}

#sight {
  margin: 0 auto;
  background-color: #ebf5e5;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5019607843) 2.5px, transparent 2.5px), radial-gradient(circle, rgba(255, 255, 255, 0.5019607843) 2.5px, transparent 2.5px);
  background-position: 0 0, 7.5px 15px;
  background-size: 15px 30px;
}

.p-event-introText {
  color: var(--col-event);
  font-size: var(--font-size__mid);
  font-weight: 700;
}

.p-event-titleImg {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.p-event_foodListCont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}

.p-event_foodList_item__title {
  color: var(--col-event);
  font-size: var(--font-size__big);
  font-weight: 700;
}

.p-event_foodList_item__link {
  vertical-align: middle;
}

.p-event_foodList_item__link::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  vertical-align: middle;
  background-image: url("../images/common/instagram-icon.svg");
  background-size: contain;
}

.p-event-introCont {
  position: relative;
}

.p-event_otherTitle img {
  max-width: 500px;
  margin: 0 auto 20px;
}

.p-event_otherTitle__sub {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: var(--font-size__big);
}

#event-sports .p-event_otherTitle__sub {
  color: #0096d9;
}

#event-kuji .p-event_otherTitle__sub {
  color: #13ae67;
}

.c-textBlock_pink {
  margin: 15px 0;
  padding: 10px;
  border: 1px solid rgb(233, 30, 121);
  background: rgba(233, 30, 121, 0.1);
  font-size: 1.1rem;
}

.c-textBlock_pink .p-sight-title,
.c-textBlock_pink .block {
  margin-bottom: 10px;
}

.c-textBlock_pink .p-sight-title,
.c-textBlock_pink .p-sight-title__sub {
  display: block;
  font-weight: bold;
}

@media screen and (min-width: 1281px) {
  .p-event_foodListCont {
    max-width: 85%;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .c-textBlock_pink {
    width: 100%;
  }
  .p-event_foodListCont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 380px) {
  .p-event_foodListCont {
    grid-template-columns: repeat(1, 1fr);
  }
}
/**********************

プロフィール

***********************/
.p-shuna-cont {
  padding-top: 40px;
}

.p-shuna-profile__ttl {
  color: var(--col-accent);
  font-size: 2.875rem;
}

@media screen and (max-width: 768px) {
  .p-shuna-profile__ttl {
    font-size: 2rem;
  }
}
.p-shuna-profile__ttl .text__s {
  display: block;
  font-size: 1rem;
}

.p-shuna-profile__ttl .text__l {
  letter-spacing: 5px;
}

.p-shuna-profile__list {
  padding: 1.45rem;
  border-radius: 1vmax;
  color: #fff;
  background: var(--col-assort);
}

.p-shuna-mv {
  margin-top: 2rem;
}

.p-shuna-mv__text {
  line-height: 1.9;
}

.p-shuna-mv__text-accent {
  color: var(--col-assort);
}

.p-shuna-mv__figure {
  margin-top: 1.5rem;
}

.p-shuna-mv__figure img {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.p-shuna-mv__accordion {
  max-width: 960px;
  margin: 1.5rem auto 0;
  border: 1px solid #d8d8d8;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.p-shuna-mv__accordion summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  color: #fff;
  background: var(--col-accent);
}

.p-shuna-mv__accordion summary::-webkit-details-marker {
  display: none;
}

.p-shuna-mv__accordion summary::before,
.p-shuna-mv__accordion summary::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1rem;
  height: 2px;
  content: "";
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.p-shuna-mv__accordion summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-shuna-mv__accordion[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-shuna-mv__accordion-body {
  padding: 1.5rem;
}

.p-shuna-mv__accordion-body .p-shuna-mv__figure {
  margin-top: 0;
}

.p-shuna-mv__motif {
  margin-top: 2rem;
}

.p-shuna-mv__motif-intro {
  font-weight: 700;
  line-height: 1.8;
}

.p-shuna-mv__motif-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.p-shuna-mv__motif-card {
  display: grid;
  grid-template-columns: minmax(180px, 16.25rem) 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid #d8e8f7;
  border-radius: 1.25rem;
  background: #f8fcff;
}

@media screen and (max-width: 768px) {
  .p-shuna-mv__motif-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}
.p-shuna-mv__motif-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 1rem;
  background: #fff;
}

.p-shuna-mv__motif-image img {
  display: block;
  width: 100%;
  max-width: 15rem;
  height: auto;
}

.p-shuna-mv__motif-content {
  min-width: 0;
}

.p-shuna-mv__motif-city {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: var(--col-accent);
  line-height: 1.25;
}

.p-shuna-mv__motif-title {
  margin-top: 0.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid #1d8dd9;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0073cf;
}

@media screen and (max-width: 768px) {
  .p-shuna-mv__motif-title {
    font-size: 1.375rem;
  }
}
.p-shuna-mv__motif-description {
  margin-top: 1.25rem;
  line-height: 1.9;
}

.p-shuna-mv__motif-reference {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  word-break: break-all;
}

.p-shuna-mv__motif-reference a {
  color: #0073cf;
  text-decoration: underline;
}

/**********************

swiper

***********************/
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow:
    0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover:
    1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
    -1rem -1rem 1.5rem #fff;
  --box-shadow-inset:
    inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark:
    0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
    -0.8rem -0.8rem 1.2rem rgba(255, 255, 255, 0.2);
}

[class*=swiper]:focus {
  outline: none;
}

.l-inner {
  padding: 0 4rem;
}

.gallery01 .swiper-button-prev::before,
.gallery01 .swiper-button-next::before {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: var(--box-shadow-dark);
}

.gallery01 .swiper-button-prev::after,
.gallery01 .swiper-button-next::after {
  border-color: #fff;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 3.4rem;
  height: 3.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 0.85rem;
  height: 0.85rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.gallery01 {
  overflow: hidden;
}

.gallery01 .swiper {
  max-width: 720px;
  margin: auto;
}

.gallery01 .swiper-main {
  overflow: visible;
}

.gallery01 .swiper-thumb {
  padding-top: 2rem;
}

.gallery01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.gallery01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.gallery01 .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}

.gallery01 .swiper-button-prev,
.gallery01 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
}

.gallery01 .swiper-button-prev {
  right: calc(100% - 3.2rem);
}

.gallery01 .swiper-button-next {
  left: calc(100% - 3.2rem);
}

.gallery01 .slide {
  display: block;
  overflow: hidden;
}

.gallery01 .slide-media {
  display: block;
  padding-top: 90%;
  border-radius: 4px;
}

.gallery01 .slide-media img {
  object-fit: contain;
}

.gallery01 .swiper-slide-active .slide-media::before,
.gallery01 .swiper-slide-active .slide-media::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.gallery01 .swiper-slide-active .slide-media::before {
  background: var(--col-accent);
  border-radius: 50%;
  bottom: 1rem;
  height: 3.25rem;
  right: 1rem;
  width: 3.25rem;
}

.gallery01 .swiper-slide-active .slide-media::after {
  bottom: 1.9375rem;
  right: 1.9375rem;
  width: 1.375rem;
  height: 1.375rem;
  background: url("../images/shuna/scale.svg") center/contain no-repeat;
}

.gallery01 .thumb-media {
  display: block;
  width: 100%;
  padding-top: 100%;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
  border: 2px solid transparent;
  appearance: none;
}

.gallery01 .thumb-media img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
  object-fit: contain;
  transform: scale(0.96);
}

.gallery01 .swiper-thumb .swiper-slide {
  opacity: 0.7;
  transition: var(--transition);
}

.gallery01 .swiper-thumb .swiper-slide.is-active {
  transition: var(--transition);
  opacity: 1;
}

.gallery01 .swiper-thumb .swiper-slide.is-active .thumb-media {
  transform: translateY(-8px);
  border-color: var(--col-assort);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery01 .swiper-thumb .swiper-slide.is-active .thumb-media img {
  transform: scale(1);
}

.lightbox .lb-image {
  filter: none;
}

.lb-data .lb-number {
  display: none !important;
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    transform: scale(1.2);
  }
  .gallery01 .thumb-media:hover {
    transform: translateY(-8px);
    border-color: var(--col-assort);
  }
  .gallery01 .thumb-media:hover img {
    transform: scale(1);
  }
}
@media only screen and (max-width: 1024px) {
  .gallery01 .swiper-button-prev {
    right: 100%;
  }
  .gallery01 .swiper-button-next {
    left: 100%;
  }
}
.p-shuna-profile__cont {
  margin-top: 2rem;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .gallery01 {
    margin-inline: -1.5625rem;
  }
  .gallery01 .l-inner {
    padding: 0;
  }
  .gallery01 .swiper {
    max-width: none;
  }
  .p-shuna-profile__cont {
    display: flex;
    flex-direction: column;
  }
  .p-shuna-profile__cont .col-1 {
    order: 2;
    margin-top: 5.314vw;
  }
  .p-shuna-profile__cont .col-2 {
    order: 1;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 10vw;
    height: 10vw;
  }
  .p-shuna-mv__accordion summary {
    padding: 1.125rem 3rem 1.125rem 1.25rem;
  }
  .p-shuna-mv__accordion-body {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .gallery01 {
    margin-inline: -0.9375rem;
  }
  .gallery01 .slide-media,
  .gallery01 .swiper-controller {
    padding-top: 50vh;
  }
}
.p-tournament-coming__title {
  margin-bottom: 0;
  font-size: var(--font-size__mid);
  border-bottom: none;
  text-align: center;
}

.p-tournament__content {
  margin-inline: auto;
  max-width: var(--max-width__sml);
}

.c-tournament-wrap {
  max-width: var(--max-width__sml);
}

.p-tournament__section {
  display: grid;
  gap: 1.5rem;
}

.p-tournament__section + .p-tournament__section {
  margin-top: 2rem;
}

.p-tournament__block {
  margin-bottom: 2rem;
}

.p-tournament__block:last-child {
  margin-bottom: 0;
}

.p-tournament__title {
  margin-bottom: 0.625rem;
}

.p-tournament__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-tournament__links li + li {
  margin-top: 1.25rem;
}

.p-tournament__links .c-linkbtn {
  width: 100%;
}

.c-news-item {
  display: block;
  padding-top: 0.625rem;
  border-top: 1px solid #ddd;
}

.gallery-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  row-gap: 20px;
}

.gallery-cont .img-wrapper.col2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: fit-content;
  align-content: space-between;
}

.gallery-cont .img-wrapper img {
  width: 100%;
}

.c-news-item:last-child {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #ddd;
}

.text-area,
.img-1c,
.img-2c .img-wrapper {
  padding-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  .text-area,
  .img-1c,
  .img-2c .img-wrapper {
    padding-top: 1.25rem;
  }
}
.c-news-item {
  display: flex;
}

.img-2c:not(:first-child) {
  padding-top: 30px;
}

.img-2c {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.img-2c .img-wrapper {
  width: 49%;
  padding-top: 0;
}

.img-wrapper img {
  max-width: 700px;
}

.gallery-cont .img-wrapper {
  width: 49%;
}
