@charset "UTF-8";

body {
  background: #000;
  color: #fff;
	background-image: url("https://akymhtm.sakura.ne.jp/mt/img/main.png");
	background-size: cover;
	background-position:  center 50px;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

/* メインビジュアル */
#main-visual {
  width: 100%;
  height: 60vh; /* PCでは高め */
  overflow: hidden;
  position: relative;
}

#main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 重要：トリミング表示 */
  object-position: center; /* 中央表示 */
}


/* セクション共通 */
.section {
  padding: 60px 20px;
/*  background-color: #000;  */
  text-align: center;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* 白いボックス全体共通 */
.white-box {
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  padding: 40px 50px;
  max-width: 700px;
  margin: 30px auto;
  text-align: left;
}

/* ========== Profile ========== */
#profile .white-box {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

#profile{
	position: relative;
	top: 600px;
	z-index: 10;
}

.profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
	font-size: 1.2rem;
}

.profile-left img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.profile-socials img {
  width: 60px;
  height: 60px;
}

.profile-right h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.profile-right p {
  margin: 4px 0;
  line-height: 1.5;
}


/* ========== Service ========== */
.service-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.service-box{
    position: relative;
	top: 500px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 25px;
}

.service-item img {
  width: 100px;
  height: 100px;
  border-radius: 30%;
  object-fit: cover;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.service-item p {
  margin: 0;
  line-height: 1.5;
}


/* ========== レスポンシブ対応 ========== */
@media (max-width: 768px) {
  #profile .white-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
	gap: 5px;
  }

  .profile-right {
    text-align: left;
	margin-top: 0;
  }
	
  .profile-right h2 {
    text-align: center;
  }
	
	
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-item img {
    margin-bottom: 10px;
  }
}
