@charset "UTF-8";
/* ===============================================
  * Common Styles - サイト全体で共通のスタイル *
=============================================== */
/* ===============================================
  * Base *
=============================================== */
:root {
  --padding-horizontal-global: 4%;
  --container-default: 100%;
  --container-lg: 100%;
  --container-sm: 100%;
}
@media screen and (min-width: 768px) {
  :root {
    --container-default: min(100%, calc(114rem + (var(--padding-horizontal-global) * 2)));
    --padding-horizontal-global: min(4.375%, 7rem);
    --container-lg: min(100%, calc(176rem + (var(--padding-horizontal-global) * 2)));
    --container-sm: min(100%, calc(100rem + (var(--padding-horizontal-global) * 2)));
    --padding-horizontal-global-lg: min(1.428%, 2rem);
  }
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: var(--height-header);
}
@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}
html[data-scroll-fixed=active] {
  overflow: hidden;
}
html:has(input[type=email]:focus), html:has(input[type=number]:focus), html:has(input[type=password]:focus), html:has(input[type=search]:focus), html:has(input[type=tel]:focus), html:has(input[type=text]:focus), html:has(input[type=url]:focus) {
  scroll-padding: initial !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: calc(10 * 100vw/1200);
  }
}
body {
  width: 100%;
  color: var(--color-text-default);
  letter-spacing: var(--letter-spacing);
  line-height: var(--line-height);
}
body.is-fixed {
  position: fixed;
  left: 0;
}

summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

:where(a) {
  color: var(--color-textlink, inherit);
  text-decoration: none;
}

/* ===============================================
  * Utilities *
=============================================== */
.u-visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(0px 0px 99.9% 99.9%);
}

/* ===============================================
  * Animation *
=============================================== */
[data-animation-type] {
  --animation-hover: 150ms ease-in;
}

@media screen and (min-width: 768px) and (hover: none) {
  [data-animation-type=text-underline] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  [data-animation-type=text-underline]:active {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: none), screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-moz-touch-enabled: 0), screen and (min-width: 768px) and (hover: hover) {
  [data-animation-type=text-underline]:hover {
    text-decoration: underline !important;
  }
}

[data-animation-type=opacity] {
  transition: opacity var(--animation-hover);
}

@media (hover: none) {
  [data-animation-type=opacity] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  [data-animation-type=opacity]:active {
    opacity: var(--hover-opacity);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  [data-animation-type=opacity]:hover {
    opacity: var(--hover-opacity);
  }
}

[data-animation-type=image-circle] {
  display: grid;
  place-content: center;
  border-radius: 4px;
  transition: border-radius var(--animation-hover), background var(--animation-hover);
}

@media (hover: none) {
  [data-animation-type=image-circle] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  [data-animation-type=image-circle]:active {
    background-color: var(--color-gray-500);
    border-radius: 50%;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  [data-animation-type=image-circle]:hover {
    background-color: var(--color-gray-500);
    border-radius: 50%;
  }
}
[data-animation-type=image-circle] > * {
  transition: scale var(--animation-hover);
}
@media (hover: none) {
  [data-animation-type=image-circle] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  [data-animation-type=image-circle]:active > * {
    scale: 0.8;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover) {
  [data-animation-type=image-circle]:hover > * {
    scale: 0.8;
  }
}

/* ===============================================
  * Layout *
=============================================== */
.global-contents:has([data-section="slider"]) {
  overflow-x: hidden;
}
.global-contents__inner {
  width: 100%;
  margin-inline: auto;
  /* padding-bottom: 7rem; */
}
@media screen and (min-width: 768px) {
  .global-contents__inner {
    width: min(90%, 114rem);
    padding-bottom: 3.5rem;
  }
}
.global-container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
}

.global-content__fluid-wrapper {
  width: var(--container-default);
  margin: auto;
  padding-right: var(--padding-horizontal-global) !important;
  padding-left: var(--padding-horizontal-global) !important;
}
.global-content__sm-wrapper {
  width: var(--container-sm);
  margin: auto;
  padding-right: var(--padding-horizontal-global) !important;
  padding-left: var(--padding-horizontal-global) !important;
}
.global-content__lg-wrapper {
  width: var(--container-lg);
  margin: auto;
  padding-right: var(--padding-horizontal-global-lg) !important;
  padding-left: var(--padding-horizontal-global-lg) !important;
}
@media screen and (max-width: 767px) {

}

/* ===============================================
  * Component *
=============================================== */
.section-title {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  margin-bottom: 2.0rem;
}
.section-title--en {
  font-size: 2.4rem;
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}
.section-title--ja {
  margin-top: .5rem;
  line-height: 1;
  font-weight: var(--fw-semibold);
  font-size: 1.2rem;
}
.hover-anim {
  opacity: 1;
  transition: opacity var(--container-default);
}
:where(a) {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.common-more-btn {
  display: inline-flex;
  gap: 1.0rem;
}
.common-more-btn__text {
  font-size: 1.6rem;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}
.common-more-btn__img {
  width: 1.7rem;
  align-self: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .section-title {
    flex-direction: column;
    gap: .7rem;
    align-items: baseline;
  }
  .section-title {
    margin-bottom: 1.5rem;
  }
  .common-more-btn__text {
    font-size: 1.5rem;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active), (-moz-touch-enabled: 0), (hover: hover){
  :where(a):hover {
    opacity: 0.6;
  }
}

/* ============================================================================================ NEWS */
.top-section[data-section="news"] .section-title {
	margin-bottom: 2.0rem;
}
.news__item {
	border-bottom: 1px solid var(--color-border-gray);
	padding-block: 2.5rem;
	display: grid;
	grid-template-columns: 10.8rem 1fr;
	align-items: start;
}
.news__item:first-child {
	border-top: 1px solid var(--color-border-gray);
}
.news__date {
	font-size:1.4rem;
}
.news__content {
	font-size:1.4rem;
	line-height:calc(22.5/14);
}
.news-btn {
	margin-top: 3.5rem;
	text-align: right;
}
.news-btn .common-more-btn__text {
	font-size:1.5rem;
}
@media screen and (max-width: 767px) {
	.top-section[data-section="news"] .section-title {
		margin-bottom: 1.5rem;
	}
	.news__item {
		padding-block: 1.5rem;
		gap: 1.0rem;
		padding-block: 1.5rem;
		grid-template-columns: 1fr;
	}
	.news-btn {
		text-align: center;
		margin-top: 2.0rem;
	}
  .c-category-navigation-banner__item {
    max-width: 34.5rem;
    margin-inline: auto;
  }
}
.news__content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
	overflow: hidden;
  text-overflow: ellipsis;
}
.news-btn {
  display: block;
}
@media screen and (max-width: 767px) {
  .news__content {
		-webkit-line-clamp: 3;
	}
}
/* ============================================================================================ side bar */
.main-content__wrapper:has(.main-content__sider-nav) {
  padding-bottom: 7.0rem;
}
.main-content__sider-nav {
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .main-content__sider-nav {
    margin-bottom: 5.0rem;
    width: 100%;
  }
  .main-content__wrapper:has(.main-content__sider-nav) {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding-bottom: 0;
  }
}

