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

: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;
}


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


#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;
    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;
  }
}

  
#profile {
  width: 100%;
  max-width: 80vw;
  margin: 15vw auto;
  justify-content: center;
}

.section-profile_wrapper{
  display: flex;
  flex-direction: row-reverse;
  gap: 5vw;
  justify-content: center;
}
.profile_image img {
  max-width: 400px;
  width: clamp(150px, 40vw, 400px);
}

h2.title-jp {
  font-size: clamp(30px, 2.6vw, 46px);
  margin: 1.1vw auto 2vw;
  font-family: 'Source Han Sans', 'Zen Kaku Gothic Antique', sans-serif ;
  font-weight: 900;
  letter-spacing: .16em;
  color: #005698;
}

.name-en {
  font-family: 'sofia-pro', sans-serif;
  font-size: clamp(13px, 1vw, 20px);
  font-weight: 600;
  letter-spacing: .08em;
  position: relative;
}
.name-jp {
  font-size: clamp(10px, 1vw, 16px);
  font-weight: 500;
}

.designer-name {
  display: inline-block;
  padding-right: 10vw;
  padding-bottom: 5px;
  border-bottom: #333 1px solid;
}

.section-profile_text-area p {
  max-width: 500px;
  font-size: 13px;
  letter-spacing: .24em;
  line-height: 2em;
  margin-top: 20px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #profile {
    width: 100%;
  }
  .profile_image img {
    max-width: 100%;
    width: 100vw;
  }
  .section-profile_wrapper {
    display: block;
  }
  h2.title-jp {
    font-size: clamp(15px, 5vw, 30px);
    margin: 10vw 0 1vw 0;
  }
  .section-profile_text-area p {
    max-width: 100%;
    width: 80vw;
    letter-spacing: .05em;
    text-align: justify;
  }
}

#strength {
  margin: 0 10vw 12vw;
  background-color: #E5E9ED;
  padding: 3vw 0 6vw 0;
  border-radius: 100px;
}

.strength_contents_title {
  text-align: center;
  color: #005698;
  margin-bottom: 1.5vw;
}
h3.title-en {
  font-size: clamp(24px, 3vw, 42px);
}

.strength_set {
  display: flex;
  width: 62vw;
  gap: 5vw;
  text-align: center;
  align-items: baseline;
  margin: 0 auto;
}
.strength_set img {
  margin: 0 auto 20px;
}

p.strength_text {
  font-size: clamp(9px, 1vw, 16px);
}

@media screen and (max-width: 768px) {
  #strength{
    border-radius: 10vw;
    margin: 0 auto 10vw;
    max-width: 80vw;
  }
  
  h3.title-en {
    font-size: clamp(20px, 6vw, 30px);
  }
  .title-jp {
    font-size: clamp(13px, 3vw, 16px);

  }
  .strength_set {
    display: block;
    text-align: center;
  }
  p.strength_text {
    margin-bottom: 10vw;
    font-size: 13px;
  }
}


#my-motivation {
  width: 100%;
  padding: 4vw;
  margin-bottom: 4vw;
}

.section-motivation {
  font-weight: 500;
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
  align-items: center;
  padding: 1vw 1vw;
  line-height: 2.5em;
  color: #005698;
  background-image: linear-gradient(rgba(235, 243, 255) 1px, transparent 1px), linear-gradient(to right, rgba(235, 243, 255) 1px, transparent 1px);
  background-size: 3vw 3vw;
  background-color: #fff;
  background-position: -14px 20px;

}

.motivation_txt-1 {
  padding: 0.7vw; 
}

@media screen and (max-width: 768px) {
  h3.title-en {
    font-size: clamp(20px, 5vw, 30px);
    padding: 4vw;
  }
  .motivation_txt-1 {
    padding: 2vw 8vw 2vw;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 2.2em;
    }
  .motivation_txt-2 {
    padding: 2vw 8vw 0;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 2.2em;
  }
}

#data {
  width: 100%;
  max-width: 1280px;
  margin: 200px auto 200px;
}

h4.title-en {
  font-size: clamp(12px, 2vw, 30px);
  display: block;
  text-align: center;
  margin-bottom: 40px
}

.data-contents_wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 5vw;
  margin: 0 7vw 0;
}
.data-contents_title {
  font-size: clamp(14px, 1vw, 20px);
  display: inline-block;
  padding-right: 10vw;
  padding-bottom: 0.5vw;
  border-bottom: #333 1px solid;
}

.data-contents_txt {
  font-size: clamp(10px, 1vw, 16px);
  padding: 10px 0 44px 0;
  width: 29vw;
}

@media screen and (max-width: 768px) {
  #data{
    margin: 0;
    padding: 0;
    width: 70vw;
    margin: 5vw auto;
    text-align: center;
    
  }
  h4.title-en {
    font-size: clamp(18px, 3vw, 24px);
  }
  .data-contents_wrapper {
    margin: 0;
    display: block;
    width: 100%;
  }
  .data-contents_title {
    font-size: 17px;
    padding: 0 0 0.5vw;
    border-bottom: #333 3px solid;
    border-radius: 0%;
  }
  .data-contents_txt {
    font-size: 14px;
    width: 100%
  }


}

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

.Copyright {
  font-size: 13px;
  font-family: 'sofia-pro', sans-serif;
  color: #005698;
  text-align: center;
  margin: 20px auto;
}
