/* 共通クラス */

html{
	margin:0 !important;
		padding:0 !important;
}

.body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
	margin:0 !important;
		padding:0 !important;
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.fade-target {
  opacity: 0;
  transform: translateY(100px); /* 下からフワッと */
  transition: opacity 1.5s ease, transform 1.5s ease;
}

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

/* ヘッダー */
.header {
  background-color: #eef2f7;
  padding: 35px;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
  z-index: 1000;
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-img {
  width: 220px;
}

.header-nav {
  display: flex;
  gap: 50px;
  font-size: 17px;
  color: #6e808d;
  font-weight: 600;
  align-items: center;
}

.header-list-p {
  background: #6e808d;
  border-radius: 100px;
  color: #fff;
  padding: 11px 30px;
}

/* ヘッダー*/

@media (max-width: 767px) {
  .header-img {
    width: 170px;
  }

  .header {
    background-color: #eef2f7;
    padding: 30px;
    opacity: 0;
    animation: fadeIn 3s ease forwards;
    z-index: 1000;
  }
}

/* =======================
   ハンバーガー & ドロワー
======================= */
/* 既存のheaderスタイルはそのまま + 以下を追加 */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hamburger.active span {
  background: white;
}

/* ドロワー（確実版） */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.drawer.active {
  transform: translateY(0);
  visibility: visible;
}

.drawer-menu {
  list-style: none;
  text-align: center;
}

.drawer-menu li {
  margin-bottom: 40px;
}

.drawer-list {
  color: #6e808d;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color 0.3s;
}

.drawer-list:hover {
  color: #007bff;
}

.drawer-list-p {
  color: white;
  font-size: 18px;
  background: #6e808d;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
  display: inline-block;
}

.drawer-list-p:hover {
  background: #0056b3;
}

/* ドロワー開いた時の固定 */
body.drawer-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #6e808d;
  font-size: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .drawer-menu {
    padding-right: 40px;
  }
}

/* FV */

.fv {
  background-color: #eef2f7;
  padding: 280px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
}

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

.fv-title {
  font-size: 50px;
  font-weight: 200;
  letter-spacing: 2.5px;
  border-bottom: solid 1px;
  padding-bottom: 5px;
}

.sub-title {
  font-size: 18px;
  margin-top: 20px;
}

/* fv */
@media (max-width: 767px) {
  .fv {
    background-color: #eef2f7;
    padding: 220px 30px 270px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 3s ease forwards;
  }

  .fv-title {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 2.5px;
    border-bottom: solid 0.8px;
    padding-bottom: 5px;
  }

  .sub-title {
    font-size: 13px;
    margin-top: 13px;
  }
}

/* about */

.about {
  padding: 100px 20px;
  background-color: #fff;
}

.about-title {
  text-align: center;
  font-size: 50px;
  font-weight: 100;
}

.about-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 60px;
  gap: 50px;
}

.about-img {
  flex: 1;
  width: 500px;
}

.about-txt {
  flex: 1;
}

.about-txt-main {
  font-size: 35px;
  margin-bottom: 30px;
}

.about-txt-sub {
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .about {
    padding: 50px 20px;
    background-color: #fff;
  }

  .about-title {
    text-align: center;
    font-size: 22px;
    font-weight: 100;
  }

  .about-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    gap: 0px;
    flex-direction: column;
  }

  .about-txt-main {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
  }

  .about-txt-sub {
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 1.8;
    text-align: left;
  }

.about-img {
  width: 100%;
}
}

/* service */

.service {
  padding: 100px 20px;
  background-color: #eef2f7;
}

.service-title {
  text-align: center;
  font-size: 50px;
  font-weight: 100;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  margin-top: 70px;
  row-gap: 80px;
}

.service-contents {
  align-items: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.service-titile {
  font-size: 25px;
}

.service-en {
  font-size: 14px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .service {
    padding: 100px 20px;
    background-color: #eef2f7;
  }

  .service-title {
    text-align: center;
    font-size: 22px;
    font-weight: 100;
  }
	

}

/* service-02 */

.service-02 {
  padding: 100px 30px;
  background-color: #eef2f7;
}

.service-02-box {
  display: flex;
  align-items: center;
}

.service-02-box-02 {
  display: flex;
  align-items: center;
}

.service-02-img {
  width: 500px;
  flex: 1;
}

.service-02-txt {
  flex: 1;
  position: relative;
  top: 60px;
  z-index: 1;
  background: #fff;
  padding: 80px 30px 80px 50px;
}

.service-02-txt-02 {
  flex: 1;
  position: relative;
  top: 60px;
  z-index: 1;
  background: #fff;
  padding: 80px 50px 80px 30px;
}

.service-02-main {
  text-align: center;
  font-size: 25px;
  margin-bottom: 13px;
}

.service-02-contents {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

@media (max-width: 767px) {
	
	.service-02 {
  padding: 100px 20px;
  background-color: #eef2f7;
}
	
  .service-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    margin-top: 30px;
    row-gap: 80px;
  }

  .service-titile {
    font-size: 18px;
  }

  .service-en {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .service-img {
    width: 80px;
  }
  .service-02-box {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .service-02-txt {
    flex: 1;
    position: relative;
    top: 0px;
    z-index: 1;
    background: #fff;
    padding: 30px 40px;
  }

  .service-02-sub {
    font-size: 13px;
  }

  .service-02-box-02 {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }

  .service-02-txt-02 {
    flex: 1;
    position: relative;
    top: 0px;
    z-index: 1;
    background: #fff;
    padding: 30px 40px;
  }
	
.service-02-img{
		width: 100%;
	}
}

<?php get_footer(); ?>