/*  PC SP共通スタイル */

 html{
    font-size: 15px;
    scroll-behavior: smooth;
  }

  body{
    font-family: "Noto Serif JP", "Hiragino Kaku Gothic ProN", "Meiryo", "Arial", "sans-serif";
	    animation: loading 1.0s;
  }

  @keyframes loading {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

  /*  ヘッダー　pc */
  @media screen and (min-width: 700px){
  .menu-wrapper{
    display: none;
  }
  #about-sp{
    display: none;
  }
  #profile-top-sp{
    display: none;
  }
  }

  header{
    background-color: #DCE2DA;
  }
  #header-flex{
    display: flex;
    justify-content: space-between;
  }

  #header-flex-left p{
    font-size: 1.4rem;
    margin: 20px 20px 0 20px;
  }

  header ul{
    display: flex;
    justify-content: right;
  }

  header li{
    margin: 25px 50px 0 0;
    font-size: 1.2rem;
  }

  #underline{
    display: inline-block; /* これがないとリンク範囲が全幅になる */
    font-size: 1.2rem; /* 文字サイズ */
    position: relative; /* 相対位置指定 */
    text-decoration: none; /* デフォルトのテキストの下線を消す */
  }

  #underline::after{
    border-bottom: #333 1px solid;
    bottom: -4px; /* 要素の下端からの距離 */
    content: ""; /* 要素に内容を追加 */
    left: 0; /* 要素の左端からの距離 */
    position: absolute; /* 絶対位置指定 */
    transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: left top; /* 変形の原点を左上に指定 */
    transition: transform .3s; /* 変形をアニメーション化 */
    width: 100%; /* 要素の幅 */
  }
  
  #underline:hover::after{
    transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
  }

/*  メイン　pc */
#main-vh{
  height: 100vh;
  position: relative;
  background-color: #DCE2DA;
}

main{
  max-width: 1000px;
  margin: 0 auto;
}

  #main-div{
    margin: 30px auto 100px auto;
    text-align: center;
  }

  #main-div h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-weight: bold;
    font-size: 2.1rem;
    line-height: 40px;
    font-family: 'Noto Serif JP';
  }

  #main-div img{
    height: calc(100vh - 200px);
  }

#works-background{
  background-color: #fafafa;
}

  #works{
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
  }

  #works-title{
    position: relative;
  }

  #works-title img{
    width: 150px;
  }

  #works-title h1{
    position: absolute;
    top: 60px;
    left: 100px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
  }

  #contents-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #contents{
    width: 38%;
    margin: 10px 50px 50px 50px;
  }

  #contents a{
  display: inline-block;
  transition: .3s;
  -webkit-transform: scale(1);
  transform: scale(1);
  }

  #contents a:hover{
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

  #contents-flex img{
    width: 100%;
    box-shadow: 4px 4px 10px -1px #7d7d7d;
    border-radius: 10px;
  }

  #contents p{
    background-color: rgb(193, 218, 236);
    margin: 10px 10px 5px 0;
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 1.1rem;
  }

  #contents span{
    font-size: 1.1rem;
  }

  #p-flex{
    display: flex;
  }

/* about */
#about-backgroundcolor{
  background-color: #E4DECD;
}

#about{
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}

#about-left {
  width: 50%;
}

#about-left img{
  width: 100%;
  margin-top: 50px;
}

#about-right{
    position: relative;
    width: 50%;
  }

  #about-right img{
    width: 150px;
  }

  #about-right h1{
    position: absolute;
    top: 55px;
    left: 100px;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(3, 3, 3);
  }

  #about-right p{
    line-height: 30px;
  }

  #about-profile{
    background-color: #ffffff;
    border-radius: 10% 2%;
    margin: 0 50px;
    padding: 50px 50px 20px 50px;
  }

  #about-profile h2{
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  }

 #about-profile p{
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

  /* More ボタン */
.button {
  width: 150px;
  margin: 0 200px;
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: .3s;
}

.button-text {
  font-size: 18px;
  font-weight: bold;
}

.arrow-extend {
  padding: 20px;
  color: #333;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.arrow-extend::before {
  content: '';
  width: 40px;
  height: 40px;
  background-color: #b5b5b5f8;
  border-radius: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s;
  z-index: -1;
}

.arrow-extend::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.arrow-extend:hover::before {
  width: 80%;
}


/* about-more PC*/
#main-vh-ab header, #about-more-backgroundcolor{
  background-color: #E4DECD;
}

#about-more{
  max-width: 1000px;
  margin: 0 auto 100px auto;
}

#profile-top{
  display: flex;
}

#profile-top-left{
  width: 50%;
  margin-top: 80px;
}

#profile-top-left img{
  width: 100%;
}

#profile-top-right{
    position: relative;
    width: 50%;
  }

  #profile-top-right img{
    width: 150px;
  }

  #profile-top-right h1{
    position: absolute;
    top: 55px;
    left: 100px;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(3, 3, 3);
  }

#profile-top-right h2{
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#profile-top-frame{
  background-color: #ffffff;
  margin: 0 50px 80px 20px;
  padding: 50px;
  border-radius: 10% 2%;
}

#profile-top-frame p{
  line-height: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}


#span-name{
  font-size: 13px;
  color: #939191;
  margin-left: 1px;
  vertical-align: 3px;
}

/* スキル */
#skill-h1{
  padding: 20px 100px 20px 100px;
  font-size: 2.2rem;
}

#skill-h1 span{
  font-size: 1.2rem;
  vertical-align: 5px;
  padding-left: 10px;
  color: #474747;
}

#skill{
  background-color: #ffffff;
  padding: 20px;
  margin: 0px 100px 50px 100px;
}

#skill h2{
  font-size: 1.4rem;
  margin-bottom: 20px;
}

#span-big{
  font-size: 1.8rem;
}

#skill-p{
  margin-bottom: 20px;
  line-height: 30px;
}

#icon{
  display: flex;
}

#icon img{
  width: 70px;
  margin-bottom: 10px;
}

#borderbottom{
  border-bottom: #333 1px solid;
  margin: 30px;
}


/* Biography */
#biography-h1{
  padding: 20px 100px;
  font-size: 2.2rem;
}

#biography-h1 span{
  font-size: 1.2rem;
  vertical-align: 5px;
  padding-left: 10px;
  color: #474747;
}

#biography-flex{
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#biography-left,#biography-right{
width: 100%;
}

#biography-left img{
  position: relative;
  margin-left: 70px;
  width: 100%;
  z-index: 1;
  box-shadow: 3px 3px 15px #474747;
}

#biography-right img{
  position: absolute;
  width: 45%;
  top: 50px;
  left: 350px;
  z-index: 0;
  box-shadow: 1px 1px 10px #474747;
}

#borderbottom-bio{
  border-bottom: #333 1px solid;
  padding-bottom: 100px;
  margin: 30px ;
}

/*  強み　*/
#strength-flex{
  display: flex;
  background-color: #ffffff;
  margin: 0 100px;
  line-height: 30px;
  padding: 0 20px;
}

#strength-flex-last{
  display: flex;
  background-color: #ffffff;
  margin: 0 100px 60px 100px;
  line-height: 30px;
  padding: 0 20px;
}

#strength-flex-left{
  min-width: 80px;
  margin-top: 10px;
}

#strength-flex-left h2{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px;
}

#strength-flex-right{
  padding: 20px;
}

/* バナー　紹介ページ */
#top-background{
  background-color: #DCE2DA;
}

#top{
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
}

#top h1{
  font-size: 2.7rem;
  padding-top: 40px;
}

#top-flex-left img{
max-width: 350px;
margin-top: 50px;
box-shadow: 4px 4px 10px -1px gray;
}

#top-flex-left-a img{
max-width: 350px;
margin: 10px 10px 0 0;
box-shadow: 4px 4px 10px -1px gray;
}


#top table{
  margin: 50px 0 0 0;
  background-color: #fff;
}

#top-flex-right{
  padding-bottom: 50px;
}

#top-flex-right th,#top-flex-right td{
  padding: 20px;
  min-width: 160px;
  line-height: 25px;
}

#top-flex-right td{
  padding-right: 50px;
}

#top-flex-right th{
  padding-left: 50px;
}

/*　戻るボタン　*/


.button_line001{
  padding-bottom: 50px;
}

.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    font-size: 1.2rem;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line001 a:hover {
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}



/* HPサイト 紹介ページ*/
#site{
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
}

#site h1{
  font-size: 2.7rem;
  margin: 0px 0 50px 0;
  padding-top: 50px;
}

#site-flex-left img{
max-width: 600px;
box-shadow: 4px 4px 10px -1px gray;
}

#site table{
  margin: 50px 0;
  border-spacing: 20px;
  background-color: #fff;
}

#top-flex-right img{
  max-width: 100%;
}

#site-flex-right th,#site-flex-right td{
  padding: 20px;
  min-width: 160px;
  line-height: 25px;
}

#site-flex-right td{
  padding-right: 50px;
}

#site-flex-right th{
  padding-left: 50px;
}

#kansei{
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
}


#flex-english {
  text-align: center;
  padding-bottom: 50px;
}

#kansei-english img{
  max-width: px;
}

#flex-biyoueki {
  text-align: center;
  padding-bottom: 50px;
}

#kansei-biyoueki img{
  max-width: 360px;
}


#pc-flex,#sp-flex{
  margin: 20px;
}

#pc-flex img,#sp-flex img{
  width: 100%;
  padding-bottom: 50px;
}


/* footer */
footer{
  background-color: #CBC6BF;
  font-size: 1.2rem;
}

#footer-flex{
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

#footer-flex-left{
  position: relative;
  padding-right: 200px;
}

#footer-flex-left a{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#footer-flex-right li{
  margin: 15px;
}

footer p{
  padding: 0 40px 15px 40px;
  font-size: 0.8rem;
}



/* top 1000px用レイアウト ここから------------------------------------*/
@media screen and (max-width: 1000px){
#main-vh{
  height: 100vh;
  position: relative;
  background-color: #DCE2DA;
}

main{
  max-width: 700px;
  margin: 0 auto;
}

  #main-div{
    position: relative;
    margin: 70px auto 100px auto;
    text-align: center;
  }

  #main-div h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP';
  }

  #main-div img{
    height: auto;
    max-width:80%;
  }

/* works-sp */
#works-background{
  background-color: #fff;
}

#works{
    max-width: 800px;
    margin: 80px auto;
  }

  #works-title img{
    width: 120px;
  }

  #works-title h1{
    position: absolute;
    top: 40px;
    left: 70px;
    font-size: 1.2rem;
  }

  #contents{
    width: 40%;
    margin: 20px;
  }

  #contents p{
    font-size: 1rem;
  }

  #contents span{
    font-size: 1.1rem;
  }

/* about-1000px */
#about{
  max-width: 800px;
  margin: 80px auto 0 auto;
  padding: 50px;
}

#about-left {
  width: 40%;
}

#about-left img{
  margin: 100px auto;
}

#about-right{
    position: relative;
    width: 60%;
  }

  #about-right img{
    width: 120px;
  }

  #about-right h1{
    position: absolute;
    top: 45px;
    left: 70px;
    font-size: 1.2rem;
  }

  #about-right p{
    line-height: 27px;
  }

  #about-profile{
    margin: 0 20px;
    padding: 25px 25px 15px 25px;
  }

.button {
  width: 100px;
  margin: 0 0 0 auto;
}

.arrow-extend {
  padding: 15px 40px;
}

.arrow-extend:hover::before {
  width: 100%;
}

/*  about-more　1000px*/
#about-more{
  max-width: 1000px;
  margin: 0 auto 80px auto;
}

#profile-top-left{
  width: 40%;
  margin-top: 120px;
}

#profile-top-right{
    position: relative;
    width: 60%;
  }

  #profile-top-right img{
    width: 120px;
  }

  #profile-top-right h1{
    position: absolute;
    top: 40px;
    left: 70px;
    font-size: 1.2rem;
  }

#profile-top-frame{
  margin: 0 20px 50px 20px;
  padding: 30px;
  border-radius: 8% 2%;
}

#profile-top-frame p{
  line-height: 27px;
}

#span-name{
  font-size: 13px;
  color: #939191;
  margin-left: 1px;
  vertical-align: 3px;
}


/* スキル 1000px */
#skill-h1{
  padding: 20px 50px 20px 50px;
}

#skill{
  margin: 0px 50px 50px 50px;
}

#skill-p{
  line-height: 27px;
}

#icon img{
  width: 60px;
  margin-bottom: 0px;
}

/* Biography 1000px*/
#biography-h1{
  padding: 20px 50px;
}

#biography-flex{
  max-width: 900px;
}

#biography-left,#biography-right{
width: 100%;
}

#biography-left img{
  position: relative;
  width: 90%;
}

#biography-right img{
  position: absolute;
  width: 40%;
  top: 50px;
  left: 50%;
}

/*  強み　1000px*/


#strength-flex{
  flex-direction: column;
  margin: 0 50px;
  line-height: 27px;
  padding: 0 25px;
}

#strength-flex-last{
  flex-direction: column;
  margin: 0 50px 60px 50px;
  line-height: 27px;
  padding: 0 25px 10px 25px;
}

#strength-flex-left{
  min-width: 0px;
  margin-top: 0px;
}

#strength-flex-left h2{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 20px 20px 20px 20px;
}

#strength-flex-right{
  padding: 0 20px 20px 20px;
}

#strength-p{
  line-height: 27px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

/* バナー紹介ページ 1000px */
#top{
  max-width: 800px;
  margin: 0 50px;
  font-size: 1.1rem;
}

#top h1{
  font-size: 1.7rem;
  padding-top: 40px;
}

#top-flex-left img{
max-width: 300px;
margin-top: 25px;
}

#top table{
  margin: 25px 0 0 0;
  background-color: #ffffff;
}

#top-flex-right img{
  max-width: 100%;
}

#top-flex-right th,#top-flex-right td{
  padding: 15px;
  min-width: 150px;
  line-height: 25px;
}

#top-flex-right td{
  padding-right: 50px;
}

#top-flex-right th{
  padding-left: 50px;
}

/* HPサイト 1000px*/

#site{
  max-width: 800px;
  margin: 0 50px;
  font-size: 1.1rem;
}

#site h1{
  font-size: 2.0rem;
  margin: 40px 0 20px 0;
}

#site-flex-left{
  margin: 0 40px;
}

#site-flex-left img{
width: 100%;
box-shadow: 4px 4px 10px -1px gray;
}

#site table{
  margin: 50px auto;
  border-spacing: 20px;
  background-color: #fff;
}

#site-flex-right th,#site-flex-right td{
  padding: 10px 20px;
  min-width: 150px;
}
}

/* 1000px用レイアウト ここまで------------------------------------*/

/* 700px SP用レイアウト ここから------------------------------------*/
@media screen and (max-width: 700px){

  #header-flex-right ul{
    display: none;
  }

  #about{
    display: none;
  }

 #profile-top{
  display: none;
 }

 #profile-top h2{
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding: 10px 0;
 }


/*ハンバーガーメニュー　ここから*/
.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に右上固定 */
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（右から出す） */
.menu {
  position: fixed;
  top: 0;
  right: 2000px; /* ← 初期位置を右へ */
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  right: 0px; /* ← 開いたときは右0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 20px;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #969696;
}

/*ハンバーガーメニュー　ここまで*/
/*　ここまで*/

#works{
    max-width: 600px;
  }

  #works-title img{
    width: 120px;
  }

  #works-title h1{
    position: absolute;
    top: 40px;
    left: 70px;
  }

  #contents-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #contents{
    width: 60%;
  }

  #p-flex{
    display: flex;
  }


#about-sp{
  max-width: 680px;
  padding-bottom: 50px;
  flex-direction: column;
  }

#about-left-sp {
  width: 100%;
  margin: 0 auto;
}

#about-left-sp img{
  width: 100%;
  margin: 0px auto;
  padding: 0 50px;
}

#about-right-sp{
    position: relative;
    width: 100%;
  }

  #about-right-sp img{
    width: 150px;
  }

  #about-right-sp h1{
    position: absolute;
    top: 55px;
    left: 100px;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(3, 3, 3);
  }

  #about-right-sp p{
    line-height: 30px;
  }

  #about-profile-sp{
    background-color: #ffffff;
    border-radius: 10% 2%;
    margin: 0 50px;
    padding: 30px;
    line-height: 25px;
  }

  #about-profile-sp h2{
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  }

  #about-profile-sp p{
  border-bottom: 1px solid #333;
  padding: 0 10px 20px 10px;
  }


#biography-left img{
  position: relative;
  margin-left: 70px;
  width: 110%;
  z-index: 1;
  box-shadow: 3px 3px 15px #474747;
}

#biography-right img{
  position: absolute;
  width: 45%;
  top: 50px;
  z-index: 0;
  box-shadow: 1px 1px 10px #474747;
}

main{
  max-width: 1000px;
  margin: 0 auto;
}

  #main-div{
    margin-top: 30px;
    text-align: center;
  }

  #main-div h1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Noto Serif JP';
  }

  #main-div img{
    margin-top: 50px;
    object-fit: cover;
    height: 500px;
  }

/*強み　sp*/
#strength-flex{
  flex-direction: column;
  margin: 0 50px;
  line-height: 27px;
  padding: 0 10px;
}

#strength-flex-last{
  flex-direction: column;
  margin: 0 50px 60px 50px;
  line-height: 27px;
  padding: 0 10px 10px 10px;
}

#strength-flex-left{
  min-width: 0px;
  margin-top: 0px;
}

#strength-flex-left h2{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 20px 20px 20px 20px;
}

#strength-flex-right{
  padding: 0 20px 20px 20px;
}

#strength-p{
  line-height: 27px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

/* サイト 紹介ページ(sp)*/
#site{
  max-width: 700px;
  margin: 0 50px;
  font-size: 1.1rem;
}

#site h1{
  font-size: 2.0rem;
  margin: 0px 0 50px 0;
  padding-top: 50px;
}

#site-flex-left img{
width: 100%;
box-shadow: 4px 4px 10px -1px gray;
}

#site table{
  margin: 50px 0;
  border-spacing: 20px;
  background-color: #fff;
}

  #site table  th, #site table td{
    display: block;
    text-align: left;
  }

  #site table th{
    padding: 5px 20px 0 20px;
    font-size: 1.3rem;
  }

  #site table td{
    padding: 0px 20px 20px 20px;
  }

  #kansei{
    flex-direction: column;
  }

  /* バナー　紹介ページ(sp) */

#top{
  max-width: 700px;
  margin: 0 50px;
  font-size: 1.1rem;
}

#top h1{
  font-size: 2.0rem;
}

#top-flex-left img{
margin-top: 30px;
}

#top table{
  margin: 50px 0 0 0;
  background-color: #fff;
}

#top-flex-right{
  padding-bottom: 50px;
}

#top-flex-right th,#top-flex-right td{
  display: block;
  text-align: left;
  min-width: 150px;
  line-height: 30px;
}

#top-flex-right td{
  padding: 0 20px 20px 20px;
}

#top-flex-right th{
  padding: 5px 20px 0 20px;
  font-size: 1.3rem;
}

#top-flex-left-a img{
width: 90%;
margin: 10px 10px 0 0;
box-shadow: 4px 4px 10px -1px gray;
}


/*　戻るボタン　*/
.button_line001{
  padding-bottom: 50px;
}

.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    font-size: 1.2rem;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line001 a:hover {
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}




}



