@charset "UTF-8";

/*
CSS Name: Common - Kusumi Yuki Cascading Style Sheets
Author: Ryousuke Tamura
Created: 2025.6.2
Customize:
Update:
Licence: © 2015 RTDO All Rights Reserved.
*/



/*========================================

  Placeholder

========================================*/
:placeholder-shown {
  color: #666666; }

::-webkit-input-placeholder {
  color: #666666; }

::-moz-placeholder {
  color: #666666;
  opacity: 1; }

:-ms-input-placeholder {
  color: #666666; }



/*========================================

  Elements

========================================*/
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  min-width: 375px;
}

body {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.6rem;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
}


/* Link
---------------*/
a:link {
  color: #003F88;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

a img {
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

a:hover {
  opacity: 0.6;
}

a:hover img {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  a {
    word-break: break-all;
  }
}


/* Text
---------------*/
h1,
h2 {
  line-height: 1;
  font-size: 3.2rem;
  text-transform: uppercase;
}

h2,
h2 + p {
  text-align: center;
}

h2 span {
  display: block;
  margin-top: 16px;
  font-size: 1.6rem;
}

h3 {
  line-height: 1;
  font-size: 3.2rem;
}

p {
  margin: 2.4rem 0;
  font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
  h1,
  h2 {
    line-height: 1;
    font-size: 2.8rem;
  }

  h2 span {
    display: block;
    margin-top: 16px;
    font-size: 1.4rem;
  }

  h3 {
    font-size: 2.8rem;
  }

  p {
    margin: 2.0rem 0;
    font-size: 1.8rem;
  }
}

em,
strong {
  font-style: normal;
}

em {
  color: #DE1524;
}


/* ul ol
---------------*/
ul,
ol {
  list-style: none;
  list-style-position: outside;
  margin: 1.6rem 4.0rem;
  padding: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0.24rem 0 0.24rem 1.6rem;
}


/* image
---------------*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.fitimg img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
}


/* br
---------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}



/*========================================

  Header

========================================*/

#header,
.logo-area,
.logo-area h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #FFFFFF; /* 背景色がないと下の要素が透けて見えます */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 任意：影を追加 */
}

.logo-area {
  width: 100%;
  padding: 16px 24px;
}
.logo-area h1 {
  gap: 0 16px;
}
.logo-area p {
  margin: 0;
  line-height: 1;
}

.hamburger {
  position: relative;
  z-index: 10;
  display: block;
  width: 88px;
  height: 88px;
  margin-left: auto;
  border: none;
  background-color: #003F88;
}

@media screen and (max-width: 1024px) {
  .logo-area p {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .logo-area {
    height: 64px;
    padding: 16px;
  }
  .logo-area h1 {
    height: 100%;
    align-items: center;
  }
  .logo-area h1 img {
    height: 100%;
  }
  .logo-area p {
    display: none;
  }
  .hamburger {
    width: 64px;
    height: 64px;
  }
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 32px;
  height: 2px;
  background-color: #FFFFFF;
  transform: translateX(-50%);
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .hamburger__line {
    width: 24px;
  }
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transition: inherit;
}
.hamburger__line:before {
  top: -8px;
}
.hamburger__line:after {
  top: 8px;
}

.header__nav-area {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  display: block;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background-color: #fff;
  transition: 0.4s;
}
.header__nav-area.-active {
  left: 0;
  visibility: visible;
}

.global-navigation {
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .global-navigation ul {
    margin: 0;
    padding: 0;
  }
}

.global-navigation__list > li {
  padding-bottom: 20px;
  border-bottom: 2px solid #e7e9ee;
}
.global-navigation__list > li + li {
  margin-top: 20px;
}
.global-navigation__list > li:last-child {
  border-bottom: none;
}
.global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 2.0rem;
  font-weight: bold;
  transition: color 0.4s;
}
.global-navigation__link.-accordion {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.global-navigation__link.-accordion::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  width: 2px;
  height: 12px;
  background-color: #ed3242;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 12px;
  height: 2px;
  background-color: #ed3242;
  transform: translateY(-50%);
}
.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}

.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}
.accordion__list li {
  font-size: 0.75rem;
}
.accordion__list li + li {
  margin-top: 21px;
}
.accordion__link {
  color: #172e59;
}


/*========================================

  Main Visual

========================================*/

.main-visual {
  padding-top: 88px;
  width: 100%;
  overflow: hidden;
  background-color: #FABE00;
}

.main-visual__slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.main-visual__slide {
  flex: 0 0 100%;
  width: 100%;
}

.main-visual__slide picture,
.main-visual__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .main-visual {
    padding-top: 64px;
  }
}



/*========================================

  Content

========================================*/

/* SNS Links
---------------*/
.sns-links {
  width: 100%;
  padding: 40px 0;
}

.sns-links ul {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .sns-links {
    padding: 40px 24px;
  }
  
  .sns-links ul {
    gap: 16px;
  }
}


/* NEWS RELEASES
---------------*/
#news-releases {
  padding: 80px 0;
  background-color: #F8F8FB;
}

#news-releases dl {
  max-width: 824px;
  margin: 80px auto 0;
}

#news-releases dt {
  margin-top: 24px;
}

#news-releases dt:first-child {
  margin-top: 0;
}

#news-releases dd {
  padding-bottom: 24px;
  font-size: 2.0rem;
  font-weight: bold;
  color: #003F88;
  border-bottom: 1px solid #C5C5CB;
}

#news-releases dd:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  #news-releases {
    padding: 40px 0;
  }
}



/* GREETING
---------------*/
#greeting {
  padding: 80px 0;
  background-color: #FABE00;
}

#greeting h3 {
  margin-bottom: 56px;
}

#greeting p {
  line-height: 2.0;
}

#greeting .message__photo {
  margin-top: 56px;
}

.greeting__message {
  margin: 80px 0 0;
  padding: 80px;
  background-color: #FFFFFF;
  border: 4px solid #003F88;
}

.message__inner {
  max-width: 824px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #greeting {
    padding: 40px 0;
  }

  #greeting h3 {
    margin-bottom: 32px;
    line-height: 1.4;
  }
  
  #greeting p {
    line-height: 1.8;
  }
  
  #greeting .message__photo {
    margin-top: 32px;
  }
  
  .greeting__message {
    margin: 40px 0 0;
    padding: 32px;
  }
}



/* THREE PROMISES
---------------*/
#promises {
  padding: 80px 0;
}

.politics-for-the-people h3 {
  margin-bottom: 40px;
}

.promises,
.politics-for-the-people {
  margin: 80px 0 0;
  padding: 80px;
  background-color: #FFFFFF;
}

.promises {
  border: 4px solid #FABE00;
}

.politics-for-the-people {
  border: 4px solid #C5C5CB;
}

.promises h3,
.politics-for-the-people h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  font-size: 2.4rem;
}

.promises h3 span,
.promises h3 button,
.politics-for-the-people h4 span,
.politics-for-the-people h4 button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  height: 72px;
}

.promises h3 button,
.politics-for-the-people h4 button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  width: 90%;
}

.promises h3 {
  color: #FFFFFF;
  background-color: #003F88;
}

.politics-for-the-people h4 {
  color: #33333B;
  background-color: #FABE00;
}

.promises h3 span {
  color: #003F88;
  background-color: #FABE00;
}

.politics-for-the-people h4 span {
  color: #FFFFFF;
  background-color: #33333B;
}

.promises__block,
.politics__block {
  overflow: hidden;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

.promises__block.-active,
.politics__block.-active {
  visibility: visible;
}

.promises__inner,
.politics__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 824px;
}

@media screen and (max-width: 768px) {
  #promises {
    padding: 40px 0;
  }

  .politics-for-the-people h3 {
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .promises,
  .politics-for-the-people {
    margin: 40px 0 0;
    padding: 32px;
  }

  .promises h3,
  .politics-for-the-people h4 {
    line-height: 1.2;
    font-size: 1.8rem; }

  .promises h3 button,
  .politics-for-the-people h4 button {
    padding: 16px 8px 16px 16px;
  }

  .promises__inner,
  .politics__inner {
    gap: 16px;
  }
}

/* JS Style */
.js-promise-toggle,
.js-politics-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.js-promise-toggle:hover,
.js-politics-toggle:hover {
  opacity: 0.7;
}

.js-toggle-icon {
  transition: transform 0.4s ease;
}

.js-toggle-icon.-active {
  transform: rotate(180deg);
}



/* PROFILE
---------------*/
#profile {
  padding: 80px 0;
  background-color: #FABE00;
}

#profile h3 {
  margin-bottom: 56px;
}

.profile__bio {
  margin: 80px 0 0;
  padding: 80px;
  background-color: #FFFFFF;
  border: 4px solid #003F88;
}

.profile__bio .sns-links {
  padding-bottom: 0;
}

.profile__inner {
  margin: 0 auto;
  max-width: 824px;
}

@media screen and (max-width: 768px) {
  #profile {
    padding: 40px 0;
  }

  #profile h3 {
    margin-bottom: 32px;
    line-height: 1.4;
  }

  .profile__bio {
    margin: 40px 0 0;
    padding: 32px;
  }

  #profile .sns-links {
    padding: 24px 0;
  }
  
  #profile .sns-links ul {
    gap: 16px;
  }
}



/* Youtube PickUP
---------------*/
#youtube-pickup {
  padding: 80px 0;
}

.youtube {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  margin: 80px 0 0;
}

.youtube__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 50%;
}

.youtube__thumbnail {
  width: 288px;
  flex-shrink: 0;
}

.youtube__info {
  flex: 1;
}

.youtube__info p {
  margin: 0;
  font-size: 1.6rem;
}

.youtube__info h3 {
  font-size: 2.0rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #youtube-pickup {
    padding: 40px 0;
  }

  .youtube {
    margin: 40px 0 0;
    flex-direction: column;
  }

  .youtube__item {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

.youtube__thumbnail {
    width: 100%;
  }
}



/* Instagram Update
---------------*/
#instagram-update {
  padding: 80px 0;
  background-color: #F8F8FB;
}

.instagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.instagram__item {
  display: block;
  max-width: 100%;
  overflow: hidden;
  height: auto;
  aspect-ratio: 1 / 1; /* 正方形 */
  position: relative;
}

.instagram__item iframe,
.instagram__item blockquote.instagram-media {
  max-width: 100% !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box;
}

.instagram__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #instagram-update {
    padding: 40px 0;
  }

  .instagram {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}



/* Please Support Us!!
---------------*/
#please-support-us {
  padding: 80px 0 0;
  background-color: #003F88;
}

#please-support-us h2 {
  color: #FFFFFF;
}

#please-support-us .button-list {
  margin-bottom: 0;
}

#please-support-us .button-list a {
  background-color: #00AC00;
  font-size: 3.2rem;
}

.support {
  margin: 80px 0 0;
  padding: 80px;
  background-color: #FFFFFF;
  border: 4px solid #FABE00;
}

.support__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin: 0 auto;
  max-width: 824px;
}

.support__block {
  width: 100%;
}

.support__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  font-size: 2.4rem;
  background-color: #FABE00;
}

.support__text {
  line-height: 2;
}

.bylaws__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  font-size: 2.4rem;
  background-color: #C5C5CB;
}

.bylaws__list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.6rem;
  row-gap: 1.2rem;
  align-items: start;
  margin-top: 2.4rem;
}

.bylaws__list dt {
  font-size: 2.2rem;
  font-weight: bold;
  white-space: nowrap;
  color: #FABE00;
  line-height: 1.2;
}

.bylaws__list dd {
  margin: 0;
  font-size: 2.2rem;
  font-weight: bold;
  color: #003F88;
  line-height: 1.2;
}

.support__list {
  margin-left: 0;
  margin-right: 0;
  font-size: 2.2rem;
  font-weight: bold;
  color: #003F88;
}

@media screen and (max-width: 768px) {
  #please-support-us {
    padding: 40px 0;
  }
  
  #please-support-us .button-list {
    padding: 0 16px;
  }

  #please-support-us .button-list a {
    font-size: 2.4rem;
  }

  .instagram {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .support {
    margin: 40px 0 0;
    padding: 32px;
  }

  .support__inner {
    gap: 40px;
  }

  .support__title {
    height: 64px;
    font-size: 2.0rem;
    background-color: #FABE00;
  }

  .bylaws__title {
    font-size: 2.0rem;
  }
}



/* Recommendation
---------------*/
#recommendation {
  padding: 80px 0 0;
  background-color: #003F88;
}

.recommendation {
  margin-top: 32px;
  padding: 40px 40px 0;
  background-color: #FFFFFF;
}

.member {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0;
}

.member li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 24px;
}

.member__name {
  display: block;
  height: 60px;
  object-fit: contain;
}

.member__photo {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  #recommendation {
    padding: 40px 0 0;
  }

  .recommendation {
    padding: 24px 16px 0;
  }

  .member {
    gap: 16px;
  }

  .member li {
    gap: 16px;
  }

  .member__name {
    height: 20px;
  }
}



/* KOKUMIN NEWS
---------------*/
#kokumin-news {
  padding: 80px 0;
}

.kokumin {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  margin: 80px 0 0;
}

.kokumin__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 50%;
}

.kokumin__photo {
  width: 288px;
  flex-shrink: 0;
}

.kokumin__cont {
  flex: 1;
}

.kokumin__cont p {
  margin: 0;
  font-size: 1.6rem;
}

.kokumin__cont h3 {
  font-size: 2.0rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #kokumin-news {
    padding: 40px 0;
  }

  .kokumin {
    margin: 40px 0;
    flex-direction: column;
  }

  .kokumin__item {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .kokumin__photo {
    width: 100%;
  }
}



/* Footer Nav
---------------*/
#footer-nav {
  padding: 80px 0;
  text-align: center;
  background-color: #003F88;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav__list li {
  font-size: 2.0rem;
  color: #FFFFFF;
}
.footer-nav__list li a {
  position: relative;
  display: inline-block;
  padding-left: 1.6em;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-nav__address {
  margin-top: 40px;
  font-style: normal;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  #footer-nav {
    padding: 40px 0;
  }

  .footer-nav__list li {
    font-size: 1.8rem;
  }
  .footer-nav__list li a {
    padding-left: 1.4em;
  }

  .footer-nav__address {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}



/*========================================

  Footer

========================================*/
footer {
  padding: 80px 0;
  text-align: center;
}

footer .logo-area p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
}

footer address {
  font-style: normal;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0;
  }

  footer address {
    margin-top: 16px;
    font-size: 1.4rem;
  }
}



/*========================================

  Class

========================================*/

/* Inner
---------------*/
.inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding: 0 16px;
  }
}



/* Heading
---------------*/
.center-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}



/* Description Column
---------------*/
.description-with-photo {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin: 32px 0 48px;
}

.description__text {
  width: 60%;
  line-height: 2;
  margin: 0;
}

.description__photo {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  margin: 8px 0;
}

.description__photo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

@media screen and (max-width: 768px) {
  .description-with-photo {
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
  }

  .description__text {
    width: 100%;
  }

  .description__photo {
    width: 100%;
  }
}



/* Button List
---------------*/
.button-list {
  margin: 80px auto 0;
  max-width: 824px;
}

.button-list ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.button-list li {
  width: 100%;
}

.button-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  padding: 12px 24px;
  background-color: #003F88;
  color: #FFFFFF;
  font-size: 2.0rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.button-list a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .button-list {
    margin: 40px auto 0;
  }

  .button-list ul {
    flex-direction: column;
    gap: 16px;
  }

  .button-list a {
    font-size: 1.8rem;
  }
}



/* List Style
---------------*/
.common-bullet-list {
  margin-left: 0;
  margin-right: 0;
  font-size: 2.2rem;
  font-weight: bold;
  color: #003F88;
}

.common-bullet-list li {
  position: relative;
  line-height: 1.2;
  margin-top: 8px;
  padding-left: 1.6em;
}

.common-bullet-list li::before {
  content: "●";
  position: absolute;
  top: 0.2rem;
  left: 0;
  font-size: 1em;
  color: #FABE00;
  line-height: 1;
}

.common-bullet-list li small {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .common-bullet-list {
    margin-left: 0;
    margin-right: 0;
    font-size: 2.0rem;
    font-weight: bold;
    color: #003F88;
  }
}



/* Icon Text Link (Single)
---------------*/
.link-with-icon {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  gap: 0.4em;
  padding-right: 0.8rem;
}

.link-with-icon::after {
  content: "";
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

.link-with-icon--white::after {
  background-image: url("../img/icon-blank_w.svg");
}
.link-with-icon--blue::after {
  background-image: url("../img/icon-blank_b.svg");
}

.link-with-icon--arrow {
  position: relative;
  display: inline-block;
  padding-left: 1.6em;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}
.link-with-icon--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background-image: url("../img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
.link-with-icon--arrow::after {
  display: none;
}



/* Icon Text Link (Mulch)
---------------*/
.link-with-icon-block {
  position: relative;
  display: inline;
  font-weight: bold;
  text-decoration: underline;
  color: inherit;
  line-height: 1.6;
}

.link-with-icon-block::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.4em;
  background: url("../img/icon-blank_b.svg") no-repeat center center / contain;
  vertical-align: text-bottom;
}

.link-with-icon-block--white::after {
  background-image: url("../img/icon-blank_w.svg");
}

.link-with-icon-block--blue::after {
  background-image: url("../img/icon-blank_b.svg");
}



/* Video rapper
---------------*/
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#youtube-pickup .video-wrapper {
  width: 288px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  #youtube-pickup .video-wrapper {
    width: 100%;
  }
}

.news__list {
  margin: 0.6rem 2.0rem;
  font-size: 1.8rem;
  list-style-type: disc;
}

.news-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-width: 824px;
  margin: 80px auto 0;
}

.news-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}