body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    background-color: #001216;
}

a {
text-decoration : none;
}

.ulrica-website-link a {
  display: inline-block;
  font-weight: 700;
  color: #00cccc;
  background: #003344;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  /* box-shadowの光範囲を狭く */
  box-shadow:
    0 0 6px 1.5px rgba(0, 204, 204, 0.8),
    0 0 12px 2.5px rgba(0, 204, 204, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.ulrica-website-link a:hover {
  background-color: #00cccc;
  color: #002f2f;
  box-shadow:
    0 0 8px 2px rgba(0, 255, 255, 1),
    0 0 15px 3px rgba(0, 255, 255, 0.7);
}

.ulrica-links-wrapper {
  display: flex;
  gap: 30px; /* ここで2つのボタン間のスペースを調整 */
  align-items: center;
}

.policy-hr {
    border: 0;
    height: 2px;
    background: #0f6b63; /* 線の色（必要に応じて変更） */
    margin: 8px 0 20px;
    max-width: 100%;
  }

@keyframes glowing2 {
  0% {
    box-shadow:
      0 0 7px 2px rgba(20, 180, 255, 0.5),   /* 青強め・透明度やや低め */
      0 0 14px 4px rgba(11, 180, 255, 0.4),
      0 0 21px 7px rgba(11, 140, 220, 0.3);
  }
  50% {
    box-shadow:
      4px 0 10px 2px rgba(20, 190, 255, 0.55),
      -4px 0 18px 4px rgba(11, 190, 255, 0.45),
      8px 0 27px 7px rgba(11, 150, 220, 0.35);
  }
  100% {
    box-shadow:
      0 0 7px 2px rgba(20, 180, 255, 0.5),
      0 0 14px 4px rgba(11, 180, 255, 0.4),
      0 0 21px 7px rgba(11, 140, 220, 0.3);
  }
}
.button1 {
    font-size     : 14px;
    border-radius : 5px;
    border        : none;
    box-shadow    : 0 0 20px #0B173B;
    background    : #08335c;
    color         : #fafafa;
    cursor        : pointer;
    text-align    : center;
    line-height   : 65px;
    height        : 65px;
    width         : 350px;
    animation: glowing2 3s ease-in-out infinite;
}
.button1:hover {
    opacity       : .8;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #08335c;
    color: #fafafa;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    animation: glowing2 3s ease-in-out infinite;
}

.btn:hover {
    opacity       : .8;
}

@keyframes glowing {
  0% {
    box-shadow:
      0 0 8px 2px rgba(20, 255, 236, 0.75),
      0 0 16px 4px rgba(11, 255, 221, 0.55),
      0 0 24px 8px rgba(11, 255, 221, 0.35);
  }
  50% {
    box-shadow:
      4px 0 10px 2px rgba(20, 255, 236, 0.8),
      -4px 0 20px 4px rgba(11, 255, 221, 0.6),
      8px 0 30px 8px rgba(11, 255, 221, 0.4);
  }
  100% {
    box-shadow:
      0 0 8px 2px rgba(20, 255, 236, 0.75),
      0 0 16px 4px rgba(11, 255, 221, 0.55),
      0 0 24px 8px rgba(11, 255, 221, 0.35);
  }
}
.table1 {
  border-collapse: separate; /* 丸角にするため */
  border-spacing: 0; /* 余白をゼロに */
  border-radius: 15px; /* 丸角の半径 */
  overflow: hidden; /* 中の角も丸く */
  border-collapse: collapse;
  border: none; /* 枠線を消す */
  color: #FAFAFA;
  animation: glowing 3s ease-in-out infinite;
}
.table1 td {
  background: #0B3B39;
  height: 40px;
  border: none;
  font-size: 14px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative; /* 光の効果をのせやすく */
}
.table1 td:hover {
  box-shadow:
    0 0 8px 3px rgba(20, 255, 236, 0.7);
  background-color: #0D4F52; /* 少し明るい背景色に */
  cursor: pointer;
  z-index: 1; /* 光が重なったとき目立つように */
}
.table1 tr:nth-child(odd):hover td {
  background-color: #0C253A !important; /* 元色より少し明るめ */
  box-shadow: 0 0 8px 3px rgba(20, 255, 236, 0.7) !important;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.table1 tr:nth-child(even):hover td {
  background-color: #0D4F52 !important; /* 偶数行ホバーの色 */
  box-shadow: 0 0 8px 3px rgba(20, 255, 236, 0.7) !important;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.table1 tr:nth-child(odd) td {
background      : #0A1B2A;
}

#floating-orbs {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;  /* heroの全領域をカバー */
  pointer-events: none;                   /* オーブにマウス反応なし */
  overflow: visible;
  z-index: 1;                            /* heroコンテンツより背面に */
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0));
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.7));
  opacity: 0.7;
  animation-name: floatOrb;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes floatOrb {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(30px, -30px); }
  100% { transform: translate(0, 0); }
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
}

.company-name {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  font-weight: 600; /* 少し太めで力強く */
  letter-spacing: 0.2px; /* 間隔を少し開けて高級感 */
}

.company-name small {
    display: block; /* 改行して下に表示 */
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.7em;
    font-weight: 400;
    letter-spacing: 1px;
    color: #aaa; /* 控えめな色で上品に */
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box; /* パディングを幅に含める */
  z-index: 1000; /* 他要素より前面 */
  background: rgba(0, 18, 22, 0.9); /* 背景色は固定時に必要 */
}

.logo img {
    height: 50px;
}

.company-logo {
  display: block;
  margin: 20px auto; /* 上下に余白を付けて中央寄せ */
  max-width: 400px;  /* 最大横幅を制限 */
  height: auto;      /* 縦横比を保つ */
}

/* 既存のロゴ部分 */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
}

/* nav-wrapperで言語切替＋メインナビをまとめて縦積み */
.nav-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0 20px 10px 20px;
  background: transparent; /* 親に合わせる */
}

/* 言語切替 */
.language-switcher {
  font-size: 12px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 4px 0;
  margin-bottom: 6px;
}

.language-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 15px;
}

.language-switcher li a {
  color: #a0d8ff;
  text-decoration: none;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  transition: background-color 0.3s, color 0.3s;
}

.language-switcher li a.active,
.language-switcher li a:hover {
  background-color: #00cccc;
  color: #002f2f;
  cursor: pointer;
}

/* メインナビ */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  display: inline-block;
  color: #a0d8ff;
  text-decoration: none;
  padding: 10px 5px;
  transition: color 0.3s;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #66b2ff;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.hero {
    position: relative;
    width: 100%;
    height: 56.25vw;
    max-height: 1080px;
    background: url('assets/bg.jpg') center center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    /* background-colorは不要にして、オーバーレイで暗くする */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent; /* 通常は透明 */
    transition: background 0.5s ease;
    pointer-events: none;
    z-index: 1; /* hero-contentより背面 */
}

.hero.darkened::before {
    background: rgba(0, 0, 0, 0.4); /* 半透明黒オーバーレイ */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 1500px;
  width: 50%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow:
    0 0 20px 10px rgba(255, 255, 255, 0.7),
    0 0 40px 20px rgba(255, 255, 255, 0.5),
    0 0 60px 30px rgba(0, 200, 255, 0.3);
  animation: fadeInOut 30s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%    { opacity: 0; }
  20%   { opacity: 1; }
  60%   { opacity: 1; }
  100%  { opacity: 0; }
}

.hero-content h1 {
  font-family: 'Montserrat', 'Sawarabi Mincho', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #0c4d61;
  animation: floatMystical 6s ease-in-out infinite;
  margin-bottom: 10px;
}

.hero-content p {
  font-family: 'Montserrat', 'Sawarabi Mincho', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #0c4d61;
  animation: floatMystical 6s ease-in-out infinite;
  margin-top: 0;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes floatMystical {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.philosophy-title {
    font-size: 1.8em; /* タイトルだけ大きめ */
    text-align: center;
}

.philosophy-text {
    font-size: 1.2em; /* 本文を少し大きく */
    line-height: 1.8; /* 読みやすく行間も広げる */
    text-align: center;
}

.philosophy-title2 {
    font-size: 1.8em; /* タイトルだけ大きめ */
    text-align: left;
    max-width: 760px;
}

.philosophy-text2 {
    font-size: 1.2em; /* 本文を少し大きく */
    line-height: 1.8; /* 読みやすく行間も広げる */
    text-align: left;
    max-width: 760px;
}

.content-section iframe {
  width: 100%;            /* 横幅を親幅いっぱいに */
  max-width: 800px;       /* 最大幅を設定（必要に応じて調整） */
  height: auto;           /* 高さは自動（縦横比は下の方法で保つ） */
  aspect-ratio: 16 / 9;   /* 高さを幅に対する16:9比に */
  border-radius: 16px;    /* 角丸にする */
  border: none;           /* 枠線を消す */
  display: block;         /* ブロック要素化して中央寄せもOK */
  margin: 20px auto 0;    /* 上に余白と中央寄せ */
}

.intro-text {
  max-width: 960px; /* 他のコンテンツと合わせて幅を制限 */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;   /* 適宜調整 */
  padding-right: 20px;
  line-height: 1.7;    /* 読みやすさ調整 */
  font-size: 1.1rem;
}

.intro-text_center {
  max-width: 960px; /* 他のコンテンツと合わせて幅を制限 */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;   /* 適宜調整 */
  padding-right: 20px;
  line-height: 1.7;    /* 読みやすさ調整 */
  font-size: 1.1rem;
  text-align: center;
}


.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px 20px;
    background: #0f403f;
}

.feature {
    width: 300px;
    margin: 20px;
    text-align: center;
}

.site-footer {
  text-align: center;
  position: relative;
  background-color: #002f2f;
  color: white;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 1px solid #004b4b;
}

.site-footer a {
  text-decoration: none;                 /* デフォルトの下線を消す */
  color: #fff;                            /* リンク文字色 */
  transition: border-color 0.2s ease;     /* 下線の出現をふわっと */
  border-bottom: 1px solid transparent;   /* 透明な下線をあらかじめ設定 */
  padding-bottom: 2px;                    /* 下線との間に余白 */
}

.site-footer a:hover {
  border-bottom-color: #fff;              /* 下線を表示 */
}

/* ただしアイコンリンクは下線なし */
.site-footer a > div[class^="icon_"] {
  pointer-events: none; /* div自体は操作されないように */
}

.site-footer a[href*="youtube.com"],
.site-footer a[href*="x.com"],
.site-footer a[href*="instagram.com"],
.site-footer a[href*="tiktok.com"],
.site-footer a[href*="music.amazon.co.jp"],
.site-footer a[href*="apple.com"],
.site-footer a[href*="spotify.com"],
.site-footer a[href*="youtube_music"] {
  border-bottom: none !important;
}

.site-footer a[href*="youtube.com"]:hover,
.site-footer a[href*="x.com"]:hover,
.site-footer a[href*="instagram.com"]:hover,
.site-footer a[href*="tiktok.com"]:hover,
.site-footer a[href*="music.amazon.co.jp"]:hover,
.site-footer a[href*="apple.com"]:hover,
.site-footer a[href*="spotify.com"]:hover,
.site-footer a[href*="youtube_music"]:hover {
  border-bottom: none !important;
  opacity: 0.5;
}

.footer-copyright p {
  font-size: 12px; /* お好みのサイズに調整 */
  color: #ccc;     /* 色も薄くしたいなら追加 */
}

/* フッターメニュー全体を横並び */
.footer-menu-level1 > ul {
  display: table;
  gap: 40px; /* メニュー間の余白 */
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  max-width: 900px; /* 必要に応じて幅調整 */
}

.footer-menu-level1 > ul > li {
  display: inline-block;   /* メニュー項目を横並びに */
  margin: 0 15px;
  vertical-align: top; /* ここで上揃え */
  margin-bottom: 1em;
}

/* 大項目リンク */
.footer-menu-level1 > ul > li > a {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  display: block;
  padding-left: 0;
  position: relative;
  padding-top: 20px; /* 文字と線の間に空白を作る */
}

/* ホバーで下線（アニメーション付き） */
.footer-menu-level1 > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-menu-level1 > ul > li > a:hover::after {
  width: 100%;
}

/* 企業情報リンクの上に線を入れる */
.footer-menu-level1 > ul > li:first-child > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;  /* 線の色はお好みで */
  /* 線がリンクのテキストのちょうど上にくるよう調整 */
}

/* 理念・ビジョン・戦略リンクの上に線を入れる */
.footer-menu-level1 > ul > li:nth-child(2) > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
}

/* 事業セグメントリンクの上に線を入れる */
.footer-menu-level1 > ul > li:nth-child(3) > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
}

/* サステナビリティリンクの上に線を入れる */
.footer-menu-level1 > ul > li:nth-child(4) > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
}

/* お問い合わせリンクの上に線を入れる */
.footer-menu-level1 > ul > li:nth-child(5) > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #ccc;
}

/* サブメニュー（縦並び） */
.footer-submenu {
  text-align: left; /* サブメニューは左揃えにすることも多い */
  list-style: none;
  padding-left: 1.2px; /* 「・」分の左余白 */
  margin-top: 1.0em;
}

.footer-submenu li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 2em; /* ・の位置分余白を開ける */
}

.footer-submenu li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #ccc; /* マーカーの色 */
}

.footer-submenu a {
  text-decoration: none;
  color: #ccc;
  position: relative;
}

/* サブメニューにもホバー下線 */
.footer-submenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: #ccc;
  transition: width 0.3s ease;
}

.footer-submenu a:hover::after {
  width: 100%;
}

@media (max-width: 600px) {
  .footer-menu-level1 ul,
  .footer-menu-level2 ul {
    flex-direction: column;
    gap: 10px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideIn 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leaf {
  display: inline-block;
  transform-origin: center bottom;
  animation: leafWiggle 3s ease-in-out infinite;
}

@keyframes leafWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-lights {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-hero {
    background: linear-gradient(
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)
  ),
                url('assets/bg.jpg') center/cover no-repeat;
    padding: 100px 20px 50px; /* 上・左右・下 の順。上を多めにする */
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.company-info {
    display: flex;
    justify-content: center;
}

.company-info table {
    border-collapse: collapse;
    width: 100%;
    max-width: 96%;
    background: rgba(0,50,50,0.7);
    border-radius: 10px;
    overflow: hidden;
}

.company-info th, .company-info td {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    text-align: left;
}

.company-info th {
    width: 30%;
    background: rgba(0,80,80,0.8);
}

.company-info a {
    color: #aef0e5;
}

.link-section {
    text-align: center;
    padding: 20px;
}

.overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
}

.overview .card {
    background: rgba(0,50,50,0.7);
    border-radius: 15px;
    padding: 20px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.overview .card:hover {
    transform: translateY(-8px);
    background: rgba(0,70,70,0.8);
}

.overview .card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overview .card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.content-section {
    padding: 40px 20px;
    max-width: 60%;
    margin: 0 auto;
    background: rgba(0,50,50,0.6);
    border-radius: 15px;
    line-height: 1.8;
    animation: fadeIn 1s ease forwards, glowing 2s ease-in-out infinite;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*事業セグメント*/
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.business-card {
    background: rgba(0, 60, 60, 0.7);
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    color: #fff;
}

.business-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 80, 80, 0.8);
}

.business-card h3 {
    margin-bottom: 10px;
}

.sustainability-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    padding: 30px 20px;
}

.sustainability-grid article {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 上部テキストと下部ボタンを分離 */
    border: 2px solid #16d0c3; /* 必要なら装飾 */
    border-radius: 10px;
    background: rgba(0, 50, 50, 0.7);
    padding: 20px;
    border-radius: 15px;
    color: #e6f3ee;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;  /* ここで子要素すべて中央揃え */
}

.sustainability-grid article h2 {
  text-align: center;  /* 見出しだけ中央揃え */
  margin-bottom: 12px;
}

.sustainability-grid article p {
  text-align: left;    /* 段落は左揃え */
  margin: 0 0 10px;
  line-height: 1.6;
  flex-grow: 1; /* pが空間をある程度埋める */
}

.sustainability-grid article a.btn {
  margin-top: auto; /* 常に一番下 */
  display: inline-block;
}

.sustainability-grid article:hover {
    background-color: rgba(0, 70, 70, 0.85);
}

.sustainability-grid h2 {
    margin-bottom: 12px;
}

.sustainability-grid p {
    line-height: 1.6;
}

.sustainability-grid article:hover {
  background-color: rgba(0, 90, 90, 0.9);
  box-shadow: 0 0 15px 4px rgba(31, 182, 179, 0.6);
  animation: floatPulse 2s infinite ease-in-out;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 15px 4px rgba(31, 182, 179, 0.6);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px 8px rgba(31, 182, 179, 0.8);
  }
}

.icon_youtube{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_youtube.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_youtube.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_youtube:hover{
opacity               : 0.5;
}

.icon_twitter{
width                 : 27px;
height                :27px;
-webkit-mask-image    : url(../img/icon_twitter.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_twitter.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_twitter:hover{
opacity               : 0.5;
}

.icon_instagram{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_instagram.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_instagram.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_instagram:hover{
opacity               : 0.5;
}

.icon_tiktok{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_tiktok.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_tiktok.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_tiktok:hover{
opacity               : 0.5;
}

.icon_amazon{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_amazon.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_amazon.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_amazon:hover{
opacity               : 0.5;
}

.icon_apple{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_apple.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_apple.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_apple:hover{
opacity               : 0.5;
}

.icon_spotify{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_spotify.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_spotify.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_spotify:hover{
opacity               : 0.5;
}

.icon_youtube_music{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_youtube_music.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_youtube_music.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
}
.icon_youtube_music:hover{
opacity               : 0.5;
}

.icon_contact{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_contact.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_contact.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
position              :relative;
top                   : 9px;
}
.icon_contact:hover{
opacity               : 0.5;
}

.icon_fanclub{
width                 : 27px;
height                : 27px;
-webkit-mask-image    : url(../img/icon_fanclub.png);
-webkit-mask-size     : contain;
-webkit-mask-repeat   : no-repeat;
-webkit-mask-position : center;
mask-image            : url(../img/icon_fanclub.png);
mask-size             : contain;
mask-repeat           : no-repeat;
mask-position         : center;
background-color      : #CEECF5;
position              :relative;
top                   : 9px;
}
.icon_fanclub:hover{
opacity               : 0.5;
}
