/* :root {--width: 1920;} */
:root {--width: 2280;}
.pc{display: block;} .sp{display: none;}
@media (max-width: 768px) {:root {--width: 375;} .pc{display: none;} .sp{display: block;}}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Noto Sans JP", sans-serif; */
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
    /* font-weight: 600; */
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}
body {
    background: linear-gradient(to bottom, #fff 0%,#fff calc(970 / var(--width) * 100vw), #F6E7F9 calc(970 / var(--width) * 100vw), #F6E7F9 100%);
}
body.sub-page {
    background: none;
}
body.page-default {
    background: linear-gradient(to bottom, #fff 0%,#fff calc(970 / var(--width) * 100vw), #F6E7F9 calc(970 / var(--width) * 100vw), #F6E7F9 100%);
}
body.hidden {
    overflow: hidden;
}
img {
    width: 100%;
    height: auto;
}
.banner {
    display: flex;
    width: 100%;
    padding-top: calc(32 / var(--width) * 100vw);
}
.banner .swiper {
  width: 100%;
}
.banner .swiper-wrapper {
    transition-timing-function: linear !important;
}
.banner .swiper-wrapper {
  display: flex;
  animation: scroll 50s linear infinite;
  width: fit-content;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.banner .swiper-slide {
  display: flex;
  justify-content: start;
  align-items: start;
  width: auto;
  /* overflow: hidden; */
  padding: 0 calc(50 / var(--width) * 100vw);
  position: relative;
}
.banner .swiper-slide::after {
  position: absolute;
  content: "";
  top: 0;
  right: calc(-5 / var(--width) * 100vw);
  height: 100%;
  width: 2px;
  transform: rotate(25deg);
  background-color: #B942B8;
  font-size: clamp(12px, calc(50 / var(--width) * 100vw), 50px);
}
.banner .swiper-slide:last-child::after {
  display: none;
}
.banner .swiper-slide p ,
.banner .swiper-slide a {
    font-size: clamp(12px, calc(30 / var(--width) * 100vw), 30px);
    color: #B942B8;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
}
header {
    position: absolute;
    top: calc(150 / var(--width) * 100vw);
    left: 0;
    z-index: 110;
    width: 100%;
    height: calc(90 / var(--width) * 100vw);
    background-color: #fff;
    padding-right: calc(130 / var(--width) * 100vw);

}
header.none {
    opacity: 0;
    visibility: hidden;
}
header.move {
    position: fixed;
    top: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    border-bottom: 1px solid rgba(34, 34, 0, 0.3);
}
header.active ,
header.open {
    opacity: 1;
    visibility: visible;
    position: fixed;
    top: 0;
}
.header-inner {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
}
.header-logo {
    position: fixed;
    top: calc(30 / var(--width) * 100vw);
    left: 50%;
    transform: translateX(-50%);
    width: calc(186 / var(--width) * 100vw);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
header.active .header-logo ,
header.open .header-logo {
    opacity: 1;
    visibility: visible;
}
.header-logo a {
    display: block;
}
.header-logo img {
    display: block;
}
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    gap: calc(20 / var(--width) * 100vw);
}
.header-nav-search {
    width: calc(35 / var(--width) * 100vw);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-nav-hamburger {
    width: calc(45 / var(--width) * 100vw);
    height: calc(30 / var(--width) * 100vw);
    cursor: pointer;
    position: relative;
    z-index: 10;
}
.header-nav-hamburger img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header-nav-hamburger .hamburger-btn {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header-nav-hamburger.open .hamburger-btn {
    opacity: 0;
    visibility: hidden;
}
.header-nav-hamburger .hamburger-btn-close {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.header-nav-hamburger.open .hamburger-btn-close{
    opacity: 1;
    visibility: visible;
}
main {
    width: 100%;
}
.main-container {
    padding-top: calc(240 / var(--width) * 100vw);
    display: flex;
    justify-content: start;
    align-items: start;
    width: 100%;
}
.sidebar {
    width: calc(430 / 1920 * 100%);
}
.sidebar-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: calc(55 / var(--width) * 100vw);
    padding-left: calc(120 / var(--width) * 100vw);
}
.sidebar-nav a {
    display: block;
    color: #000;
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.sidebar-nav a:hover {
    color: #B942B8;
}
.sidebar-date {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(10 / var(--width) * 100vw);
    padding-left: calc(127 / var(--width) * 100vw);
    padding-top: calc(210 / var(--width) * 100vw);
}
.sidebar-date p {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: clamp(12px, calc(108 / var(--width) * 100vw), 108px);
    line-height: 1;
    color: #000;
}
.sidebar-date p.sidebar-date-slash {
    font-size: clamp(12px, calc(50 / var(--width) * 100vw), 50px);
    font-weight: 400;
}
.sidebar-contents {
    padding-left: calc(127 / var(--width) * 100vw);
    padding-top: calc(45 / var(--width) * 100vw);
    padding-bottom: calc(55 / var(--width) * 100vw);
    width: 100%;
}
.sidebar-contents h2 {
    font-size: clamp(10px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
    padding-bottom: calc(30 / var(--width) * 100vw);
}
.sidebar-contents-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    position: relative;
}
.sidebar-contents-inner h3 {
    font-size: clamp(12px, calc(26 / var(--width) * 100vw), 26px);
    line-height: 1.8;
    font-weight: 600;
    text-align: center;
    margin: 1em auto;
}
.sidebar-contents-img,
#recommended p:nth-of-type(1),
.recommended-img-wrapper ,
.information-img-wrapper {
    /* position: absolute; */
    /* top: calc(60 / var(--width) * 100vw); */
    /* left: calc(15 / var(--width) * 100vw); */
    /* width: calc(410 / var(--width) * 100vw); */
    width: 100%;
    height: auto;
    margin-top: calc(20 / var(--width) * 100vw);
    position: relative;
    transition: opacity 0.3s ease-in-out;
}
.information-img-wrapper:hover {
    opacity: 0.6;
}
.recommended-serif-wrapper {
    position: absolute;
    top: calc(-10 / var(--width) * 100vw);
    right: calc(-60 / var(--width) * 100vw);
    width: calc(160 / var(--width) * 100vw);
    height: auto;
}
.information-serif-wrapper {
    position: absolute;
    top: calc(-10 / var(--width) * 100vw);
    right: calc(-100 / var(--width) * 100vw);
    width: calc(160 / var(--width) * 100vw);
    height: auto;
}
.recommended-serif ,
.information-serif {
    width: 100%;
    height: auto;
}
.recommended-serif-wrapper span ,
.information-serif-wrapper span {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(25deg);
    font-size: calc(16 / var(--width) * 100vw);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    width: 90%;
    text-align: center;
}
.sidebar-contents-detail,
#recommended p:nth-of-type(1) {
    /* padding-top: calc(300 / var(--width) * 100vw); */
    /* padding-top: calc(30 / var(--width) * 100vw); */
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1.8;
    font-weight: 400;
    text-align: center;
}
.sidebar-contents-text,
#recommended p:nth-of-type(2) {
    padding-top: calc(30 / var(--width) * 100vw);
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1.8;
    letter-spacing: -0.03em;
    font-weight: 400;
    /*max-height: calc(245 / var(--width) * 100vw); */
    overflow: hidden;
    margin-bottom: calc(45 / var(--width) * 100vw);
}
.recommended-item-link {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.recommended-item-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease-in-out;
}
.recommended-item-link:hover img {
    opacity: 0.6;
}
.sidebar-store-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: calc(35 / var(--width) * 100vw);
}
.sidebar-store-inner a {
    display: block;
    width: 100%;
}
.sidebar-store-inner a img {
    display: block;
    transition: opacity 0.3s ease-in-out;
}
.sidebar-store-inner a:hover img {
    opacity: 0.6;
}
.sidebar-recommend-slider {
    padding-top: calc(30 / var(--width) * 100vw);
    width: 100%;
}
.sidebar-recommend-slider a {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}
.sidebar-recommend-slider a:hover {
    opacity: 0.6;
}
.sidebar-recommend-slider img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}
.sidebar-recommend-slider-date {
    font-size: clamp(9.5px, calc(16 / var(--width) * 100vw), 16px);
    padding-top: calc(35 / var(--width) * 100vw);
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #000;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    margin: 0 auto;
}
.sidebar-recommend-slider-text {
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    padding-top: calc(12 / var(--width) * 100vw);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000;
    text-align: center;
    margin: 0 auto;
}
.sidebar-recommend-slider-title {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    padding-top: calc(10 / var(--width) * 100vw);
    line-height: 1.5;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0 auto;
}
.sidebar-recommend-slider-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: calc(30 / var(--width) * 100vw);
}
.related-news-inner .sidebar-recommend-slider-button {
    display: none;
}
.swiper04-counter ,
.swiper06-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(2 / var(--width) * 100vw);
}
#swiper04-counter-current,
#swiper04-counter-total ,
#swiper06-counter-current,
#swiper06-counter-total {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    font-weight: 800;
    color: #000;
    font-family: "Montserrat", sans-serif;
}
.swiper04-counter-slash ,
.swiper06-counter-slash {
    font-size: clamp(9px, calc(14 / var(--width) * 100vw), 14px);
    line-height: 1;
    font-weight: 800;
    color: #000;
    font-family: "Montserrat", sans-serif;
}
.swiper04-button-prev ,
.swiper04-button-next ,
.swiper06-button-prev ,
.swiper06-button-next {
    width: calc(35 / var(--width) * 100vw);
    cursor: pointer;
}
/* Hover background for SVG arrows */
.swiper04-button-prev img,
.swiper04-button-next img {
    display: block;
    border-radius: 50%;
    background-color: #fff;
    transition: background-color .2s ease;
}
.swiper04-button-prev:hover img,
.swiper04-button-next:hover img {
    background-color: #a1a1a1;
}
.sidebar-information-inner h3 {
    font-size: clamp(12px, calc(70 / var(--width) * 100vw), 70px);
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-align: center;
    margin: 0 auto;
}
.sidebar-information-inner h4 {
    font-size: clamp(12px, calc(26 / var(--width) * 100vw), 26px);
    padding-top: calc(10 / var(--width) * 100vw);
    line-height: 1.8;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 0 auto;
    /*width: calc(200 / var(--width) * 100vw);*/
    width: 100%;
}
.sidebar-information-inner-img,
.information-img-wrapper {
    position: relative;
    padding-top: calc(30 / var(--width) * 100vw);
}
.sidebar-information-inner-img-serif {
    position: absolute;
    top: 0;
    right: calc(-110 / var(--width) * 100vw);
    width: calc(260 / var(--width) * 100vw);
    height: auto;
}
.sidebar-information-inner-text,
#information p:nth-of-type(1) {
    padding-top: calc(30 / var(--width) * 100vw);
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1.8;
    letter-spacing: -0.03em;
    font-weight: 400;
    /*max-height: calc(245 / var(--width) * 100vw); */
    overflow: hidden;
    margin-bottom: calc(45 / var(--width) * 100vw);
}
.sidebar-sns {
    padding-top: 0;
}
.sidebar-sns h2 {
    background-color: #000;
    width: clamp(90px, calc(165 / var(--width) * 100vw), 165px);
    height: clamp(20px, calc(50 / var(--width) * 100vw), 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(11.5px, calc(23 / var(--width) * 100vw), 23px);
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    border-radius: calc(50 / var(--width) * 100vw);
}
.sidebar-sns-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(15 / var(--width) * 100vw);
    padding-top: calc(30 / var(--width) * 100vw);
}
.sidebar-sns-inner a {
    display: block;
    width: calc(80 / var(--width) * 100vw);
    height: auto;
    background-color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}
.sidebar-sns-inner a:hover {
    background-color: #a1a1a1;
}
.sidebar-sns-inner a img {
    display: block;
}

/* main */
.main-inner {
    width: calc(1490 / 1920 * 100%);
}
.page-about .main-inner ,
.page-contact .main-inner ,
.page-notice .main-inner {
    width: 100%;
}
.fv {
    padding-right: calc(124 / var(--width) * 100vw);
    width: 100%;
}
.fv-inner {
    position: relative;
    padding-top: calc(170 / var(--width) * 100vw);
}
.fv-title {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    margin-right: auto;
}
.fv-title img {
    width: calc(611 / var(--width) * 100vw);
    height: auto;
}
.fv-title p {
    padding-top: calc(50 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(23 / var(--width) * 100vw), 23px);
    line-height: 1;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}
.fv-title-text {
    position: absolute;
    top: 0;
    left: calc(440 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(23 / var(--width) * 100vw), 23px);
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    background-color: #B942B8;
    color: #fff;
    writing-mode: vertical-rl;
    padding: calc(20 / var(--width) * 100vw) calc(6 / var(--width) * 100vw);
}
.fv-slider-title {
    position: absolute;
    top: 0;
    left: calc(270 / var(--width) * 100vw);
    width: calc(120 / var(--width) * 100vw);
    overflow: hidden;
    z-index: 2;
}
.fv-slider-title-item {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row-reverse;
    gap: calc(20 / var(--width) * 100vw);
    height: calc(674 / var(--width) * 100vw);
}
.fv-slider-title-item p {
    font-size: clamp(12px, calc(35 / var(--width) * 100vw), 35px);
    line-height: 1.8;
    /* font-family: "Montserrat", sans-serif; */
    font-weight: 600;
    letter-spacing: 0.005em;
    color: #000;
    writing-mode: vertical-rl;
	box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
    display: inline;
}
.fv-slider-title .swiper-slide {
    align-items: end;
}
.char {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: calc(50 / var(--width) * 100vw);
    vertical-align: middle;
    text-align: center;
    line-height: 1.4;
}
.char::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50 / var(--width) * 100vw);
    height: calc(50 / var(--width) * 100vw);
    z-index: -1;
}
.char-digit {
    writing-mode: horizontal-tb ;
    line-height: 1;
    padding-left: 0;
}
.char-quote-start ,
.char-quote-end {
    writing-mode: horizontal-tb ;
    line-height: 1;
}
.char-quote-start {
    margin-top: 2%;
    margin-bottom: -2%;
    text-align: left;
}
.char-quote-end {
    margin-top: 2%;
    margin-bottom: -2%;
    vertical-align: top;
    text-align: right;
}
.char-none {
    display: none;
}
.fv-slider-img {
    margin-left: calc(110 / var(--width) * 100vw);
    margin-top: calc(115 / var(--width) * 100vw);
    border: calc(14 / var(--width) * 100vw) solid #fff;
}
.fv-slider-item {
    /* padding: calc(14 / var(--width) * 100vw); */
    background-color: #fff;
    width: 100%;
}
.fv-slider-item a {
    display: block;
    width: 100%;
    height: calc(850 / var(--width) * 100vw);
}
.fv-slider-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fv-slider-pagination {
    bottom: calc(-60 / var(--width) * 100vw) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: calc(55 / var(--width) * 100vw) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(50 / var(--width) * 100vw);
    width: auto !important;
    height: calc(28 / var(--width) * 100vw);
}
.fv-slider-pagination .swiper-pagination-bullet {
    width: calc(15 / var(--width) * 100vw);
    height: calc(15 / var(--width) * 100vw);
    background-color: #000;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease-in-out;
}
.fv-slider-pagination .swiper-pagination-bullet-active {
    width: calc(28 / var(--width) * 100vw);
    height: calc(28 / var(--width) * 100vw);
}
#fv-bottom-animation {
    position: relative;
    width: 100%;
    height: calc(850 / var(--width) * 100vw);
    overflow: hidden;
}
.fv-bottom-animation-img01 {
    position: absolute;
    width: calc(345 / var(--width) * 100vw);
    height: auto;
    z-index: 2;
}
.fv-bottom-animation-img02 {
    position: absolute;
    width: calc(337 / var(--width) * 100vw);
    height: auto;
    z-index: 2;
}
.fv-bottom-animation-img03 {
    position: absolute;
    width: calc(345 / var(--width) * 100vw);
    height: auto;
    z-index: 2;
}
.fv-bottom-animation-img04 {
    position: absolute;
    width: calc(345 / var(--width) * 100vw);
    height: auto;
    z-index: 2;
}
.fv-bottom-animation-img05 {
    position: absolute;
    width: calc(622 / var(--width) * 100vw);
    height: auto;
    z-index: 1;
}
#fv-bottom-animation img {
    filter: drop-shadow(5px 5px 10px #B4B4B4);
}
.tags {
    margin-top: calc(140 / var(--width) * 100vw);
    padding-left: calc(110 / var(--width) * 100vw);
    padding-right: calc(130 / var(--width) * 100vw);
    height: calc(60 / var(--width) * 100vw);
}
.tags-inner {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: calc(0 / var(--width) * 100vw) calc(45 / var(--width) * 100vw);
    background-color: #fff;
    border: 2px solid #000;
    border-radius: calc(50 / var(--width) * 100vw);
}
.tags-title {
    display: flex;
    padding-right: calc(26 / var(--width) * 100vw);
    border-right: 2px solid #000;
}
.tags-title h2 {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    color: #B942B8;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.tags-links {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: calc(30 / var(--width) * 100vw);
    padding-left: calc(26 / var(--width) * 100vw);
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: 100%;
}
.tags-links .swiper-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    transition-timing-function: linear;
}
.tags-links .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}
.tags-links a {
    display: block;
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    transition: color 0.3s ease-in-out;
}
.tags-links a:hover {
    color: #B942B8;
}
.category {
    padding-left: calc(110 / var(--width) * 100vw);
    padding-right: calc(130 / var(--width) * 100vw);
    padding-top: calc(100 / var(--width) * 100vw);
}
.category-wave img {
    display: block;
}
.category-inner {
    padding-top: calc(50 / var(--width) * 100vw);
}
.category-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: calc(70 / var(--width) * 100vw);
    padding-right: calc(70 / var(--width) * 100vw);
}
.category-links a {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: calc(26 / var(--width) * 100vw);
    text-decoration: none;
}
.category-links a img,
.category-links a svg {
    display: block;
    width: calc(130 / var(--width) * 100vw);
    height: auto;
}
.category-links a svg rect ,
.category-links a svg circle {
    transition: fill 0.3s ease-in-out;
}
.category-links a:hover svg rect ,
.category-links a:hover svg circle {
    fill: #a1a1a1;
}
.category-links a p {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.news {
    padding-left: calc(110 / var(--width) * 100vw);
    padding-right: calc(130 / var(--width) * 100vw);
    padding-top: calc(100 / var(--width) * 100vw);
}
.news-title {
    padding-bottom: calc(50 / var(--width) * 100vw);
}
.news-title h2 {
    font-size: clamp(12px, calc(70 / var(--width) * 100vw), 70px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    margin: 0 auto;
    color: #000;
    letter-spacing: 0.01em;
}
.news-links-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    /* max-height: calc(1250 / var(--width) * 100vw); */
    overflow: hidden;
}
.news-links-inner.active {
    max-height: none;
}
.news-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: calc(30 / var(--width) * 100vw);
    padding-bottom: calc(30 / var(--width) * 100vw);
    width: 100%;
}
.news-links a {overflow: hidden;position: relative;}
.news-links a:nth-of-type(1) { grid-area: 1 / 1 / 3 / 3; border-top-left-radius: calc(110 / var(--width) * 100vw);}
.news-links a:nth-of-type(2) { grid-area: 1 / 3 / 2 / 4; }
.news-links a:nth-of-type(3) { grid-area: 1 / 4 / 2 / 5; border-top-right-radius: calc(110 / var(--width) * 100vw);}
.news-links a:nth-of-type(4) { grid-area: 2 / 3 / 3 / 4; }
.news-links a:nth-of-type(5) { grid-area: 2 / 4 / 3 / 5; border-bottom-right-radius: calc(110 / var(--width) * 100vw);}
.news-links a:nth-of-type(6) { grid-area: 3 / 1 / 4 / 2; border-top-left-radius: calc(110 / var(--width) * 100vw);}
.news-links a:nth-of-type(7) { grid-area: 3 / 2 / 4 / 3; }
.news-links a:nth-of-type(8) { grid-area: 4 / 1 / 5 / 2; border-bottom-left-radius: calc(110 / var(--width) * 100vw);}
.news-links a:nth-of-type(9) { grid-area: 4 / 2 / 5 / 3; }
.news-links a:nth-of-type(10) { grid-area: 3 / 3 / 5 / 5; border-top-right-radius: calc(110 / var(--width) * 100vw);}
.news-links a img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}
.news-links-text {
    position: absolute;
    bottom: calc(20 / var(--width) * 100vw);
    width: 90%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: calc(10 / var(--width) * 100vw);
    padding-top: calc(16 / var(--width) * 100vw);
    padding-bottom: calc(16 / var(--width) * 100vw);
    padding-right: calc(60 / var(--width) * 100vw);
    padding-left: calc(60 / var(--width) * 100vw);
    /* display: none; */
    /* opacity: 1;
    visibility: visible; */
}
.news-links a:nth-of-type(1) .news-links-text ,
.news-links a:nth-of-type(10) .news-links-text {
    gap: calc(20 / var(--width) * 100vw);
    padding-top: calc(30 / var(--width) * 100vw);
    padding-bottom: calc(30 / var(--width) * 100vw);
}
.news-links a:hover .news-links-text{
    opacity: 1;
    visibility: visible;
}
.news-links a:nth-of-type(1) .news-links-text { right: 0; align-items: flex-end; border-top-left-radius: calc(100 / var(--width) * 100vw); border-bottom-left-radius: calc(100 / var(--width) * 100vw); padding-right: calc(20 / var(--width) * 100vw);}
.news-links a:nth-of-type(2) .news-links-text { right: 0; align-items: flex-end; border-top-left-radius: calc(100 / var(--width) * 100vw); border-bottom-left-radius: calc(100 / var(--width) * 100vw); padding-right: calc(20 / var(--width) * 100vw); padding-left: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(3) .news-links-text { left: 0; align-items: flex-start; border-top-right-radius: calc(100 / var(--width) * 100vw); border-bottom-right-radius: calc(100 / var(--width) * 100vw); padding-left: calc(20 / var(--width) * 100vw); padding-right: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(4) .news-links-text { right: 0; align-items: flex-end; border-top-left-radius: calc(100 / var(--width) * 100vw); border-bottom-left-radius: calc(100 / var(--width) * 100vw); padding-right: calc(20 / var(--width) * 100vw); padding-left: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(5) .news-links-text { left: 0; align-items: flex-start; border-top-right-radius: calc(100 / var(--width) * 100vw); border-bottom-right-radius: calc(100 / var(--width) * 100vw); padding-left: calc(20 / var(--width) * 100vw); padding-right: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(6) .news-links-text { right: 0; align-items: flex-end; border-top-left-radius: calc(100 / var(--width) * 100vw); border-bottom-left-radius: calc(100 / var(--width) * 100vw); padding-right: calc(20 / var(--width) * 100vw); padding-left: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(7) .news-links-text { left: 0; align-items: flex-start; border-top-right-radius: calc(100 / var(--width) * 100vw); border-bottom-right-radius: calc(100 / var(--width) * 100vw); padding-left: calc(20 / var(--width) * 100vw); padding-right: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(8) .news-links-text { right: 0; align-items: flex-end; border-top-left-radius: calc(100 / var(--width) * 100vw); border-bottom-left-radius: calc(100 / var(--width) * 100vw); padding-right: calc(20 / var(--width) * 100vw); padding-left: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(9) .news-links-text { left: 0; align-items: flex-start; border-top-right-radius: calc(100 / var(--width) * 100vw); border-bottom-right-radius: calc(100 / var(--width) * 100vw); padding-left: calc(20 / var(--width) * 100vw); padding-right: calc(40 / var(--width) * 100vw);}
.news-links a:nth-of-type(10) .news-links-text { left: 0; align-items: flex-start; border-top-right-radius: calc(100 / var(--width) * 100vw); border-bottom-right-radius: calc(100 / var(--width) * 100vw); padding-left: calc(20 / var(--width) * 100vw);}
.news-links-text p:nth-of-type(1) {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
}
.news-links a:nth-of-type(1) .news-links-text p:nth-of-type(1) ,
.news-links a:nth-of-type(10) .news-links-text p:nth-of-type(1) {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
}
.news-links-text p:nth-of-type(2) {
    font-size: clamp(9.5px, calc(16 / var(--width) * 100vw), 16px);
    line-height: 1.4;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    font-family: "Montserrat", sans-serif;
}
.news-links a:nth-of-type(1) .news-links-text p:nth-of-type(2) ,
.news-links a:nth-of-type(10) .news-links-text p:nth-of-type(2) {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
}

.news-links a:nth-of-type(1) .news-links-text p { text-align: right; }
.news-links a:nth-of-type(2) .news-links-text p { text-align: right; }
.news-links a:nth-of-type(4) .news-links-text p { text-align: right; }
.news-links a:nth-of-type(6) .news-links-text p { text-align: right; }
.news-links a:nth-of-type(8) .news-links-text p { text-align: right; }


.news-links a:nth-of-type(1) .news-links-text p:first-of-type { /*height: calc(64 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(10) .news-links-text p:first-of-type { /*height: calc(64 / var(--width) * 100vw);*/ overflow: hidden; }

.news-links a:nth-of-type(2) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(3) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(4) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(5) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(6) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(7) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(8) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }
.news-links a:nth-of-type(9) .news-links-text p:first-of-type { /*height: calc(46 / var(--width) * 100vw);*/ overflow: hidden; }

.news-bottom {
    padding-left: calc(110 / var(--width) * 100vw);
    padding-right: calc(130 / var(--width) * 100vw);
    padding-top: calc(20 / var(--width) * 100vw);
    display: flex;
    justify-content: end;
    align-items: center;
}
.news-bottom-inner {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: calc(10 / var(--width) * 100vw);
    cursor: pointer;
}
.news-bottom-inner p {
    font-size: clamp(12px, calc(27 / var(--width) * 100vw), 27px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #000;
}
.news-bottom-inner img {
    display: block;
    width: calc(35 / var(--width) * 100vw);
    height: auto;
}
.ranking {
    width: calc(1670 / var(--width) * 100vw);
    margin: 0 auto;
    padding-top: calc(200 / var(--width) * 100vw);
}
.ranking-inner {
    width: 100%;
}
.ranking-title {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    background: center center / contain no-repeat url(../images/wave01.webp);
}
.ranking-title h2 {
    font-size: clamp(12px, calc(70 / var(--width) * 100vw), 70px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #000;
    background-color: #F6E7F9;
    padding-right: calc(30 / var(--width) * 100vw);
}
.ranking-contents {
    padding-top: calc(60 / var(--width) * 100vw);
}
.ranking-contents-inner {
    display: flex;
    justify-content: start;
    align-items: center;
}
.ranking-contents .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.ranking-contents .swiper-slide a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
}
.ranking-contents .swiper-slide a:hover {
    opacity: 0.6;
}
.ranking-contents .swiper-slide img {
    width: 94%;
    height: calc(260 / var(--width) * 100vw);
    object-fit: cover;
    object-position: center;
    border: calc(16 / var(--width) * 100vw) solid #fff;
    box-shadow: calc(4 / var(--width) * 100vw) calc(4 / var(--width) * 100vw) calc(8 / var(--width) * 100vw) 0 rgba(0, 0, 0, 0.1);
}
.ranking-contents .ranking02-img{
    margin-top: calc(70 / var(--width) * 100vw);
    display: block;
}
.ranking-contents-inner-number {
    font-size: clamp(12px, calc(70 / var(--width) * 100vw), 70px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #000;
    padding-top: calc(20 / var(--width) * 100vw);
}
.ranking-contents-inner-title {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
    padding-top: calc(5 / var(--width) * 100vw);
    color: #000;
    width: 78%;
}
.swiper05-scrollbar-wrapper,
.swiper06-scrollbar-wrapper {
    overflow: hidden;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    margin: calc(86 / var(--width) * 100vw) auto 0;
}
.swiper06-scrollbar-wrapper {
    width: 400px;
}
.swiper05-scrollbar,
.swiper06-scrollbar {
  height: calc(15 / var(--width) * 100vw);
  width: 400px;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: calc(100 / var(--width) * 100vw);
  position: relative; /* 必須 */
}
.swiper06-scrollbar {
    background: #DCDCDC;
    width: 400px;
}
.swiper05-scrollbar .swiper-scrollbar-drag,
.swiper06-scrollbar .swiper-scrollbar-drag {
  background: #B942B8;
  border-radius: 50%;
  cursor: pointer;
  /* width: calc(35 / var(--width) * 100vw) !important; */
  height: 35px;
}
.archive-ranking {
    padding-top: calc(100 / var(--width) * 100vw);
    padding-bottom: calc(150 / var(--width) * 100vw);
}
.archive-ranking .swiper05-scrollbar {
    background: #DCDCDC;
}
footer {
    width: 100%;
    padding-top: calc(150 / var(--width) * 100vw);
    padding-bottom: calc(200 / var(--width) * 100vw);
}
.footer-inner {
    width: calc(1670 / var(--width) * 100vw);
    margin: 0 auto;
    padding-top: calc(100 / var(--width) * 100vw);
    border-top: 1px solid #000;
}
.footer-inner-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(30 / var(--width) * 100vw);
}
.footer-inner-sns a {
    display: block;
    width: calc(80 / var(--width) * 100vw);
    height: auto;
    background-color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
}
.footer-inner-sns a:hover {
    background-color: #a1a1a1;
}
.footer-inner-sns a img {
    display: block;
}
.footer-inner-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(100 / var(--width) * 100vw);
    padding-top: calc(75 / var(--width) * 100vw);
}
.footer-inner-links a {
    display: block;
    font-size: clamp(12px, calc(27 / var(--width) * 100vw), 27px);
    text-decoration: none;
    color: #000;
    font-weight: 800;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    transition: color 0.3s ease-in-out;
}
.footer-inner-links a:hover {
    color: #B942B8;
}
.footer-inner-media {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: calc(100 / var(--width) * 100vw);
}
.footer-inner-media-wave {
    background: center center / contain no-repeat url(../images/wave01.webp);
    width: 100%;
    height: calc(8 / var(--width) * 100vw);
}
.footer-inner-media h2 {
    font-size: clamp(12px, calc(40 / var(--width) * 100vw), 40px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #000;
    letter-spacing: 0.05em;
    padding-top: calc(100 / var(--width) * 100vw);
    text-align: center;
}
.footer-inner-media-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(35 / var(--width) * 100vw);
    width: calc(820 / var(--width) * 100vw);
    margin: 0 auto;
    padding-top: calc(50 / var(--width) * 100vw);
}
.footer-inner-media-inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(178 / var(--width) * 100vw);
    transition: opacity 0.3s ease-in-out;
}
.footer-inner-media-inner a:hover {
    opacity: 0.6;
}
.footer-inner-media-inner a img {
    display: block;
    width: 100%;
}
.footer-inner-pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: calc(100 / var(--width) * 100vw);
}
.footer-inner-pagetop a {
    display: block;
    width: calc(24 / var(--width) * 100vw);
    cursor: pointer;
    color: #1A1311;
    transition: color 0.3s ease-in-out;
}
.footer-inner-pagetop a:hover {
    color: #B942B8;
}
.footer-inner-pagetop a svg {
    display: block;
    width: 100%;
    height: auto;
}
.footer-inner-links02 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(50 / var(--width) * 100vw);
    padding-top: calc(50 / var(--width) * 100vw);
}
.footer-inner-links02 a {
    display: block;
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}
.footer-inner-copyright {
    padding-top: calc(26 / var(--width) * 100vw);
}
.footer-inner-copyright p {
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}
.pagetop {
    position: fixed;
    bottom: calc(40 / var(--width) * 100vw);
    right: calc(75 / var(--width) * 100vw);
    width: calc(45 / var(--width) * 100vw);
    height: auto;
    z-index: 99;
    cursor: pointer;
}
.pagetop img {
    display: block;
}
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: calc(90 / var(--width) * 100vw);
    padding-bottom: calc(200 / var(--width) * 100vw);
    background: #F6E7F9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 100;
    overflow-y: scroll;
    height: 100vh;
}
.menu.open {
    opacity: 1;
    visibility: visible;
    z-index: 101;
}
.menu.first {
    z-index: 102;
}
.menu .category {
    width: calc(1230 / var(--width) * 100vw);
    margin: 0 auto;
    padding: 0;
}
.menu .category-inner {
    padding-top: calc(200 / var(--width) * 100vw);
}
.menu .category-links {
    padding: 0;
}
.menu .category-links a img ,
.menu .category-links a svg {
    width: calc(150 / var(--width) * 100vw);
    height: auto;
}
.menu .category-links a svg rect ,
.menu .category-links a svg circle {
    transition: fill 0.3s ease-in-out;
}
.menu .category-links a:hover svg rect ,
.menu .category-links a:hover svg circle {
    fill: #a1a1a1;
}
.menu .category-links a p {
    font-size: clamp(10px, calc(22 / var(--width) * 100vw), 22px);
}
.menu-footer {
    padding-top: calc(150 / var(--width) * 100vw);
}
.search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: calc(90 / var(--width) * 100vw);
    padding-bottom: calc(200 / var(--width) * 100vw);
    background: #F6E7F9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 100;
    height: 100vh;
}
.search.open {
    opacity: 1;
    visibility: visible;
    z-index: 101;
}
.search.first {
    z-index: 102;
}
.search-inner {
    width: calc(1670 / var(--width) * 100vw);
    margin: 0 auto;
    padding-top: calc(120 / var(--width) * 100vw);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.search-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-title h2 {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #000;
    letter-spacing: 0.05em;
}
.search-form {
    width: 100%;
    padding-top: calc(30 / var(--width) * 100vw);
}
.search-form label {
    position: relative;
}
.search-form input {
    width: 100%;
    height: calc(70 / var(--width) * 100vw);
    border: none;
    outline: none;
    border-radius: calc(90 / var(--width) * 100vw);
    padding-left: calc(30 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1;
    background-color: #fff;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #000;
}
.search-form input::placeholder {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    color: #B942B8;
}
.search-form-btn {
    position: absolute;
    top: 50%;
    right: calc(30 / var(--width) * 100vw);
    transform: translateY(-50%);
    width: calc(35 / var(--width) * 100vw);
    height: auto;
    cursor: pointer;
    background: none;
    outline: none;
    border: none;
}
.search-form-btn img {
    display: block;
    width: 100%;
    height: auto;
}
.sub-page header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    border-bottom: 1px solid rgba(34, 34, 0, 0.3);
}
.sub-page .header-logo {
    opacity: 1;
    visibility: visible;
}


.sub-fv {
    padding-left: calc(110 / var(--width) * 100vw);
    padding-right: calc(130 / var(--width) * 100vw);
    padding-bottom: calc(100 / var(--width) * 100vw);
    overflow: hidden;
}
.sub-fv img {
    display: block;
}
.page-archive .sub-fv img {
    height: calc(1000 / var(--width) * 100vw);
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* news */
.news-contents,
.archive-news-contents {
    padding-left: calc(110 / var(--width) * 100vw);
    padding-right: calc(130 / var(--width) * 100vw);
    padding-bottom: calc(100 / var(--width) * 100vw);
}
.news-contents-inner,
.archive-news-contents-inner {
    padding-left: calc(87 / var(--width) * 100vw);
    padding-right: calc(87 / var(--width) * 100vw);
}
.news-contents-inner-category p {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
}
.news-contents-title {
    padding-top: calc(30 / var(--width) * 100vw);
    font-size: clamp(12px, calc(55 / var(--width) * 100vw), 55px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
}
.news-contents-inner-date {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: calc(10 / var(--width) * 100vw);
    padding-top: calc(90 / var(--width) * 100vw);
}
.news-contents-inner-date p {
    font-size: clamp(9.5px, calc(16 / var(--width) * 100vw), 16px);
    line-height: 1;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    font-family: "Montserrat", sans-serif;
}
.news-contents-inner-text {
    padding-top: calc(150 / var(--width) * 100vw);
}
.news-contents-inner-text p {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 2;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.05em;
}
.news-contents-inner-tags,
.archive-news-contents-inner-tags {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: calc(15 / var(--width) * 100vw);
    padding-top: calc(90 / var(--width) * 100vw);
}
.news-contents-inner-tags a,
.archive-news-contents-inner-tags a {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1;
    padding: calc(11 / var(--width) * 100vw) calc(22 / var(--width) * 100vw);
    background-color: #fff;
    border-radius: calc(50 / var(--width) * 100vw);
    border: 2px solid #000;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}
.news-contents-inner-tags a:hover,
.archive-news-contents-inner-tags a:hover {
    background-color: #a1a1a1;
}

.archive-news-contents-inner-tags  {
    flex-wrap: wrap;
    padding-top: 0;
}
.news-contents-inner-box {
    margin-top: calc(150 / var(--width) * 100vw);
    padding-top: calc(150 / var(--width) * 100vw);
    border-top: 2px solid #000;
}
.news-contents-inner-box h2 {
    font-size: clamp(14px, calc(32 / var(--width) * 100vw), 32px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.005em;
    padding-top: calc(35 / var(--width) * 100vw);
    padding-bottom: calc(70 / var(--width) * 100vw);
}
.news-contents-inner-box h3 {
    background-color: #DCDCDC;
    width: 100%;
    padding: calc(20 / var(--width) * 100vw) calc(50 / var(--width) * 100vw);
    border-radius: calc(200 / var(--width) * 100vw);
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.002em;
    margin-top: calc(35 / var(--width) * 100vw);
    margin-bottom: calc(75 / var(--width) * 100vw);
}
.news-contents-inner-box h4 {
    position: relative;
    padding-left: calc(50 / var(--width) * 100vw);
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.002em;
    margin-top: calc(35 / var(--width) * 100vw);
    margin-bottom: calc(65 / var(--width) * 100vw);
}
.news-contents-inner-box h4::before {
    position: absolute;
    content: "";
    width: calc(24 / var(--width) * 100vw);
    height: calc(100% - 10 / var(--width) * 100vw);
    background-color: #DCDCDC;
    border-radius: calc(200 / var(--width) * 100vw);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.news-contents-inner-box h4.one::before {
    height: calc(24 / var(--width) * 100vw);
    border-radius: 50%;
}
.news-contents-inner-box h5 {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.002em;
    margin-top: calc(35 / var(--width) * 100vw);
    margin-bottom: calc(45 / var(--width) * 100vw);
}
.news-contents-inner-box > p {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 2;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.01em;
    padding-bottom: calc(50 / var(--width) * 100vw);
}
.news-contents-inner-box-img {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: calc(35 / var(--width) * 100vw);
    padding-bottom: calc(70 / var(--width) * 100vw);
}
.news-contents-inner-box-img img {
    width: 100%;
    height: auto;
}
.news-contents-inner-box-img > p {
    padding-left: calc(30 / var(--width) * 100vw);
    padding-right: calc(30 / var(--width) * 100vw);
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1.6;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.01em;
}
.news-contents-inner-box-hr {
    width: 100%;
    height: calc(2 / var(--width) * 100vw);
    background-color: #000;
    border: none;
    margin-top: calc(70 / var(--width) * 100vw);
    margin-bottom: calc(140 / var(--width) * 100vw);
}
.news-author {
    padding-top: calc(50 / var(--width) * 100vw);
    padding-left: calc(197 / var(--width) * 100vw);
    padding-right: calc(217 / var(--width) * 100vw);
}
.news-author-inner {
    display: flex;
    justify-content: start;
}
.news-author-inner-img {
    width: calc(286 / var(--width) * 100vw);
    aspect-ratio: 1 / 1;
    height: calc(286 / var(--width) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(40 / var(--width) * 100vw);
    border: calc(1 / var(--width) * 100vw) solid #000;
    border-radius: calc(60 / var(--width) * 100vw);
}
.news-author-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.news-author-inner-text-inner-box .news-author-inner-img {
    display: none;
}
.news-author-inner-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-left: calc(50 / var(--width) * 100vw);
    padding-left: calc(50 / var(--width) * 100vw);
    border-left: 2px solid #000;
}
.news-author-inner-text-title {
    font-size: clamp(9px, calc(14 / var(--width) * 100vw), 14px);
    line-height: 1;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    background-color: #000;
    padding: calc(11 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
    border-radius: calc(200 / var(--width) * 100vw);
}
.news-author-inner-text-inner {
    padding-top: calc(40 / var(--width) * 100vw);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}
.news-author-inner-text-inner-title {
    font-size: clamp(9.5px, calc(16 / var(--width) * 100vw), 16px);
    line-height: 1.6;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.05em;
}
.news-author-inner-text-inner-text {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.6;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.05em;
    padding-top: calc(4 / var(--width) * 100vw);
    padding-bottom: calc(40 / var(--width) * 100vw);
}
.news-author-inner-text-text {
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1.6;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.05em;
    width: calc(310 / var(--width) * 100vw);
    /* height: calc(90 / var(--width) * 100vw); */
    overflow: hidden;
}
.related-news {
    padding-top: calc(200 / var(--width) * 100vw);
    padding-left: calc(300 / var(--width) * 100vw);
    padding-right: calc(300 / var(--width) * 100vw);
    padding-bottom: calc(150 / var(--width) * 100vw);
}
.related-news-title {
    width: calc(215 / var(--width) * 100vw);
    height: calc(60 / var(--width) * 100vw);
    background-color: #fff;
    border-radius: calc(200 / var(--width) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 2px solid #000;
    box-shadow: 0 calc(8 / var(--width) * 100vw) 0 0 #000;
}
.related-news-title h2 {
    font-size: clamp(12px, calc(26 / var(--width) * 100vw), 26px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
}
.related-news-hr {
    margin-top: calc(50 / var(--width) * 100vw);
    margin-bottom: calc(50 / var(--width) * 100vw);
    background: center center / contain repeat-x url(../images/wave01.webp);
    width: 100%;
    height: calc(8 / var(--width) * 100vw);
    border: none;
}
.related-news-contents {
    display: flex;
    justify-content: center;
    gap: calc(20 / var(--width) * 100vw);
}
.related-news-contents .swiper-wrapper {
    display: flex;
    justify-content: start;
    /* gap: calc(20 / var(--width) * 100vw); */
}
.related-news-contents .swiper-wrapper .swiper-slide {
    width: calc(305 / var(--width) * 100vw);
    /* margin: 0 calc(10 / var(--width) * 100vw); */
}
.swiper-slide {
    width: calc(300 / var(--width) * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}
.related-news-contents a {
    width: 100%;
    text-decoration: none;
}
.related-news-contents-img {
    width: 100%;
    /* height: calc(260 / var(--width) * 100vw); */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border: calc(16 / var(--width) * 100vw) solid #fff;
    box-shadow: calc(4 / var(--width) * 100vw) calc(4 / var(--width) * 100vw) calc(8 / var(--width) * 100vw) 0 rgba(0, 0, 0, 0.1);
    margin-bottom: calc(20 / var(--width) * 100vw);
}
.related-news-contents-date {
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}
.related-news-contents-category {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
    padding-top: calc(10 / var(--width) * 100vw);
}
.related-news-contents-title {
    font-size: clamp(12px, calc(28 / var(--width) * 100vw), 28px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
    padding-top: calc(10 / var(--width) * 100vw);
}

.sub-page .ranking-title h2 {
    background-color: #fff;
}
.sub-page footer {
    background-color: #F6E7F9;
}

/* archive */
.sub-title {
    padding-left: calc(300 / var(--width) * 100vw);
    padding-right: calc(300 / var(--width) * 100vw);
    padding-bottom: calc(90 / var(--width) * 100vw);
}
.sub-title h1 {
    font-size: clamp(12px, calc(50 / var(--width) * 100vw), 50px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.archive-news-contents-inner-title {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    gap: calc(10 / var(--width) * 100vw);
    padding-top: calc(200 / var(--width) * 100vw);
    padding-bottom: calc(73 / var(--width) * 100vw);
    border-bottom: 2px solid #000;
}
.archive-news-contents-inner-title h2 {
    font-size: clamp(12px, calc(26 / var(--width) * 100vw), 26px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    text-align: center;
}
.archive-news-contents-inner-title p {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}
.archive-news-contents-inner-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0 calc(30 / var(--width) * 100vw);
    margin-top: calc(150 / var(--width) * 100vw);
    /* max-height: calc(3380 / var(--width) * 100vw); */
    overflow: hidden;
}
.archive-news-contents-inner-list.active {
    max-height: none;
}
.archive-news-contents-inner-list-item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: calc(20 / var(--width) * 100vw);
    padding-bottom: calc(30 / var(--width) * 100vw);
}
.archive-news-contents-inner-list-item-new {
    width: calc(165 / var(--width) * 100vw);
    height: auto;
    position: absolute;
    top: calc(-14 / var(--width) * 100vw);
    right: 0;
    z-index: 2;
}
.archive-news-contents-inner-list-item-img {
    /* width: calc(513 / var(--width) * 100vw);
    height: calc(513 / var(--width) * 100vw); */
    object-fit: cover;
    object-position: center;
    display: block;
    aspect-ratio: 1 / 1;
}
.archive-news-contents-inner-list-item:nth-of-type(odd) .archive-news-contents-inner-list-item-img {
    border-bottom-left-radius: calc(110 / var(--width) * 100vw);
}
.archive-news-contents-inner-list-item:nth-of-type(even) .archive-news-contents-inner-list-item-img {
    border-top-right-radius: calc(110 / var(--width) * 100vw);
}
.archive-news-contents-inner-list-item a {
    border-radius: 0 !important;
    overflow: auto;
    width: 100%;
    height: 100%;
}
.archive-news-contents-inner-list-item-text {
    position: absolute;
    bottom: calc(20 / var(--width) * 100vw);
    width: 90%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: calc(10 / var(--width) * 100vw);
    padding-top: calc(20 / var(--width) * 100vw);
    padding-bottom: calc(20 / var(--width) * 100vw);
    padding-right: calc(40 / var(--width) * 100vw);
    padding-left: calc(40 / var(--width) * 100vw);
    /* opacity: 0;
    visibility: hidden; */
}
.archive-news-contents-inner-list-item-text p {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.4;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.05em;
}
.archive-news-contents-inner-list-item-text p:last-of-type {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}
.news-links:nth-of-type(odd) a .archive-news-contents-inner-list-item-text {
    right: 0;
    align-items: flex-end; 
    border-top-left-radius: calc(100 / var(--width) * 100vw); 
    border-bottom-left-radius: calc(100 / var(--width) * 100vw); 
    padding-right: calc(20 / var(--width) * 100vw);
}
.news-links:nth-of-type(even) a .archive-news-contents-inner-list-item-text {
    left: 0;
    align-items: flex-start; 
    border-top-right-radius: calc(100 / var(--width) * 100vw); 
    border-bottom-right-radius: calc(100 / var(--width) * 100vw); 
    padding-left: calc(20 / var(--width) * 100vw);
}
.news-links a:hover .archive-news-contents-inner-list-item-text {
    opacity: 1;
    visibility: visible;
}
.news-links:nth-of-type(odd) a .archive-news-contents-inner-list-item-text p {
    text-align: right;
    font-weight: 600;
}
.news-links:nth-of-type(even) a .archive-news-contents-inner-list-item-text p {
    text-align: left;
    font-weight: 600;
}

.news-links a .archive-news-contents-inner-list-item-text p:first-of-type {
    /*height: calc(64 / var(--width) * 100vw);*/ overflow: hidden;
}


.archive-news-contents-inner .news-bottom {
    padding-top: calc(50 / var(--width) * 100vw);
    padding-left: 0;
    padding-right: 0;
}

/* about */
.sub-top-title {
    width: calc(200 / var(--width) * 100vw);
    height: calc(60 / var(--width) * 100vw);
    background-color: #fff;
    border-radius: calc(200 / var(--width) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 2px solid #000;
    box-shadow: 0 calc(8 / var(--width) * 100vw) 0 0 #B942B8;
}
.sub-top-title p {
    font-size: clamp(12px, calc(30 / var(--width) * 100vw), 30px);
    line-height: 1.6;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.01em;
    font-family: "Montserrat", sans-serif;
}
.page-about .sub-title {
    padding-top: calc(140 / var(--width) * 100vw);
    padding-bottom: calc(200 / var(--width) * 100vw);
    padding-left: 0;
    padding-right: 0;
}
.page-about .sub-title h1 {
    font-size: clamp(12px, calc(40 / var(--width) * 100vw), 40px);
}
.page-about .sub-title p {
    padding-top: calc(90 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.page-about .sub-fv {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: calc(200 / var(--width) * 100vw);
}
.swiper07 .swiper-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}
.swiper07 .swiper-slide {
    padding: 0 calc(15 / var(--width) * 100vw);
    height: calc(666 / var(--width) * 100vw);
}
.swiper07 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-about-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: calc(1056 / var(--width) * 100vw);
    margin: 0 auto;
    padding-top: calc(200 / var(--width) * 100vw);
    padding-bottom: calc(150 / var(--width) * 100vw);
    border-top: 2px solid #000;
}
.page-about-contents-title {
    width: calc(410 / var(--width) * 100vw);
    height: calc(60 / var(--width) * 100vw);
    background-color: #fff;
    border-radius: calc(200 / var(--width) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border: 2px solid #000;
    box-shadow: 0 calc(8 / var(--width) * 100vw) 0 0 #000000;
}
.page-about-contents-title h3 {
    font-size: clamp(12px, calc(26 / var(--width) * 100vw), 26px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.01em;
}
.page-about-contents-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列均等 */
    gap: calc(100 / var(--width) * 100vw);
    justify-items: center; /* 中央寄せ（任意） */
    padding-top: calc(100 / var(--width) * 100vw);
}
.page-about-contents-item {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width: calc(440 / var(--width) * 100vw);
}
.page-about-contents-item img {
    width: calc(250 / var(--width) * 100vw);
    height: calc(250 / var(--width) * 100vw);
    object-fit: contain;
    object-position: center;
    display: block;
}
.page-about-contents-item-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: calc(8 / var(--width) * 100vw);
    padding-top: calc(20 / var(--width) * 100vw);
}
.page-about-contents-item-text h4 {
    font-size: clamp(9.5px, calc(16 / var(--width) * 100vw), 16px);
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.01em;
}
.page-about-contents-item-text p {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.01em;
}
.page-about-contents-item-detail {  
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 1.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.01em;
    padding-top: calc(30 / var(--width) * 100vw);
    height: calc(180 / var(--width) * 100vw);
    overflow: hidden;
}

/* contact */
.page-contact .sub-title {
    padding-top: calc(140 / var(--width) * 100vw);
    padding-bottom: calc(100 / var(--width) * 100vw);
    padding-left: 0;
    padding-right: 0;
}
.page-contact .sub-title h1 {
    font-size: clamp(32px, calc(40 / var(--width) * 100vw), 40px);
}
.page-contact .sub-title p {
    padding-top: calc(90 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.page-contact-mail {
    width: calc(1058 / var(--width) * 100vw);
    margin: 0 auto;
    padding-top: calc(50 / var(--width) * 100vw);
    padding-bottom: calc(50 / var(--width) * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.page-contact-mail p {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.6;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.01em;
    font-family: "Montserrat", sans-serif;
}
.page-contact-contents-text01 {
    padding-top: calc(50 / var(--width) * 100vw);
    font-size: clamp(10px, calc(18 / var(--width) * 100vw), 18px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.page-contact-contents-title {
    font-size: clamp(12px, calc(40 / var(--width) * 100vw), 40px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.01em;
    padding-top: calc(200 / var(--width) * 100vw);
    padding-bottom: calc(40 / var(--width) * 100vw);
    text-align: center;
}
.page-contact-contents-text02 {
    padding-top: calc(50 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.page-contact-contents-form {
    padding-top: calc(120 / var(--width) * 100vw);
    padding-bottom: calc(150 / var(--width) * 100vw);
    display: flex;
    justify-content: center;
    align-items: start;
    width: calc(1060 / var(--width) * 100vw);
    margin: 0 auto;
}
.page-contact-contents-form iframe {
    width: 100%;
    height: 2500px;
}


/* notice */
.page-notice .sub-title {
    border-bottom: 2px solid #000;
    padding-bottom: calc(200 / var(--width) * 100vw);
    max-width: calc(1056 / var(--width) * 100vw);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.page-notice .sub-title p {
    padding-top: calc(80 / var(--width) * 100vw);
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: 0.05em;
    text-align: center;
}
.page-notice-contents-item {
    padding-top: calc(190 / var(--width) * 100vw);
    padding-bottom: calc(190 / var(--width) * 100vw);
    max-width: calc(1056 / var(--width) * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    border-bottom: 2px solid #000;
}
.page-notice-contents-item:last-of-type {
    border-bottom: none;
}
.page-notice-contents-title01 {
    font-size: clamp(12px, calc(24 / var(--width) * 100vw), 24px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    padding-bottom: calc(90 / var(--width) * 100vw);
    text-align: center;
}
.page-notice-contents-text01 {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.005em;
    text-align: center;
    padding-bottom: calc(70 / var(--width) * 100vw);
}
.page-notice-contents-title02 {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 1.6;
    font-weight: 600;
    color: #000;
    padding-bottom: calc(70 / var(--width) * 100vw);
    text-align: center;
}
.page-notice-contents-text02 {
    font-size: clamp(11.5px, calc(22 / var(--width) * 100vw), 22px);
    line-height: 2.6;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.005em;
    text-align: center;
}
.page-notice-contents-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: calc(150 / var(--width) * 100vw);
    gap: calc(60 / var(--width) * 100vw);
}
.page-notice-contents-navigation-prev {
    width: calc(35 / var(--width) * 100vw);
}
.page-notice-contents-navigation-next {
    width: calc(35 / var(--width) * 100vw);
}
.page-notice-contents-navigation-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(30 / var(--width) * 100vw);
}
.page-notice-contents-navigation-inner span ,
.page-notice-contents-navigation-inner a {
    font-size: clamp(11px, calc(20 / var(--width) * 100vw), 20px);
    line-height: 1.6;
    font-weight: 800;
    color: #000;
    letter-spacing: 0.01em;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    width: calc(55 / var(--width) * 100vw);
    height: calc(55 / var(--width) * 100vw);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-notice-contents-navigation-inner span {
    background-color: #DCDCDC;
}
.page-notice-contents-navigation-inner-bar {
    width: calc(80 / var(--width) * 100vw);
    height: calc(2 / var(--width) * 100vw);
    background-color: #000;
}

/* tags */
.page-tags .sub-title {
    padding-bottom: 0;
}
.page-tags .archive-news-contents-inner-list {
    padding-top: calc(90 / var(--width) * 100vw);
}

/* search */
.no-results {
    grid-column: span 2;
}
.no-results p {
    text-align: center;
}

.page-about .sub-title-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(100 / var(--width) * 100vw);
    gap: calc(30 / var(--width) * 100vw);
}
.page-about .sub-title-img img {
    width: calc(460 / var(--width) * 100vw);
    height: calc(640 / var(--width) * 100vw);
    object-fit: cover;
    object-position: center;
    display: block;
    border: 1px solid #DCDCDC;
}
.highlight-target span{
    mix-blend-mode: lighten;
    background-color: rgba(255, 255, 255, 0.7);
}
.tags-inner-pc {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: calc(0 / var(--width) * 100vw) calc(45 / var(--width) * 100vw);
    background-color: #fff;
    border: 2px solid #000;
    border-radius: calc(50 / var(--width) * 100vw);
}
.tags-top {
    display: none;
}
.tags-bottom {
    display: none;
}


@media screen and (max-width: 1400px) {
    .swiper05-scrollbar-wrapper,
    .swiper06-scrollbar-wrapper {
        width: 300px;
        height: 30px;
    }
    .swiper05-scrollbar,
    .swiper06-scrollbar {
        width: 300px;
    }
    .swiper05-scrollbar .swiper-scrollbar-drag,
    .swiper06-scrollbar .swiper-scrollbar-drag {
        height: 30px;
    }
}
@media screen and (max-width: 1200px) {
    .page-contact-contents-form iframe {
        height: 2600px;
    }
}
@media screen and (max-width: 1024px) {
    .swiper05-scrollbar-wrapper,
    .swiper06-scrollbar-wrapper {
        width: 200px;
        height: 20px;
    }
    .swiper05-scrollbar,
    .swiper06-scrollbar {
        width: 200px;
    }
    .swiper05-scrollbar .swiper-scrollbar-drag,
    .swiper06-scrollbar .swiper-scrollbar-drag {
        height: 20px;
    }
}
@media screen and (max-width: 768px) {
    .char {
        width: calc(26 / var(--width) * 100vw);
    }
    .char::before {
        width: calc(26 / var(--width) * 100vw);
        height: calc(26 / var(--width) * 100vw);
    }
    .swiper05-scrollbar-wrapper {
        height: 25px;
    }
    .swiper06-scrollbar-wrapper {
        display: none;
    }
    .swiper05-scrollbar .swiper-scrollbar-drag {
        height: 25px;
    }
    body {
        background: linear-gradient(to bottom, #fff 0%, #fff calc(500 / var(--width) * 100vw), #F6E7F9 calc(500 / var(--width) * 100vw), #F6E7F9 100%);
    }
    body.page-default {
        background: linear-gradient(to bottom, #fff 0%, #fff calc(500 / var(--width) * 100vw), #F6E7F9 calc(500 / var(--width) * 100vw), #F6E7F9 100%);
    }
    .banner {
        padding-top: calc(17 / var(--width) * 100vw);
    }
    .banner .swiper-slide {
        padding: 0 calc(10 / var(--width) * 100vw);
    }
    .banner .swiper-slide::after {
      right: calc(-1 / var(--width) * 100vw);
      top: calc(2 / var(--width) * 100vw);
    }
    .banner .swiper-slide:last-child::after {
      display: none;
    }
    .banner .swiper-slide p, .banner .swiper-slide a {
        font-size: calc(14 / var(--width) * 100vw);
        height: calc(20 / var(--width) * 100vw);
        overflow: hidden;
        line-height: 1.5;
    }
    header {
        top: calc(45 / var(--width) * 100vw);
        height: calc(50 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .header-logo {
        top: calc(16 / var(--width) * 100vw);
        width: calc(100 / var(--width) * 100vw);
    }
    .header-nav {
        gap: calc(15 / var(--width) * 100vw);
    }
    .header-nav-search {
        width: calc(16 / var(--width) * 100vw);
    }
    .header-nav-hamburger{
        width: calc(22 / var(--width) * 100vw);
    }
    .main-container {
        flex-direction: column-reverse;
        padding-top: calc(100 / var(--width) * 100vw);
    }
    .sub-page .main-container {
        padding-top: calc(130 / var(--width) * 100vw);
    }
    .main-inner {
        width: 100%;
    }
    .fv-slider-pagination {
        left: 0 !important;
    }
    .fv {
        padding-right: 0;
    }
    .fv-inner {
        padding-top: 0;
    }
    .fv-title {
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .fv-title img {
        width: calc(226 / var(--width) * 100vw);
    }
    .fv-title-text {
        font-size: calc(8 / var(--width) * 100vw);
        top: calc(125 / var(--width) * 100vw);
        left: calc(160 / var(--width) * 100vw);
        padding: calc(10 / var(--width) * 100vw) calc(2 / var(--width) * 100vw);
        z-index: 2;
    }
    .fv-slider-title {
        top: calc(125 / var(--width) * 100vw);
        left: calc(40 / var(--width) * 100vw);
        width: calc(100 / var(--width) * 100vw);
        z-index: 2;
    }
    .fv-title p {
        font-size: calc(12 / var(--width) * 100vw);
        padding-top: calc(20 / var(--width) * 100vw);
    }
    .fv-slider-title-item {
        gap: calc(10 / var(--width) * 100vw);
        height: calc(250 / var(--width) * 100vw);
    }
    .fv-slider-title-item p {
        font-size: calc(20 / var(--width) * 100vw);
        line-height: 1.6;
    }
    .fv-slider-img {
        width: 100%;
        margin: 0;
        padding-top: calc(75 / var(--width) * 100vw);
        z-index: 1;
        border: none;
    }
    .fv-slider-item {
        padding: 0;
        background-color: #fff;
    }
    .fv-slider-item a {
        height: calc(280 / var(--width) * 100vw);
    }
    .fv-slider-pagination {
        gap: calc(25 / var(--width) * 100vw);
        left: 50% !important;
        transform: translateX(-50%);
        bottom: calc(-35 / var(--width) * 100vw) !important;
        margin-left: 0 !important;
    }
    .fv-slider-pagination .swiper-pagination-bullet {
        width: calc(7 / var(--width) * 100vw);
        height: calc(7 / var(--width) * 100vw);
    }
    .fv-slider-pagination .swiper-pagination-bullet-active {
        width: calc(13 / var(--width) * 100vw);
        height: calc(13 / var(--width) * 100vw);
    }
    #fv-bottom-animation {
        height: calc(300 / var(--width) * 100vw);
    }
    .fv-bottom-animation-img01 {
        width: calc(112 / var(--width) * 100vw);
    }
    .fv-bottom-animation-img02 {
        width: calc(112 / var(--width) * 100vw);
    }
    .fv-bottom-animation-img03 {
        width: calc(112 / var(--width) * 100vw);
    }
    .fv-bottom-animation-img04 {
        width: calc(112 / var(--width) * 100vw);
    }
    .fv-bottom-animation-img05 {
        width: calc(199 / var(--width) * 100vw);
    }
    .tags {
        display: none;
    }
    .tags-inner {
        padding: calc(0 / var(--width) * 100vw) calc(30 / var(--width) * 100vw);
        height: 100%;
    }
    .tags-title {
        padding-right: calc(14 / var(--width) * 100vw);
    }
    .tags-title h2 {
        font-size: calc(15 / var(--width) * 100vw);
    }
    .tags-links {
        gap: calc(24 / var(--width) * 100vw);
        padding-left: calc(10 / var(--width) * 100vw);
    }
    .tags-links a {
        font-size: calc(15 / var(--width) * 100vw);
        padding: 0 calc(4 / var(--width) * 100vw);
    }
    .category,
    .menu .category {
        padding-top: calc(50 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
        width: 100%;
    }
    .category-wave {
        height: calc(8 / var(--width) * 100vw);
    }
    .category-wave img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .category-inner,
    .menu .category-inner {
        padding-top: calc(35 / var(--width) * 100vw);
    }
    .category-links,
    .menu .category-links {
        flex-wrap: wrap;
        padding: 0;
        gap: calc(45 / var(--width) * 100vw);
        justify-content: center;
    }
    .category-links a,
    .menu .category-links a {
        gap: calc(7 / var(--width) * 100vw);
        margin-bottom: calc(18 / var(--width) * 100vw);
        position: relative;
    }
    .category-links a img,
    .menu .category-links a img,
    .category-links a svg,
    .menu .category-links a svg {
        width: calc(60 / var(--width) * 100vw);
    }
    .category-links a p,
    .menu .category-links a p {
        font-size: calc(13 / var(--width) * 100vw);
        position: absolute;
        bottom: calc(-25 / var(--width) * 100vw);
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        white-space: nowrap;
    }
    .news {
        padding-top: calc(58 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .news-title {
        padding-bottom: calc(25 / var(--width) * 100vw);
    }
    .news-title h2 {
        font-size: calc(54 / var(--width) * 100vw);
    }
    .news-links-inner {
        overflow: hidden;
        /* max-height: calc(2060 / var(--width) * 100vw); */
    }
    .news-links {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: calc(10 / var(--width) * 100vw);
        border-radius: 0;
        padding-bottom: calc(10 / var(--width) * 100vw);
    }
    .news-links a {
        position: relative;
        height: calc(335 / var(--width) * 100vw); 
    }
    .news-links a:nth-of-type(1) {border-radius: 0; border-top-left-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(2) {border-radius: 0; border-bottom-right-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(3) {border-radius: 0; border-top-right-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(4) {border-radius: 0; border-bottom-left-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(5) {border-radius: 0; border-top-left-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(6) {border-radius: 0; border-bottom-right-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(7) {border-radius: 0; border-top-right-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(8) {border-radius: 0; border-bottom-left-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(9) {border-radius: 0; border-top-left-radius: calc(70 / var(--width) * 100vw);}
    .news-links a:nth-of-type(10) {border-radius: 0; border-bottom-right-radius: calc(70 / var(--width) * 100vw);}
    .news-links-text {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start !important;
        gap: calc(6 / var(--width) * 100vw);
        position: absolute;
        bottom: calc(20 / var(--width) * 100vw);
        left: 0 !important;
        width: calc(315 / var(--width) * 100vw);
        background-color: rgba(255, 255, 255, 0.7);
        padding: calc(15 / var(--width) * 100vw) calc(38 / var(--width) * 100vw) calc(15 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
        border-top-right-radius: calc(100 / var(--width) * 100vw) !important;
        border-bottom-right-radius: calc(100 / var(--width) * 100vw) !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        opacity: 1;
        visibility: visible;
    }
    .news-links a:nth-of-type(1) .news-links-text ,
    .news-links a:nth-of-type(10) .news-links-text {
        gap: calc(10 / var(--width) * 100vw);
        padding: calc(15 / var(--width) * 100vw) calc(38 / var(--width) * 100vw) calc(15 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
    }
    .news-links a:nth-of-type(1) .news-links-text ,
    .news-links a:nth-of-type(2) .news-links-text ,
    .news-links a:nth-of-type(5) .news-links-text ,
    .news-links a:nth-of-type(6) .news-links-text  {
        padding: calc(15 / var(--width) * 100vw) calc(38 / var(--width) * 100vw) calc(15 / var(--width) * 100vw) calc(20 / var(--width) * 100vw);
    }
    .news-links a:nth-of-type(1) .news-links-text p ,
    .news-links a:nth-of-type(2) .news-links-text p ,
    .news-links a:nth-of-type(5) .news-links-text p ,
    .news-links a:nth-of-type(6) .news-links-text p  {
        text-align: left;
    }
    .news-links a:nth-of-type(1) .news-links-text p:first-of-type { height: calc(46 / var(--width) * 100vw); overflow: hidden; }
    .news-links a:nth-of-type(10) .news-links-text p:first-of-type { height: calc(46 / var(--width) * 100vw); overflow: hidden; }
    .news-links a:nth-of-type(3) .news-links-text ,
    .news-links a:nth-of-type(4) .news-links-text ,
    .news-links a:nth-of-type(7) .news-links-text ,
    .news-links a:nth-of-type(8) .news-links-text  {
        align-items: end !important;
        left: auto !important;
        right: 0 !important;
        padding: calc(15 / var(--width) * 100vw) calc(20 / var(--width) * 100vw) calc(15 / var(--width) * 100vw) calc(38 / var(--width) * 100vw);
        border-top-left-radius: calc(100 / var(--width) * 100vw) !important;
        border-bottom-left-radius: calc(100 / var(--width) * 100vw) !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    .news-links-text p:nth-of-type(1) {
        font-size: calc(16 / var(--width) * 100vw) !important;
        line-height: 1.5 !important;
        color: #000;
    }
    .news-links-text p:nth-of-type(2) {
        font-size: calc(14 / var(--width) * 100vw) !important;
        line-height: 1.5 !important;
        font-family: "Montserrat", sans-serif;
        color: #000;
    }
    .news-links a:nth-of-type(3) .news-links-text p,
    .news-links a:nth-of-type(4) .news-links-text p,
    .news-links a:nth-of-type(7) .news-links-text p,
    .news-links a:nth-of-type(8) .news-links-text p {
        text-align: right;
    }
    .news-bottom {
        padding-left: 0;
        padding-right: calc(20 / var(--width) * 100vw);
        gap: calc(15 / var(--width) * 100vw);
    }
    .news-bottom-inner p {
        font-size: calc(18 / var(--width) * 100vw);
    }
    .news-bottom-inner img {
        width: calc(36 / var(--width) * 100vw);
    }
    .sidebar {
        width: 100%;
        padding-top: calc(60 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
        overflow: hidden;
    }
    .sidebar-nav {
        display: none;
    }
    .sidebar-date {
        padding-top: calc(60 / var(--width) * 100vw);
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        border-top: 1px solid #000;
        order: 1;
    }
    .sidebar-date p.sidebar-date-slash {
        font-size: calc(40 / var(--width) * 100vw);
    }
    .sidebar-contents {
        padding-top: calc(25 / var(--width) * 100vw);
        padding-left: 0;
        order: 2;
    }
    .sidebar-contents h2 {
        font-size: calc(18 / var(--width) * 100vw);
        padding-bottom: calc(20 / var(--width) * 100vw);
    }
    .sidebar-contents-inner h3 {
        font-size: calc(22 / var(--width) * 100vw);
    }
    .sidebar-contents-img,
    #recommended p:nth-of-type(1),
    .recommended-img-wrapper {
        /* position: absolute;
        top: calc(60 / var(--width) * 100vw);
        left: calc(60 / var(--width) * 100vw); */
        /* width: calc(310 / var(--width) * 100vw); */
        width: calc(202 / var(--width) * 100vw);
        margin-top: calc(24 / var(--width) * 100vw);
    }
    .recommended-serif-wrapper {
        top: calc(-20 / var(--width) * 100vw);
        right: calc(-60 / var(--width) * 100vw);
        width: calc(110 / var(--width) * 100vw);
    }
    .recommended-serif-wrapper span {
        font-size: calc(10 / var(--width) * 100vw);
    }
    .sidebar-contents-detail,
    #recommended p:nth-of-type(1) {
        /* padding-top: calc(230 / var(--width) * 100vw); */
        /* padding-top: calc(30 / var(--width) * 100vw); */
        font-size: calc(18 / var(--width) * 100vw);
    }
    .sidebar-contents-text,
    #recommended p:nth-of-type(2) {
        padding-top: calc(32 / var(--width) * 100vw);
        font-size: calc(14 / var(--width) * 100vw);
        /* max-height: calc(140 / var(--width) * 100vw); */
        max-height: unset;
    }
    .sidebar-contents.sidebar-store {
        order: 4;
    }
    .sidebar-contents.sidebar-recommend {
        order: 3;
    }
    .sidebar-contents.sidebar-information {
        order: 5;
    }
    .sidebar-contents.sidebar-sns {
        display: none;
    }
    .sidebar-store-inner {
        flex-direction: row;
        gap: calc(20 / var(--width) * 100vw);
    }
    .sidebar-information-inner h3 {
        font-size: calc(60 / var(--width) * 100vw);
    }
    .sidebar-information-inner-img,
    #information p:nth-of-type(1) {
        width: auto;
        margin: 0 auto;
        font-size: calc(14 / var(--width) * 100vw);
        max-height: unset;
    }
    .sidebar-information-inner-img-serif {
        top: calc(70 / var(--width) * 100vw);
        right: calc(-90 / var(--width) * 100vw);
        width: calc(200 / var(--width) * 100vw);
    }
    .sidebar-information-inner-text,
    #information p:nth-of-type(2) {
        font-size: calc(14 / var(--width) * 100vw);
        /* max-height: calc(140 / var(--width) * 100vw); */
        max-height: unset;
    }
    .information-img-wrapper {
        width: calc(202 / var(--width) * 100vw);
    }
    .information-serif-wrapper {
        top: calc(-20 / var(--width) * 100vw);
        right: calc(-60 / var(--width) * 100vw);
        width: calc(110 / var(--width) * 100vw);
    }
    .information-serif-wrapper span {
        font-size: calc(10 / var(--width) * 100vw);
    }
    .sidebar-date p {
        font-size: calc(88 / var(--width) * 100vw);
    }
    .ranking {
        width: 100%;
        padding-top: 0;
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .ranking-title {
        flex-direction: column;
        padding-bottom: calc(35 / var(--width) * 100vw);
        background: none;
        position: relative;
    }
    .ranking-title::before {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: calc(8 / var(--width) * 100vw);
        background: center center / cover no-repeat url(../images/wave01.webp);
    }
    .ranking-title h2 {
        padding: 0;
        font-size: calc(54 / var(--width) * 100vw);
        text-align: center;
    }
    .ranking-contents {
        padding-top: calc(35 / var(--width) * 100vw);
    }
    .ranking-contents .ranking02-img {
        padding-top: 0;
    }
    .ranking-contents-inner-number {
        font-size: calc(40 / var(--width) * 100vw);
    }
    .ranking-contents-inner-title {
        font-size: calc(13 / var(--width) * 100vw);
    }
    .ranking-contents .swiper-slide img {
        height: calc(160 / var(--width) * 100vw);
        border: calc(10 / var(--width) * 100vw) solid #fff;
    }
    .ranking-contents .ranking02-img {
        margin-top: 0;
    }
    .swiper05-scrollbar-wrapper {
        margin: calc(40 / var(--width) * 100vw) auto 0;
        width: calc(295 / var(--width) * 100vw);
    }
    .swiper05-scrollbar {
        height: 10px;
        width: calc(295 / var(--width) * 100vw);
    }
    footer,
    .menu-footer {
        padding-top: calc(100 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
        padding-bottom: calc(100 / var(--width) * 100vw);
    }
    .footer-inner {
        width: 100%;
        padding-top: calc(60 / var(--width) * 100vw);
    }
    .footer-inner-sns {
        gap: calc(10 / var(--width) * 100vw);
    }
    .footer-inner-sns a {
        width: calc(50 / var(--width) * 100vw);
    }
    .footer-inner-links {
        flex-direction: column;
        padding-top: calc(35 / var(--width) * 100vw);
        gap: calc(25 / var(--width) * 100vw);
    }
    .footer-inner-links a {
        font-size: calc(20 / var(--width) * 100vw);
    }
    .footer-inner-media {
        padding-top: calc(60 / var(--width) * 100vw);
    }
    .footer-inner-media-wave {
        height: calc(8 / var(--width) * 100vw);
        background: center center / cover no-repeat url(../images/wave01.webp);
    }
    .footer-inner-media h2 {
        padding-top: calc(60 / var(--width) * 100vw);
        font-size: calc(30 / var(--width) * 100vw);
    }
    .footer-inner-media-inner {
        width: 100%;
        gap: calc(15 / var(--width) * 100vw) calc(10 / var(--width) * 100vw);
        padding-top: calc(24 / var(--width) * 100vw);
    }
    .footer-inner-media-inner a {
        width: calc(143 / var(--width) * 100vw);
    }
    .footer-inner-pagetop {
        padding-top: calc(60 / var(--width) * 100vw);
    }
    .footer-inner-pagetop a {
        width: calc(20 / var(--width) * 100vw);
    }
    .footer-inner-links02 {
        flex-direction: column;
        padding-top: calc(35 / var(--width) * 100vw);
        gap: calc(20 / var(--width) * 100vw);
    }
    .footer-inner-links02 a {
        font-size: calc(14 / var(--width) * 100vw);
    }
    .footer-inner-copyright p {
        font-size: calc(12 / var(--width) * 100vw);
    }
    .pagetop {
        bottom: calc(20 / var(--width) * 100vw);
        right: calc(20 / var(--width) * 100vw);
        width: calc(36 / var(--width) * 100vw);
    }
    .menu {
        padding-top: calc(50 / var(--width) * 100vw);
        padding-bottom: calc(0 / var(--width) * 100vw);
    }
    .search {
        padding-top: calc(50 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .search-inner {
        padding-top: calc(70 / var(--width) * 100vw);
        width: 100%;
    }
    .search-title h2 {
        font-size: calc(15 / var(--width) * 100vw);
    }
    .search-form {
        padding-top: calc(23 / var(--width) * 100vw);
    }
    .search-form input {
        height: calc(40 / var(--width) * 100vw);
        font-size: calc(15 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
    }
    .search-form input::placeholder {
        font-size: calc(15 / var(--width) * 100vw);
    }
    .search-form-btn {
        width: calc(16 / var(--width) * 100vw);
        height: calc(16 / var(--width) * 100vw);
        right: calc(20 / var(--width) * 100vw);
    }

    /* news */
    .sub-fv {
        width: 100%;
        height: calc(260 / var(--width) * 100vw);
        padding: 0;
    }
    .sub-fv img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .page-archive .sub-fv img {
        height: 100%;
    }
    .news-contents,
    .archive-news-contents  {
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
        padding-top: calc(60 / var(--width) * 100vw);
    }
    .news-contents-inner,
    .archive-news-contents-inner {
        padding: 0;
    }
    .news-contents-inner-category p {
        font-size: calc(14 / var(--width) * 100vw);
    }
    .news-contents-title {
        font-size: calc(32 / var(--width) * 100vw);
    }
    .news-contents-inner-date {
        padding-top: calc(54 / var(--width) * 100vw);
    }
    .news-contents-inner-date p {
        font-size: calc(12 / var(--width) * 100vw);
    }
    .news-contents-inner-text {
        padding-top: calc(100 / var(--width) * 100vw);
    }
    .news-contents-inner-text p {
        font-size: calc(16 / var(--width) * 100vw);
    }
    .news-contents-inner-tags,
    .archive-news-contents-inner-tags {
        flex-wrap: wrap;
        justify-content: center;
        gap: calc(10 / var(--width) * 100vw);
    }
    .news-contents-inner-tags a,
    .archive-news-contents-inner-tags a {
        font-size: calc(12 / var(--width) * 100vw);
    }
    .news-contents-inner-box {
        margin-top: calc(100 / var(--width) * 100vw);
        padding-top: calc(90 / var(--width) * 100vw);
    }
    .news-contents-inner-box-img {
        padding-bottom: calc(60 / var(--width) * 100vw);
        gap: calc(20 / var(--width) * 100vw);
    }
    .news-contents-inner-box-img > p {
        padding: 0;
        font-size: calc(14 / var(--width) * 100vw);
    }
    .news-contents-inner-box-hr {
        margin-top: calc(40 / var(--width) * 100vw);
        margin-bottom: calc(100 / var(--width) * 100vw);
    }
    .news-contents-inner-box h2 {
        font-size: calc(26 / var(--width) * 100vw);
        padding-top: calc(25 / var(--width) * 100vw);
        padding-bottom: calc(55 / var(--width) * 100vw);
    }
    .news-contents-inner-box h3 {
        font-size: calc(18 / var(--width) * 100vw);
        padding: calc(20 / var(--width) * 100vw) calc(40 / var(--width) * 100vw);
        margin-top: calc(25 / var(--width) * 100vw);
        margin-bottom: calc(55 / var(--width) * 100vw);
    }
    .news-contents-inner-box h4 {
        padding-left: calc(30 / var(--width) * 100vw);
        font-size: calc(18 / var(--width) * 100vw);
        margin-top: calc(25 / var(--width) * 100vw);
        margin-bottom: calc(20 / var(--width) * 100vw);
    }
    .news-contents-inner-box h4::before {
        width: calc(18 / var(--width) * 100vw);
    }
    .news-contents-inner-box h4.one::before {
        height: calc(18 / var(--width) * 100vw);
    }
    .news-contents-inner-box h5 {
        font-size: calc(18 / var(--width) * 100vw);
        margin-bottom: calc(20 / var(--width) * 100vw);
    }
    .news-contents-inner-box > p {
        font-size: calc(16 / var(--width) * 100vw);
    }
    .news-author {
        width: 100%;
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .news-author-inner {
        width: 100%;
    }
    .news-author-inner-text {
        padding-left: 0;
        margin-left: 0;
        border: none;
        width: 100%;
        align-items: center;
    }
    .news-author-inner-img {
        display: none;
    }
    .news-author-inner-text-inner {
        align-items: center;
        margin-top: calc(30 / var(--width) * 100vw);
        padding-top: calc(30 / var(--width) * 100vw);
        border-top: 2px solid #000;
        width: 100%;
    }
    .news-author-inner-text-inner-text {
        padding-bottom: calc(30 / var(--width) * 100vw);
    }
    .news-author-inner-text-inner-box {
        display: flex;
        justify-content: space-between;
        align-items: start;
        width: 100%;
    }
    .news-author-inner-text-inner-box .news-author-inner-img {
        display: block;
        width: calc(150 / var(--width) * 100vw);
        height: calc(150 / var(--width) * 100vw);
        padding: calc(20 / var(--width) * 100vw);
        border-radius: calc(40 / var(--width) * 100vw);
    }
    .news-author-inner-text-text {
        font-size: calc(14 / var(--width) * 100vw);
        width: calc(150 / var(--width) * 100vw);
        /* height: calc(140 / var(--width) * 100vw); */
    }
    .related-news {
        width: 100%;
        padding-top: calc(100 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
        padding-bottom: calc(100 / var(--width) * 100vw);
    }
    .related-news-title {
        width: calc(170 / var(--width) * 100vw);
        height: calc(50 / var(--width) * 100vw);
        box-shadow: 0 calc(6 / var(--width) * 100vw) 0 0 #000;
    }
    .related-news-title h2 {
        font-size: calc(18 / var(--width) * 100vw);
    }
    .related-news-hr {
        margin-top: calc(30 / var(--width) * 100vw);
        margin-bottom: calc(30 / var(--width) * 100vw);
        height: calc(6 / var(--width) * 100vw);
    }
    .related-news-contents {
        width: 90%;
        margin: 0 auto;
    }
    .related-news-contents .swiper-wrapper {
        justify-content: start;
        gap: 0;
    }
    .related-news-contents .swiper-wrapper .swiper-slide {
        margin: 0;
    }
    .related-news-contents-img {
        border: calc(14 / var(--width) * 100vw) solid #fff;
    }
    .related-news-contents-date {
        font-size: calc(14 / var(--width) * 100vw);
    }
    .related-news-contents-category {
        font-size: calc(18 / var(--width) * 100vw);
    }
    .related-news-contents-title {
        font-size: calc(22 / var(--width) * 100vw);
    }
    .related-news-inner .sidebar-recommend-slider-button {
        display: flex;
        padding-top: calc(10 / var(--width) * 100vw);
        width: 90%;
        margin: 0 auto;
    }
    .swiper04-button-prev, .swiper04-button-next, .swiper06-button-prev, .swiper06-button-next {
        width: calc(35 / var(--width) * 100vw);
    }
    .sub-page .sidebar {
        display: none;
    }

    /* archive */
    .sub-title {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: calc(30 / var(--width) * 100vw);
    }
    .sub-title h1 {
        font-size: calc(22 / var(--width) * 100vw);
        line-height: 1.6;
        color: #000;
        text-align: center;
    }
    .archive-news-contents-inner-title {
        padding-top: calc(100 / var(--width) * 100vw);
        padding-bottom: calc(33 / var(--width) * 100vw);
    }
    .archive-news-contents-inner-title h2 {
        font-size: calc(18 / var(--width) * 100vw);
    }
    .archive-news-contents-inner-title p {
        font-size: calc(14 / var(--width) * 100vw);
    }
    .archive-news-contents-inner-list {
        margin-top: calc(60 / var(--width) * 100vw);
        display: flex;
        flex-direction: column;
        /* gap: calc(10 / var(--width) * 100vw); */
        /* max-height: calc(4195 / var(--width) * 100vw); */
    }
    .archive-news-contents-inner-list-item {
        width: 100%;
    }
    .archive-news-contents-inner-list-item-new {
        top: calc(0 / var(--width) * 100vw);
        width: calc(124 / var(--width) * 100vw);
    }
    .archive-news-contents-inner-list-item-img {
        width: 100%;
        height: calc(335 / var(--width) * 100vw);
    }
    .archive-news-contents-inner-list-item:nth-of-type(4n-3) .archive-news-contents-inner-list-item-img {
        border-top-left-radius: calc(70 / var(--width) * 100vw);
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .archive-news-contents-inner-list-item:nth-of-type(4n-2) .archive-news-contents-inner-list-item-img {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: calc(70 / var(--width) * 100vw);
    }
    .archive-news-contents-inner-list-item:nth-of-type(4n-1) .archive-news-contents-inner-list-item-img {
        border-top-left-radius: 0;
        border-top-right-radius: calc(70 / var(--width) * 100vw);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .archive-news-contents-inner-list-item:nth-of-type(4n) .archive-news-contents-inner-list-item-img {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: calc(70 / var(--width) * 100vw);
        border-bottom-right-radius: 0;
    }
    .archive-news-contents-inner-list-item-text {
        display: flex;
        justify-content: start;
        align-items: start !important;
        flex-direction: column;
        gap: calc(5 / var(--width) * 100vw);
        width: calc(315 / var(--width) * 100vw);
        height: calc(106 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw) !important;
        padding-right: calc(40 / var(--width) * 100vw) !important;
        padding-top: calc(15 / var(--width) * 100vw);
        padding-bottom: calc(15 / var(--width) * 100vw);
        position: absolute;
        bottom: calc(50 / var(--width) * 100vw);
        left: 0 !important;
        right: auto !important;
        background-color: #fff;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: calc(70 / var(--width) * 100vw) !important;
        border-bottom-right-radius: calc(70 / var(--width) * 100vw) !important;
        z-index: 2;
        opacity: 0.7;
        visibility: visible;
    }
    .archive-news-contents-inner-list-item:nth-of-type(4n-1) .archive-news-contents-inner-list-item-text ,
    .archive-news-contents-inner-list-item:nth-of-type(4n) .archive-news-contents-inner-list-item-text {
        left: auto !important;
        right: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-top-left-radius: calc(70 / var(--width) * 100vw) !important;
        border-bottom-left-radius: calc(70 / var(--width) * 100vw) !important;
        align-items: flex-end !important;
        padding-right: calc(20 / var(--width) * 100vw) !important;
        padding-left: calc(40 / var(--width) * 100vw) !important;
    }
    .archive-news-contents-inner-list-item .archive-news-contents-inner-list-item-text p ,
    .archive-news-contents-inner-list-item .archive-news-contents-inner-list-item-text p {
        text-align: left !important;
    }
    .archive-news-contents-inner-list-item:nth-of-type(4n-1) .archive-news-contents-inner-list-item-text p ,
    .archive-news-contents-inner-list-item:nth-of-type(4n) .archive-news-contents-inner-list-item-text p {
        text-align: right !important;
    }
    .archive-news-contents-inner-list-item-text p:nth-of-type(1) {
        font-size: calc(16 / var(--width) * 100vw);
        line-height: 1.6;
        color: #000;
        text-align: left;
    }
    .archive-news-contents-inner-list-item-text p:nth-of-type(2) {
        font-size: calc(14 / var(--width) * 100vw);
        line-height: 1.6;
        color: #000;
        font-weight: 800;
        font-family: "Montserrat", sans-serif;
        text-align: left;
    }

    /* about */
    .sub-top-title {
        width: calc(142 / var(--width) * 100vw);
        height: calc(45 / var(--width) * 100vw);
    }
    .sub-top-title p {
        font-size: calc(22 / var(--width) * 100vw);
    }
    .page-about .sub-title {
        padding-top: calc(100 / var(--width) * 100vw);
        padding-bottom: calc(60 / var(--width) * 100vw);
    }
    .page-about .sub-title h1 {
        font-size: calc(26 / var(--width) * 100vw);
    }
    .page-about .sub-title p {
        padding-top: calc(56 / var(--width) * 100vw);
        font-size: calc(14 / var(--width) * 100vw);
        width: calc(280 / var(--width) * 100vw);
        margin: 0 auto;
    }
    .page-about .sub-fv {
        height: auto;
        padding-bottom: calc(100 / var(--width) * 100vw);
    }
    .swiper07 .swiper-wrapper {
        flex-direction: column;
        gap: calc(10 / var(--width) * 100vw);
    }
    .swiper07 .swiper-slide {
        padding: 0;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .swiper07 .swiper-slide:nth-of-type(odd) {
        padding-left: calc(30 / var(--width) * 100vw);
    }
    .swiper07 .swiper-slide:nth-of-type(even) {
        padding-right: calc(30 / var(--width) * 100vw);
    }
    .swiper07 .swiper-slide:nth-of-type(n+4) {
        display: none;
    }
    .page-about-contents {
        width: calc(335 / var(--width) * 100vw);
        padding-top: calc(60 / var(--width) * 100vw);
        padding-bottom: calc(100 / var(--width) * 100vw);
    }
    .page-about-contents-title {
        width: calc(295 / var(--width) * 100vw);
        height: calc(45 / var(--width) * 100vw);
    }
    .page-about-contents-title h3 {
        font-size: calc(18 / var(--width) * 100vw);
    }
    .page-about-contents-inner {
        padding-top: calc(50 / var(--width) * 100vw);
        grid-template-columns: repeat(1, 1fr); /* 2列均等 */
        gap: calc(50 / var(--width) * 100vw);
    }
    .page-about-contents-item {
        width: 100%;
    }
    .page-about-contents-item img {
        width: calc(190 / var(--width) * 100vw);
        height: calc(190 / var(--width) * 100vw);
    }
    .page-about-contents-item-text {
        padding-top: calc(10 / var(--width) * 100vw);
    }
    .page-about-contents-item-text h4 {
        font-size: calc(14 / var(--width) * 100vw);
    }
    .page-about-contents-item-text p {
        font-size: calc(20 / var(--width) * 100vw);
    }
    .page-about-contents-item-detail {
        font-size: calc(14 / var(--width) * 100vw);
        height: calc(170 / var(--width) * 100vw);
    }

    /* contact */
    .page-contact .sub-title {
        padding-top: calc(95 / var(--width) * 100vw);
        padding-bottom: calc(60 / var(--width) * 100vw);
    }
    .page-contact .sub-title h1 {
        font-size: calc(26 / var(--width) * 100vw);
    }
    .page-contact .sub-title p {
        font-size: calc(14 / var(--width) * 100vw);
        padding-top: calc(50 / var(--width) * 100vw);
        padding-left: calc(40 / var(--width) * 100vw);
        padding-right: calc(40 / var(--width) * 100vw);
    }
    .page-contact-mail {
        width: calc(335 / var(--width) * 100vw);
        padding-top: calc(35 / var(--width) * 100vw);
        padding-bottom: calc(35 / var(--width) * 100vw);
    }
    .page-contact-mail p {
        font-size: calc(17 / var(--width) * 100vw);
    }
    .page-contact-contents-text01 {
        font-size: calc(12 / var(--width) * 100vw);
        padding-left: calc(70 / var(--width) * 100vw);
        padding-right: calc(70 / var(--width) * 100vw);
    }
    .page-contact-contents-title {
        font-size: calc(26 / var(--width) * 100vw);
        padding-top: calc(90 / var(--width) * 100vw);
        padding-bottom: 0;
        padding-left: calc(70 / var(--width) * 100vw);
        padding-right: calc(70 / var(--width) * 100vw);
    }
    .page-contact-contents-text02 {
        font-size: calc(14 / var(--width) * 100vw);
        padding-left: calc(33 / var(--width) * 100vw);
        padding-right: calc(33 / var(--width) * 100vw);
    }
    .page-contact-contents-form {
        padding-top: calc(60 / var(--width) * 100vw);
        padding-bottom: calc(100 / var(--width) * 100vw);
        width: 100%;
    }
    .page-contact-contents-form iframe {
        height: 3000px;
    }

    /* notice */
    .page-notice .main-inner {
        padding-left: calc(20 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
    .page-notice .sub-title {
        padding-bottom: calc(60 / var(--width) * 100vw);
    }
    .page-notice .sub-title h1 {
        font-size: calc(26 / var(--width) * 100vw);
    }
    .page-notice .sub-title p {
        font-size: calc(14 / var(--width) * 100vw);
        padding-top: calc(50 / var(--width) * 100vw);
    }
    .page-notice-contents-item {
        padding-top: calc(50 / var(--width) * 100vw);
        padding-bottom: calc(50 / var(--width) * 100vw);
    }
    .page-notice-contents-title01 {
        font-size: calc(16 / var(--width) * 100vw);
        padding-bottom: calc(50 / var(--width) * 100vw);
    }
    .page-notice-contents-text01 {
        font-size: calc(14 / var(--width) * 100vw);
        padding-bottom: calc(35 / var(--width) * 100vw);
    }
    .page-notice-contents-title02 {
        font-size: calc(14 / var(--width) * 100vw);
        padding-bottom: calc(35 / var(--width) * 100vw);
    }
    .page-notice-contents-text02 {
        font-size: calc(14 / var(--width) * 100vw);
    }
    .page-notice-contents-navigation {
        padding-top: calc(100 / var(--width) * 100vw);
        padding-bottom: calc(100 / var(--width) * 100vw);
        gap: calc(5 / var(--width) * 100vw);
    }
    .page-notice-contents-navigation-inner {
        gap: calc(5 / var(--width) * 100vw);
        width: 90%;
    }
    .page-notice-contents-navigation-inner span,
    .page-notice-contents-navigation-inner a {
        width: calc(35 / var(--width) * 100vw);
        height: calc(35 / var(--width) * 100vw);
        font-size: calc(16 / var(--width) * 100vw);
    }
    .page-notice-contents-navigation-inner a.pc {
        display: none;
    }
    .page-notice-contents-navigation-inner-bar {
        width: calc(30 / var(--width) * 100vw);
    }
    .page-notice-contents-navigation-prev {
        width: calc(25 / var(--width) * 100vw);
    }
    .page-notice-contents-navigation-next {
        width: calc(25 / var(--width) * 100vw);
    }

    /* tags */
    .page-tags .sub-title {
        padding-bottom: 0;
    }
    .page-tags .archive-news-contents {
        padding-top: 0;
    }
    .page-tags .archive-news-contents-inner-list {
        padding-top: calc(40 / var(--width) * 100vw);
    }

    .page-about .sub-title-img {
        margin-top: calc(50 / var(--width) * 100vw);
        gap: calc(20 / var(--width) * 100vw);
    }

    .page-about .sub-title-img img {
        width: calc(150 / var(--width) * 100vw);
        height: calc(200 / var(--width) * 100vw);
    }

    .tags-inner-pc {
        display: none;
    }

    .tags-inner-mobile {
        display: flex;
        justify-content: start;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: #fff;
        border: 2px solid #000;
    }

    .tags-inner-mobile-top {
        border-radius: calc(50 / var(--width) * 100vw) 0 0 calc(50 / var(--width) * 100vw);
        padding: calc(0 / var(--width) * 100vw) calc(0 / var(--width) * 100vw) calc(0 / var(--width) * 100vw) calc(30 / var(--width) * 100vw);
        border-right: none;
    }
    .tags-inner-mobile-bottom {
        border-radius: 0 calc(50 / var(--width) * 100vw) calc(50 / var(--width) * 100vw) 0;
        padding: calc(0 / var(--width) * 100vw) calc(30 / var(--width) * 100vw) calc(0 / var(--width) * 100vw) calc(0 / var(--width) * 100vw);
        border-left: none;
    }

    .tags-top {
        display: flex;
        margin-top: calc(100 / var(--width) * 100vw);
        height: calc(60 / var(--width) * 100vw);
        padding-left: calc(20 / var(--width) * 100vw);
    }

    .tags-bottom {
        display: flex;
        margin-top: calc(15 / var(--width) * 100vw);
        height: calc(60 / var(--width) * 100vw);
        padding-right: calc(20 / var(--width) * 100vw);
    }
}
