@charset "UTF-8";
a, abbr, address, aside, article, body, button, caption, cite, code, div, del, dl, dt, dd, em, font, form, figure, footer, fieldset, header, h1, h2, h3, h4, h5, h6, html, img, iframe, input, legend, li, label, main, nav, object, ol, option, optgroup, p, pre, q, s, sub, sup, select, span, section, tt, textarea, table, tbody, tfoot, thead, tr, th, td, ul, var, ::before, ::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

ol, ul {
  list-style: none;
}

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

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border-radius: 0;
  outline: none;
  vertical-align: middle;
  -webkit-appearance: none;
}

input, textarea {
  cursor: text;
}

[type=checkbox] {
  -moz-appearance: checkbox;
       appearance: checkbox;
  cursor: pointer;
  -webkit-appearance: checkbox;
}

[type=radio] {
  -moz-appearance: radio;
       appearance: radio;
  cursor: pointer;
  -webkit-appearance: radio;
}

[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

[type=time]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

button, select {
  cursor: pointer;
}

label[for] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

select:disabled {
  opacity: inherit;
}

select::-ms-expand {
  display: none;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  cursor: pointer;
  height: auto;
}

th {
  font-weight: bold;
}

optgroup {
  font-weight: bold;
}

fieldset {
  min-width: 0;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  font-weight: bold;
  max-width: 100%;
  white-space: normal;
}

[hidden] {
  display: none;
}

dd {
  margin-left: 0;
}

/**
* rem変換 ※375以下ではvwとする
* $number 数値
* 例) 32pxをremに変換 (32);
*/
html {
  scroll-padding-top: 9.2rem;
  font-size: 2.5641025641vw;
}
@media screen and (650px <= width) {
  html {
    font-size: 16.6666666667px;
  }
}
@media screen and (960px <= width) {
  html {
    font-size: 0.8333333333vw;
    scroll-padding-top: 13.2rem;
  }
}
@media screen and (1200px <= width) {
  html {
    font-size: 10px;
  }
}
@media screen and (1600px <= width) {
  html {
    font-size: 0.625vw;
  }
}

body {
  word-break: break-word;
  line-break: strict;
  background-color: #FFF;
  color: #343232;
  width: 100%;
}

img {
  display: block;
  height: auto;
  width: 100%;
}

textarea,
dt,
dd,
button {
  line-height: inherit;
}

textarea {
  resize: vertical;
  overflow-y: auto;
}

a, span {
  display: inline-block;
}

button {
  display: inline-block;
  text-align: left;
  font: inherit;
  color: inherit;
}

.is_loadTransition {
  -webkit-transition: none !important;
  transition: none !important;
}
.is_loadTransition * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* いいねボタンのスタイル */
.like-button-container {
  margin: 2rem 0;
  text-align: center;
}

.like-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
          box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}
.like-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
          box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #ff5252, #d63031);
}
.like-button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.like-button.liked {
  background: linear-gradient(135deg, #00b894, #00a085);
  -webkit-box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
          box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
  -webkit-animation: heartBeat 0.6s ease-in-out;
          animation: heartBeat 0.6s ease-in-out;
}
.like-button.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.like-icon {
  font-size: 1.6rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.like-button:hover .like-icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.like-text {
  font-weight: 600;
}

.like-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 1.25rem;
  min-width: 2rem;
  text-align: center;
}

/* いいねボタンのアニメーション */
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* 記事一覧のいいね数表示 */
.post-likes {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #e74c3c;
  font-size: 1.4rem;
  font-weight: 500;
}

/* 人気記事の順位表示 */
.popular-post-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popular-post-item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.popular-post-rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 順位別の色設定 */
.popular-post-item:nth-child(2) .popular-post-rank {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  -webkit-box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
          box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.popular-post-item:nth-child(3) .popular-post-rank {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  -webkit-box-shadow: 0 2px 8px rgba(116, 185, 255, 0.3);
          box-shadow: 0 2px 8px rgba(116, 185, 255, 0.3);
}

.popular-post-item:nth-child(4) .popular-post-rank {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  -webkit-box-shadow: 0 2px 8px rgba(162, 155, 254, 0.3);
          box-shadow: 0 2px 8px rgba(162, 155, 254, 0.3);
}

.popular-post-item:nth-child(5) .popular-post-rank {
  background: linear-gradient(135deg, #fd79a8, #e84393);
  -webkit-box-shadow: 0 2px 8px rgba(253, 121, 168, 0.3);
          box-shadow: 0 2px 8px rgba(253, 121, 168, 0.3);
}

.popular-post-item:nth-child(6) .popular-post-rank {
  background: linear-gradient(135deg, #fdcb6e, #e17055);
  -webkit-box-shadow: 0 2px 8px rgba(253, 203, 110, 0.3);
          box-shadow: 0 2px 8px rgba(253, 203, 110, 0.3);
}

.popular-post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.popular-post-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.popular-post-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #333;
}

/* 人気記事のいいね数表示 */
.popular-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 1.25rem;
}

.popular-post-likes {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  color: #e74c3c;
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .like-button {
    padding: 0.6rem 1.2rem;
    font-size: 1.25rem;
  }
  .like-icon {
    font-size: 1.4rem;
  }
  .like-count {
    font-size: 1rem;
    min-width: 1.8rem;
  }
  .post-likes {
    font-size: 1rem;
  }
}
/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 8rem;
}
@media (max-width: 768px) {
  .header-container {
    height: 4rem;
    padding: 0 15px;
    max-width: 100%;
  }
}

/* Logo */
.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.site-logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.site-logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
}
@media (max-width: 768px) {
  .site-logo img {
    height: 32px;
    max-width: 160px;
  }
}
.site-logo .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0D1D3B;
  font-family: "BIZ UDPGothic", sans-serif;
}
@media (max-width: 768px) {
  .site-logo .logo-text {
    font-size: 1.5rem;
  }
}
.site-logo .logo-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin-left: 10px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .site-logo .logo-subtitle {
    display: none;
  }
}

/* Navigation */
.main-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}
.main-navigation .nav-menu .nav-item {
  position: relative;
  /* Dropdown Menu */
}
.main-navigation .nav-menu .nav-item .nav-link {
  color: #0D1D3B;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 5px 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 12px;
}
.main-navigation .nav-menu .nav-item .nav-link:hover {
  color: #2E81B0;
  background: rgba(255, 255, 255, 0.5);
}
.main-navigation .nav-menu .nav-item .nav-link.current-menu-item {
  color: #2E81B0;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.main-navigation .nav-menu .nav-item.has-dropdown .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.main-navigation .nav-menu .nav-item.has-dropdown .nav-link::before {
  content: "▼";
  font-size: 0.7em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.main-navigation .nav-menu .nav-item.has-dropdown:hover .nav-link::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.main-navigation .nav-menu .nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-navigation .nav-menu .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.main-navigation .nav-menu .nav-item .dropdown-menu .dropdown-item {
  list-style: none;
}
.main-navigation .nav-menu .nav-item .dropdown-menu .dropdown-item .dropdown-link {
  display: block;
  padding: 10px 20px;
  color: #0D1D3B;
  text-decoration: none;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-navigation .nav-menu .nav-item .dropdown-menu .dropdown-item .dropdown-link:hover {
  background: rgba(46, 129, 176, 0.1);
  color: #2E81B0;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* Header Actions */
.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header-actions {
    gap: 15px;
  }
}
.header-actions .search-toggle {
  background: none;
  border: none;
  color: #0D1D3B;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-actions .search-toggle:hover {
  background: rgba(46, 129, 176, 0.1);
  color: #2E81B0;
}
.header-actions .cta-button {
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 15px rgba(46, 129, 176, 0.3);
}
.header-actions .cta-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(46, 129, 176, 0.4);
          box-shadow: 0 8px 25px rgba(46, 129, 176, 0.4);
}
@media (max-width: 768px) {
  .header-actions .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mobile-menu-toggle .hamburger-line {
  width: 20px;
  height: 4px;
  background: #0D1D3B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu-toggle:hover {
  background: rgba(46, 129, 176, 0.1);
}
.mobile-menu-toggle:hover .hamburger-line {
  background: #2E81B0;
}

/* Mobile Navigation */
.mobile-navigation {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.98)), to(rgba(248, 250, 252, 0.98)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-bottom: 2px solid rgba(46, 129, 176, 0.15);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}
@media (max-width: 768px) {
  .mobile-navigation {
    display: block;
  }
}
.mobile-navigation.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-navigation .mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 16px 20px 24px;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item {
  margin-bottom: 10px;
  border-radius: 12px;
  background: white;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  /* Mobile Dropdown */
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(46, 129, 176, 0.15);
          box-shadow: 0 4px 20px rgba(46, 129, 176, 0.15);
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item:last-child {
  margin-bottom: 0;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: #0D1D3B;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#2E81B0), to(#4895EF));
  background: linear-gradient(180deg, #2E81B0 0%, #4895EF 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link::after {
  content: "›";
  font-size: 1.8rem;
  font-weight: 700;
  color: #2E81B0;
  margin-left: auto;
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link:hover {
  color: #2E81B0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(46, 129, 176, 0.08)), to(transparent));
  background: linear-gradient(90deg, rgba(46, 129, 176, 0.08) 0%, transparent 100%);
  padding-left: 28px;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link:hover::before {
  opacity: 1;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link.current-menu-item {
  color: white;
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  font-weight: 700;
  -webkit-box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
          box-shadow: 0 4px 16px rgba(46, 129, 176, 0.3);
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link.current-menu-item::before {
  opacity: 0;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item .mobile-nav-link.current-menu-item::after {
  color: white;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown .mobile-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown .mobile-nav-link::after {
  content: "▼";
  font-size: 0.8em;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown.active .mobile-nav-link::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown.active .mobile-dropdown-menu {
  max-height: 200px;
  opacity: 1;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown .mobile-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown .mobile-dropdown-menu .mobile-dropdown-item .mobile-dropdown-link {
  display: block;
  padding: 12px 10px;
  color: #666;
  text-decoration: none;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 5px 0;
}
.mobile-navigation .mobile-nav-menu .mobile-nav-item.has-dropdown .mobile-dropdown-menu .mobile-dropdown-item .mobile-dropdown-link:hover {
  color: #2E81B0;
  background: rgba(255, 255, 255, 0.2);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay .search-form {
  width: 90%;
  max-width: 600px;
  position: relative;
}
.search-overlay .search-form .search-input {
  width: 100%;
  padding: 20px 60px 20px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.6rem;
  background: white;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.search-overlay .search-form .search-input:focus {
  outline: none;
  -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}
.search-overlay .search-form .search-input::-webkit-input-placeholder {
  color: #999;
}
.search-overlay .search-form .search-input::-moz-placeholder {
  color: #999;
}
.search-overlay .search-form .search-input:-ms-input-placeholder {
  color: #999;
}
.search-overlay .search-form .search-input::-ms-input-placeholder {
  color: #999;
}
.search-overlay .search-form .search-input::placeholder {
  color: #999;
}
.search-overlay .search-form .search-submit {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: linear-gradient(135deg, #2E81B0 0%, #4895EF 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-overlay .search-form .search-submit:hover {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
  -webkit-box-shadow: 0 5px 15px rgba(46, 129, 176, 0.4);
          box-shadow: 0 5px 15px rgba(46, 129, 176, 0.4);
}
.search-overlay .search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.search-overlay .search-close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header-container .site-logo .logo-subtitle {
    display: none;
  }
  .header-container .main-navigation {
    display: none;
  }
  .header-container .header-actions .cta-button {
    display: none;
  }
}
/* Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
  .site-header.scrolled {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0D1D3B 0%, #2E81B0 50%, #1a4a6b 100%);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 6rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, rgba(255, 215, 0, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.footer-brand .footer-logo {
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo img {
  height: 40px;
  width: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer-brand .footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.footer-brand .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-brand .social-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-brand .social-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-brand .social-links a:hover {
  background: rgba(255, 215, 0, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.footer-brand .social-links a svg {
  width: 20px;
  height: 20px;
}

.footer-section h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #FFD700;
}
@media (max-width: 768px) {
  .footer-section h3::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 0.8rem;
}
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}
.footer-section ul li a:hover {
  color: #FFD700;
  padding-left: 5px;
}
.footer-section .contact-info {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1.6;
}
.footer-section .contact-info .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .footer-section .contact-info .contact-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-section .contact-info .contact-item svg {
  width: 16px;
  height: 16px;
  color: #FFD700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom .footer-bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}
.footer-bottom .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-bottom .footer-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-bottom .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.25rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-bottom .footer-links a:hover {
  color: #FFD700;
}

/* フッターのアニメーション */
.footer-content {
  -webkit-animation: fadeInUp 0.8s ease-out 0.2s both;
          animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-bottom {
  -webkit-animation: fadeInUp 0.8s ease-out 0.4s both;
          animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1/-1;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-content {
    gap: 1.5rem;
  }
  .footer-bottom-content {
    gap: 0.5rem;
  }
}
.hp_tac {
  text-align: center !important;
}

.hp_noneSp {
  display: none !important;
}
@media screen and (960px <= width) {
  .hp_noneSp {
    display: block !important;
  }
}

.hp_noneSpFlex {
  display: none !important;
}
@media screen and (960px <= width) {
  .hp_noneSpFlex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.hp_noneSpInline {
  display: none !important;
}
@media screen and (960px <= width) {
  .hp_noneSpInline {
    display: inline !important;
  }
}

@media screen and (960px <= width) {
  .hp_nonePc {
    display: none !important;
  }
}

.hp_block {
  display: block !important;
}

.hp_hidden {
  display: none;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anime_fadeIn {
  opacity: 0;
}
.anime_fadeIn.is_active {
  -webkit-animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: translateY(35px);
            transform: translateY(35px);
    opacity: 0;
    @media screen and (960px <= width) {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    -webkit-transform: translateY(35px);
            transform: translateY(35px);
    opacity: 0;
    @media screen and (960px <= width) {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.anime_fadeUp {
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  opacity: 0;
}
@media screen and (960px <= width) {
  .anime_fadeUp {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}
.anime_fadeUp.is_active {
  -webkit-animation: fadeUp 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeUp 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes imgScale {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes imgScale {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.anime_imgScale {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.anime_imgScale.is_active {
  -webkit-animation: imgScale 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: imgScale 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes bgImgScale {
  0% {
    background-size: 130%;
    background-position: center;
  }
  100% {
    background-size: cover;
  }
}

@keyframes bgImgScale {
  0% {
    background-size: 130%;
    background-position: center;
  }
  100% {
    background-size: cover;
  }
}
.anime_bgImgScale {
  background-size: 130%;
  background-position: center;
}
.anime_bgImgScale.is_active {
  -webkit-animation: bgImgScale 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: bgImgScale 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes line {
  0% {
    width: 3.2rem;
  }
  100% {
    width: 100%;
  }
}

@keyframes line {
  0% {
    width: 3.2rem;
  }
  100% {
    width: 100%;
  }
}
.anime_line::before {
  width: 3.2rem;
}
.anime_line.is_active::before {
  -webkit-animation: line 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: line 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes fadeLeftPc {
  0% {
    opacity: 0;
    @media screen and (960px <= width) {
      -webkit-transform: translateX(calc(100% - 80px));
              transform: translateX(calc(100% - 80px));
    }
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes fadeLeftPc {
  0% {
    opacity: 0;
    @media screen and (960px <= width) {
      -webkit-transform: translateX(calc(100% - 80px));
              transform: translateX(calc(100% - 80px));
    }
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes fadeLeftSp {
  0% {
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftSp {
  0% {
    -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.top_service_img.anime_fadeLeft {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
}
.top_service_img.anime_fadeLeft.is_active {
  -webkit-animation: fadeLeftSp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: fadeLeftSp 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@media screen and (960px <= width) {
  .top_service_img.anime_fadeLeft {
    opacity: 0;
  }
}
@media screen and (960px <= width) and (960px <= width) {
  .top_service_img.anime_fadeLeft {
    -webkit-transform: translateX(calc(100% - 80px));
            transform: translateX(calc(100% - 80px));
  }
}
@media screen and (960px <= width) {
  .top_service_img.anime_fadeLeft.is_active {
    -webkit-animation: fadeLeftPc 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
            animation: fadeLeftPc 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
}

@-webkit-keyframes transUp {
  0% {
    -webkit-transform: translateY(35px);
            transform: translateY(35px);
    @media screen and (960px <= width) {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes transUp {
  0% {
    -webkit-transform: translateY(35px);
            transform: translateY(35px);
    @media screen and (960px <= width) {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.anime_transUp {
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
}
@media screen and (960px <= width) {
  .anime_transUp {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}
.anime_transUp.is_active {
  -webkit-animation: transUp 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
          animation: transUp 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* Advertisement Styles */
.advertisement-section {
  padding: 3rem 0;
  margin: 2rem 0;
}
.advertisement-section .ad-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.advertisement-section .ad-container .ad-label {
  display: inline-block;
  background: #2E81B0;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 2px 4px rgba(46, 129, 176, 0.3);
          box-shadow: 0 2px 4px rgba(46, 129, 176, 0.3);
}
.advertisement-section .ad-container .adsbygoogle {
  display: block !important;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.advertisement-section .ad-container .adsbygoogle:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 768px) {
  .advertisement-section {
    padding: 2rem 0;
    margin: 1.5rem 0;
  }
  .advertisement-section .ad-container {
    padding: 0 15px;
  }
  .advertisement-section .ad-container .ad-label {
    font-size: 11px;
    padding: 3px 10px;
  }
}

/* Infeed Advertisement Styles */
.infeed-ad-container {
  background: white;
  border-radius: 15px;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.infeed-ad-container::before {
  content: "広告";
  display: block;
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 12px 25px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.infeed-ad-container .adsbygoogle {
  display: block !important;
  margin: 0;
  min-height: 200px;
  padding-bottom: 25px;
}
.infeed-ad-container:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left-color: #2E81B0;
}
@media (max-width: 768px) {
  .infeed-ad-container::before {
    font-size: 11px;
    padding: 10px 20px 0;
  }
  .infeed-ad-container .adsbygoogle {
    padding: 0 20px 20px 20px;
    min-height: 100px;
  }
}

#interstitialBackground {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  background: rgba(0, 0, 0, 0.8) !important;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#interstitialBackground .modal-content {
  position: relative !important;
  width: 90% !important;
  max-width: 600px !important;
  background: #fff !important;
  padding: 20px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
}
#interstitialBackground .modal-content .ad-container {
  text-align: center;
  position: relative;
}
#interstitialBackground .modal-content .ad-container .ad-label {
  display: inline-block;
  background: #2E81B0;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-box-shadow: 0 2px 4px rgba(46, 129, 176, 0.3);
          box-shadow: 0 2px 4px rgba(46, 129, 176, 0.3);
}
#interstitialBackground #closeAd {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  z-index: 10;
}
#interstitialBackground #closeAd:hover {
  color: #2e81b0;
}
#interstitialBackground #adIframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#interstitialBackground #adIframe:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.sideber_ads {
  width: 100%;
  height: 350px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(46, 129, 176, 0.08);
  border-radius: 20px;
  margin-bottom: 35px;
  padding: 5px;
}
.sideber_ads_text {
  text-align: center;
  padding: 5px;
  font-size: 12px;
  color: #999;
}/*# sourceMappingURL=common.css.map */