@charset "UTF-8";
/*
Theme Name: My Original Theme
Author: Takafcosa
Description: 自作LPをWordPress化したテーマです。
Version: 1.0
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

.container {
  display: flex;
  width: 100%;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.sidebar {
  width: 200px;
  background-color: #1e3a5f;
  color: #fff;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .logo img {
  max-width: 100%;
}
.sidebar .global-nav ul li {
  margin-bottom: 15px;
}
.sidebar .global-nav ul li a {
  font-size: 14px;
  font-weight: 700;
  display: block;
  color: #fff;
}
.sidebar .global-nav ul li a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px;
    flex-direction: row;
    align-items: center;
  }
  .sidebar .global-nav {
    display: none;
  }
  .sidebar .scroll-sign {
    display: none;
  }
}

.main-content {
  flex: 1;
}
.main-content .hero {
  background-color: #1e3a5f;
  padding: 50px 5%;
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .main-content .hero {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
    padding: 80px 5%;
  }
}
.main-content .hero .hero-text {
  width: 45%;
}
@media (max-width: 768px) {
  .main-content .hero .hero-text {
    width: 100%;
    text-align: center;
  }
}
.main-content .hero .hero-text h2 {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .main-content .hero .hero-text h2 {
    font-size: 24px;
  }
}
.main-content .hero .hero-image {
  width: 50%;
}
@media (max-width: 768px) {
  .main-content .hero .hero-image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.main-content .hero .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .en {
  color: #1e3a5f;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.section-title h3 {
  font-size: 24px;
}

.btn-yellow {
  display: inline-block;
  background-color: #1e3a5f;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
  transition: 0.3s;
}
.btn-yellow:hover {
  background-color: #ffd600;
}

.features {
  padding: 100px 5%;
  background-color: #fafafa;
}
.features .card-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 768px) {
  .features .card-container {
    flex-direction: column;
  }
}
.features .card {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  width: 32%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .features .card {
    width: 100%;
  }
}
.features .card .icon {
  margin-bottom: 20px;
}
.features .card .icon img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.features .card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.features .card p {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.services {
  padding: 100px 5%;
  background-color: #fafafa;
}
.services .service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
.services .service-row:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .services .service-row {
    flex-direction: column !important;
    margin-bottom: 50px;
  }
  .services .service-row .service-img,
  .services .service-row .service-text {
    width: 100%;
  }
  .services .service-row .service-img {
    margin-bottom: 20px;
  }
}
.services .service-row .service-img {
  width: 48%;
}
.services .service-row .service-img img {
  width: 100%;
  border-radius: 20px;
}
.services .service-row .service-text {
  width: 45%;
}
.services .service-row .service-text .number {
  font-size: 80px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #ddd, -1px -1px 0 #ddd, -1px 1px 0 #ddd, 1px -1px 0 #ddd;
  display: block;
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 0;
}
.services .service-row .service-text h4 {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.services .service-row .service-text p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact {
  padding: 80px 5%;
  background-color: #1e3a5f;
  text-align: center;
  color: #fff;
}
.contact .section-title .en {
  color: #fff;
}
.contact .contact-text {
  margin-bottom: 40px;
  line-height: 2;
  font-size: 16px;
}
.contact .btn-contact {
  display: inline-block;
  background-color: #fff;
  color: #1e3a5f;
  padding: 15px 60px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contact .btn-contact:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* --- NEWSセクション --- */
.news {
  padding: 60px 0;
  text-align: center;
}
.news .section-title .en {
  color: #0071bc;
  font-weight: bold;
}
.news .section-title h3 {
  font-size: 24px;
  margin-top: 10px;
}
.news .news-list {
  max-width: 800px;
  margin: 30px auto;
  list-style: none;
  padding: 0;
  text-align: left;
}
.news .news-list li {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.news .news-list li .date {
  color: #888;
  margin-right: 15px;
  font-size: 0.9em;
}
.news .news-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: opacity 0.3s;
}
.news .news-list li a:hover {
  opacity: 0.7;
}

/* --- お問い合わせフォーム（Contact Form 7） --- */
.contact-form-wrapper label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9rem;
}
.contact-form-wrapper input[type=text],
.contact-form-wrapper input[type=email],
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-form-wrapper input[type=text]:focus,
.contact-form-wrapper input[type=email]:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #0071bc;
  box-shadow: 0 0 5px rgba(0, 113, 188, 0.3);
}
.contact-form-wrapper input[type=submit] {
  background-color: #0071bc;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 0 auto;
}
.contact-form-wrapper input[type=submit]:hover {
  background-color: #005a9c;
}
.contact-form-wrapper .wpcf7-not-valid-tip {
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */