﻿.l-content202410 {
  overflow-x: clip !important;
}

#activities {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
  width: 94%;
  margin: 0 auto;
  max-width: 1080px;
}

#activities .head_title {
  width: 12em;
  padding: 0.75em 0.5em 1em 0;
  box-sizing: border-box;
  position: sticky;
  margin-top: 144px;
  top: 2em;
  color: #333;
  font-size: clamp(24px, 3.25vw, 30px);
  /* font-size: 3.5svw; */
  /* border-top: 2px solid #0008;
        border-bottom: 2px solid #000; */
}

#activities .head_title::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  /* border-top: 0.25em solid #ddd; */
  /* border-left: 0.25em solid #ddd; */
  top: 0;
  left: 0;
}

#activities .head_title::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  /* border-right: 0.25em solid #ddd; */
  /* border-bottom: 0.25em solid #ddd; */
  right: 0;
  bottom: 0;
}

#activities .head_title h2 {
  font-size: 1em;
  text-align: center;
  margin: 0 auto 0.75em;
  padding: 0 1.25em 0.6em 1em;
  position: relative;
  display: flex;
  justify-content: center;
  line-height: 1.3;
}
html[lang="en"] #activities .head_title h2 {
  font-family: "HondaGlobalFontEN-Bold", sans-serif;
  font-weight: bold;
}

html[lang="ja"] #activities .head_title h2 {
  font-family: "HondaGlobalFontJP-Bold", sans-serif;
  font-weight: bold;
}

#activities .head_title h2::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 0px;
  /* border-bottom: 1px solid #333; */
  bottom: 0;
  /* border-bottom: 1px solid; */
  width: 70px;
  height: 3px;
  background: #cb0001;
}

#activities .head_title p {
  font-size: 0.45em;
  text-align: center;
}

#activities .head_title ul {
  margin: 3em auto 0 0.75em;
  font-size: 18px;
  text-align: left;
}

#activities .head_title li {
  margin: 1em auto 1em 0;
  /* padding-left: 1em; */
  /* display: flex; */
  /* line-height: 1; */
  /* width: fit-content; */
  /* position: relative; */
  /* align-items: flex-start; */
}

#activities .head_title li a {
  position: relative;
  display: block;
  margin-left: 0;
  transition: 0.4s;
}

#activities .head_title li a:hover {
  margin-left: 0.5em;
}

#activities .head_title li a::before {
  position: relative;
  content: "▶";
  margin: 0 0.5em 0 0;
  font-size: 0.75em;
  top: -0.175em;
}

#activities .categories {
  font-size: clamp(24px, 3.25vw, 30px);
  width: calc(90% - 11.25em);
  margin-top: calc(144px - 40px);
  min-width: 400px;
}

#activities details {
  padding-top: 40px;
  min-height: unset;
}

#activities details + details {
  margin-top: 32px;
}

#activities details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
  background-color: #fff;
}

#activities details[open]::details-content {
  opacity: 1;
}

#activities details .icon::after {
  transform: rotate(90deg);
  transition: 0.4s;
}
#activities details[open] .icon::after {
  transform: rotate(0deg);
  transition: 0.4s;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  #activities details[open]::details-content {
    height: auto;
  }
}

@supports not (interpolate-size: allow-keywords) {
  #activities details[open]::details-content {
    height: auto;
    /* overflow-y: scroll; */
  }
}
html[lang="en"] .l-content202410 {
  /* font-family: "HondaGlobalFontENJP-ExBold", sans-serif; */
  /* font-family: "HondaGlobalFontEN-Bold", sans-serif; */
  font-family: "HondaGlobalFontEN-Regular", sans-serif;
  /* font-family: "HondaGlobalFontEN-Light", sans-serif; */
  font-feature-settings: "palt";
}

html[lang="ja"] .l-content202410 {
  /* font-family: "HondaGlobalFontENJP-ExBold", sans-serif; */
  /* font-family: "HondaGlobalFontJP-Bold", sans-serif; */
  font-family: "HondaGlobalFontJP-Regular", sans-serif;
  /* font-family: "HondaGlobalFontJP-Light", sans-serif; */
  font-feature-settings: "palt";
}

#activities summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 6px;
  font-size: 20px;
  align-items: center;
  padding: 16px 24px 16px 0;
  /* border-top: 2px solid #c00; */
  border-bottom: 1px solid #333;
  /* background: linear-gradient(to top,#c004 0, rgba(255, 255, 255, 0) 1em); */
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: sticky;
  top: 40px;
  background: #fff;
  box-shadow: 0 0 1em #fff, 0 0 1em #fff;
}
html[lang="en"] #activities summary {
  font-family: "HondaGlobalFontEN-Bold", sans-serif;
  font-weight: bold;
}

html[lang="ja"] #activities summary {
  font-family: "HondaGlobalFontJP-Bold", sans-serif;
  font-weight: bold;
}

#activities summary::-webkit-details-marker {
  display: none;
}

#activities .icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

.icon::before,
#activities .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 3px;
  background-color: #333;
  transition: 0.4s;
}

#activities .icon::before {
  left: 0;
}

#activities .icon::after {
  right: 0;
}

#activities .content {
  background-color: #fff;
  padding: 24px 0 24px 8px;
  box-sizing: border-box;
  width: calc(100% - 22px);
  margin: 0 0 0 auto;
  /* display: flex; */
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #999;
  font-size: 16px;
  color: #333;
}

#activities .content span {
  display: inline-block;
  font-size: 0.75em;
  padding: 0.25em 0.5em 0.2em;
  background: #ccc;
  margin: 0 1em 0.25em -8px;
}
#activities .content h3 {
  font-weight: 500;
  margin: 0.25em 0 0.5em -8px;
}
html[lang="en"] #activities .content h3 {
  font-family: "HondaGlobalFontEN-Bold", sans-serif;
  font-weight: bold;
}
html[lang="ja"] #activities .content h3 {
  font-family: "HondaGlobalFontJP-Bold", sans-serif;
  font-weight: bold;
}
#activities .content > h4,
#activities .content > p {
  margin: 0.5em 0;
  line-height: 1.25;
}
#activities .content dl dt {
  width: 6em;
  font-weight: 600;
}
html #activities .content > h4 {
  font-family: "HondaGlobalFontENJP-ExBold", sans-serif;
  font-weight: 900;
}
/* html[lang="en"] #activities .content > h4 {font-family: "HondaGlobalFontEN-Bold", sans-serif;font-weight: bold;}html[lang="ja"] #activities .content > h4 {font-family: "HondaGlobalFontJP-Bold", sans-serif;font-weight: bold;} */
#activities .content dl dd {
  width: calc(100% - 6.5em);
}
#activities .content a {
  margin: unset;
  display: inline;
  padding-right: 0.25em;
}
a[target*="blank"]::after {
  content: "";
  background: url(/jp/sports/common/img/icon/icn_blank.svg) 0 0 / contain
    no-repeat;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: baseline;
  transition: background 0.4s;
  margin: 0 0 -0.075em 0.25em;
}

/* #activities .content:last-of-type {
  border-top: 1px solid #c008;
} */

@media (max-width: 768px) {
  #activities {
    display: block;
  }
  #activities .head_title {
    width: 100%;
    max-width: 15em;
    margin: 2em auto;
    position: relative;
    top: 0;
  }
  #activities .categories {
    width: 100%;
    margin-top: unset;
  }
  #activities summary {
    top: 60px;
  }
  #activities .head_title ul {
    margin: 3em auto 0;
    width: fit-content;
  }
}
@media (max-width: 480px) {
  #activities .content dl {
    flex-direction: column;
    margin: 0.75em 0;
    gap: 0.1em 0.5em;
  }
  #activities .content {
    padding: 24px 0 16px 8px;
    width: 100%;
  }
  #activities .content dl dt,
  #activities .content dl dd {
    width: unset;
  }
  #activities .categories {
    min-width: 100%;
  }
}
