@charset "UTF-8";

/* 共通部分*/
html{
  font-size: 100%;
}
body {
  background-color: #222034;
  font-family: 'DotGothic16', sans-serif;
  line-height: 1.7;
  color: #ffffff;
}

<style>
a { 
color: #ffffff;
text-decoration: none;}
a:hover { 
color:#ffffff;
text-decoration: none;}
a:visited {
color:#ffffff;
text-decoration: none;
}
</style>

h1 {
  font-family: 'DotGothic16', sans-serif;
}

.main-title a {
  color: #ffffff
}

.main-nav {
  display: flex;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-top: 15px;
  list-style: none;
}
.main-nav li {
  margin-left: 36px;
}
.main-nav a {
  color: #dddddd
}
.main-nav a:hover {
  color: #ffffff
}

.page-header {
  display: flex;
  justify-content: space-between;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}

.big-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

#home .page-title{
  text-transform: none;
}

.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6%;
  margin-bottom: 50px;
}

h2 {
  font-family: 'DotGothic16', sans-serif;
  line-height: normal;
}

.page-title {
  margin-top: 15px;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
  margin-top: 15px;
}

.content a {
  color: #ffffff
}

p {
  line-height: 1.7;
  text-align: justify;
}

.work-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.work-card {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 300px;
  margin: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.work-card h2 {
  margin-top: 0;
}

.work-card h3 {
  color: #333;
}

.work-card p {
  color: #666;
}

.work-card h2 {
  color: gray;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  background: #000000;
  text-align: center;
  padding: 26px 0;
}
footer p {
  color: #ffffff;
  font-size: 0.875rem;
}
