/*ここから一瀬*/

/*フォントの読み込み*/
@font-face {
  font-family: "ShipporiR"; /*任意のフォントファミリー名でOK*/
  src: url("../static/Fonts/ShipporiMincho-Regular_subset.woff2") format("woff2"); /*fontがあるパスを書いて、formatを指定*/
  font-display: swap; /*ダウンロード状況に応じてフォントの表示を変える
(「swap」はWebフォントが読み込まれるまでフォールバックフォントで表示し、読み込まれた時点で置き換えます。)*/
}
@font-face {
  font-family: "ShipporiB"; 
  src: url("../static/Fonts/ShipporiMincho-Bold_subset.woff2") format("woff2");
  font-display: swap; 
}
@font-face {
  font-family: "NotoR"; 
  src: url("../static/Fonts/NotoSans-Regular.ttf") format("truetype"); 
  font-display: swap; 
}
@font-face {
  font-family: "NotoL"; 
  src: url("../static/Fonts/NotoSans-Light.ttf") format("truetype"); 
  font-display: swap; 
}
@font-face {
  font-family: "NotoB"; 
  src: url("../static/Fonts/NotoSans-Bold.ttf") format("truetype"); 
  font-display: swap; 
}
@font-face {
  font-family: "NotoSB"; 
  src: url("../static/Fonts/NotoSans-SemiBold.ttf") format("truetype"); 
  font-display: swap; 
}
@font-face {
  font-family: "NotoT"; 
  src: url("../static/Fonts/NotoSans-Thin.ttf") format("truetype"); 
  font-display: swap; 
}
@font-face {
  font-family: "NotoM"; 
  src: url("../static/Fonts/NotoSans-Medium.ttf") format("truetype"); 
  font-display: swap; 
}


/*見出しのフォントファミリー*/
h1, h2 {
  font-family: "NotoB";
}
h3{
  font-family: "NotoSB";
}
h4{
  font-family: "NotoM";
}
h5, h6 {
  font-family: "NotoR";
}

/*フォントサイズ*/
h2{
  font-size: 50px;
}
h2{
  margin: 60px 0px 0px 0px;
}
h3{
  margin: 50px 0px 10px 0px;
}
h4{
  margin: 40px 0px 5px 0px;
}
h5{
  margin: 30px 0px 5px 0px;
}
.Catchfraze{
  margin: 5px 0x 5px 0px;
}

/*本文の設定*/
p {
  font-size: 16px;
}

a {
  color: #00796B;
  text-decoration: none;
}
p a {
  color: #00796B !important;
  text-decoration: underline !important;
}

/*mac野郎にはこれが適用されます*/
.mac p{
  font-size: 20.8px;
}
.mac h2{
  font-size: 65px;
}
.mac h3{
  font-size: 2.275rem;
}
.mac h4{
  font-size: 1.95rem;
}
.mac h5{
  font-size: 1.625rem;
}
.mac li{
  font-size: 1.3rem;
}
.mac ul{
  font-size: 1.3rem;
}



/*ハイパーリンクの設定*/
a:link {
  color: #00796B;
  text-decoration: underline;
}
a:visited {
  color: #47453B;
  text-decoration: none;
}
a:hover {
  color:#CDDC39;
  text-decoration: underline;
}
.sidebar a:link {
  color: #45473B;
  text-decoration: none;
}


/*区切り線*/
.underline {
  
	margin: 5px calc(50% - 115vw);
  width: 100vw;
  height: 10px;
  border-width: 4px 0 0 0;
	border-style: solid ;
	border-color: #CDDC39;
  opacity: 1;
}

.f-underline {
  
	margin: 5px calc(50% - 115vw);
  width: 100vw;
  height: 10px;
  border-width: 4px 0 0 0;
	border-style: solid ;
	border-color: #CDDC39;
  opacity: 1;
}
/*一番上の見た目*/
body { 
  padding-top: 56px; 
  /*background-color: #47453B;*/
  background-color: #f2f2f2;
}
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #47453B !important; }
.bg-hero { 
  background-color: #47453B;}
.py-5 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

/* CALLOUT もともと書かれていたやつ、いろんなところに影響します*/
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom:.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

.container{
  margin: 0px 0px 0px 50px;
}


.col1_3 {
  display: flex;
  gap:10px; /* Space between columns */
}

.column-left {
  font-family: "NotoSB";
  background-color: rgb(242, 242, 242, 0.9);
  position: sticky;
  top: 75px;
  flex: 1; /* 1 part */
  /*  overflow-y: scroll; */
  height: 100vh;
  margin: 160px 0px 0px 0px;
  padding: 0px 20px 0px 20px;
}

.column-right {
  flex: 3; /* 3 parts */
  padding: 20px 0px 0px 50px;
  word-break: keep-all;
  font-family: "NotoSB";
}

.col-lg-auto {
  color: #47453B;
  font-family: "NotoR";
}



/*サイドバー*/

.sidebar {
  font-size: 15px !important;
  width: auto;
  position: sticky;
  top: 75px;
  height:70vh;
  margin: 0 30px 0 10px;
  box-sizing: border-box;
  overflow-y: auto;
  text-decoration: none;
}
.mac .sidebar {
  font-size: 19.5px;
}

/*ボタン*/
.btn {
  background-color: rgb(71, 69, 59) !important; 
  color: #f2f2f2 !important;
  margin: 5px 0px 30px 0px;
  width: 150px;
  height: 50px;
}
.btn:focus {
  box-shadow: none !important;
  background-color: rgb(71, 69, 59, 0.7) !important; 
 }
.btn a{
  text-decoration: none !important;
}

/*header*/
header {
	background-image: url(https://static.igem.wiki/teams/5232/wiki/images/expar-header3.svg);
  background-size: 140% 85%; 
  background-position: -80vh bottom;
  background-repeat: no-repeat;
}
.display-4{
  font-family: "ShipporiB";
}



/*menu*/
.navbar{
  position: absolute;
  z-index: 1;
}
.nav-item a{
  font-family: "NotoL";
  text-decoration: none;
  color: #f2f2f2;
}
.navbar-expand-lg .navbar-nav .nav-link {/*menuの文字列*/
  padding-right: 16px;
  padding-left: 14px;
}
.navbar-dark .navbar-nav .nav-link {
  color: #f2f2f2ff;
}
.dropdown-toggle::after {/*toggleは非表示*/
  content: none;
}
.dropdown-menu{
  position: absolute;
  z-index: 1;
}
.dropdown-menu.show{
  color: #f2f2f2;
  background-color: #47453b;
  border-color: rgb(242, 242, 242, 0)
}
.dropdown-item{
  color: #f2f2f2 !important;
  background-color: rgb(242, 242, 242, 0) !important;
}
.dropdown-menu[data-bs-popper] {
  left: -9px;
  margin-top: .125rem;
}
.line-left {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 2px;
  height: 30px; /* 初期状態の小さい高さ */
  background-color: #f2f2f2;
  transition: height 0.5s ease; /* 高さのアニメーション */
  transform-origin: top;
  z-index: 10;
}

.dropdown-toggle.show .line-left {
  background-color: #ff0000; /* メニューが表示されたときの色 */
}

/*仕切り線
.dropdown-toggle.show .line-left{
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #ff0000;
    z-index: 10;
}
*/



/*--------------------------------------
  カード型_01
--------------------------------------*/

.wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
.l-wrapper_01 {
  margin: 1rem auto;
  width: 270px;
  margin: 5px;
  height: 500px;
}

.card_01 {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  color: #212121;
  text-decoration: none;
}
.card_01 {
  background-color: #f2f2f2;
  color: #47453B;
  text-decoration: none;
  height: 350px;
}

.card__header_01 {
  display: flex;
  flex-wrap: wrap;
  width: 270px;
  height: 170px;
}

.card__title_01 {
  padding: 3rem 1.5rem 0;
  font-size: 1.6rem !important;
  order: 1;
  margin-bottom: 0.6rem;
  font-weight: bold;
  position:relative;
  text-decoration: none;
}
/*
.mac .card__title_01{
  font-size: 2.08rem;
}
*/

.card__thumbnail_01 {
  margin: 0px 20px;
  order: 0;
  height: 150px;
}

.card__image_01 {
  width: 100%;
}

.card__body_01 {
  padding: 4.5rem 1.5rem 0 1.5rem;
}

.card__text_01 {
  font-size: .8rem !important;
  text-align:center;
  text-decoration: none;
	padding-bottom: 0;
}
/*
.mac .card__text_01 li{
  font-size: .6rem;
}*/


.card__text2_01 {
  font-size: .8rem !important;
  margin-top: 0;
  margin-bottom: 1rem;
}




.card__text_01 + .card__text_01 {
  margin-top: .5rem;
}

.card__footer_01 {
  border-top: none;
}
.card__footer_01 .btn{
  font-size: 10px !important;
  background-color: #47453b !important; 
  color: #f2f2f2 !important;
  margin: 5px 0px 30px 0px;
  width: 100px;
  height: 33px;
}
/*
.mac .card__footer_01 .btn{
  font-size: 13px;
}
*/

.btn a{
  color: #f2f2f2 ;
}
.card__footer_01 {
  text-align:center;
  text-decoration: none;
	padding-bottom: 0;
}


/*--------------------------------------
  カード型_01_f
--------------------------------------*/

.f_wp-block-columns {
  display: flex;
  margin-bottom: 1.75em;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
.f_l-wrapper_01 {
  margin: 1rem auto;
  width: 290px;
  margin: 5px;
  height: 400px;
}
.f_card_01 {
  margin: 10px 0px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  color: #212121;
  text-decoration: none;
}
.f_card_01 {
  background-color: #f2f2f2;
  color: #47453B;
  text-decoration: none;
  height: 350px;
}

.f_card__header_01 {
  display: flex;
  flex-wrap: wrap;
  width: 270px;
  height: 170px;
}

.f_card__title_01 {
  padding: 3rem 1.5rem 0;
  font-size: 1.6rem !important;
  order: 1;
  margin-bottom: 0.6rem;
  font-weight: bold;
  position:relative;
  text-decoration: none;
}
/*
.mac .f_card__title_01 {
  font-size: 2.08rem;
}
*/

.f_card__thumbnail_01 {
  margin: 0px 20px;
  order: 0;
  height: 150px;
}

.f_card__image_01 {
  width: 100%;
}

.f_card__body_01 {
  padding: 4.5rem 1.5rem 0 1.5rem;
}

.f_card__text_01 {
  font-size: .8rem !important;
  text-align:center;
  text-decoration: none;
	padding-bottom: 0;
}
/*
.mac .f_card__text_01 {
  font-size: 1.04rem;
}
*/

.f_card__text2_01 {
  font-size: .8rem !important;
  margin-top: 0;
  margin-bottom: 1rem;
}
/*
.mac .f_card__text2_01 {
  font-size: 1.04rem;
}
*/

.f_card__text_01 + .card__text_01 {
  margin-top: .5rem;
}

.f_card__footer_01 {
  border-top: none;
}
.f_card__footer_01 .btn{
  font-size: 10px !important;
  background-color: #47453b !important; 
  color: #f2f2f2 !important;
  margin: 5px 0px 30px 0px;
  width: 100px;
  height: 33px;
}
/*
.mac .f_card__footer_01 .btn{
  font-size: 13px;
}
*/


.btn a{
  color: #f2f2f2 ;
}
.f_card__footer_01 {
  text-align:center;
  text-decoration: none;
	padding-bottom: 0;
}


/*アコーディオン*/
.accordion {
  padding: 1rem;
}

.accordion-item {
  margin-bottom: 0.5rem;
  border: none;
}
/*
.engineering .accordion-item{
  width: 60%;
}*/

.accordion-check {
  display: none;
}

.accordion-label {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 0.5rem;
  border-left: 40px solid #47453B;
  border-bottom: 2px solid #47453B;
  background-color: #f2f2f2;
  color: #47453B;
  font-size: 1rem;
  line-height: 1.5;
}
.mac accordion-label {
  font-size: 1.2rem;
}
/*
.mac .accordion-label {
  font-size: 1.95rem;
}
*/

.accordion-label::before {
  position: absolute;
  top: 50%;
  left: -40px;
  height: 100%;
  width: 40px;
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  content: '+';
}
/*
.mac .accordion-label::before {
  font-size: 1.95rem;
}
*/

.accordion-box {
  height: 0;
  overflow: hidden;
  opacity: 1;
  padding: 0rem 0rem 0rem 2rem;
  background-color: #f2f2f2;
  transition: all .5s;
  border-width: 0px 0px 0px 2px;
  border-style: solid;
  border-left-color: #CDDC39;

}

.accordion-check:checked~.accordion-box {
  height: auto;
  opacity: 1;
  padding: 1rem 1rem 1rem 2rem;
  border-width: 0px 0px 0px 2px;
  border-style: solid;
  border-left-color: #CDDC39;
}

.accordion-check:checked+.accordion-label:before {
  content: '-';
}

.accordion-box p {
  line-height: 1.5;
}




/*Dry_page tab*/
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 700px;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  /* width: calc(100%/7); */
  height: 50px;
  border-bottom: 3px solid #CDDC39;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  background-color: #45473B;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #f2f2f2;
  display: block;
  float: left;
  font-family: "NotoL";
  transition: all 0.2s ease;
}
.mac .tab_item {
  font-size: 20.8px;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 0px 0px 0;
  clear: both;
  overflow: visible;
}


/*選択されているタブのコンテンツのみを表示*/
/* #model_overview:checked ~ #model_overview_content,
#model_miRNA_selection:checked ~ #model_miRNA_selection_content,
#model_twj_specificity:checked ~ #model_twj_specificity_content,
#model_sequense_design:checked ~ #model_sequense_design_content,
#model_amplification_comparison:checked ~ #model_amplification_comparison_content,
#model_md_simulation:checked ~ #model_md_simulation_content,
#model_lfa_model:checked ~ #model_lfa_model_content, 
#results_hcr:checked ~ #results_hcr_content,
#results_expar:checked ~ #results_expar_content,
#results_twj_expar:checked ~ #results_twj_expar_content,
#results_thisAmp:checked ~ #results_thisAmp_content,
#tesults_twj_toehold:checked ~ #tesults_twj_toehold_content,
#results_twj_2cycle:checked ~ #results_twj_2cycle_content,
#results_designed_sequences:checked ~ #results_designed_sequences_content, 
#results_multistep_sda:checked ~ #results_multistep_sda_content,
#results_establishment:checked ~ #results_establishment_content,
#results_CRISPR_Cas:checked ~ #results_CRISPR_Cas_content,
#results_connection:checked ~ #results_connection_content,
#results_lateral_flow_assay:checked ~ #results_lateral_flow_assay_content,
#results_conclusion:checked ~ #results_conclusion_content,
#results_future:checked ~ #results_future_content{
  display: block;
} */

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}


.tab_content .column-left{
  top: 35px;
  flex: 1; /* 1 part */
  /*  overflow-y: scroll; */
  height: 100vh;
  margin: 20px 0px 0px 0px;
  padding: 0px 20px 0px 20px;
}

.tab_content .sidebar {
  font-size: 20px;
  width: auto;
  position: sticky;
  top: 0px;
  height:70vh;
  margin: 40px 30px 0 10px;
  box-sizing: border-box;
  overflow-y: auto;
  text-decoration: none;
}
.mac .tab_content .sidebar {
  font-size: 26px;
}

/*headerの設定*/
.h-eye{
  margin: 0 auto;
  position: absolute;
  width: 100%;
  top: -50px;
}

.h-p p{ 
  width: 100%;
  margin: 27% 0px 0px 0px;
  text-align: center;
  position: absolute;
  font-family: "ShipporiB" !important;
  font-size: 40px !important;
}
.mac .h-p p{
  font-size: 52px;
}

.h-p p{
  font-family: "NotoB";
  color: "#45473B";
  font-size: 30px;
}
.mac .h-p p{
  font-size: 39px;
}

.h-p2 h2{
  margin: 0px 0px 0px 0px;
}
.h-p2{
  margin: 800px 0px 0px 0px;
}

.tab_content .column-right .col-lg-auto{
  width: 100% ;
}
.h-eye2{
  margin: 0 0;
  top: -50px;
  width: 100%;
  position: absolute;
}


/*HomeのVideo_eye2*/
.eye2{
  position: fixed;
  top: 0px;
  
  width: 100%;
  height: 100%;
  z-index: 100;
}
.h-button{
  position: fixed;
  top: 60px;
  left: 30px;
  z-index: 101;
}



/*modal_window*/
.modal {
  display: none;
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color: rgba(0, 0, 0, 0.5); 
}

.modal-content {
  background-color: #f2f2f2;
  color: #45473B;
  margin: 5% auto;
  padding: 20px 50px;
  border-radius: 10px;
  width: 80%; 
  max-width: 70%;
  max-height: 80%;
  overflow-y: auto;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.mac .close{
  font-size: 36.4px;
}

.close:hover,
.close:focus {
  color: black;
  cursor: pointer;
}

.modal_button{
  text-align: center;
  font-family: "NotoM";
}
.modal .underline{
	margin: 5px calc(50% - 80vw);
  width: 100vw;
  height: 10px;
  border-width: 4px 0 0 0;
	border-style: solid ;
	border-color: #CDDC39;
  opacity: 1;
}
.h_null{
  background-color: #f2f2f2;
  width: 100%;
  height: 40%;
  position: absolute;
  top: 100%;
}

.notebook h2{
  margin: 30px 0px 15px 0px !important;  
}


/*home body*/
.home_long{
  position: relative;
  width: 100%;
  margin: 20px;
}
.container_home_long{
  width: 100%;
  height: auto;
}

/*homeのflex*/
.home_flexbox {
  display: flex;
  margin: 100px 0px 0px 0px;
}

.home_item01 {
  overflow-x: hidden;
  flex: 5;
}
.home_item02 {
  flex: 5;
  text-align: center;
}
.lottie-anime{
  width: 100%;
}
.home_bakadeka{
  font-family: "ShipporiB" !important;
  font-size: 70px !important;
  color: #00796B !important;
  margin: -10px 0px -10px 0px !important;
}
.mac .home.bakadeka{
  font-size: 91px;
}

.home_hutsuu{
  font-family: "ShipporiB" !important;
  font-size: 30px !important;
  color: #45473B !important;
  margin: -10px 0px -10px 0px !important;
}
.mac .home_hutsuu{
  font-size: 39px;
}

.home_hosoku{
  font-family: "ShipporiB" !important;
  font-size: 15px !important;
  color: #45473B !important;
  margin: -10px 0px -10px 0px !important;
}
.mac .home_hosoku{
  font-size: 19.5px;
}

.home_yohaku{
  margin: 700px 0px 0px 0px;
}


.home_flexbox_2{
  display: flex;
}
.home_info01, .home_info02, .home_info03, .home_info04 {
  overflow-x: hidden;
  flex: 1;
  transition: all 0.2s ease;
}
.home_info01:hover, .home_info02:hover, .home_info03:hover, .home_info04:hover {
  overflow-x: hidden;
  flex: 1;
  opacity: 0.5;
}


/*IHP*/
.leftimg{
  display: flex;
}
.leftimg_item01{
  flex: 3;
}
.leftimg_item02{
  flex: 7;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.IHP .fig{
  text-align: center;
  margin: 20px 0px 0px 0px;
}
.IHP .f_l-wrapper_01 {
  width: 350px !important;
  height: 426px;
}
.IHP .card__header_01{
  width: 358px;
  text-align: center;
}
.IHP .card__thumbnail_01{
  margin: 0 auto;
}
.IHP .f_card_01{
  height: 460px;
}
.IHP .card__body_01{
  font-size: 11px !important;
  height: 220px;
}
/*
.mac .IHP .card__body_01{
  font-size: 14.3px;
}
*/

.IHP .card__body_01 ul{
  padding: 0 0 0 18px;
}
.IHP .card__body_01 p{
  padding: 0 0 0 18px;
}
.IHP .card__thumbnail_01 img{
  height: 150px;
  width: auto;
}
.container:has(.IHP){
  box-sizing: content-box;
}

.mac .IHP .card__body_01 ul{
  font-size: 0.7rem;
}
.mac .IHP .card__body_01 ul li{
  font-size: 0.7rem;
}


/*entrepreneurship*/
.entrepreneurship .fig{
  text-align: center;
  margin: 20px 0px 0px 0px;
}



/*上に戻るボタン*/
html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.2s ease;
}
.pagetop:hover{
  bottom: 60px;
}
.pagetop img{
  width: 20px;
  height: auto;
}
/*
.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}*/

.eng_zu a{
  text-decoration: none !important;
}


.mac .POC .accordion-label{
  font-size: 1.2rem;
}
/*ここまで一瀬*/









/*ここから高橋*/
img {
  width: 75%;
  height: auto;
  margin: 20px 5px;
} /*一時的に画像の処理をしています。*/

.entre_pic {
  width: 45%;
  height: auto;
}

.result2 {
  width: 38%;
  height: auto;
}

.tri_pic {
  width: 30%;
  height:auto;
}

.chu {
  text-align: center;
  margin-top: 20px;
}

.mozi_chu{
  text-align: center;
  margin: 0px;
}

.result3 {
  width: 25%;
  height: auto;
}

.gazokaiten90 {
  transform: rotate( -90deg );
}

.Res_komidashi{
  font-size: 20px;
} /*resultsのhogehoge:の文字サイズをちょっとデカくしている。*/
.mac .Res_komidashi{
  font-size: 26px;
}

/*  table  layout  template  */
.c-table {
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.c-table  table  {
  border-collapse:  collapse;
  border:  solid  1.5px  #000000;
}
.c-table  th,
.c-table  td  {
  padding:  8px  10px;
  border:  solid  0.75px  #000000;
}
.c-table  th  {
  background-color:  #CDDC39;
}/*partsの表を作成。枠線を黒、見出しの背景色をいつもの緑色。*/
/* @media  only  screen  and  (max-width:  600px)  { 
  .c-table  {
    white-space:  nowrap;
    overflow-x:  auto;
    -webkit-overflow-scrolling:  touch;
  }
}*/

.yokosenkesu {
  border-right: none !important;
  border-left: none !important;
  text-align: center;
}
/*ここまで高橋*/

/*ここから石井*/
/* memberページ用 */
.members__section {
  margin-bottom: 8rem;
}

.members__section a {
  text-decoration: none;
}

.members__section hr {
  margin-bottom: 2rem;
}

.members__card-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6rem;
}

.members__card {
  display: flex;
  position: relative;
  gap: 2rem;
  justify-content: start;
  max-width: 540px;
}

.members__card:nth-child(odd) {
  align-self: flex-start;
  flex-direction: row-reverse;
}

.members__card:nth-child(even) {
  align-self: flex-end;
}

.members__card-img-container {
  width: 200px;
  padding-top: 200px; /* 1:1のアスペクト比を維持 */
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.members__card-img {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を親要素に合わせてカバー */
}

.members__card-body {
  flex: 1;
}

.members__card-decoration {
  display: block;
  position: absolute;
  bottom: 1rem;
  height: 2px;
  width: 80%;
  background-color: #67AB52;
  z-index: 0;
}

.members__card:nth-child(even) > .members__card-decoration {
  background-color: #00796B;
  right: 0;
}

@media screen and (width < 768px) {
  .members__card-container {
    gap: 4rem;
  }

  .members__card:nth-child(odd), .members__card:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }

  .members__card-decoration {
    display: none;
  }
}
/* memberページ用ここまで */
/*ここまで石井*/




/*
.tameshi{
  display: flex;
  ↑多分これがサイドバーに悪影響を生み出しています(田中)
}


.sidebar{
  width: auto;
  position: sticky;
  top: 75px;
  height:100vh;
  margin: 0 30px 0 10px;
  box-sizing: border-box;
  overflow-y: scroll;
  text-decoration: none;
  ここからお試しで編集中(田中)
  position: sticky;
}

.nakami{
  flex-grow: 1;
  width: 700px;
  box-sizing: border-box;
  margin: 0 10px;
  ここからお試しで編集中(田中)
  float:left;
}

.pe-zimei{
  font-size: 32px;
}
*/



/*たかはが箇条書きの設定を書いてくれたがliでまとめて指定でいい
.kuropotsu{
  font-size: 28px;
  color: #01796B;
}

.siropotsu{
  font-size: 24px;
}

.kuroshikaku {
  font-size: 20px;
}
*/



/*一瀬がいじってますが若干見にくいかも*/
/* footer */
footer h4 {font-family:"Segoe UI";}
footer a { color: #f2f2f2 !important; font-weight: bold; text-decoration: none; }
footer a:link { color: white !important; text-decoration: none ; }
footer a:visited { color: white !important; text-decoration: none ; }
footer a:hover { color: #CDDC39 !important; text-decoration: underline ; }
footer u:hover { color: #CDDC39 !important; text-decoration: underline ; }

