@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "LINE Seed JP", sans-serif;
}

html {
  font-size: 62.5%;
}

h1 {
  font-size: 5rem;
}

h1.wp-block-heading {
  margin-top: 50px;
}

@media (max-width: 768px) {
  h1.wp-block-heading {
    margin-top: 20px;
  }
}
h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 3rem;
}

p {
  font-size: 2rem;
  color: #333;
}

@media (max-width: 768px) {
  p {
    font-size: 1.6rem;
  }
}
p.wp-block-paragraph {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  p.wp-block-paragraph {
    margin-bottom: 15px;
  }
}
ul.wp-block-list li {
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

ul.wp-block-list {
  margin-bottom: 10px;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(rgba(11, 47, 143, 0.1019607843) 1.5px, transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
}

.content-section {
  position: relative;
  z-index: 900;
  margin-top: -50px;
  padding: 70px 0 120px 0;
  height: auto;
  border-radius: 50px 50px 0 0;
  background-color: white;
}

@media (max-width: 768px) {
  .content-section {
    margin-top: -25px;
    padding: 50px 0 75px 0;
    border-radius: 25px 25px 0 0;
  }
}
.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 25px 0 25px;
}

.container h1 {
  font-size: 3rem;
  color: #0b2f8f;
  border-bottom: 2px solid #0b2f8f;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .container h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}
.container h2 {
  font-size: 3rem;
  color: #0b2f8f;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container h2 {
    font-size: 2rem;
  }
}
.container-small {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 25px 0 25px;
}

.container-small h1 {
  font-size: 3rem;
  color: #0b2f8f;
  border-bottom: 2px solid #0b2f8f;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .container-small h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}
.container-small h2 {
  font-size: 3rem;
  color: #0b2f8f;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .container-small h2 {
    font-size: 2rem;
  }
}
.page-header {
  padding: 130px 0 100px 0;
  width: 100%;
}

.page-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  display: block;
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #0b2f8f;
  padding-bottom: 10px;
  border-bottom: 2px solid #0b2f8f;
  animation: slideIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 3rem;
    padding-bottom: 0;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* --- section-button --- */
.btn-common {
  display: inline-block;
  margin-top: 45px;
  color: #0b2f8f;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: white;
  padding: 10px 30px;
  border-radius: 30px;
  border: 2px solid #0b2f8f;
  transition: 0.1s;
}

@media (max-width: 768px) {
  .btn-common {
    font-size: 1.6rem;
  }
}
.btn-common:hover {
  color: white;
  background-color: #0b2f8f;
  transform: scale(0.95);
}

/* wp-block */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.wp-block-button__link {
  color: #0b2f8f;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: white;
  padding: 10px 30px;
  border-radius: 30px;
  border: 2px solid #0b2f8f;
  transition: 0.1s;
}

@media (max-width: 768px) {
  .wp-block-button__link {
    font-size: 1.6rem;
  }
}
.wp-block-button__link:hover {
  color: white;
  background-color: #0b2f8f;
  transform: scale(0.95);
}

.wp-block-separator {
  margin: 25px 0;
}

.wp-block-paragraph {
  margin-bottom: 1.6rem;
}

/* --- 1. root --- */
html {
  font-size: 62.5%;
}

/* --- 2. main --- */
.site-header {
  height: auto;
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
}

.header-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

/* --- 3. site-title --- */
.site-title a {
  display: block;
  line-height: 0;
  position: relative;
}

.site-title img {
  position: relative;
  width: 200px;
  height: auto;
  display: block;
}

/* --- 4. header-nav-list --- */
.header-nav-list {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8px 20px;
  border-radius: 80px;
  border: 2px solid #0b2f8f;
  margin: 0;
  list-style: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.header-nav-list li {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  position: relative;
}

.header-nav-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: #0b2f8f;
  border-radius: 2px;
}

.header-nav-list li:first-child {
  padding-left: 0;
}

.header-nav-list li:last-child {
  padding-right: 0;
}

.header-nav-list li:last-child::after {
  display: none;
}

.header-nav-list a {
  color: #333333;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.5rem;
  transition: 0.2s;
}

.header-nav-list a:hover {
  color: #929292;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-direction: row-reverse;
}

/* --- 5. humberger-menu --- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 53px;
  height: 53px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid #0b2f8f;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #0b2f8f;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  backface-visibility: hidden;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-toggle.is-active ~ .header-nav-list {
  opacity: 0;
  visibility: hidden;
}

/* --- 6. full-screen-menu --- */
.full-screen-menu {
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 999;
  background-color: white;
  padding: 95px 30px 30px 30px;
  border-radius: 0 0 32px 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.full-screen-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.full-screen-menu ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
}

.full-screen-menu a {
  text-decoration: none;
  color: #333333;
}

.full-menu-list-big {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
}

.full-menu-list-small, .full-menu-list-s-ext {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.full-menu-list-big + .full-menu-list-small {
  margin-top: 0;
  padding-top: 25px;
  border-top: #cdcdcd solid 2px;
}

.full-menu-list-big a,
.full-menu-list-small a,
.full-menu-list-s-ext a {
  transition: 0.2s;
}

.full-menu-list-big a:hover,
.full-menu-list-small a:hover,
.full-menu-list-s-ext a:hover {
  color: #929292;
}

.full-menu-list-sns img {
  transition: 0.2s;
}

.full-menu-list-sns img:hover {
  opacity: 0.5;
}

.full-menu-list-s-ext::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.full-menu-list-sns {
  padding-top: 30px;
  border-top: #cdcdcd solid 2px;
}

.full-menu-list-sns img {
  height: 45px;
  width: 45px;
  margin-right: 30px;
}

/* --- 7. responsive --- */
@media screen and (max-width: 1024px) {
  .header-nav-list {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }
  .site-title img {
    width: 180px;
  }
  .menu-toggle {
    width: 48px;
    height: 48px;
  }
  .full-screen-menu {
    padding: 100px 25px 25px 25px;
    height: 100%;
  }
  .full-menu-list-big {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .full-menu-list-small, .full-menu-list-s-ext {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .full-menu-list-big + .full-menu-list-small {
    padding-top: 20px;
  }
  .full-menu-list-sns img {
    height: 50px;
    width: 50px;
  }
  .full-menu-list-sns {
    padding-top: 25px;
  }
}
/* --- 8. admin-bar --- */
body.admin-bar .header-container {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .header-container {
    top: 0;
  }
}
.footer {
  position: relative;
  z-index: 990;
  background-color: #0b2f8f;
  margin-top: -50px;
  padding: 70px 0 50px 0;
  height: auto;
  border-radius: 50px 50px 0 0;
}

@media (max-width: 768px) {
  .footer {
    margin-top: -25px;
    padding: 50px 0 75px 0;
    border-radius: 25px 25px 0 0;
  }
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-logo img {
  width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  .footer-logo img {
    width: 250px;
  }
}
.footer-address {
  margin-top: 40px;
  line-height: 1.8;
  font-size: 2.5rem;
  color: white;
}

@media (max-width: 768px) {
  .footer-address {
    font-size: 2rem;
  }
}
.footer-sns {
  margin-top: 40px;
}

.footer-sns img {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

/* --- footer-nav --- */
.footer-nav ul {
  list-style: none;
}

.footer-menu-list a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: white;
  transition: 0.2s;
  z-index: 1;
}

.footer-menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: white;
  z-index: 10;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.footer-menu-list a:hover::after {
  transform: scaleX(1);
}

.footer-list-large {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer-list-large {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
.footer-list-small, .footer-list-small-ext {
  margin-bottom: 10px;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .footer-list-small, .footer-list-small-ext {
    margin-bottom: 10px;
  }
}
.footer-list-small-ext::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.copyright {
  font-size: 1.5rem;
  color: white;
}

/* --- splash --- */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: splash-out 0.5s forwards;
  animation-delay: 0.5s;
}

.splash-logo {
  width: 30%;
  height: auto;
  margin-bottom: 20px;
}

.splash-copy {
  color: #0b2f8f;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@keyframes splash-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/* --- top-visual --- */
#top_visual img {
  width: 100%;
}

.top-img-pc {
  display: block !important;
}

.top-img-sp {
  display: none !important;
}

@media (max-width: 768px) {
  .top-img-pc {
    display: none !important;
  }
  .top-img-sp {
    display: block !important;
  }
}
/* --- top-info --- */
.content-section.-top-section {
  z-index: 900;
}

.top-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 50px;
}

@media (max-width: 768px) {
  .top-info {
    flex-direction: column;
    gap: 25px;
  }
}
/* opening-date */
.opening-date {
  padding-right: 50px;
  border-right: 3px solid #cdcdcd;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .opening-date {
    border-right: none;
  }
}
.opening-text {
  font-size: 3rem;
}

@media (max-width: 798px) {
  .opening-text {
    font-size: 2.5rem;
  }
}
.date-string {
  display: inline-block;
  font-size: 6rem;
  font-weight: 700;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .date-string {
    font-size: 5rem;
    margin-top: 0;
  }
}
.suffix {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .suffix {
    font-size: 2rem;
  }
}
/* latest-news */
.latest-news {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}

.latest-news-link {
  display: block;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-width: 0;
  text-decoration: none;
}

.news-date {
  display: inline-block;
  font-size: 1.8rem;
  color: #fff;
  background-color: #0B2F8F; /* ピースカフェのメインカラー */
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .news-date {
    font-size: 1.6rem;
  }
}
.news-category {
  font-size: 1.8rem;
  color: #333;
  background-color: #e8e8e8;
  padding: 3px 20px;
  border-radius: 32px;
}

@media (max-width: 768px) {
  .news-category {
    font-size: 1.6rem;
    padding: 3px 15px;
  }
}
.latest-news-label {
  font-size: 2.5rem;
  color: #0b2f8f;
  margin-bottom: 20px;
  font-weight: 500;
  border-bottom: 2px solid #0b2f8f;
}

@media (max-width: 768px) {
  .latest-news-label {
    font-size: 2rem;
  }
}
.latest-news-link:hover .news-title::after,
.news-item:hover .news-title::after {
  width: 100%;
}

@media (max-width: 768px) {
  .news-date, .news-category, .news-title {
    font-size: 1.5rem;
  }
  .news-item {
    padding: 10px 0;
  }
}
.news-title {
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  width: 100%;
  position: relative;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .news-title {
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.news-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0b2f8f;
  transition: width 0.3s ease;
}

.latest-news:hover .news-title::after {
  width: 100%;
}

@media (max-width: 768px) {
  .latest-news .news-title::after {
    display: none;
  }
}
/* --- about-section --- */
.content-section.-about-section {
  z-index: 910;
  background-color: rgba(11, 47, 143, 0.0705882353);
}

/* --- about --- */
.about-small {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .about-small {
    font-size: 2rem;
  }
}
.about-large {
  font-size: 3.5rem;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .about-large {
    font-size: 2.5rem;
  }
}
.about-large:last-of-type {
  margin-bottom: 0;
}

/* --- news-section --- */
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-section.-news-section {
  z-index: 920;
}

.news-item {
  display: block;
  padding: 20px 0;
  border-bottom: 2px solid #cdcdcd;
  text-decoration: none;
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-item:first-child {
  padding-top: 0;
}

/* --- banner-section --- */
.content-section.-banner-section {
  z-index: 930;
  background-color: #dbdbdb;
}

.banner-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.banner-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background-color: #333;
}

@media (max-width: 768px) {
  .banner-item {
    height: 150px;
  }
}
.banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.banner-inner {
  position: relative;
  z-index: 3;
  padding-left: 40px;
  color: white;
}

.banner-inner span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.banner-item:hover .banner-bg {
  transform: scale(1.1);
}

.content-section.-title-section {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url("images/store-img.webp");
  background-size: cover;
  background-position: center;
  color: white;
}

.title-copy {
  font-weight: 700;
  font-size: 5rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .title-copy {
    font-size: 3rem;
  }
}
.title-description {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .title-description {
    font-size: 1.6rem;
  }
}
/* --- marquee-view --- */
.marquee-view {
  overflow: hidden;
  margin-top: 50px;
  width: 100%;
  padding-bottom: 10px;
}

.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-loop 75s linear infinite;
}

.marquee-images img {
  width: 250px;
  height: auto;
  margin-right: 50px;
  border-radius: 10px;
  box-shadow: 8px 8px 0px #0b2f8f;
}

@keyframes marquee-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .marquee-images img {
    width: 180px;
    height: auto;
    margin-right: 15px;
  }
}
/* --- features-section --- */
.feat-card-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .feat-card-list {
    flex-direction: column;
  }
}
.feat-card-item {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .feat-card-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .feat-card-item {
    align-items: flex-start;
  }
}
.feat-card-img img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .feat-card-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 15px;
    margin-bottom: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.feat-card-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .feat-card-title {
    font-size: 2rem;
  }
}
.feat-card-text {
  width: 100%;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .feat-card-text {
    line-height: 1.5;
  }
}
/* --- groupinfo-section --- */
.content-section.-groupinfo-section {
  background-color: #efefef;
}

.group-info {
  display: flex;
  flex-direction: column;
}

.group-info-img-container {
  text-align: center;
}

.group-info-description {
  align-items: baseline;
}

.group-info-img {
  height: auto;
  width: 50%;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .group-info-img {
    width: 100%;
    margin-bottom: 25px;
  }
}
/* --- media-section -- */
.media-section-banner {
  height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .media-section-banner {
    margin-bottom: 25px;
  }
}
.for-media-container {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .for-media-container {
    margin-top: 25px;
  }
}
/* --- storeinfo-section --- */
.content-section.-storeinfo-section {
  background: linear-gradient(rgba(11, 47, 143, 0.0705882353), rgba(11, 47, 143, 0.0705882353)), #ffffff;
}

.-storeinfo-section img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 32px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .-storeinfo-section img {
    height: 200px;
  }
}
.store-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.store-name {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .store-name {
    font-size: 2.5rem;
  }
}
.store-address {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .store-address {
    font-size: 1.6rem;
  }
}
.store-map {
  border-radius: 32px;
}

@media (max-width: 768px) {
  .store-map {
    height: 200px;
  }
}
/* container */
.container-news {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 25px;
}

.container-news h1 {
  font-size: 3rem;
  border-bottom: 2px solid #0b2f8f;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .container-news h1 {
    font-size: 2.5rem;
    margin: 25px 0;
  }
}
.container-news h2 {
  font-size: 3rem;
  margin: 25px 0;
}

@media (max-width: 768px) {
  .container-news h2 {
    font-size: 2.5rem;
    margin: 20px 0;
  }
}
.container-news h3 {
  font-size: 2rem;
  margin: 25px 0;
}

.container-news a {
  font-size: 1.6rem;
}

.container-news ul {
  font-size: 1.6rem;
}

.container-news img {
  border-radius: 16px;
  margin-bottom: 25px;
}

.container-news .wp-block-button {
  display: flex;
  flex-direction: row;
}

/* information */
.news-single__info {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .news-single__info {
    margin-bottom: 25px;
  }
}
.news-single__date {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  background-color: #0B2F8F;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-weight: bold;
}

.news-single__title {
  font-size: 3rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .news-single__title {
    font-size: 2.5rem;
  }
}
/* thumbnail */
.news-single__thumbnail {
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .news-single__thumbnail {
    margin-bottom: 25px;
  }
}
.news-single__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.news-single__btn-back {
  text-align: center;
}

/* container */
.container-media {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 25px;
}

.container-media h1 {
  font-size: 3rem;
  border-bottom: 2px solid #0b2f8f;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .container-media h1 {
    font-size: 2.5rem;
    margin: 25px 0;
  }
}
.container-media h2 {
  font-size: 3rem;
  margin: 25px 0;
}

@media (max-width: 768px) {
  .container-media h2 {
    font-size: 2.5rem;
    margin: 20px 0;
  }
}
.container-media h3 {
  font-size: 2rem;
  margin: 25px 0;
}

.container-media p {
  font-size: 1.6rem;
}

.container-media a {
  font-size: 1.6rem;
}

.container-media ul {
  font-size: 1.6rem;
}

.container-media img {
  border-radius: 16px;
  margin-bottom: 25px;
}

.container-media .wp-block-button {
  display: flex;
  flex-direction: row;
}

/* information */
.media-single__info {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .media-single__info {
    margin-bottom: 25px;
  }
}
.media-single__date {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  background-color: #0B2F8F;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-weight: bold;
}

.media-single__title {
  font-size: 3rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .media-single__title {
    font-size: 2.5rem;
  }
}
/* thumbnail */
.media-single__thumbnail {
  width: 100%;
  flex-shrink: 0;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .media-single__thumbnail {
    margin-bottom: 25px;
  }
}
.media-single__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.media-single__btn-back {
  text-align: center;
}

.media-single__btn-external {
  text-align: center;
}

.news-list {
  margin: 0 auto;
  padding: 40px 0px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.news-item:hover {
  background-color: #fafafa;
}

.news-item__thumbnail {
  width: 240px;
  flex-shrink: 0;
}

.news-item__thumbnail img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.news-item__info {
  flex: 1;
}

.news-item__date {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  background-color: #0B2F8F;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: bold;
}

.news-item__title {
  font-size: 2.3rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }
  .news-item__thumbnail {
    width: 100%;
  }
  .news-item__thumbnail img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .news-item__title {
    font-size: 1.6rem;
  }
}
.news-pagination {
  margin-top: 60px;
  text-align: center;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  text-decoration: none;
  color: #0B2F8F;
  font-size: 1.6rem;
  border: 1px solid #0B2F8F;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.1s ease;
}

.news-pagination .page-numbers.next,
.news-pagination .page-numbers.prev {
  width: auto;
  padding: 0 15px;
}

.news-pagination a.page-numbers:hover {
  background-color: #0B2F8F;
  color: #fff;
  transform: scale(0.95);
}

.news-pagination .page-numbers.current {
  background-color: #0B2F8F;
  color: #fff;
  cursor: default;
}

.news-pagination .dots {
  border: none;
}

.media-list {
  margin: 0 auto;
  padding: 40px 0px;
}

.media-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.media-item:hover {
  background-color: #fafafa;
}

.media-item__thumbnail {
  width: 240px;
  flex-shrink: 0;
}

.media-item__thumbnail img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
}

.media-item__info {
  flex: 1;
}

.media-item__date {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  background-color: #0B2F8F;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: bold;
}

.media-item__title {
  font-size: 2.3rem;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .media-item {
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }
  .media-item__thumbnail {
    width: 100%;
  }
  .media-item__thumbnail img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .media-item__title {
    font-size: 1.6rem;
  }
}
.media-pagination {
  margin-top: 60px;
  text-align: center;
}

.media-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  text-decoration: none;
  color: #0B2F8F;
  font-size: 1.6rem;
  border: 1px solid #0B2F8F;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.1s ease;
}

.media-pagination .page-numbers.next,
.media-pagination .page-numbers.prev {
  width: auto;
  padding: 0 15px;
}

.media-pagination a.page-numbers:hover {
  background-color: #0B2F8F;
  color: #fff;
  transform: scale(0.95);
}

.media-pagination .page-numbers.current {
  background-color: #0B2F8F;
  color: #fff;
  cursor: default;
}

.media-pagination .dots {
  border: none;
}

.message-404 {
  text-align: center;
}

.message-thanks {
  text-align: center;
}

.contact-message {
  margin-bottom: 20px;
}

.contact-type h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #0b2f8f;
  margin-top: 30px;
}

.contact-type p {
  margin-top: 10px;
}

.contact-type .btn-common {
  margin-top: 30px !important;
}

.radio-buttons .wpcf7-list-item {
  margin: 0 10px 10px 0;
  display: inline-block;
}

.radio-buttons .wpcf7-list-item-label {
  display: inline-block;
  margin-top: 15px;
  color: #0b2f8f;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.1em;
  background-color: white;
  padding: 10px 30px;
  border-radius: 30px;
  border: 2px solid #0b2f8f;
  transition: 0.1s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.radio-buttons input[type=radio]:checked + .wpcf7-list-item-label {
  background-color: #0b2f8f;
  color: white;
}

.radio-buttons .wpcf7-list-item-label:hover {
  transform: scale(0.95);
}

.wpcf7-form label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .wpcf7-form label {
    font-size: 1.6rem;
  }
}
.wpcf7-form label .wpcf7-form-control-wrap,
.form-input {
  display: block;
  width: 100%;
  margin-top: 4px;
  order: 1;
}

.form-input {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fafafa;
  box-sizing: border-box;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (max-width: 768px) {
  .form-input {
    padding: 15px;
  }
}
.wpcf7-form p:has(.form-submit) {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .wpcf7-form p:has(.form-submit) {
    margin: 0;
  }
}
.wpcf7-form label:not(:has(.wpcf7-list-item-label)):has(.wpcf7-validates-as-required)::after {
  content: "必須";
  order: 0;
  margin-left: 10px;
  padding: 4px 10px;
  background-color: #ff4b4b;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 4px;
  line-height: 1;
}

.wpcf7-form label:not(:has(.wpcf7-list-item-label)):not(:has(.wpcf7-validates-as-required))::after {
  content: "任意";
  order: 0;
  margin-left: 10px;
  padding: 4px 10px;
  background-color: #eee;
  color: #666;
  font-size: 1.2rem;
  border-radius: 4px;
  line-height: 1;
}

.wpcf7-not-valid-tip {
  color: #ff4b4b;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 5px;
  display: block;
}

.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px !important;
  border: 2px solid #ff4b4b !important;
  border-radius: 10px;
  background-color: #fff5f5;
  color: #ff4b4b;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #4caf50 !important;
  background-color: #f0fff0;
  color: #4caf50;
}

.wpcf7-spinner {
  display: none;
}

.form-dropdown {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 25px;
}

.wpcf7-form {
  overflow-x: hidden;
}

.privacy-note {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .privacy-note {
    font-size: 1.6rem;
  }
}
.privacy-note a {
  color: #0b2f8f;
  font-weight: 700;
}

/*# sourceMappingURL=style.css.map */