@charset "utf-8";

/*==========================================================================
  variables
  ==========================================================================*/
:root {
  /* breakpoints */
  --pc-width: 1024px;
  --max-width: 1620px;

  /* color */
  --color-primary: #6FBB4A;
  --color-accent1: #009A5A;
  --color-accent2: #B7DDA4;
  --color-text: #181818;
  --color-white: #FDFDFD;
  --color-white075: rgb(253 253 253 / 0.75);
  --color-white095: rgb(253 253 253 / 0.95);
  --color-lightgray: #D4D4D4;
  --color-bg1: #F0F8EC;
  --color-bg2: #E2F1DA;
  --color-bg3: #D3EAC8;
  --color-btn3: #4A6FBB;
  --color-btn1Hover: #9ACF80;
  --color-btn2Hover: #E2F1DA;
  --color-btn3Hover: #809ACF;

  --color-cat01: #2f9964; /* 再処理 */
  --color-cat02: #2f9964; /* 廃棄物管理 */
  --color-cat03: #2f9964; /* 濃縮 */
  --color-cat04: #2f9964; /* 埋設 */
  --color-cat05: #2f9964; /* MOX */
  --color-cat06: #166db0; /* 報告 */
  --color-cat07: #7bcb0a; /* 記者懇談会等 */
  --color-cat08: #22aee3; /* イベント */
  --color-cat09: #795548; /* その他 */

  /* font-family */
  --fontFamily: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --fontFamily-accent: "Sawarabi Mincho", serif;

  /* font-size（SP基準:w393） */
  --fontSize-base: 4.58vw;    /* 18px */
  --fontSize-h1: 8.14vw;     /* 32px */
  --fontSize-h2: 8.9vw;     /* 35px */
  --fontSize-h3: 7.12vw;     /* 28px */
  --fontSize-h4: 5.08vw;     /* 20px */
  --fontSize-text23: 5.85vw;  /* 23px */
  --fontSize-text22: 5.59vw;  /* 22px */
  --fontSize-text16: 4.07vw;  /* 16px */
  --fontSize-text15: 3.81vw;  /* 15px */
  --fontSize-text14: 3.56vw;  /* 14px */
  --fontSize-text13: 3.3vw;  /* 13px */
  --fontSize-text11: 2.79vw;  /* 11px */
  font-size: var(--fontSize-base);

  /* line-height */
  --lineHeight-base: 1.5;
  --lineHeight-h1: 1.45;
  --lineHeight-h2: 1.45;
  --lineHeight-h3: 1.45;
  --lineHeight-h4: 1.45;

  /* letter spacing */
  --letterSpacing-h1: 0.17rem;

  /* margin */
  --inline-base: 2.54vw;
  --block-base: 12.72vw;
}
@media (width >= 1024px) {
  :root {
    --fontSize-base: 18px;
    --fontSize-h1: 3.05rem;     /* 55px */
    --fontSize-h2: 1.94rem;     /* 35px */
    --fontSize-h3: 1.55rem;     /* 28px */
    --fontSize-h4: 1.11rem;     /* 20px */
    --fontSize-text23: 1.27rem;  /* 23px */
    --fontSize-text22: 1.22rem;  /* 22px */
    --fontSize-text16: 0.88rem;  /* 16px */
    --fontSize-text15: 0.83rem;  /* 15px */
    --fontSize-text14: 0.77rem;  /* 14px */
    --fontSize-text13: 0.72rem;  /* 13px */
    --fontSize-text11: 0.61rem;  /* 11px */
    font-size: var(--fontSize-base);

    /* margin */
    --inline-base: clamp(25px, 3.08vw, 50px);
    --block-base: 100px;
  }
}

/*==========================================================================
  reset
  ==========================================================================*/
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  font-family: var(--fontFamily);
  line-height: var(--lineHeight-base);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-white);
  color: var(--color-text);
  overflow-wrap: break-word;
  overflow-x: hidden;
  @media (width >= 1024px) {
    overflow-x: clip;
  }
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* :focus-visible {
  outline: 2px solid var(--clr-primary, #007aff);
  outline-offset: 2px;
} */

/*==========================================================================
  layout
  ==========================================================================*/
/* .container {
}
@media (width >= 1024px) {
  .container {
  }
} */

.section {
  margin-bottom: var(--block-base);
}
.section__inner {
  max-width: var(--max-width);
  margin-inline: auto;
}

.pd-inline-base {
  padding-inline: calc(var(--inline-base) * 2);
  @media (width >= 1024px) {
    padding-inline: var(--inline-base);
  }
}
.pd-block-base {
  padding-block: var(--block-base);
}

.content-2columns {
  display: flex;
  .content-2column {
    width: 50%;
  }
  &.flex-vertical {
    flex-direction: column;
    .content-2column {
      width: 100%;
      height: 50%;
    }
  }
}

/*==========================================================================
  title
  ==========================================================================*/
.title-h1 {
  font-size: var(--fontSize-h1);
  line-height: var(--lineHeight-h1);
  letter-spacing: var(--letterSpacing-h1);
}
.title-h2 {
  font-size: var(--fontSize-h2);
  line-height: var(--lineHeight-h2);
  margin-bottom: 3.81vw;
  @media (width >= 1024px) {
    margin-bottom: clamp(15px, 1.235vw, 20px);
  }
}
.title-h3 {
  font-size: var(--fontSize-h3);
  line-height: var(--lineHeight-h3);
  margin-bottom: calc(var(--block-base) * 0.37);
  @media (width >= 1024px) {
    margin-bottom: clamp(8px, 0.617vw, 10px);
  }
}
.title-h4 {
  font-size: var(--fontSize-h4);
  line-height: var(--lineHeight-h4);
}

/*==========================================================================
  category list
  ==========================================================================*/
.list {
  line-height: 22px;
  tr {
    background-image: repeating-linear-gradient(90deg, var(--color-lightgray), var(--color-lightgray) 3px, transparent 3px, transparent 6px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
    @media (width < 1024px) {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }
  }
  td {
    padding-block: 3.81vw 1.27vw;
    font-size: var(--fontSize-text15);
    line-height: 1.6;
    @media (width >= 1024px) {
      padding-block: 10px;
      font-size: clamp(var(--fontSize-text14), calc(0.6711 * 1vw + 7.1275px), var(--fontSize-base));
    }
    &:first-of-type {
        display: none;
    }
    &:nth-child(2) {
        width: clamp(1.7778rem, calc(1.6779 * 1vw + 0.8233rem), 2.3333rem);
        text-align: right;
        white-space: nowrap;
    }
    &:nth-child(3) {
        width: clamp(1.7778rem, calc(1.6779 * 1vw + 0.8233rem), 2.3333rem);
        text-align: right;
        white-space: nowrap;
    }
    &:last-child {
      @media (width < 1024px) {
        width: 100%;
        padding-block: 0 3.81vw;
      }
    }
  }
  .category {
    @media (width >= 1024px) {
      width: 218px;
    }
    li {
      width: 30.53vw;
      height: 5.59vw;
      margin-left: var(--inline-base);
      background: #6a6;
      text-align: center;
      font-size: var(--fontSize-text15);
      line-height: 5.59vw;
      border-radius: 3px;
      overflow: hidden;
      color: var(--color-white);
      cursor: pointer;
      @media (width >= 1024px) {
        width: 169px;
        height: 22px;
        margin-left: 25px;
        line-height: 22px;
      }
    }
  }
}
.再処理 .category li:first-child {
	background: var(--color-cat01);
}
.廃棄物管理 .category li:first-child {
	background: var(--color-cat02);
}
.濃縮 .category li:first-child {
	background: var(--color-cat03);
}
.埋設 .category li:first-child {
	background: var(--color-cat04);
}
.MOX .category li:first-child {
	background: var(--color-cat05);
}
.報告 .category li:first-child {
	background: var(--color-cat06);
}
.記者懇談会等 .category li:first-child {
	background: var(--color-cat07);
}
.イベント .category li:first-child {
	background: var(--color-cat08);
}
.その他 .category li:first-child {
	background: var(--color-cat09);
}

/*==========================================================================
  parts
  ==========================================================================*/
.btn-primary {
  height: 10.17vw;
  padding-inline: 8.9vw;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fontSize-text16);
  font-weight: bold;
  text-align: center;
  line-height: 10.17vw;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  transition: .6s;
  z-index: 1;
  border-radius: 5.8vw;
  cursor: pointer;
  box-shadow: 0px 0px 1.017vw 0px rgba(0, 0, 0, .05);
  &::before {
    content: "";
    width: 200%;
    border-right: 10.17vw solid transparent;
    border-bottom: 10.17vw solid var(--color-btn1Hover);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform ease .6s;
  }
  &:hover {
    color: var(--color-white);
    &::before {
      transform: translateX(0);
    }
  }
  &.btn-small {
    height: 7.12vw;
    padding-inline: 3.81vw;
    font-size: var(--fontSize-text13);
    line-height: 7.12vw;
    border-radius: 3.56vw;
    &::before {
    content: "";
      border-right: 7.12vw solid transparent;
      border-bottom: 7.12vw solid var(--color-btn1Hover);
    }
  }
}
@media (width >= 1024px) {
  .btn-primary {
    height: 40px;
    padding-inline: 35px;
    font-size: clamp(var(--fontSize-text14), calc(0.3356 * 1vw + 10.5638px), var(--fontSize-text16));
    line-height: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .05);
    &::before {
      content: "";
      width: 200%;
      border-right: 40px solid transparent;
      border-bottom: 40px solid var(--color-btn1Hover);
    }
    &.btn-small {
      height: 28px;
      padding-inline: 15px;
      font-size: var(--fontSize-text13);
      line-height: 28px;
      border-radius: 14px;
      &::before {
      content: "";
        border-right: 28px solid transparent;
        border-bottom: 28px solid var(--color-btn1Hover);
      }
    }
  }
}
.btn-secondary {
  height: 10.17vw;
  padding-inline: 8.9vw;
  border: var(--color-primary) 0.5vw solid;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: var(--fontSize-text16);
  font-weight: bold;
  text-align: center;
  line-height: 9.16vw;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: .6s;
  z-index: 1;
  border-radius: 5.8vw;
  cursor: pointer;
  box-shadow: 0px 0px 1.017vw 0px rgba(0, 0, 0, .05);
  &::before {
    content: "";
    width: 200%;
    border-right: 10.17vw solid transparent;
    border-bottom: 10.17vw solid var(--color-btn2Hover);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform ease .6s;
  }
  &:hover {
    color: var(--color-primary);
    &::before {
      transform: translateX(0);
    }
  }
  &.btn-small {
    height: 7.12vw;
    padding-inline: 3.81vw;
    font-size: var(--fontSize-text13);
    line-height: 7.12vw;
    border-radius: 3.56vw;
    &::before {
    content: "";
      border-right: 7.12vw solid transparent;
      border-bottom: 7.12vw solid var(--color-btn2Hover);
    }
  }
}
@media (width >= 1024px) {
  .btn-secondary {
    height: 40px;
    padding-inline: 35px;
    border: var(--color-primary) 2px solid;
    font-size: clamp(var(--fontSize-text14), calc(0.3356 * 1vw + 10.5638px), var(--fontSize-text16));
    line-height: 36px;
    border-radius: 20px;
    &::before {
      content: "";
      width: 200%;
      border-right: 40px solid transparent;
      border-bottom: 40px solid var(--color-btn2Hover);
    }
    &.btn-small {
      height: 28px;
      padding-inline: 15px;
      font-size: var(--fontSize-text13);
      line-height: 24px;
      border-radius: 14px;
      &::before {
      content: "";
        border-right: 28px solid transparent;
        border-bottom: 28px solid var(--color-btn2Hover);
      }
    }
  }
}
.btn-tertiary {
  height: 10.17vw;
  padding-inline: 8.9vw;
  background-color: var(--color-btn3);
  color: var(--color-white);
  font-size: var(--fontSize-text16);
  font-weight: bold;
  text-align: center;
  line-height: 10.17vw;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: .6s;
  z-index: 1;
  border-radius: 5.8vw;
  cursor: pointer;
  box-shadow: 0px 0px 1.017vw 0px rgba(0, 0, 0, .05);
  &::before {
    content: "";
    width: 200%;
    border-right: 10.17vw solid transparent;
    border-bottom: 10.17vw solid var(--color-btn3Hover);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform ease .6s;
  }
  &:hover {
    color: var(--color-white);
    &::before {
      transform: translateX(0);
    }
  }
  &.btn-small {
    height: 7.12vw;
    padding-inline: 3.81vw;
    font-size: var(--fontSize-text13);
    line-height: 7.12vw;
    border-radius: 3.56vw;
    &::before {
    content: "";
      border-right: 7.12vw solid transparent;
      border-bottom: 7.12vw solid var(--color-btn3Hover);
    }
  }
}
@media (width >= 1024px) {
  .btn-tertiary {
    height: 40px;
    padding-inline: 35px;
    font-size: clamp(var(--fontSize-text114), calc(0.3356 * 1vw + 10.5638px), var(--fontSize-text16));
    line-height: 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, .05);
    &::before {
      content: "";
      width: 200%;
      border-right: 40px solid transparent;
      border-bottom: 40px solid var(--color-btn3Hover);
    }
    &.btn-small {
      height: 28px;
      padding-inline: 15px;
      font-size: var(--fontSize-text13);
      line-height: 28px;
      border-radius: 14px;
      &::before {
      content: "";
        border-right: 28px solid transparent;
        border-bottom: 28px solid var(--color-btn3Hover);
      }
    }
  }
}

/*==========================================================================
  utility
  ==========================================================================*/
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
.color-white {
  color: var(--color-white);
}

.bg-primary {
  background-color: var(--color-primary);
}
.bg-bg1 {
  background-color: var(--color-bg1);
}
.bg-bg2 {
  background-color: var(--color-bg2);
}
.bg-bg3 {
  background-color: var(--color-bg3);
}
.bg-white {
  background-color: var(--color-white);
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

.link-hover a,
a.link-hover {
  color: transparent;
  text-decoration: none;
  background: linear-gradient(to right, var(--color-primary) 50%, #000 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position ease 0.3s;
  &:hover {
    background-position: 0 100%;
  }
}

span.link-arrow {
  width: 1.78vw;
  min-width: 1.78vw;
  height: 2.03vw;
  background: url("/ja/assets_2026/common/images/link-arrow.svg") no-repeat center / contain;
  display: inline-block;
}
@media (width >= 1024px) {
  span.link-arrow {
    width: 7px;
    min-width: 7px;
    height: 8px;
  }
}
.link-arrow a {
  display: inline-flex;
  &::before {
    content: "";
    width: 3.05vw;
    min-width: 3.05vw;
    height: 2.03vw;
    background: url("/ja/assets_2026/common/images/link-arrow.svg") no-repeat left / contain;
    display: block;
    transform: translateY(0.4rem);
  }
}
@media (width >= 1024px) {
  .link-arrow a {
    &::before {
      content: "";
      width: 12px;
      min-width: 12px;
      height: 8px;
    }
  }
}

.list-disc {
	padding-left: 2em;
	> li {
		list-style: disc;
    line-height: 1.7;
	}
}

@media (width < 1024px) {
  .hide-sp {
    display: none !important;
  } 
}
@media (width >= 1024px) {
  .hide-pc {
    display: none !important;
  } 
}

/*==========================================================================
  header
  ==========================================================================*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}
@media (width >= 1024px) {
  .header {
    height: 0;
    top: 0;
    border-radius: 10px;
    position: sticky;
    transform: translateY(30px);
  }
}
.header__inner {
  width: 100%;
  background-color: var(--color-white075);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .15);
  transition: ease .3s;
  &.is-activeHeader {
    background-color: var(--color-white095);
  }
}
@media (width >= 1024px) {
  .header__inner {
    border-radius: 10px;
    overflow: hidden;
  }
}
.header__contents {
  height: 15.26vw;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width >= 1024px) {
  .header__contents {
    height: 110px;
  }
}
.header__logo {
  img {
    width: 45.80vw;
  }
}
@media (width >= 1024px) {
  .header__logo {
    img {
      width: clamp(150px, calc(21.1409 * 1vw + -66.4832px), 276px);
      min-width: 150px;
    }
  }
}
.header__scroll {
  height: calc(100vh - 15.26vw);
  background-color: var(--color-white);
  position: fixed;
  top: 15vw;
  left: 100vw;
  overflow-y: auto;
  transition: ease .3s;
}
@media (width >= 1024px) {
  .header__scroll {
    height: auto;
    background-color: transparent;
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(30px, calc(3.3557 * 1vw + -4.3624px), 50px);
    overflow-y: visible;
  }
}

.header__menu {
  width: 100%;
  padding-top: 22.9vw;
}
@media (width >= 1024px) {
  .header__menu {
    width: auto;
    padding-top: 0;
    position: static;
    .link-arrow {
      display: none;
    }
  }
}

.header__menu__items {
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
@media (width >= 1024px) {
  .header__menu__items {
    flex-direction: row;
  }
}

.header__menu__item {
  padding-inline: var(--inline-base);
  .header__menu__title {
    position: relative;
    white-space: nowrap;
    display: block;
    &:after {
      content: "";
      height: 1px;
      background-image: repeating-linear-gradient(90deg, var(--color-accent2), var(--color-accent2) 3px, transparent 3px, transparent 6px);
      background-position: left bottom;
      background-repeat: repeat-x;
      background-size: 100% 1px;
      display: block;
    }
  }
  .header__menu__link {
    height: 12.72vw;
    line-height: 12.72vw;
  }
  
}
@media (width >= 1024px) {
  .header__menu__item {
    padding-inline: clamp(5px, calc(2.5168 * 1vw + -20.7718px), 20px);
    .header__menu__title {
      background: none;
      display: inline;
      &::before {
        content: "";
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        position: absolute;
        left: 0;
        bottom: -7px;
        border-radius: 2px;
        transition: ease .3s;
      }
      &:after {
        display: none;
      }
      .link-arrow {
        display: none;
      }
    }
    .header__menu__link {
      height: auto;
      font-size: clamp(var(--fontSize-text14), calc(1.0067 * 1vw + 3.6913px), var(--fontSize-h4));
      line-height: normal;
    }
    &:first-of-type {
      padding-left: 0;
    }
    &:last-of-type {
      padding-right: 0;
    }
    &.is-active {
      .header__menu__title {
        &::before {
          width: 100%;
        }
      }
      .header__submenu__items {   
        opacity: 1;
        z-index: 1;
      }
    }
  }
}

.header__submenu__items {
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
}
@media (width >= 1024px) {
  .header__submenu__items {
    height: auto;
    padding: 92px 0 50px;
    position: absolute;
    left: 0;
    overflow: hidden;
    display: block;
    opacity: 0;
    z-index: -1;
    transition: ease .3s;
    &::before {
      content: "";
      width: 100%;
      height: 2px;
      background-color: var(--color-white);
      position: absolute;
      top: 42px;
      left: 0;
      border-radius: 2px;
    }
  }
}

.header__submenu__title {
  display: none;
}
@media (width >= 1024px) {
  .header__submenu__title {
    margin-inline: auto;
    margin-bottom: 10px;
    display: block;
  }
}

.header__submenu-1__items {
  width: 100%;
  margin-inline: auto;
  font-size: var(--fontSize-text16);
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  &::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 2.54vw;
  }
}
@media (width >= 1024px) {
  .header__submenu-1__items {
    font-size: clamp(var(--fontSize-text13), calc(0.5034 * 1vw + 7.8456px), var(--fontSize-text16));
    &::before {
      width: 2px;
      top: -10px;
      left: 10px;
    }
  }
}

@media (width < 1024px) {
  .header__submenu-1__item {
    width: 100%;
    padding-left: 5.08vw;
    &:first-of-type {
      &:before {
        content: "";
        height: 1px;
        background-image: repeating-linear-gradient(90deg, var(--color-accent2), var(--color-accent2) 3px, transparent 3px, transparent 6px);
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 100% 1px;
        display: block;
      }
    }
  }
}
@media (width >= 1024px) {
  .header__submenu-1__item {
      margin-bottom: 10px;
      padding-left: 30px;
  }
}

@media (width < 1024px) {
  .header__submenu-1__title {
    position: relative;
    &:after {
      content: "";
      height: 1px;
      background-image: repeating-linear-gradient(90deg, var(--color-accent2), var(--color-accent2) 3px, transparent 3px, transparent 6px);
      background-position: left bottom;
      background-repeat: repeat-x;
      background-size: 100% 1px;
      display: block;
    }
  }
}
@media (width >= 1024px) {
  .header__submenu-1__title {
      height: auto;
      line-height: 21px;
      .link-arrow {
        display: none;
      }
  }
}

@media (width < 1024px) {
  .header__submenu-1__link {
    min-height: 12.72vw;
    padding-block: 3.81vw;
    padding-right: 6.5vw;
    display: flex;
    align-items: center;
  }
}

.header__submenu-2__items {
  width: 100%;
  margin-inline: auto;
  font-weight: normal;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  &::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--color-accent2);
    position: absolute;
    left: 2.54vw;
  }
}
@media (width >= 1024px) {
  .header__submenu-2__items {
    height: auto;
    margin-top: 10px;
    &::before {
      width: 2px;
      top: -10px;
      left: 10px;
    }
  }
}

@media (width < 1024px) {
  .header__submenu-2__item {
    width: 100%;
    padding-left: 5.08vw;
    &:after {
      content: "";
      height: 1px;
      background-image: repeating-linear-gradient(90deg, var(--color-accent2), var(--color-accent2) 3px, transparent 3px, transparent 6px);
      background-position: left bottom;
      background-repeat: repeat-x;
      background-size: 100% 1px;
      display: block;
    }
    &:first-of-type {
      &:before {
        content: "";
        height: 1px;
        background-image: repeating-linear-gradient(90deg, var(--color-accent2), var(--color-accent2) 3px, transparent 3px, transparent 6px);
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 100% 1px;
        display: block;
      }
    }
  }
}
@media (width >= 1024px) {
  .header__submenu-2__item {
      margin-bottom: 10px;
      padding-left: 30px;
      padding-right: 20px;
  }
}

@media (width >= 1024px) {
  .header__submenu-2__title {
      height: auto;
      line-height: 21px;
  }
}

@media (width < 1024px) {
  .header__submenu-2__link {
    height: 12.72vw;
    line-height: 12.72vw;
    display: block;
  }
}

/* PC - メニューごとの個別設定 */
@media (width >= 1024px) {
  .header-company {
    .header__submenu__title {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
    }
    .header__submenu-1__items {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
      height: 124px;
    }
    .header__submenu-1__item {
      width: 50%;
    }
  }
  .header-about {
    .header__submenu__title {
      width: clamp(800px, calc(41.9463 * 1vw + 370.4698px), 1050px);
    }
    .header__submenu-1__items {
      width: clamp(800px, calc(41.9463 * 1vw + 370.4698px), 1050px);
      height: 186px;
    }
    .header__submenu-1__item {
      width: calc(100% / 3);
    }
  }
  .header-special {
    .header__submenu__title {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
    }
    .header__submenu-1__items {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
      height: 295px;
    }
    .header__submenu-1__item {
      width: 50%;
      margin-bottom: 0;
    }
  }
  .header-release {
    .header__submenu__title {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
    }
    .header__submenu-1__items {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
      height: 124px;
    }
    .header__submenu-1__item {
      width: 50%;
    }
  }
  .header-pr {
    .header__submenu__title {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
    }
    .header__submenu-1__items {
      width: clamp(800px, calc(33.557 * 1vw + 456.3758px), 1000px);
      height: 248px;
    }
    .header__submenu-1__item {
      width: 50%;
      &:nth-of-type(1),
      &:nth-of-type(8) {
        margin-bottom: 0;
      }
    }
  }
  .header-recruit {
    .header__submenu__title {
      width: clamp(800px, calc(41.9463 * 1vw + 370.4698px), 1050px);
    }
    .header__submenu-1__items {
      width: clamp(800px, calc(41.9463 * 1vw + 370.4698px), 1050px);
      height: 30px;
    }
    .header__submenu-1__item {
      width: calc(100% / 3);
      margin-bottom: 0;
    }
  }
}

/* SP - メニュー開閉 */
.header__submenu {
  height: 0;
  transition: ease .3s;
}
@media (width < 1024px) {
  .header__menu__btn {
    width: 7.63vw;
    height: 9.41vw;
    position: absolute;
    top: 4.07vw;
    right: 5.08vw;
    &:before {
      content: "";
      width: 100%;
      height: 100%;
      background: url("/ja/assets_2026/common/images/btn-hamburger.svg") no-repeat center / contain;
      position: absolute;
      opacity: 1;
      transition: ease .3s;
    }
    &:after {
      content: "";
      width: 100%;
      height: 100%;
      background: url("/ja/assets_2026/common/images/btn-hamburger-close.svg") no-repeat center / contain;
      position: absolute;
      opacity: 0;
      transition: ease .3s;
    }
  }
  .is-headerMenu {
    width: 100%;
    position: fixed;
    pointer-events: none;
    .header {
      pointer-events: auto;
    }
    .header__inner {
      background-color: var(--color-white);
    }
    .header__menu__btn {
      &:before {
        opacity: 0;
      }
      &:after {
        opacity: 1;
      }
    }
    .header__scroll {
      left: 0;
    }
  }
}
@media (width >= 1024px) {
  .header__menu__btn {
    display: none;
  }
}

/* SP - アコーディオン開閉 */
.accordion1, .accordion2 {
  display: none;
}
@media (width < 1024px) {
  .accordion1 {
    +label {
      .header__menu__title{
        .link-arrow {
          position: absolute;
          top: 50%;
          right: 2.54vw;
          transform: translateY(-4px) rotate(90deg);
          transition: ease .3s;
        }
      }
      .header__menu__link {
        pointer-events: none;
      }
    }
  }
  .accordion1__content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: ease .3s;
    .header__submenu-1__items {
      min-height: 0;
    }
  }
  .accordion1:checked {
    ~label .header__menu__title{
      &:after {
        content: "";
        display: none;
      }
      .link-arrow {
        transform: translateY(-4px) rotate(-90deg);
      }
    }
    ~.accordion1__content {
      grid-template-rows: 1fr;
    }
  }

  .accordion2 {
    +label {
      .header__submenu-1__title {
        .link-arrow {
          position: absolute;
          top: 50%;
          right: 2.54vw;
          transform: translateY(-4px) rotate(90deg);
          transition: ease .3s;
        }
      }
      .header__submenu-1__link {
        pointer-events: none;
      }
    }
  }
  .accordion2__content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: ease .3s;
    .header__submenu-2__items {
      min-height: 0;
    }
  }
  .accordion2:checked {
    ~label .header__submenu-1__title{
      &:after {
        content: "";
        display: none;
      }
      .link-arrow {
        transform: translateY(-4px) rotate(-90deg);
      }
    }
    ~.accordion2__content {
      grid-template-rows: 1fr;
    }
  }
}

.header__utilities {
  width: 100%;
}
@media (width >= 1024px) {
  .header__utilities {
    width: 184px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.header__search {
  width: 89.82vw;
  font-size: var(--fontSize-text13);
  position: absolute;
  top: 6.36vw;
  left: calc(var(--inline-base) * 2);
  .search__input {
    position: relative;
  }
  .search__query {
    width: 100%;
    height: 10.17vw;
    padding: 0 9.16vw 0 4.58vw;
    border: var(--color-lightgray) 2px solid;
    border-radius: 5.09vw;
    line-height: 10.17vw;
    outline: 0;
    &::placeholder {
      color: var(--color-lightgray);
    }
  }
  .search__btn {
    width: 5.08vw;
    height: 5.08vw;
    position: absolute;
    top: 2.54vw;
    right: 5.08vw;
    img {
      width: 100%;
    }
  }
}
@media (width >= 1024px) {
  .header__search {
    width: 100%;
    height: 50%;
    position: static;
    .search__query {
      height: 28px;
      padding: 0 30px 0 15px;
      border-radius: 14px;
      line-height: 28px;
    }
    .search__btn {
      width: auto;
      height: auto;
      padding: 5px;
      top: 2px;
      right: 7px;
    }
  }
}
.header__btn {
  width: 100%;
  padding: 12.72vw;
  display: flex;
  justify-content: space-between;
}
@media (width >= 1024px) {
  .header__btn {
    height: 50%;
    padding: 0;
    padding-inline: unset;
  }
}
@media (width < 1024px) {
  .header__btn-transaction{
    &.btn-small {
      height: 10.17vw;
      padding-inline: 8.9vw;
      font-size: var(--fontSize-text16);
      line-height: 10.17vw;
      border-radius: 5.8vw;
      &::before {
      content: "";
        border-right: 10.17vw solid transparent;
        border-bottom: 10.17vw solid var(--color-btn3Hover);
      }
    }
  }
}
@media (width < 1024px) {
  .header__btn-language{
    &.btn-small {
      height: 10.17vw;
      padding-inline: 8.9vw;
      font-size: var(--fontSize-text16);
      line-height: 10.17vw;
      border-radius: 5.8vw;
      &::before {
      content: "";
        border-right: 10.17vw solid transparent;
        border-bottom: 10.17vw solid var(--color-btn1Hover);
      }
    }
  }
}
.header__btn-language {
  display: inline-flex;
  gap: 1.01vw;
  img {
    width: 4.07vw;
  }
}
@media (width >= 1024px) {
  .header__btn-language {
    gap: 2px;
    img {
      width: 14px;
    }
  }
}


/*==========================================================================
  footer
  ==========================================================================*/
.footer {
  &.pd-block-base {
    @media (width < 1024px) {
      padding-block: calc(var(--block-base) * 1.25);
    }
  }
}
.footer__menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-inline: auto;
  @media (width >= 1024px) {
    grid-template-columns: repeat(3, 1fr);
    width: 972px;
  }
}
.footer__menu {
  display: flex;
  @media (width >= 1024px) {
    justify-content: center;
  }
  &:nth-child(1) {
    border-right: dashed 1px var(--color-accent2);
    @media (width < 1024px) {
      grid-column: 1;
      grid-row: 1 / 3;
      justify-content: end;
      padding-inline-end: calc(var(--inline-base) * 5);
    }
  }
  &:nth-child(2) {
    @media (width < 1024px) {
      grid-column: 2;
      grid-row: 1;
      padding-inline-start: calc(var(--inline-base) * 5);
    }
    @media (width >= 1024px) {
      border-right: dashed 1px var(--color-accent2);
    }
  }
  &:nth-child(3) {
    @media (width < 1024px) {
      grid-column: 2;
      grid-row: 2;
      margin-block-start: calc(var(--inline-base) * 1.5);
      padding-inline-start: calc(var(--inline-base) * 5);
    }
  }

}
.footer__menu__items {
  width: fit-content;
  font-size: var(--fontSize-text14);
  font-weight: bold;
  line-height: var(--fontSize-text15);
  display: flex;
  flex-direction: column;
  @media (width >= 1024px) {
    font-size: var(--fontSize-text15);
  }
}
.footer__menu__item {
  margin-bottom: calc(var(--inline-base) * 1.5);
  @media (width >= 1024px) {
    margin-bottom: 20px;
  }
  &:last-of-type {
      margin-bottom: 0;
  }
}
.footer__submenu__items {
  display: none;
  @media (width >= 1024px) {
    display: block;
    margin-left: 2rem;
    font-weight: normal;
  }
}
.footer__submenu__item {
  margin-top: 20px;
}
.footer__copy {
  height: 7.63vw;
  color: var(--color-white);
  font-size: var(--fontSize-text11);
  text-align: center;
  line-height: 7.63vw;
  @media (width >= 1024px) {
    height: 50px;
    font-size: var(--fontSize-text13);
    line-height: 50px;
  }
}