
@charset "UTF-8";
@import url('https://fonts.adobe.com/fonts/sofia');

:root {
  color-scheme: light;
}


body {
  font-family: 'Zen Kaku Gothic Antique', 'Yu Gothic', sans-serif;
  color: #333;
  padding: 0;
  margin: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}
ul, ol {
  padding-inline-start: 0;
  list-style: none; 
}

[lang="en"] {
  font-family: 'sofia-pro', sans-serif;
}

img {
  max-width: 100%;
}

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

ul {
  list-style-type: none;
}

#about, #works {
  padding: 80px 0;
}

.section-top {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  overflow: hidden;
}


.section-about {
  width: 100%;
  max-width: 1240px;
  margin: 100px auto 80px;
}


@media screen and (max-width: 768px) {
  .section-about, .section-works {
  padding: 0 40px;
  max-width: 550px;
  }

}

.contents_title{
  display: flex;
  align-items: baseline;
  gap: 30px;
}

.title-en {
  font-family: 'sofia-pro', sans-serif;
  font-size: 4.16vw;
  font-weight: 900s;
  color:#005698;
  margin: 0;
}
.title-jp {
  font-family: 'Zen Kaku Gothic Antique', 'ヒラギノ角ゴ ProN W3', 'Yu Gothic', sans-serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: #005698;
}

p.large {
  font-size: clamp(17px, 1.5vw, 25px);
  font-weight: 400;
  margin: 30px 0;
}

p.small {
  font-size: clamp(13px, 1vw, 17px) ;
  line-height: 2;
  letter-spacing: .08em;
  margin: 0;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents_title {
    display: block;
  }
  .title-en {
    font-size: 30px;
  }
  .title-jp {
    font-size: 13px;
  }
  p.large {
    font-size: 20px;
  }
  p.small {
    font-size: 14px;
  }
}

#header {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100px;
  padding: 0 4%;
  position: fixed;
  top: 0;
  z-index: 1;
}
.header_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  margin-left: auto;
  margin-right: auto;
}

.header-logo {
  display: flex;
  align-items: center;
  width: 500px;

}

.header-logo a {
  display: flex;
}

.gnave-pc-wrap {
  white-space: nowrap;
}

ul.gnave-pc li {
  display: inline;
  margin-left: 100px;
}

ul.gnave-pc li a {
  font-family: 'sofia-pro', sans-serif;
  font-size: clamp(10px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: .15em;
}

ul.gnave-pc li a:hover {
  opacity: 0.7;
}

.hamburger, .gnave-sp-wrap {
  display: none;
}


@media screen and (max-width: 768px) {
  #header {
    display: block;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 60px;
  }
  .header_container {
    padding: 0%;
  }

  .header-logo {
    width: 250px;
    padding: 0;
  }

  nav.gnave-pc-wrap {
    display: none;
  }

  
  .hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 3px;
    background: #005698;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(10%);
    transition: .5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }

  .gnave-sp-wrap {
    display: none;
    background-color: #F2FBFE;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  .gnave-sp-wrap.active {
  display: block;
}
  .gnave-sp {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    }
  .gnave-sp_list {
    border-bottom: solid 1px #AECDE1;
  }
  .gnave-sp_list:first-child {
    border-top: solid 1px #AECDE1;
  }
  .gnave-sp_link {
    color: #005698;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: .5s;
  }
  .gnave-sp_link:hover {
    background: #978067;
    color: #fff;
  }
}


.section-top_main-image {
  width: 100vw;
  margin: 100px 0 0 0;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .section-top_main-image {
    width: 100%;
    margin: 60px 0 0 0;
  }
}

.about-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7vw;
  margin: 0 auto;
}

.profile {
  max-width: 40vw;
  font-size: clamp(2px, 1vw, 17px);
}
.profile .large{
  font-size: clamp(14px, 1vw, 20px);
}

.profile a {
  font-family: 'sofia-pro', sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .13em;
  position: relative;
}

.profile a::after{
  position: absolute;
  content: "";
  background-color: #333;
  width: 117px;
  height: 1px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-40%);
}

.face-img {
  max-width: 35vw;
  padding-top: 20px;
}
.face-img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #about {
    padding: 0 40px;
    justify-content: center;
  }
  .about-content {
    display: block;
  }
  .profile {
    max-width: 100%;
  }
  .profile p {
    padding: 30px 0 0 0;
  }
  
  .profile a {
    right: -70%;
    font-family: 'sofia-pro', sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .13em;
    position: relative;
  }


  .profile a:after {
    position: absolute;
    content: "";
    background-color: #333;
    width: 117px;
    height: 1px;
    bottom: -10px;
    left: 20%;
    transform: translateX(-40%);
    }
  .face-img {
    max-width: 100%;
    margin-top: 30px;
  }
}

#works {
  margin: 0 7vw;
}
.section-works ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
  width: 100%;
  margin: 0 auto;
}

.section-works ul li {
  width: calc(50% - 24px);
  padding: 20px 1vw 40px 1vw;
  text-align: left;
}

.work__image-area {
  width: 100%;
  margin: 0 auto 16px;
}

.individual-creation {
  padding: .5vw 1vw;
  font-size: clamp(12px, 1vw, 16px);
  background-color: #005698;
  border-radius: 50px;
  display: inline;
  color: #fff;
}
.creant-work {
  padding: .5vw 1vw;
  font-size: clamp(12px, 1vw, 16px);
  background-color: #978067;
  border-radius: 50px;
  display: inline;
  color: #fff;
}

.work-kinds {
  display: inline-block;
  margin-left: 16px;
  opacity: 0.5;
}

.section-works a p {
  font-size: clamp(12px, 1vw, 16px);
  margin: 24px 0 0;

}

@media screen and (max-width: 768px) {
  #works {
    padding: 0 40px;
    margin: 0 auto 30px;
  }
  .section-works ul {
    display: block;
  }
  .section-works ul li {
    width: 100%;
    padding: 30px 0 10px;
  }
  .individual-creation {
  
  background-color: #005698;
  border-radius: 50px;
  display: inline;
  color: #fff;
  }
  .creant-work {
    
    background-color: #978067;
    border-radius: 50px;
    display: inline;
    color: #fff;
  }
  .work-kinds {
    font-size: 13px;
    margin: 0 0 0 8px;
  }
  .section-works a p {
    margin: 4vw 0 0 0;
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
  }
}

#contact {
  width: 100%;
  padding: 60px;
  background-color: #F2FBFE;
}

#contact .contents_title {
  display: block;
  text-align: center;
  margin: 0 0 70px 0;
}


.contact_btn_message  {
  text-align: center;
  font-size: 1.7vw;
  font-weight: 600;
  color: #005698;
}

a:hover {
  opacity: 0.5;
}

.address-area address {
  font-family: 'sofia-pro', sans-serif;
  font-style: normal;
  max-width: 59vw;
  font-size: 2.2vw;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 5vw;
  color: #005698;
  background-color: #fff;
  border-radius: 100px;
  margin: 1.38vw auto 12.5vw;
  border: 2px solid #005698;
  box-shadow: 8.15px 8.15px #AECDE1;
}

@media screen and (max-width: 768px) {
  #contact {
    padding: 20px 40px 60px;
  }
  #contact .contents_title {
    margin: 0 0 30px 0;
  }
  .contact_btn_message {
    display: block;
    font-size: 16px;
    font-weight: 500;
  }

  .address-area address {
    font-family: 'sofia-pro', sans-serif;
    font-style: normal;
    max-width: 861px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 3rem;
    color: #005698;
    background-color: #fff;
    border-radius: 100px;
    margin: 20px auto 40px;
    border: 2px solid #005698;
    box-shadow: 8.15px 8.15px #AECDE1;
  }

}

#footer {
  background-color: #fff;
  width: 100%;
  height: 100px;
}

@media screen and (max-width: 768px) {
  #footer {
    height: 40px;
  }
}
.Copyright {
  font-size: 13px;
  font-family: 'sofia-pro', sans-serif;
  color: #005698;
  text-align: center;
  margin: 20px auto;
}



