.entxt {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.entxt_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.entxt_track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.entxt_track p {
  flex: 0 0 auto;
  margin: 0;
}

.fonts-loaded .entxt {
  visibility: visible;
}

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input, select):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

main {
  margin: 0 6rem;
}
@media screen and (max-width: 767px) {
  main {
    margin: 0 6vw;
    padding: 1rem 0 0 0;
  }
}

section#kv {
  background: #ffffff;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  section#kv {
    padding: 10rem 0 0 0;
  }
}
section#kv img {
  width: 100%;
  vertical-align: bottom;
  line-height: 1;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 18/7;
  margin: 5rem 0 -2rem 0;
  position: relative;
  z-index: 10;
}
section#kv .copy {
  font-size: clamp(2.8rem, -1.376rem + 5.4vw, 6.4rem);
  line-height: 1.4;
  font-weight: 300;
  position: absolute;
  top: 15rem;
  left: 5rem;
}
@media screen and (max-width: 767px) {
  section#kv .copy {
    top: 10rem;
    left: 2rem;
  }
  section#kv .copy p {
    font-size: 2.2rem;
  }
}
section#kv .copy span {
  color: #CE4C41;
}
section#kv .entxt {
  font-size: clamp(3rem, -0.48rem + 4.5vw, 6rem);
  color: #CE4C40;
  position: absolute;
  bottom: 0;
  z-index: 0;
}

section#news {
  margin: 2rem 0 10rem 0;
}
@media screen and (max-width: 767px) {
  section#news {
    margin: 2rem 0;
  }
}
section#news .news_inner {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 2rem;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  section#news .news_inner {
    display: block;
  }
}
section#news .news_inner .title {
  display: flex;
  background: #F2F0EA;
  border-radius: 2rem;
  align-items: center;
  padding: 1rem 2rem;
  line-height: 1;
  margin: 0 2rem 0 0;
}
section#news .news_inner .title .icon {
  width: 22px;
  line-height: 0;
  margin: 0 1rem 0 0;
}
section#news .news_inner .news_cont {
  max-height: 6em;
  overflow-y: hidden;
  flex: 1;
}
section#news .news_inner .news_cont:has(> dl:nth-child(3)) {
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  section#news .news_inner .news_cont {
    max-height: 10em;
  }
}
section#news .news_inner .news_cont dl {
  display: flex;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  display: none;
  padding: 0.8rem 0 0 0;
}
@media screen and (max-width: 767px) {
  section#news .news_inner .news_cont dl {
    flex-direction: column;
    padding: 1rem 0;
    display: flex;
  }
}
section#news .news_inner .news_cont dl:first-child {
  display: flex;
}
section#news .news_inner .news_cont dl dt {
  width: 8em;
  color: #CE4C40;
}
section#news .news_inner .news_cont dl dd {
  flex: 1;
}
section#news .news_inner .downicon {
  background: #CE4C40;
  cursor: pointer;
  color: #ffffff;
  padding: 0 1rem;
  border-radius: 5px;
  margin: 0.8rem 0 0 auto;
  transition: all 0.3s ease;
}
section#news .news_inner .downicon:hover {
  background: rgb(194.58125, 62.14375, 49.91875);
}
section#news .news_inner .downicon svg {
  display: block;
  line-height: 0;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
section#news .news_inner .downicon.is-active svg {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  section#news .news_inner .downicon {
    text-align: center;
    display: none;
  }
  section#news .news_inner .downicon svg {
    margin: auto;
  }
}

section.top_cont {
  margin: 0 auto 0 auto;
  padding: 5rem 0 0 0;
  max-width: 1400px;
}
@media screen and (max-width: 767px) {
  section.top_cont {
    padding: 0;
  }
}
section.top_cont .inner {
  transform-origin: center top;
  transition: transform 0.35s ease;
}
section.top_cont .inner .top_cont_title {
  background: #ffffff;
  border-radius: 2rem;
  position: relative;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
}
section.top_cont .inner .top_cont_title .number {
  font-size: clamp(2.6rem, 1.904rem + 0.9vw, 3.2rem);
  color: #CE4C40;
  width: 2em;
  line-height: 1;
}
section.top_cont .inner .top_cont_title .titles {
  flex: 1;
}
section.top_cont .inner .top_cont_title .titles p.en {
  color: #CE4C40;
  font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
  line-height: 1;
}
section.top_cont .inner .top_cont_title .titles p.jp {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}
section.top_cont .inner .top_cont_title:after {
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  border: 1px dotted #F1F0EA;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.top_cont .inner .top_cont_main {
  background: #ffffff;
  border-radius: 2rem;
  padding: 5rem 0rem 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  section.top_cont .inner .top_cont_main {
    display: block;
    padding: 6vw 6vw 0 6vw;
    margin: 0 0 2rem 0;
  }
}
section.top_cont .inner .top_cont_main .txts {
  width: 50%;
  padding: 0 0 5rem 0;
}
@media screen and (max-width: 767px) {
  section.top_cont .inner .top_cont_main .txts {
    width: 100%;
    padding: 0;
  }
}
section.top_cont .inner .top_cont_main .txts h2 {
  font-weight: bold;
  font-size: clamp(3.8rem, 2.64rem + 1.5vw, 4.8rem);
  font-feature-settings: "palt";
  line-height: 1.3;
  margin: 0 0 2rem 0;
}
@media screen and (max-width: 767px) {
  section.top_cont .inner .top_cont_main .txts h2 {
    font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
  }
}
section.top_cont .inner .top_cont_main .txts h2 span {
  color: #CE4C40;
}
section.top_cont .inner .top_cont_main .txts p {
  margin: 0 0 1em 0;
  font-size: clamp(1.3rem, 1.024rem + 0.4vw, 1.6rem);
  line-height: 1.5;
}
section.top_cont .inner .top_cont_main .txts p:last-child {
  margin: 0 0 3em 0;
}
section.top_cont .inner .top_cont_main .txts .detail_btn {
  padding: 3rem 0 0 0;
}
@media screen and (max-width: 767px) {
  section.top_cont .inner .top_cont_main .txts .detail_btn {
    text-align: center;
    margin: 0 0 3rem 0;
  }
}
section.top_cont .inner .top_cont_main .txts .detail_btn a {
  background: #CE4C40;
  color: #ffffff;
  display: inline-flex;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
section.top_cont .inner .top_cont_main .txts .detail_btn a:hover {
  background: rgb(194.58125, 62.14375, 49.91875);
}
section.top_cont .inner .top_cont_main .txts .detail_btn a p {
  margin: 0 4rem 0 0;
}
section.top_cont .inner .top_cont_main .txts .detail_btn a .icon {
  border-left: 1px solid #ffffff;
  padding: 0 0 0 0.2em;
}
section.top_cont .inner .top_cont_main .txts .detail_btn a .icon svg {
  display: block;
  line-height: 0;
}
section.top_cont .inner .top_cont_main .illust {
  width: 48%;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  section.top_cont .inner .top_cont_main .illust {
    width: 100%;
  }
}
section.top_cont .inner .top_cont_main .illust svg, section.top_cont .inner .top_cont_main .illust img {
  vertical-align: baseline;
  line-height: 1;
}

#topcont01,
#topcont02,
#topcont03,
#topcont04 {
  position: static;
  top: auto;
  height: auto;
  overflow: visible;
  z-index: auto;
}

#topcont04 {
  height: 0 !important;
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  #topcont04 {
    display: none !important;
  }
}
