@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html{
  overflow-x: hidden;
  font-size: 62.5%;
  font-family: 'Poppins','Noto Sans JP', sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #000;

}

main {
  padding-top: 93px;
}

.wrapper {
  max-width: 1060px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}
h1 {
  font-size: 5.6rem;
  text-align: center;
}
h2 {
  font-size: 5.6rem;
  text-align: center;
  color: #002d7a;
}

h3 {
  font-size: 5.6rem;
  color: #002d7a;
}
h4 {
  font-size: 2.6rem;
}

p,dt,dd,li,td,th {
  font-size: 2.4rem;
  line-height: 1.2;
}
th,dt {
  font-weight: bold;
}

.sp,
.min_sp  {
  display: none;
}

@media screen and (min-width: 1601px){
  .wrapper {
    max-width: 1310px;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  main {
    padding-top: 108px;
  }

  h2 {
    font-size: 6.6rem;
    text-align: center;
    color: #002d7a;
  }
  
  h3 {
    font-size: 6.6rem;
    color: #002d7a;
  }
  h4 {
    font-size: 3rem;
  }
  
  p,dt,dd,li,td,th {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 800px){
  main {
    padding-top: 60px;
  }
  h1 {
    font-size: 3.6rem;
    text-align: center;
  }
  h2 {
    font-size: 3.6rem;
    text-align: center;
    color: #002d7a;
  }
  
  h3 {
    font-size: 3.6rem;
    color: #002d7a;
  }
  h4 {
    font-size: 3rem;
  }
  
  p,dt,dd,li,td,th {
    font-size: 2.2rem;
  }

  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/***タイトル***/
.section_title {
  text-align: center;
  padding-top: 90px;
}

.section_title .section_mark {
  margin-bottom: 25px;
}

.section_title h2 {
  margin-bottom: 20px;
  font-weight: bold;
}

.section_title p {
  font-size: 1.8rem;
  font-weight: lighter;
  font-style: italic;
}
@media screen and (min-width: 1601px){
  .section_title {

    padding-top: 120px;
  }
  .section_title p {
    font-size: 2.4rem;
    font-weight: lighter;
    font-style: italic;
  }
}

@media screen and (max-width: 800px){
  .section_title {
    text-align: center;
    padding-top: 70px;
  }
  
  .section_title .section_mark {
    max-width: 80px;
    margin: 0 auto 20px;
  }
  
  .section_title h2 {
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .section_title p {
    font-size: 1.8rem;
    font-weight: lighter;
    font-style: italic;
  }
}

/***共通***/

@media screen and (min-width: 1601px){
  
}

@media screen and (max-width: 800px){
  
}


/***ヘッダー***/
header {
  position: fixed;
  padding: 0px 30px;
  background-color: white;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.headeer_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  max-width: 144px;
}

header nav ul{
  display: flex;
}

header nav ul li {
  border-bottom: 4px solid #fff;
  box-sizing: content-box;
  transition: all 0.3s ease;
  padding: 10px;
}
header nav ul li:not(:last-of-type) {
  margin-right: 10px;
}
header nav ul li a{
  padding: 25px 5px;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;

}
@media screen and (min-width: 1601px){
  header .logo {
    max-width: 180px;
  }
  header nav ul li a{
    padding: 30px 5px;
    font-size: 2rem;
  }

}

@media screen and (max-width: 800px){
  header {
    padding: 0;
  }
  .headeer_wrapper {
    justify-content: center;
    position: relative;
  }
  header .logo {
    max-width: 144px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav{
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    display: none;
  }
  header nav ul {
    display: block;
  }
  header nav ul li {
    padding-left: 10px;
  }
  header nav ul li a{
    font-size: 2rem;
  }

  /***メニューボタン***/
  .menu_btn{
    position: absolute;/*ボタン内側の基点となるためrelativeを指定*/
    background:#002d7a;
    cursor: pointer;
      width: 50px;
      height:50px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  
  /*ボタン内側*/
  .menu_btn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
    background: #fff;
      width: 45%;
    }
  
  .menu_btn span:nth-of-type(1) {
    top:15px; 
  }
  
  .menu_btn span:nth-of-type(2) {
    top:23px;
  }
  
  .menu_btn span:nth-of-type(3) {
    top:31px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .menu_btn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  
  .menu_btn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .menu_btn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
}

/***fv***/

.fv img {
  width: 100%;
}


/***お客様の声***/
.voice_sec {
  background: url(img/voice-bglong.jpg) center top / cover no-repeat;
  padding-bottom: 30px;
}
.voice_sec .section_title {
  margin-bottom: 40px;
}
.voice_list li {
  width: 90%;
}
.voice_list li:not(:last-of-type) {
  margin-bottom: 40px;
}
.voice_list li:nth-of-type(2n + 1) {
  margin-left: auto;
}

.voice_list li img {
  width: 100%;
}

@media screen and (min-width: 1601px){

}

@media screen and (max-width: 800px){
  .voice_list li {
    width: 100%;
  }
  .voice_list li:nth-of-type(2n + 1) {
    margin-left: inherit;
  }
}

/***プロフィール***/


.profile_sec {
  position: relative;
  background: url(img/profiletop.jpg) top center / 100% no-repeat;
}

.profile_sec .section_title {
  margin-bottom: 30px;
}
.profile_sec .section_title * {
  color: white;
}

.profile_middle {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 50px;
}

.profile_middle .center {
  width: 40%;
  margin-bottom: -50px;
}

.profile_middle .left,
.profile_middle .right {
  width: 30%;
}
.profile_middle .left {
  padding-bottom: 110px;
}
.profile_middle .right {
  padding-bottom: 90px;
}
.profile_middle .title {
  font-size: 2rem;
}


.profile_middle .left * {
  font-weight: bold;
}
.profile_middle .right * {
  font-weight: lighter;
}

.profile_middle .left .name {
  font-size: 6.4rem;
  margin: 30px 0 25px;
}

.profile_middle .right .name {
  font-size: 5.4rem;
  text-align: right;
  line-height: 1.2;
  margin: 25px 0 20px;
}
.profile_middle .left .company {
  font-size: 1.8rem;
  text-align: right;
}
.profile_middle .right .company {
  font-size: 1.4rem;
}

.profile_bottom {
  text-align: center;
  padding-bottom: 130px;
}

.profile_bottom p {
  font-weight: bold;
  font-size: 2.4rem;
}


@media screen and (min-width: 1601px){
  .profile_sec .section_title {
    margin-bottom: 130px;
  }
  .profile_middle .title {
    font-size: 2.4rem;
  }
  .profile_middle .left .name {
    font-size: 6.8rem;
  }
  .profile_middle .right .name {
    font-size: 5.8rem;
  }
  .profile_middle .left .company {
    font-size: 2.2rem;
  }
  .profile_middle .right .company {
    font-size: 1.8rem;
  }
  .profile_bottom p {
    font-size: 2.8rem;
  }

}

@media screen and (max-width: 800px){
  
.profile_sec {
  background-image: url(img/profiletopsp.jpg);
}
.profile_middle {
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
.profile_middle .center,
.profile_middle .left {
  width: calc(100%);
  max-width: 400px;
}
.profile_middle .center {
  order: 1;
  margin-bottom: 0px;
}
.profile_middle .left {
  order: 2;
  padding-bottom: 0;
}
.profile_middle .right {
  display: none;
}
.profile_middle .left .name {
  font-size: 5rem;
  margin: 30px 0 25px;
  text-align: center;
}
.profile_bottom {
  text-align: left;
  padding-bottom: 60px;
}
.profile_bottom p {
  font-weight: bold;
  font-size: 2rem;
}
}


/***マイストーリー***/

.mystory_sec {
  background: url(img/mystorybg.jpg) center / cover no-repeat;
  padding-bottom: 160px;
}

.mystory_sec .section_title {
  margin-bottom: 75px;
}
.mystory_list li {
  padding-top: 70px;
  background-position: top right;
  background-repeat: no-repeat;
}
.mystory_list li:not(:last-of-type) {
  margin-bottom: 30px;
}

.mystory_list li:nth-of-type(1) {
  background-image: url(img/BUSINESS.png);
}
.mystory_list li:nth-of-type(2) {
  background-image: url(img/BIOGRAPHY.png);
}
.mystory_list li:nth-of-type(3) {
  background-image: url(img/MESSAGE.png);
}

.mystory_list li > div {
  max-width: 800px;
  margin: 0 auto;
}

.mystory_list h3 {
  margin-bottom: 35px;
  font-weight: bold;
}
.mystory_list p {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (min-width: 1601px){
  .mystory_list li:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .mystory_list li > div {
    max-width: 1000px;
    margin: 0 auto;
  }
  .mystory_list p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 800px){
  .mystory_sec {
    background: url(img/mystorybg.jpg) center / cover no-repeat;
    padding-bottom: 80px;
  }
  .mystory_list li {
    padding-top: 40px;
    background-position: top left 15px;
  }
  .mystory_list li:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .mystory_list li:nth-of-type(1) {
    background-image: url(img/BUSINESSsp.png);
  }
  .mystory_list li:nth-of-type(2) {
    background-image: url(img/BIOGRAPHYsp.png);
  }
  .mystory_list li:nth-of-type(3) {
    background-image: url(img/MESSAGEsp.png);
  }


  .mystory_list h3 {
    margin-bottom: 20px;
    font-weight: bold;
  }
}



/***事業内容***/
.content_sec {
  background: url(img/contentbg.jpg) center / cover no-repeat;
  padding-bottom: 60px;
}
.content_sec .section_title {
  margin-bottom: 80px;
}
.content_list li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1320px;
  margin-left: auto;
  position: relative;
}
.content_list li:not(:last-of-type) {
  margin-bottom: 45px;
}

.content_list .content_ex {
  display: flex;
  align-items: center;
  padding: 40px 0;
  padding-left: 70px;
  background-color: white;
  border-radius: 30px 0 0 30px;
  width: 45%;
  position: relative;
}

/* .content_list .content_ex::before {
  content: '';
  background-color: white;
  width: calc(160%);
  height: 100%;
  right: calc(-160%);
  position: absolute;
  z-index: 0;
} */

.content_list .content_ex * {
  text-align: left;
  text-justify:inter-character;
  word-break: break-all;
}

.content_list .content_ex .number {
  font-size: 1.5rem;
  font-weight: lighter;
  font-style: italic;
  margin-bottom: 25px;
}
.content_list .content_ex h3 {
  font-size: 7.2rem;
  font-weight: lighter;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1;
}
.content_list .content_ex p {
  color: #002d7a;
}
.content_list .content_ex .ex {
  font-size: 3.2rem;
  font-weight: bold;
}
.content_list .content_ex .sub {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}
.content_list .content_img {
  width: 55%;
  position: relative;
  z-index: 1;
}

.content_list .content_img img {
  width: 100%;
}

@media screen and (min-width: 1601px){
  .content_list li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1720px;
    margin-left: auto;
    position: relative;
  }
  .content_list .content_ex {
    padding: 50px 0;
    padding-left: 80px;
  }
  .content_list .content_ex .number {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .content_list .content_ex h3 {
    font-size: 8rem;
    margin-bottom: 25px;
  }
  .content_list .content_ex .ex {
    font-size: 3.6rem;
  }
  .content_list .content_ex .sub {
    margin-top: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 800px){

  .content_list li {
    display: block;
    margin-left: inherit;
    position: relative;
  }
  .content_list li:not(:last-of-type) {
    margin-bottom: 70px;
  }
  .content_list .content_ex {
    display: flex;
    align-items: center;
    padding: 0px 0;
    padding-left: 0px;
    background-color: inherit;
    border-radius: inherit;
    width: 100%;
    width: calc(100% - 30px);
    margin: 0 auto 20px;
}
.content_list .content_ex .number {
  font-size: 2rem;
  margin-bottom: 20px;
}
.content_list .content_ex h3 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.content_list .content_ex .ex {
  font-size: 2.6rem;
}
.content_list .content_ex .sub {
  font-size: 2rem;
}
.content_list .content_img {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

}





/***SNS***/
.sns_sec {
  padding: 130px 0;
}

.sns_list {
  display: flex;
  justify-content: center;

}

.sns_list li {
  width: calc(100% / 3 - 80px / 3);
}

.sns_list li:nth-of-type(2) {
  margin: 0 40px;
}


@media screen and (min-width: 1601px){
  
}

@media screen and (max-width: 800px){
  .sns_sec {
    padding: 70px 0;
  }
  .sns_list {
    flex-direction: column;
    align-items: center;
  
  }
  
  .sns_list li {
    width: 100%;
    max-width: 230px;
  }
  .sns_list li:nth-of-type(2) {
    margin: inherit;
  }
  .sns_list li:not(:last-of-type) {
    margin-bottom: 20px;
  }
}


/***フッター***/
footer {
  background-color: #eeeeee;
  padding: 130px 0;
  width: 100%;
}

footer .footer_wrapper {
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer_link ul {
  display: flex;
}
.footer_link ul li:not(:last-of-type) {
  margin-right: 40px;
}
.footer_link ul li a {
  font-size: 1.4rem;
  font-weight: bold;
}
.footer_copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer_copy p {
  font-size: 1rem;
  font-weight: lighter;
  margin-right: 50px;
  line-height: 1;
}

.footer_logo {
  max-width: 200px;
}


@media screen and (min-width: 1601px){
  footer .footer_wrapper {
    max-width: 1640px;
  }
  .footer_link ul li a {
    font-size: 1.8rem;
  }
  .footer_copy p {
    font-size: 1.4rem;

  }
}

@media screen and (max-width: 800px){
  footer {
    padding: 70px 0 20px;
  }
  footer .footer_wrapper {
    display: block;
  }
  .footer_link {
    margin-bottom: 60px;
  }
  .footer_link ul {
    flex-direction: column;
    align-items: center;
  }
  .footer_link ul li:not(:last-of-type) {
    margin-right: inherit;
    margin-bottom: 20px;
  }
  .footer_link ul li a {
    font-size: 2rem;
  }
  .footer_copy {
    flex-direction: column;
  }
  .footer_copy p {
    order: 2;
    margin-right: inherit;
    font-size: 1.6rem;
  }
  .footer_logo {
    margin-bottom: 40px;
    order: 1;
  }
}


/***特商法***/
.subpage_sec {
  padding: 50px 0;
}

.subpage_sec h1 {
  margin-bottom: 40px;
}
.subpage_sec h1 {
  font-size: 3rem;
}
.subpage_sec p,
.subpage_sec td,
.subpage_sec th,
.subpage_sec li,
.subpage_sec dt,
.subpage_sec dd {
  font-size: 1.6rem;
}
@media screen and (min-width: 1601px){
  .subpage_sec h1 {
    font-size: 4rem;
  }
  .subpage_sec p,
  .subpage_sec td,
  .subpage_sec th,
  .subpage_sec li,
  .subpage_sec dt,
  .subpage_sec dd {
    font-size: 2rem;
  }
}

@media screen and (max-width: 800px){


}



.tokusho_sec th,
.tokusho_sec td {
  padding: 10px;
  border: 2px solid #999999;
  vertical-align: middle;
}

.privacy_sec .wrapper > p {
  margin-bottom: 80px;
}

.tokusho_sec th {
  background-color: #EEEEEE;
}

.privacy_sec dt {
  margin-bottom: 30px;
}

.privacy_sec dd {
  margin-bottom: 80px;
}
.privacy_sec ol {
  padding-left: 40px;
  margin-top: 20px;
}
.privacy_sec ol li {
  list-style: decimal;
  margin-bottom: 30px;
}




