@charset "UTF-8";


/*---------------------------------------------------------------*\
$press release - section & container
\*---------------------------------------------------------------*/

.pressrelease-section {
  width: calc(100% - 80px);
  max-width: 900px;
  margin: 200px auto 0;
  padding-bottom: 120px;
}

.pressrelease-container {
  width: 100%;
}


/*---------------------------------------------------------------*\
$press release - page title (list page)
\*---------------------------------------------------------------*/

.pressrelease-page-title {
  font-size: clamp(30px, 8vw, 100px);
  margin: 0 0 80px 0;
}


/*---------------------------------------------------------------*\
$press release - list items
\*---------------------------------------------------------------*/

.pressrelease-list {
  display: flex;
  flex-direction: column;
}

.pressrelease-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: solid 1px rgba(255, 255, 255, .15);
  transition: opacity .2s ease;
  text-decoration: none;
}

.pressrelease-item:first-child {
  border-top: solid 1px rgba(255, 255, 255, .15);
}

.pressrelease-item:hover {
  opacity: .7;
}

.pressrelease-date {
  font-size: 15px;
  color: #999;
  white-space: nowrap;
  line-height: 1.6;
}

.pressrelease-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.pressrelease-empty {
  padding: 60px 0;
  font-size: 16px;
  line-height: 1.6;
}


/*---------------------------------------------------------------*\
$press release - article (single page)
\*---------------------------------------------------------------*/

.pressrelease-header {
  margin-bottom: 48px;
}

.pressrelease-header .pressrelease-date {
  font-size: 16px;
  margin-bottom: 20px;
}

.pressrelease-article-title {
  font-size: clamp(24px, 5vw, 40px);
  line-height: 1.4;
}


/*---------------------------------------------------------------*\
$press release - hero image
\*---------------------------------------------------------------*/

.pressrelease-hero {
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
}

.pressrelease-hero img {
  width: 100%;
  height: auto;
  display: block;
}


/*---------------------------------------------------------------*\
$press release - body content (Markdown rendered)
\*---------------------------------------------------------------*/

.pressrelease-body {
  line-height: 1.85;
}

.pressrelease-body p {
  margin-bottom: 1.5em;
  line-height: 1.85;
}

.pressrelease-body h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 2.5em 0 1em;
  padding-bottom: 12px;
  border-bottom: solid 1px rgba(255, 255, 255, .2);
  line-height: 1.4;
}

.pressrelease-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 2em 0 0.8em;
  line-height: 1.4;
}

.pressrelease-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 1.5em 0 0.6em;
  line-height: 1.4;
}

/* bullet points with ・ */
.pressrelease-body ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.pressrelease-body ul li {
  position: relative;
  padding-left: 0.2em;
  margin-bottom: 0.5em;
  line-height: 1.85;
  list-style: none;
}

.pressrelease-body ul li::before {
  content: "\30FB";
  position: absolute;
  left: -1.3em;
}

.pressrelease-body ol {
  padding-left: 1.8em;
  margin-bottom: 1.5em;
  list-style: decimal;
}

.pressrelease-body ol li {
  margin-bottom: 0.5em;
  line-height: 1.85;
}

/* hyperlinks */
.pressrelease-body a {
  color: #6ba3ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity .2s ease;
  display: inline;
}

.pressrelease-body a:hover {
  opacity: .7;
}

/* blockquote */
.pressrelease-body blockquote {
  border-left: 3px solid rgba(255, 255, 255, .3);
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  color: #bbb;
}

.pressrelease-body blockquote p {
  color: #bbb;
}

/* code */
.pressrelease-body code {
  background: rgba(255, 255, 255, .08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* table */
.pressrelease-body table {
  width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
}

.pressrelease-body th,
.pressrelease-body td {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  line-height: 1.6;
}

.pressrelease-body th {
  background: rgba(255, 255, 255, .06);
  font-weight: 600;
}

/* hr */
.pressrelease-body hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin: 2em 0;
}

/* strong / em */
.pressrelease-body strong {
  font-weight: 700;
}

.pressrelease-body em {
  font-style: italic;
}


/*---------------------------------------------------------------*\
$press release - back navigation
\*---------------------------------------------------------------*/

.pressrelease-nav {
  margin-top: 80px;
  padding-top: 40px;
  border-top: solid 1px rgba(255, 255, 255, .15);
}

.pressrelease-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease;
}

.pressrelease-back:hover {
  opacity: .7;
}

.icon_arrow_back {
  width: 20px;
  height: 20px;
}


/*---------------------------------------------------------------*\
$press release - content area shared improvements
(also applies to policy pages via .content_privacy)
\*---------------------------------------------------------------*/

.content_privacy {
  line-height: 1.8;
}

.content_privacy .desciption_content_privacy {
  line-height: 1.85;
}

.content_privacy .desciption_company {
  line-height: 1.85;
}

/* bullet points for policy pages */
.content_privacy ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.content_privacy ul li {
  position: relative;
  padding-left: 0.2em;
  margin-bottom: 0.4em;
  line-height: 1.85;
  list-style: none;
}

.content_privacy ul li::before {
  content: "\30FB";
  position: absolute;
  left: -1.3em;
}

/* hyperlinks for policy pages */
.content_privacy a:not(.neo-btn):not(.back_top):not(.each_menu) {
  color: #6ba3ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity .2s ease;
  display: inline;
}

.content_privacy a:not(.neo-btn):not(.back_top):not(.each_menu):hover {
  opacity: .7;
}


/*---------------------------------------------------------------*\
$responsive
\*---------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  .pressrelease-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .pressrelease-date {
    font-size: 14px;
  }

  .pressrelease-title {
    font-size: 16px;
  }
}


@media screen and (max-width: 600px) {

  .pressrelease-section {
    width: calc(100% - 44px);
    margin-top: 140px;
    padding-bottom: 80px;
  }

  .pressrelease-page-title {
    margin: 0 0 48px 0;
  }

  .pressrelease-body h2 {
    font-size: 20px;
  }

  .pressrelease-body h3 {
    font-size: 18px;
  }

  .pressrelease-nav {
    margin-top: 60px;
    padding-top: 32px;
  }
}