/*
Theme Name: Attention Theme
*/


/* =========================
   Reset / Base
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: sans-serif;
}

/* ---------- responsive ---------- */
@media screen and (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

@media screen and (min-width: 769px) {
  body {
    padding-top: 100px;
  }
}


a {
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.6;
}

.btn:hover {
  transform: translateY(-2px);
}

.gt_switcher {
  margin-left: 180px;
}
@media screen and (max-width: 768px) {
	.gt_switcher {
  margin-right: 0;
}
	.gt_selected {
  height:20px;
  display: flex;
  align-items: center;
}
}

/* ---------- パンくず ---------- */
.breadcrumb {
  width: 90%;
  max-width: 1100px;
  margin: 24px auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: #8b9aa3;
}

.breadcrumb a {
  color: #8b9aa3;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #0061DD;
}

.breadcrumb span {
  margin: 0 6px;
}

/* =========================
   Header
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #0061DD;
  transition: all 0.3s ease;
}

.header.is-small {
  background: rgba(0, 97, 221, 0.95);
}

.header-pc,
.header-sp {
  width: 100%;
}

/* ---------- PC ---------- */
.header-pc {
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
}

.logo a{border:none}

.logo img {
  width: 239px;
  max-width: 100%;
  height: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-pc {
  display: block;
}

.nav-list-pc {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-list-pc li {
  position: relative;
}

.nav-list-pc a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.nav-list-pc .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  color: #0061DD;
  font-weight: bold;
}

.nav-list-pc .btn:hover {
  background: #e6f0ff;
}

.header-pc .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 267px;
  background: rgba(34, 34, 34, 0.85);
  list-style: none;
  padding: 10px 0;
  z-index: 100;
}

.header-pc .has-child:hover .sub-menu {
  display: block;
}

.header-pc .sub-menu li {
  padding: 0;
}

.header-pc .sub-menu li a {
  display: block;
  padding: 8px 16px;
  color: #fff;
}

.header-pc .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- SP ---------- */
.header-sp {
  display: none;
}

.header-inner-sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  min-height: 80px;
}

.logo-sp img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
}

.sp-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: 0.3s ease;
}

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

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

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

.nav-sp {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  overflow-y: auto;
  background: #0061DD;
  padding: 20px 16px 24px;
}

.nav-sp.is-open {
  display: block;
}

.nav-list-sp {
  list-style: none;
}

.nav-list-sp > li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.menu-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.nav-list-sp li:last-child {
  border-bottom: none;
}

.nav-list-sp a,
.nav-list-sp .sp-service-title {
  display: block;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
}

.nav-list-sp .sp-service-title {
  font-weight: bold;
  opacity: 0.8;
}

.nav-list-sp .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 42px;
  border-radius: 21px;
  margin: 12px 0 0;
  background: #fff;
  color: #0061DD;
  font-weight: bold;
}

.sp-sub {
  list-style: none;
}
.sp-sub a {
  padding-left: 1em;
}

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

  .header-sp {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .header-pc {
    display: block;
  }

  .header-sp {
    display: none;
  }
}


/* =========================
   Footer
========================= */

.footer {
  background: #f0f3f5;
  padding: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  max-width: 400px;
}

.footer-logo img {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.footer-info {
  font-size: 14px;
  line-height: 1.6;
}

/* ナビ */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.footer-nav > li {
  position: relative;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* ボタン */
.footer-nav .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  border-radius: 25px;
  margin-left: 10px;
  background: #0061dd;
  color: #fff;
  font-weight: bold;
}

/* ドロップダウン */
.footer .sub-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 267px;
  background: rgba(34, 34, 34, 0.85);
  list-style: none;
  margin: 0;
  padding: 10px 0;
  z-index: 100;
}
.footer .has-child:hover .sub-menu {
  display: block;
}

.footer .sub-menu li {
  padding: 0;
}

.footer .sub-menu li a {
  display: block;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
}

.footer .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 下段 */
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
}

.footer-bottom p {
  margin-left: 2rem;
}

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

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-bottom a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
  }

.footer-bottom p {
  margin-left: 0;
}
}

/* ページトップボタン */
.page-top {
  position: fixed;
  right: 24px;
  bottom: 80px;
  width: 56px;
  height: 56px;

  background: #0061DD;
  color: #fff;
  font-size: 20px;
  font-weight: bold;

  border: none;
  border-radius: 50%;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: 0.3s;
  z-index: 999;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}


/* =========================
   Content
========================= */

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

section {
  padding: 80px 0;
}

/* FV */
.fv {
  width: 100%;
  height: calc(100vh - 103px);
  max-height: 800px;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.fv-slider,
.fv-slider .swiper-wrapper,
.fv-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.fv .swiper-slide {
  position: relative;
  overflow: hidden;
}


.fv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center top;
	position: relative;
	z-index: 1;
}

.fv-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
	z-index: 10;
}

.fv .swiper-pagination {
  position: absolute;
  bottom: 24px !important;
  left: 0;
  width: 100%;
  z-index: 20;
}

.fv .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.fv .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 英語 */
.fv-en {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

/* 日本語 */
.fv-ja {
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.6;
}

/* 影（おすすめ） */
.fv-text {
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 8px 20px rgba(0,0,0,0.6);
}

/* News */
.top-news {
  padding: 30px 0;
}

.top-news .inner {
  display: flex;
  gap: 30px;
}

/* サービス */
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 特徴 */
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 50vh;
    min-height: 360px;
  }

  .fv-text {
    top: 40%;
  }

  .fv-en {
    font-size: 24px;
  }

  .fv-ja {
    font-size: 12px;
  }

  .fv .swiper-pagination {
    bottom: 18px !important;
  }
}


/* =========================
   Top News
========================= */

.top-news {
  padding: 0;
  background: #eaf4ff;
}

.top-news-inner {
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.top-news-title {
  color: #0061DD;
  font-size: 24px;
  font-weight: bold;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 2px solid #0061DD;
}

.top-news-content {
  flex: 1;
}

.top-news-link {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #333;
  text-decoration: none;
}

.top-news-date {
  font-size: 12px;
  color: #333;
}

.top-news-text {
  font-size: 14px;
}

.top-news-more {
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.news-slider {
  height: 24px;
  overflow: hidden;
}

.news-slider .swiper-wrapper {
  height: 24px;
}

.news-slider .swiper-slide {
  height: 24px !important;
  display: flex;
  align-items: center;
}

.top-news-link {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 0;
  }

  .top-news-inner {
    height: auto;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-news-title {
    font-size: 20px;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .top-news-content {
    width: 100%;
  }

  .news-slider {
    width: 100%;
    height: 48px;
    overflow: hidden;
  }

  .news-slider .swiper-wrapper {
    height: 48px;
  }

  .news-slider .swiper-slide {
    height: 48px !important;
    display: flex;
    align-items: center;
  }

  .top-news-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .top-news-date {
    font-size: 11px;
  }

  .top-news-text {
    width: 100%;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-news-more {
    align-self: flex-end;
    font-size: 12px;
  }
}


/* =========================
   （共通）
========================= */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-en {
  color: #0061DD;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.section-title-ja {
  margin-top: 8px;
  color: #222;
  font-size: 32px;
  font-weight: bold;
}

.section-title-ja {
  position: relative;
  display: inline-block;
}

.section-title-ja::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #0061DD;
  margin: 8px auto 0;
}

@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 24px;
  }

  .section-title-en {
    font-size: 14px;
  }

  .section-title-ja {
    font-size: 22px;
  }
}

/* =========================
   CTA
========================= */

.cta {
  padding: 80px 0;
}

/* ボタン本体 */
.cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;

  width: 100%;
  max-width: 650px;
  height: 120px;

  margin: 0 auto;

  border: 5px solid #0061DD;
  border-radius: 60px;

  background: #fff;
  text-decoration: none;
}

/* テキスト */
.cta-text {
  text-align: center;
	padding-left:5rem;
}

.cta-main {
  font-size: 32px;
  font-weight: bold;
  color: #0061DD;
}

.cta-sub {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

/* 画像（右に重ねる） */
.cta-image {
  position: absolute;
  right: -40px;
  top: 30%;
  transform: translateY(-50%);

  width: 300px;
  height: auto;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image img {
  max-width: 70%;
  height: auto;
}

.cta-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {

  .cta {
    padding: 40px 0;
  }

  .cta-button {
    max-width: 100%;
    height: 90px;
    border-radius: 45px;
    border-width: 3px;

    justify-content: flex-start;
    padding-left: 20px;
  }

  .cta-text {
    padding-left: 0;
  }

  .cta-main {
    font-size: 20px;
  }

  .cta-sub {
    font-size: 12px;
    margin-top: 4px;
  }

  /* 画像 */
  .cta-image {
    right: -20px;
    top: 50%;
    width: 130px;
  }

  .cta-image img {
    max-width: 80%;
  }

}


/* =========================
   Service
========================= */

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: #333;
}

.service-img {
  display: block;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4 / 2.5;
  min-height: 300px;
}

.service-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* 画像リンクにマウスオーバーした時だけズーム */
.service-img:hover img {
  transform: scale(1.05);
}

/* 本文 */
.service-body {
  padding: 20px;
}

/* アイコン＋タイトル */
.service-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon {
  width: 60px;
  height: 60px;
}

.service-title {
  font-size: 30px;
  font-weight: bold;
}

/* 説明 */
.service-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

/* ボタン */
.service-more {
	margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 219px;
  height: 49px;
  padding: 0 20px;

  border: 1px solid #707070;
  border-radius: 24.5px;

  color: #3B4043;
  font-weight:bold;
  text-decoration: none;
}

.service-more span:last-child {
  transition: transform 0.3s ease;
}

.service-more:hover span:last-child {
  transform: translateX(10px);
}

.service-more:hover {
  background: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .service-list {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .service-card {
    width: 100%;
  }
 .service-img {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .service-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
	.service-list,
  .service-card,
  .service-img {
    max-width: 100%;
    overflow: hidden;
  }
  .service-title {
    font-size: 16px;
  }

  .service-text {
    font-size: 13px;
  }

}

/* =========================
   Sub Banner
========================= */

.sub-banner {
  display: block;
  width: 604px;
  height: 150px;
  margin: 40px auto 0;

  position: relative;
  text-decoration: none;
  color: #fff;

  border-radius: 10px;
  overflow: hidden;
}

/* 黒オーバーレイ */
.sub-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* テキスト */
.sub-banner-inner {
  position: relative;
  z-index: 1;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sub-banner-title {
  font-size: 30px;
  font-weight: bold;
}

.sub-banner-text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.sub-banner:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {

  .sub-banner {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }

  .sub-banner-title {
    font-size: 20px;
  }

  .sub-banner-text {
    font-size: 12px;
  }

}


/* =========================
   Feature
========================= */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: 40px;
}

.feature-block:first-of-type {
  margin-top: 0;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse .feature-content {
  direction: ltr;
}

.feature-img {
  overflow: hidden;
  min-height: 320px;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-content {
  background: #F0F3F5;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-size: 26px;
  font-weight: bold;
  color: #0061DD;
}

.feature-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.9;
  color: #3B4043;
}

@media screen and (max-width: 768px) {
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    margin-top: 30px;
  }

  .feature-img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .feature-content {
    padding: 30px 20px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-text {
    font-size: 14px;
    line-height: 1.8;
  }
}


/* 下層ページ共通 */
.sub-page {
}

.sub-fv {
  width: 100%;
  height: 313px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sub-fv::before {
  content: "";
  position: absolute;
  inset: 0;
}

.sub-fv-inner {
  position: relative;
  z-index: 1;
}

.sub-fv-title {
  font-weight: bold;
  font-size: 65px;
  text-align: center;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

.about-message,
.company-info {
  padding: 90px 0;
}

.about-message p {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 1.5em;
}

.section-title {
  font-size: 32px;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}

.section-title span {
  display: block;
  font-size: 14px;
  color: #0061DD;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

/* =========================
   about
========================= */
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #ddd;
  padding: 24px 20px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.company-table th {
  width: 220px;
  color: #0061DD;
  font-weight: bold;
  background: #f7f9fc;
}

/* SP */
@media screen and (max-width: 768px) {
  .sub-page {
  }

  .sub-fv {
    height: 200px;
  }

  .sub-fv-title {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    padding: 0 20px;
  }

  .about-message,
  .company-info {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding: 16px 18px 8px;
    border-bottom: none;
  }

  .company-table td {
    padding: 0 18px 18px;
  }
}

.about-main-img {
  margin-top: 40px;
}

.about-main-img img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {

  .about-main-img {
    margin-top: 30px;
  }
}

.about-history {
	margin:0 auto;
	max-width:1000px;
  padding: 0;
  background: #fff;
}

.history-title {
	margin-top:3rem;
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
  text-align: left;
  color: #3b4043;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 35px;
}

.history-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #707070;
}

.history-text {
  max-width: 100%;
}

.history-text p,
.history-list li {
  font-size: 16px;
  line-height: 2;
  color: #3b4043;
  margin-bottom: 1.4em;
}

.history-list {
  margin: 24px 0 0;
  padding-left: 2.2em;
}

.history-list li {
  padding-left: 0.4em;
}

@media screen and (max-width: 768px) {
  .about-history {
    padding: 0;
  }

  .history-title {
    font-size: 23px;
    line-height: 1.4;
    padding-bottom: 14px;
    margin-bottom: 28px;
  }

  .history-title::after {
    width: 100%;
  }

  .history-text p,
  .history-list li {
    font-size: 15px;
    line-height: 1.9;
  }

  .history-list {
    padding-left: 1.6em;
  }
}

/* 会社概要 */
.company-profile {
	max-width:1000px;
	margin:0 auto;
  padding: 90px 0;
  background: #fff;
}

.profile-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
  color: #0061dd;
  margin-bottom: 32px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 3px solid #aeb8bf;
}

.profile-table tr {
  border-bottom: 1px solid #cfd6dc;
}

.profile-table th,
.profile-table td {
  padding: 24px 0;
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4f52;
}

.profile-table th {
  width: 220px;
  font-weight: 500;
  color: #8b9aa3;
}

.profile-table td {
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .company-profile {
    padding: 60px 0;
  }

  .profile-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

  .profile-table th {
    padding: 18px 0 4px;
  }

  .profile-table td {
    padding: 0 0 18px;
  }
}


/* =========================
   contact
========================= */
.contact-section {
  padding: 120px 0 100px;
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #3b4043;

  position: relative;
  padding-bottom: 14px;
  margin-bottom: 30px;
}

.contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0061DD;
  margin: 12px auto 0;
}

@media screen and (max-width: 768px) {
  .contact-title::after {
    width: 50px;
  }
}

.contact-lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 50px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #3b4043;
  margin-bottom: 8px;
}

.wpcf7-form .required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 12px;
  color: #fff;
  background: #e60012;
  border-radius: 3px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f7f7f7;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #0061DD;
  outline: none;
  background: #fff;
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

.contact-form .wpcf7-text.small {
  max-width: 250px;
}

.contact-form input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.contact-form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;

  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;

  background: linear-gradient(90deg, #0b63ce, #0061DD);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 15px;
    padding: 12px;
  }

  .contact-form input[type="submit"] {
    font-size: 16px;
    padding: 16px;
  }
}

/* =========================
   NEWS
========================= */

/* ===== news ===== */
.news-list {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
  border-top: 1px solid #e5e8eb;
}

.news-item {
  border-bottom: 1px solid #e5e8eb;
}

.news-link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.news-date {
  font-size: 14px;
  color: #8b9aa3;
  min-width: 100px;
}

.news-title {
  font-size: 16px;
  color: #3b4043;
  line-height: 1.6;
}

.news-link:hover {
  background: #f7f9fb;
}

.news-link:hover .news-title {
  color: #0061DD;
}

.news-new {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  background: #e60012;
  border-radius: 3px;
}


/* ===== blog ===== */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
  border-top: 1px solid #e5e8eb;
}

.blog-item {
  border-bottom: 1px solid #e5e8eb;
}

.blog-link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.blog-date {
  font-size: 14px;
  color: #8b9aa3;
  min-width: 100px;
}

.blog-title {
  font-size: 16px;
  color: #3b4043;
  line-height: 1.6;
}

.blog-link:hover {
  background: #f7f9fb;
}

.blog-link:hover .blog-title {
  color: #0061DD;
}

@media screen and (max-width: 768px) {

  .news-link,
  .blog-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }

  .news-date,
  .blog-date {
    min-width: auto;
  }

  .news-title,
  .blog-title {
    font-size: 15px;
  }
}

/* ===== news single ===== */
.news-single {
  padding: 100px 0;
}

.news-single .inner {
  max-width: 900px;
}

.news-single-head {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e5e8eb;
}

.news-single-date {
  font-size: 15px;
  color: #8b9aa3;
  margin-bottom: 14px;
}

.news-single-title {
  font-size: 36px;
  line-height: 1.5;
  font-weight: bold;
  color: #3b4043;
}

.news-single-content {
  font-size: 16px;
  line-height: 2;
  color: #3b4043;
}

.news-single-content p {
  margin-bottom: 1.8em;
}

.news-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
}

.news-back {
  margin-top: 70px;
  text-align: center;
}

.news-back a {
  display: inline-block;
  min-width: 240px;
  padding: 16px 30px;
  border: 2px solid #0061DD;
  border-radius: 999px;
  color: #0061DD;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.news-back a:hover {
  background: #0061DD;
  color: #fff;
}


/* ===== blog single ===== */
.blog-single {
  padding: 100px 0;
}

.blog-single .inner {
  max-width: 900px;
}

.blog-single-head {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e5e8eb;
}

.blog-single-date {
  font-size: 15px;
  color: #8b9aa3;
  margin-bottom: 14px;
}

.blog-single-title {
  font-size: 36px;
  line-height: 1.5;
  font-weight: bold;
  color: #3b4043;
}

.blog-single-content {
  font-size: 16px;
  line-height: 2;
  color: #3b4043;
}

.blog-single-content p {
  margin-bottom: 1.8em;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
}

.blog-back {
  margin-top: 70px;
  text-align: center;
}

.blog-back a {
  display: inline-block;
  min-width: 240px;
  padding: 16px 30px;
  border: 2px solid #0061DD;
  border-radius: 999px;
  color: #0061DD;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.blog-back a:hover {
  background: #0061DD;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .news-single,
  .blog-single {
    padding: 70px 0;
  }

  .news-single-head,
  .blog-single-head {
    margin-bottom: 36px;
  }

  .news-single-title,
  .blog-single-title {
    font-size: 26px;
    line-height: 1.5;
  }

  .news-single-content,
  .blog-single-content {
    font-size: 15px;
    line-height: 1.9;
  }

  .news-back,
  .blog-back {
    margin-top: 50px;
  }

  .news-back a,
  .blog-back a {
    width: 100%;
    max-width: 320px;
  }
}


/* =========================
   事業内容
========================= */

.design-image-section {
  padding: 80px 0 100px;
  background: #fff;
}

.design-image {
  margin-top: 50px;
  text-align: center;
}

.design-image img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/* =========================
   プライバシーポリシー
========================= */

.privacy-content {
  padding: 80px 0 100px;
}

.privacy-title {
  font-size: 32px;
  font-weight: bold;
  color: #3b4043;
  text-align: center;

  position: relative;
  padding-bottom: 12px;
  margin-bottom: 40px;
}

/* 下線（他ページと統一） */
.privacy-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0061DD;
  margin-top: 10px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .privacy-title {
    font-size: 26px;
  }
}


.privacy-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #3b4043;
}

.privacy-updated {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 50px;
}

.privacy-body p {
  margin-bottom: 1.8em;
}

.privacy-body h2 {
  margin-top: 55px;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

.privacy-body h3 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: normal;
  color: #333;
}

.privacy-body ul {
  margin: 0 0 1.8em 1.5em;
  padding: 0;
}

.privacy-body li {
  margin-bottom: 0.6em;
}

.privacy-table-wrap {
  margin: 40px 0;
  overflow-x: auto;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.8;
}

.privacy-table th {
  background: #eef4fb;
  border: 1px solid #bfcbd6;
  padding: 12px 16px;
  text-align: center;
  font-weight: bold;
}

.privacy-table td {
  width: 50%;
  border: 1px solid #bfcbd6;
  padding: 16px 20px;
  vertical-align: top;
}

.privacy-cert {
  margin-top: 70px;
  text-align: center;
}

.privacy-cert img {
  max-width: 650px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* SP */
@media screen and (max-width: 768px) {
  .privacy-body {
    font-size: 14px;
    line-height: 1.9;
  }

  .privacy-updated {
    margin-bottom: 35px;
  }

  .privacy-body h2 {
    margin-top: 42px;
    font-size: 18px;
  }

  .privacy-body h3 {
    font-size: 16px;
  }

  .privacy-table {
    font-size: 13px;
  }

  .privacy-table th,
  .privacy-table td {
    padding: 12px;
  }

  .privacy-table td {
    display: block;
    width: 100%;
  }

  .privacy-cert {
    margin-top: 50px;
  }
}