@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  color: #707070;
  font-family: sans-serif;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #707070;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  font-weight: normal;
  margin-bottom: 40px;
}
.section-title .en {
  display: block;
  font-size: 20px;
}
.section-title .ja {
  display: block;
  font-size: 14px;
}

/*-------------------------------------------
Header
-------------------------------------------*/

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 35px;
  padding-bottom: 35px;
}
#header .logo {
  max-width: 190px;
  line-height: 0;
}
#header .logo a {
  display: block;
}

#header .logo img {
  display: block; /* ← これを追加 */
}

#header .navi {
  display: flex;
  align-items: center;
}
#header .navi li {
  font-size: 14px;
  margin-left: 40px;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
  margin-bottom: 80px;
}

.mainvisual {
  text-align: center;
}

/*-------------------------------------------
Introduction
-------------------------------------------*/
.introduction {
  margin-bottom: 80px;
  text-align: center;
}
.introduction .catchphrase {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  overflow-wrap: break-word;
}
.introduction .text {
  font-size: 24px;
  overflow-wrap: break-word;
}

/*-------------------------------------------
Profile1
-------------------------------------------*/
#profile1 {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
#profile1 .img {
  width: 50%;
}
#profile1 .detail {
  width: 50%;
  padding-left: 80px;
  overflow-wrap: break-word;
}
#profile1 .detail p {
  font-size: 14px;
  line-height: 2;
  overflow-wrap: break-word;
}

/*-------------------------------------------
Profile2
-------------------------------------------*/
#profile2 {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
#profile2 .img {
  width: 50%;
}
#profile2 .detail {
  width: 50%;
  padding-right: 80px;
  overflow-wrap: break-word;
}
#profile2 .detail p {
  font-size: 14px;
  line-height: 2;
  overflow-wrap: break-word;
}

/*-------------------------------------------
Profile3
-------------------------------------------*/
#profile3 {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
#profile3 .img {
  width: 50%;
}
#profile3 .detail {
  width: 50%;
  padding-left: 80px;
  overflow-wrap: break-word;
}
#profile3 .detail p {
  font-size: 14px;
  line-height: 2;
  overflow-wrap: break-word;
}

/*-------------------------------------------
Profile4
-------------------------------------------*/
#profile4 {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}
#profile4 .img {
  width: 50%;
}
#profile4 .detail {
  width: 50%;
  padding-right: 80px;
  overflow-wrap: break-word;
}
#profile4 .detail p {
  font-size: 14px;
  line-height: 2;
  overflow-wrap: break-word;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
#footer {
  font-size: 12px;
  padding-bottom: 20px;
  text-align: center;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 25px;
  }
  .section-title .en {
    font-size: 24px;
  }

  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #header .logo {
    max-width: 150px;
  }
  #header .navi {
     display: none;
  }

  /*-------------------------------------------
  Mainvisual
  -------------------------------------------*/
  .mainvisual {
    margin-bottom: 50px;
  }

  /*-------------------------------------------
  Introduction
  -------------------------------------------*/
  .introduction {
    margin-bottom: 50px;
  }
  .introduction .catchphrase {
    font-size: 22px;
    overflow-wrap: break-word;
  }
  .introduction .text {
    font-size: 15px;
    text-align: center;
    overflow-wrap: break-word;
  }

  /*-------------------------------------------
  Profile1 スマホ
  -------------------------------------------*/
  #profile1 {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  #profile1 .img {
    width: 100%;
  }
  #profile1 .detail {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }

   /*-------------------------------------------
  Profile2 スマホ
  -------------------------------------------*/
  #profile2 {
    flex-direction: column;
    margin-bottom: 60px;
  }
  #profile2 .img {
    width: 100%;
  }
  #profile2 .detail {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }

   /*-------------------------------------------
  Profile3 スマホ
  -------------------------------------------*/
  #profile3 {
    flex-direction: column-reverse;
    margin-bottom: 60px;
  }
  #profile3 .img {
    width: 100%;
  }
  #profile3 .detail {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }

   /*-------------------------------------------
  Profile4　スマホ
  -------------------------------------------*/
  #profile4 {
    flex-direction: column;
    margin-bottom: 60px;
  }
  #profile4 .img {
    width: 100%;
  }
  #profile4 .detail {
    width: 100%;
    padding: 0 0px;
    margin-bottom: 20px;
    overflow-wrap: break-word;
  }
}