@charset "UTF-8";

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  /* border:solid 1px red; */
}

html {
  font-size: 62.5%;
  letter-spacing: 0.05e,;
}
body {
    margin: 0;
    font-family: "Lexend", sans-serif, sans-serif,"Noto Sans JP", sans-serif;
    background: #000;
    color: #fff;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    background-color: #000;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .logo img {
    width: 54px;
    height: 67px;
  }
  
  .logo-text {
    font-size: 2.9rem;
    color: #fff;
  }
  .logo-text2 {
    font-size: 1.8rem;
    margin-left: 15px;
  }
  
  .header-right {
    display: flex;
    gap: 10px;
  }
  
  .grad-border {
    display: flex;
    max-width: 340px;
    width: 100%;
    border: 1px solid #00D6AF;
    border-image: linear-gradient(to right, #5197ff, #32e29b); 
    border-image-slice: 1;
    padding: 26px 15px;
  }
  .nav_btn1 {
    margin-left: 45px;
  }
  .grad-border a {
    color: #fff;
    font-size: 2.4rem;
  }
  .grad-border a:hover {
    color: #1FA5FE;
  }

  
  .contact-btn {
    position: relative;
    display: block;
    max-width: 276px;
    width: 100%;
    background: linear-gradient(to right, #5197ff, #32e29b);
    color: white;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    padding: 9px 54px 9px;
  }
  .contact-btn a {
    font-size: 2.4rem;
  }
  .contact-btn::after {
    background:#fff;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .contact-btn:hover {
    color: #000;
  }
  .contact-btn:hover::after {
    transform: scale(1, 1);
  }
  .contact_txt {
    position: relative;
    margin-right: 63px;
    font-family: "Lexend", sans-serif;
  }
  .contact_mark {
    position: absolute;
    display: block;
    top: 0;
    right: 50px;
    height: 100%;
    border-left: 1px solid #000;
  }
  .contact_mark::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: -50px;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
  }
  .contact-btn:hover .contact_mark::before {
    background: #000;
  }
  
  /* main_visual */

  .kv {
    position: relative;
    width: 100%;
  }
  .kv img {
    width: 100%;
  }

  .sp-kv { display: none;} 
  .sp-kv img { display: none;}

  .kv_txt {
    width: 100%;
    position: absolute;
    top: 20%;
    left: 0;
    padding-left: 30px;
  }
  .kv_title {
    letter-spacing: 0.1em;
    font-weight: 900;
    font-size: 6.77vw;
    line-height: 0.7;
  }
  .kv_txt p {
    margin-top: 5%;
    font-family: "Noto Sans JP";
    font-size: 2.56vw;
    font-weight: bold ;
    line-height: 0.7;

  }
  .kv__green {
    color: #00D6AF;
  }


  /* Works */
  .works {
    padding: 103px 30px 103px;
  }
  .works_title {
    max-width: 1860px;
    width: 100%;
    margin: 0 auto;
  }
  .works_title h2 {
    font-size: 9.6rem;
    font-weight: bold;
    color: #29a9ff;
  }
  .works_title span {
    font-size: 2.4rem;
    color: #fff;
    border-bottom: solid 0.5px #1FA5FE;
    margin-left: 10px;
  }
  .works_title p {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    margin: 54px 0 54px;
  }
  
  .work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 20px;
    max-width: 1270px;
    margin: 0 auto;
  }
  /* 初期状態：非表示 */
.work-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示時に適用されるクラス */
.work-item.show {
  opacity: 1;
  transform: translateY(0);
}
  .work-item a {
    display: block;
    overflow: hidden;
    background: #000;
  }
  
  .work-item .work_mv {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition-duration: 0.3s;
  }
  .work-item:hover .work_mv {
    opacity: 0.6;
    transition-duration: 0.6s;
    transform: scale(1.1);
  }
  .work-item_title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.9rem;
    margin: 20px 0 20px;
  }
  .work-item_text {
    display: flex;
  }
  .work-item_text img {
    width: 19px;
  }
  .txt_bl {
    font-size: 1.6rem;
    color: #1FA5FE;
    font-family: "Noto Sans JP", sans-serif;
    margin-left: 5px;
    margin-right: 16px;
    padding-top: 3px;
  }

  .txt_gr {
    font-size: 1.6rem;
    color: #47D183;
    margin-left: 9px;
    margin-right: 16px;
    letter-spacing: 0.1em;
    padding-top: 3px;
  }
  .txt_red {
    font-size: 1.6rem;
    color: #E55934;
    margin-left: 9px;
    margin-right: 16px;
    letter-spacing: 0.1em;
    padding-top: 3px;
  }
  .txt_yellow {
    font-size: 1.6rem;
    color: #FFF068;
    margin-left: 9px;
    margin-right: 16px;
    padding-top: 3px;
  }
  .txt_white {
    font-size: 1.6rem;
    color: #fff;
    font-weight: bold;
    margin-left: 9px;
    margin-right: 16px;
    padding-top: 3px;
  }
  .txt_p {
    font-size: 1.6rem;
    color: #6600FF;
    font-weight: bold;
    margin-left: 9px;
    padding-top: 3px;
  }
  .woks_mv img {
    width: 100%;
  }
  .scroll_wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 50px;
  }
  /* スクロールダウンの位置 */
  .scroll {
    max-width: 785px;
    width: 100%;
    display: inline-block;
    margin: 35px 0;
    padding: 0;
    height: auto;
    line-height: 1;
    position: relative;
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    text-align: center;
  }
  .scroll2 {
    max-width: 785px;
    width: 100%;
  }
/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 1px solid #1FA5FE;
  border-left: 1px solid #1FA5FE;
  content: "";
  height: 20px;
  left: -7px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}
.work_wrap {
  padding: 40px 0 80px 0 ;
}
.work_content {
  max-width: 1680px;
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.work_inner {
  display: flex;
  gap: 50px;
}
.hp_scroll {
  max-width: 795px;
  width: 100%;
  height: 960px;
  overflow-y: scroll;
}
.hp_scroll img {
  width: 100%;
  height: auto;
  display: block;
}

.work_col {
  max-width: 795px;
  width: 100%;
}
.work_col p {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 37px;
  border-bottom: solid 0.5px #1FA5FE;
}
tbody {
  width: 100%;
}
th,td {
  padding: 30px 0 30px;
  border-bottom: solid 0.5px #1FA5FE;
}
th {
  font-size: 2.4rem;
  color: #1FA5FE;
  font-weight: bold;
  padding: 30px 0 30px;
  vertical-align: middle;
}
td {
  font-size: 1.6rem;
  padding-left: 30px;
  line-height: 1.5;
}
.button_wrap {
  display: flex;
  margin-left: 150px;
  gap: 20px;
}
.view_btn2 {
  position: relative;
  display: block;
  max-width: 220px;
  width: 100%;
  height: 52px;
  border: 1px solid #00D6AF;
  border-image: linear-gradient(to right, #5197ff, #32e29b); 
  border-image-slice: 1;
  color: white;
  padding: 0px 25px 0px;
  margin-top: 50px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.view_btn2::after {
  background: linear-gradient(to right, #5197ff, #32e29b);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.view_btn2:hover {
  color: #000;
}
.view_btn2:hover::after {
  transform: scale(1, 1);
}
.view_txt2 {
  position: relative;
  font-size: 1.6rem;
  font-family: "Lexend", sans-serif;
}
.work_sp {
  position: relative;
  margin-bottom: 147px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 30px;
}
.figure_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  bottom: 750px;
  width: 80%;
  margin: 0 auto;
}


figure img {
  max-width: 337px;
}
.work_sp img {
  width: 100%;
}
.work_img {
  max-width: 1270px;
  margin: 0 auto;
  position: relative;
}
.work_img img {
  width: 100%;
}
.work_img_col {
  padding: 110px 0 110px;
  display: flex;
  position: relative;
  justify-content: center;
  gap: 20px;
}

.work_img2 {
  margin-top: 286px;
}
.banner {
  width: 45%;
}
.banner img {
  width: 100%;
}
.banner2 {
  width: 45%;
  display: flex;
  align-items: center;
}
.banner2 img {
  width: 100%;
}




  /* About */
  .about {  
    background-color: #252A30;
    padding-top: 163px;
    padding: 30px 30px 81px 30px;
  }
  .about_wrap {
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
  }
  
  .about-content {
    display: flex;
    margin-top: 94px;
  }
  .about_img {
    max-width: 641px;
    object-fit: cover;
  }
  .about-content img {
    width: 100%;
    border-radius: 10px;
    
  }
  
  .bio {
    max-width: 600px;
    margin-left: 5%;
    width: 100%;
  }
  .about_txt {
    font-size: 2.8rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.5;
    font-weight: bold;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
  }
  .en_name {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  .bio h3 {
    font-size: 4rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .sns {
    display: flex;
    gap: 15px;
    margin: 20px 0 20px;
  }
  .sns_btn {
    display: block;
  }
  .sns_btn:hover {
    transform: rotateY(360deg);
    transition: .5s;
  }
  .sns_btn:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(35%) saturate(7499%) hue-rotate(182deg) brightness(104%) contrast(102%);
  }
  .about_txt2 {
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2.0;
  }
  .view_btn {
    position: relative;
    display: block;
    max-width: 220px;
    width: 100%;
    height: 52px;
    border: 1px solid #00D6AF;
    border-image: linear-gradient(to right, #5197ff, #32e29b); 
    border-image-slice: 1;
    color: white;
    padding: 9px 50px 9px;
    margin-top: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
  }
  .view_btn::after {
    background: linear-gradient(to right, #5197ff, #32e29b);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .view_btn:hover {
    color: #000;
  }
  .view_btn:hover::after {
    transform: scale(1, 1);
  }
  .contact_mark2 {
    position: absolute;
    display: block;
    top: 0;
    right: 50px;
    height: 100%;
    border-left: 1px solid #32e29b;
  }
  .contact_mark2::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: -50px;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin: auto;
    background: #fff;
    border-radius: 50%;
  }
  .view_txt {
    position: relative;
    font-size: 1.6rem;
    font-family: "Lexend", sans-serif;
  }
  .about2 {
    padding: 103px 30px 103px;
  }
  .about_pfl {
    padding-top: 150px;
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
  }
  .pfl_wrap {
    display: flex;
    justify-content: space-between;
  }
  .about_wrap2 {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
  }
  .bio2 {
    max-width: 575px;
    width: 100%;
    margin-right: 5%;
  }
  .pf_name {
    font-size: 4.8rem;
    font-family: "Lexend", sans-serif;
    margin-bottom: 32px;
  } 
  .jp_name {
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .pf_sns {
    display: flex;
    margin: 23px 0 23px;
    gap: 15px;
  }
  .pf_sns a,.pf_sns img {
    max-width: 29px;
    width: 100%;
  }
  .pf_txt {
    max-width: 624px;
    line-height: 2.0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
  }
  .pf_photo {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 600px;
    height: 100%;
    background-color: #fff;
    box-shadow: -17px 16px 0 #fff;
    overflow: hidden;
  }
  .pf_photo img {
    display: block;
    width: 100%;
  }
/* strong */

  .strong {
    margin-top: 190px;
    padding: 103px 30px 103px;
  }
  .num_title {
    position: relative;
    margin-bottom: 60px;
    padding: 20px;
    font-size: 2.8rem;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}
.num_title::before {
    position: absolute;
    width:30%;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    content: "";
    height: 1px;
    border-top: solid 1px  #1FA5FE;
}
.num_title::after {
    position: absolute;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    content: "";
    width: 30%;
    height: 1px;
    border-top: solid 1px #1FA5FE;
}
.num_title_1 {
  position: relative;
  font-size: 9.7rem;
  color: #1FA5FE;
  font-family: "Lexend", sans-serif;
  font-weight: bold;
}
.sub_title {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
}
.srg_block {
    padding-top: 150px;
    padding-bottom: 150px;
    max-width: 1270px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 5%;
}
.srg_block:nth-of-type(4) {
  padding-top: 0;
}
.srg_img1 {
  max-width: 400px;
  width: 100%;
}
.srg_img1  img{
  max-width: 400px;
  width: 100%;
}
.srg_img2 {
  max-width: 400px;
  width: 100%;
}
.srg_img2  img{
  max-width: 400px;
  width: 100%;
}
.srg_img3 {
  max-width: 400px;
  width: 100%;
}
.srg_img3 img {
  max-width: 350px;
  width: 100%;
}
.srg_wrap {
  max-width: 700px;
  width: 100%;
}
.srg_num {
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #6F6F6F;
  margin-bottom: 6px;
}
.h3_bl {
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #1FA5FE;
}
.h3_gr {
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #47D27F;
}
.h3_red {
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #FF543E;
}
.srg_sub {
  font-size: 1.8rem;
  padding: 20px 0 20px 0 ;
}
.srg_wrap .srg_txt {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.0;
  letter-spacing: 0.5px;
}


/* Learning */
.learning {
  padding: 0 30px;
}

.lrg_txt {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
.lrg_txt p {
  font-size: 1.6rem;
  line-height: 2.0;
}
.lrg_content {
  max-width: 1860px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 115px;
}
.lrg_title {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding-top: 115px;
  padding-bottom: 90px;
  font-size: 3.3rem;
  color: #1FA5FE;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.lrg_wrap {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 55px 0 55px;
  border-top: solid 1px #1FA5FE;
  border-bottom: solid 0.5px #1FA5FE;
  gap: 30px;
}
.lrg_img {
  max-width: 460px;
  width: 100%;
}
.lrg_img img {
  width: 100%;
  height: auto;
}
.yoga {
  padding-top: 16px;
  max-height: 50%;
}
.lrg_col1 {
  max-width: 753px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.lrg_col {
  max-width: 753px;
  width: 100%;
}
.col_title {
  font-size: 2.4rem;
  padding-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
}
.lrg_col p {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.0;
}

.lrg_tool {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  padding-top: 55px;
}
.tool_title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 5px;
  color: #1FA5FE;
  font-weight: bold;
}
.tool_sub {
  font-size: 1.3rem;
}
.tool_tab {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  margin-top: 48px;
  margin-bottom: 87px;
  gap: 36px;
}
.tool_tab p {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #1F282F;
  padding: 40px 0 40px 0;
  border-radius: 5px;
  max-width: 300px;
  width: 100%;
  text-align: center;
}

/* Pastime */
.pastime {
  margin-top: 100px;
  padding: 0 30px;
}
.pastime_wrap {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding-top: 128px;
  padding-bottom: 230px;
}
.pastime_img {
  max-width: 730px;
  width: 100%;
}
.pastime_img img {
  width: 100%;
  height: auto;
}

  /* .contact */
  .contact {
    padding: 0 30px;
    text-align: center;
    background: linear-gradient(to top, #245172, #1F5B49);
    padding-bottom: 152px;
    border-bottom: solid 1px #fff;
  }
  .contact_wrap {
    max-width: 1250px;
    margin: 0 auto;
  }
  .contact_wrap h2 {
    font-size: 9.6rem;
    font-weight: bold;
    color: #1FA5FE;
    padding: 135px 0 95px;
  }
  .contact_txt2 {
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 27px;
  }
  .contact_txt3 {
    font-size: 2.4rem;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 51px;
  }
  .sp-br {
    display: none;
  }
  .mail_nav {
    display: flex;
    justify-content: center;
    gap: 60px;
  }
  .home-border {
    display: flex;
    max-width: 305px;
    width: 100%;
    border: 1px solid #fffF; 
    padding: 26px 25px 26px;
    font-size: 2.4rem;
    justify-content: space-between;
  }

  .nav_btn:hover {
    color: #1FA5FE;
    transition-duration: .2s
  }
  .email-button {
    position: relative;
    display: block;
    max-width: 305px;
    width: 100%;
    background: linear-gradient(to right, #5197ff, #32e29b);
    color: white;
    padding: 26px 10px 26px 10px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    font-size: 2.0rem;
  }
  .email-button::after {
    background:#fff;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .email-button:hover {
    color: #000;
  }
  .email-button:hover img {
    filter: grayscale(100%) brightness(0);
  }
  .email-button img {
    position: relative;
    padding-right: 2%;
    z-index: 2;
    transition: filter 0.3s ease;
    height: 20px;
  }
  .email-button:hover::after {
    transform: scale(1, 1);
  }
  
  footer {
    display: flex;          /* 高さを中央揃え */
    padding: 0 20px;
    background: #245172;
    justify-content: flex-end
  }
  
  /* テキスト */
  footer p {
    padding: 20px 0;
    font-size: 2rem;
    color: #fff;
    margin-right: 20px;
  }
  .footer_name {
    border-right: 1px solid #fff;
  }
  
  /* ページトップアイコン */
  #page_top {
    margin-left: 20px;
  }
  #page_top a {
  display: flex;
  justify-content: center;
  width: 60px;   /* PCで大きめ */
  height: 60px;
  margin-top: 5px;
}



  /* =======================================================
    Integrated Responsive Add-ons (統合版)
    - ヘッダー：PC=従来ナビ / SP=ハンバーガー（右）
    - Hero：.hero_col が必ずセクション内に収まる
    - Table：SPで「見出し→内容」の上下表示
    - 各セクションの余白/グリッド最適化
======================================================= */

/* 軽量モーション配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* --------------------------------
   Header（共通）
-------------------------------- */
.header { position: relative; z-index: 10; }
.logo img { display:block; }

/* PCナビ微調整 */
@media (max-width:1200px) {
  .header { padding: 24px 20px; }
  .grad-border { padding: 20px 14px; }
  .grad-border a { font-size: 2rem; }
  .nav_btn1 { margin-left: 28px; }
}
@media (max-width:1024px) {
  .logo img { width: 44px; height: 55px; }
  .logo-text { font-size: 1.6rem; }
  .logo-text2 { font-size: 1.6rem; margin-left: 10px; }
}


/* ハンバーガーメニュー本体 */
.hamburger {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid #000;   /* 外枠：黒い丸 */
  border-radius: 50%;
  background: #fff;         /* 白背景 */
  cursor: pointer;
  margin-left: auto;
}

/* 視覚的に隠すテキスト（スクリーンリーダー用） */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 共通：短めで中央寄せの線 */
.hamburger .hamburger-bar,
.hamburger .hamburger-bar::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 16px;                /* ★ 短めに調整 */
  height: 2px;
  background: #000;
  transform: translateX(-50%); /* 中央揃え */
  border-radius: 2px;         /* 線の端を少し丸く */
  transition: transform .25s ease, opacity .2s ease, top .25s ease;
}

/* 上の線 */
.hamburger .hamburger-bar {
  top: 38%;
}

/* 下の線 */
.hamburger .hamburger-bar::before {
  top: 10px;
}

/* アクティブ時（✕マークに変形） */
.hamburger.is-active .hamburger-bar {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger-bar::before {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}


/* ドロワー（右から） */
.drawer {
  position:fixed; inset:0 0 0 auto;
  width:min(82vw, 360px); height:100dvh;
  background:#0e1114;
  box-shadow:-12px 0 30px rgba(0,0,0,.35);
  transform:translateX(100%); transition:transform .3s ease, visibility .3s ease;
  z-index:1001; visibility:hidden;
}
.drawer.is-open { transform:translateX(0); visibility:visible; }
/* ドロワー内の閉じるボタン */
.drawer-close {
  position: absolute;
  top: 0px;
  right: 29px;
  font-size: 7.6rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.2s ease;
}
.drawer-close:hover {
  color: #1FA5FE;
}
.drawer-nav { display:flex; flex-direction:column; gap:50px; padding:24px; margin-top: 100px; }
.drawer-link {
  font-size:1.8rem; color:#fff; padding:12px 10px;
  border-bottom:1px solid #1FA5FE ;
}
.drawer-link:hover { color:#1FA5FE; }
.drawer_mail { margin-top: 30px;}
.drawer-cta {
  display:block; text-align:center; margin-top:8px;
  padding:14px 16px; border-radius:8px; font-weight:700;
  background:linear-gradient(to right, #5197ff, #32e29b); color:#000;
}
.sns-sp {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* オーバーレイ */
.drawer-backdrop {
  position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,.4);
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.drawer-backdrop.is-open { opacity:1; pointer-events:auto; }

/* 背景スクロール固定 */
.no-scroll { overflow:hidden; }

/* 768px以下：ロゴ左／ハンバーガー右、既存ナビは隠す */
@media (max-width:965px) {
  .header { display:flex; align-items:center; justify-content:space-between; gap:0; }
  .grad-border, .contact-btn { display:none; }
  .hamburger { display:block; }
  .email-button { text-align: center;}
}


/* --------------------------------
  メインビジュアル：スマホ調整
-------------------------------- */
@media (max-width:768px) {
.pc-kv { display: none;}
.sp-kv,.sp-kv img {display: block; width: 100%;}
.kv_txt { top: 30%;}
.kv_title { font-size: 10.0vw; display: inline-block;}
.kv_txt p { font-size: 5.0vw; }
.kv_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 960px; /* 中央に収めたい最大幅 */
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← ここがポイント */
  text-align: left;        /* ← テキストの左揃え */
}
}
/* --------------------------------
   Works 一覧・詳細ページ調整
-------------------------------- */
.woks_mv img { display:block; width:100%; height:auto; }

@media (max-width:1200px) {
  .works { padding:80px 20px; }
  .works_title h2 { font-size:clamp(56px, 7vw, 80px); }
  .works_title span { font-size:2rem; }
}
@media (max-width:900px) {
  .works { padding:64px 16px; }
  .works_title h2 { font-size:clamp(40px, 9vw, 64px); }
  .works_title p { font-size:1.8rem; margin:28px 0; }
  .scroll2 {width: 0px;}
  .scroll_wrap {gap: inherit;}
}

/* 2カラム→縦並び */
@media (max-width:900px) {
  .work_inner { flex-direction:column; gap:24px; }
  .button_wrap { gap:16px; flex-wrap:wrap; justify-content: center; display: flex; margin-left: inherit; }
  .view_btn2 { height:48px; margin-top:16px; padding:0 16px; }
  .view_txt { margin-right:36px; }
}
@media (max-width:768px) {
  .work-grid { grid-template-columns: repeat(1, 1fr);}
}

/* スクロール領域高さ */
@media (max-width:1024px) { .hp_scroll { max-height:70vh; } }

/* 下段の2枚画像 → 縦並び */
.work_img_col { gap:20px; }
@media (max-width:900px) {
  .work_img_col { flex-direction:column; align-items:center; padding-top: 0; }
  .work_img1, .work_img2 { width:100%; max-width:860px; margin-top: 0;  }

}

/* --------------------------------
   Table：SPで上下表示（見出し→内容）
-------------------------------- */
@media (max-width:768px) {
  .work_col table { width:100%; border-collapse:separate; border-spacing:0; display:block; }
  .work_col table tbody { display:block; }
  .work_col table tr {
    display:block;
    padding:14px 0;
    border-bottom:1px solid #1FA5FE;
  }
  .work_col table th,
  .work_col table td {
    display:block; width:100%;
    border-bottom:none !important; padding:0;
  }
  .work_col table th {
    font-size:1.4rem; color:#1FA5FE; font-weight:700; margin-bottom:6px;
  }
  .work_col table td {
    font-size:1.6rem; line-height:1.75; color:#fff;
  }
}
@media (max-width:560px) {
  .work_col table tr { padding:12px 0; }
  .work_col table th { font-size:1.3rem; margin-bottom:4px; }
  .work_col table td { font-size:1.5rem; }
}

/* --------------------------------
   About / Strong / Learning（保険）
-------------------------------- */
@media (max-width:900px) {
  .about2,.strong { padding: 50px 30px 50px 30px;}
  .lrg_content { padding-bottom: 0;}
  .lrg_wrap { display: block;}
  .lrg_img { max-width: 100%; }
  .lrg_col1 { max-width: 100%; margin-top: 50px;}
  .tool_tab { justify-content: center; margin-bottom: 0; }
  .pfl_wrap { flex-direction: column-reverse;}
  .pf_photo { max-width: 100%; max-height: 100%;}
  .bio2 { margin-top: 50px; max-width: 100%;}
  .pf_name,.jp_name { text-align: center;}
  .pf_sns { justify-content: center;}
  .pf_txt { margin: 0 auto;}
  .srg_block { flex-direction:column; align-items:center; padding:72px 0; gap:20px; }
  .srg_img1, .srg_img2 { max-width:420px; width:100%; }
  .srg_img3 { max-width: 270px; width: 100%;}
  .srg_wrap { max-width:720px; width:100%; }
  .strong {margin-top: inherit;}
  .pc-br { display: none;}
}
@media (max-width:768px) {
  .about-content { flex-direction:column; gap:24px; margin-top:56px; }
  .about_img, .bio { max-width:100%; margin-left:0; text-align: center; }
  .about_txt { letter-spacing: inherit;}
  .sns { justify-content: center; gap: 30px;}
  .sns_btn { width: 40px;}
  .about_txt2 { text-align: left;}
  .view_btn { justify-content: center; display: inline-block;}
}
@media (max-width:560px) {
  .lrg_title { padding: 60px 0; }
  .pastime_wrap { grid-template-columns: repeat(1, 1fr);}
  .tool_tab p { display: flex; justify-content: center; align-items: center; padding: 20px 0 20px 0;}
  .tool_tab p span { display: block;}
  .sp-br { display: block;}
}

/* --------------------------------
   Contact / Footer
-------------------------------- */
@media (max-width:768px) {
  .contact_wrap h2 { font-size:clamp(44px, 9vw, 64px); padding:72px 0 40px; }
  .mail_nav { flex-direction:column; gap:16px; align-items:stretch; max-width: 350px;  margin: 0 auto;}
  .email-button, .home-border { max-width:100%; }

  /* footer 調整 */
  footer p { font-size: 1.6rem; }
}

@media (max-width:560px) {
  html { font-size:58%; }
  .email-button { font-size:1.8rem; padding:22px 15px; }
  
  .num_title_1 { font-size: 4.8rem;}
  .num_title::before,.num_title::after  {width: 20%;}

  /* footer 調整 */
  footer { font-size:1.8rem; line-height:1.6; }
  footer p { font-size: 1.5rem; }
}

@media (max-width:482px) {
  .sp-br { display: block;}
}
/* --------------------------------
   極小端末の最終調整
-------------------------------- */


  /* footer 調整 */
  footer p { font-size: 1.4rem; }
  #page_top a { width: 36px; }
  #page_top a::before { font-size: 4rem; }