@charset "UTF-8";
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');

html {
  font-size: 100%;
}
body {
  color: #232733;
  font-size: 1rem;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}
a {
    text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: top;
}
li {
  list-style: none;
}
/*------------------------------------

タイトル、コンテンツ幅

------------------------------------*/
.site-title {
  line-height: 1px;
  padding: 10px 0;
}
.site-title a {
  display: block;
}
.sec-title {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 30px;  
  color: #2a3b6b;
}
.sec_wrap {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.sec_bgcol_01 {
  background-color: #fcfcfc;
}
.sec_bgcol_02 {
    background-color: #f9f9fc;
  }
.sec_wrap_in {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
  text-align: center;
}
.sec_wrap_in > p {
	padding: 0 150px;
}
@media screen and (max-width: 768px) {
    .sec-title{
        font-size: 1.5rem; 
    }
    .wrapper {
        margin: 0 auto 50px auto;
    }
    .sec_wrap_in > p {
        padding: 0 30px;
    }
}
@media screen and (max-width: 480px) {
  .sec_wrap_in > p {
    padding: 0 20px;
  }
}
/*------------------------------------

ヘッダー

------------------------------------*/
.header {
    align-items: center;
    background-color: #fff; /* カスタマイズしてください */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem; /* カスタマイズしてください */
    width: 100%;
  }

  @media screen and (max-width: 768px) {
	.header {    
	  padding: 3px 10px 10px 3px;
  }
}
  
  .header_logo {
    color: #000; /* カスタマイズしてください */
    min-width: 80px; /* カスタマイズしてください */
    text-decoration: none;
  }
  
  .header_list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .header_list-item {
    list-style: none;
    text-decoration: none;
  }
  
  .header_list-link {
    color: #000; /* カスタマイズしてください */
    display: block;
    margin-right: 20px; /* カスタマイズしてください */
    text-decoration: none;
    padding: 10px 0px; /* カスタマイズしてください */
  }
  
  .header_list-link:hover {
    filter: opacity(0.6); /* カスタマイズしてください */
  }
  
  .hamburger-menu {
    position: relative;
    z-index: 1;
  }
  
  @media screen and (max-width: 768px) {
    .hamburger-menu_list {
      background-color: #f9f9fc; /* カスタマイズしてください */
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      left: 0;
      padding: 2rem; /* カスタマイズしてください */
      position: absolute;
      transform: translateX(-100%);
      transition: 0.3s; /* カスタマイズしてください */
      top: 100%;
      width: 100%;
    }
  
    #hamburger:checked ~ .hamburger-menu_list {
      transform: translateX(0%);
      transition: 0.3s;
    }
  }
  
  .hamburger-menu_input {
    display: none;
  }
  
  .hamburger-menu_bg {
    background-color: #000; /* カスタマイズしてください */
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4; /* カスタマイズしてください */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  #hamburger:checked ~ .hamburger-menu_bg {
    display: block;
  }
  
  .hamburger-menu_button {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .hamburger-menu_button {
      align-items: center;
      appearance: none;
      background-color: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px; /* カスタマイズしてください */
      height: 32px; /* カスタマイズしてください */
      justify-content: center;
      width: 32px; /* カスタマイズしてください */
    }
  }
  
  .hamburger-menu_button-mark {
    background-color: #000; /* カスタマイズしてください */
    display: block;
    height: 1px; /* カスタマイズしてください */
    transition: 0.3s; /* カスタマイズしてください */
    width: 20px; /* カスタマイズしてください */
  }
  
  @media screen and (max-width: 768px) {
    #hamburger:checked
      ~ .hamburger-menu_button
      .hamburger-menu_button-mark:nth-of-type(1) {
      transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
      transform-origin: 0%; /* カスタマイズしてください */
    }
    #hamburger:checked
      ~ .hamburger-menu_button
      .hamburger-menu_button-mark:nth-of-type(2) {
      opacity: 0;
    }
    #hamburger:checked
      ~ .hamburger-menu_button
      .hamburger-menu_button-mark:nth-of-type(3) {
      transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
      transform-origin: 0%; /* カスタマイズしてください */
    }
  }

/*------------------------------------

パンくずリスト

------------------------------------*/
.breadcrumb {
  margin: 0 50px;
  padding: 0;
  list-style: none;
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
	.breadcrumb {    
    margin: 0 20px;
  }
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #a5a9b4;
	font-size: 0.8em;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #a5a9b4;/*色*/
}

.breadcrumb li a:hover {
  text-decoration: underline;
}
/*------------------------------------

mainvisual

------------------------------------*/
#mainvisual {
  /*margin-bottom: 80px;*/
}
#mainvisual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

@media screen and (max-width: 768px){
    #mainvisual img {
        height: 100%;
    }
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
#mainvisual img.top-pc { display: block !important; }
#mainvisual img.top-sp{ display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
  #mainvisual img.top-sp  {
    height: 100%;
  }
  #mainvisual img.top-pc { display: none !important; }
  #mainvisual img.top-sp { display: block !important; }
}
/*------------------------------------

News

------------------------------------*/
#news dl {
    display: flex;
    flex-wrap: wrap;
    border-top: solid 1px #c8c8c8;
    margin-bottom: 20px;
  }
  #news dt {
    width: 20%;
    border-bottom: solid 1px #c8c8c8;
    padding: 15px;
  }
  #news dd {
    width: 80%;
    border-bottom: solid 1px #c8c8c8;
    padding: 15px;
    text-align:left;
  }
@media screen and (max-width:768px) {
    #news dt {
        width: 30%;
    }
    #news dd {
        width: 70%;
    }
}
.press_re{
  font-size: 0.9rem;
}
.press_re:hover{
  text-decoration: underline;
}
/*------------------------------------

Works

------------------------------------*/
.readmore {
    padding-top: 10px;
    font-size: 0.9rem;
    text-align: center;
}
/*
疑似要素で下線を設定するために、「position: relative;」を設定
*/
.readmore a {
    padding-bottom: 1px;
    color: #232733;
    position: relative;
}
.readmore a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #232733;
    transition: all 200ms ease;
}
.readmore a:hover::after {
    opacity: 0;
    transform: translateY(3px);
  }
#project {
    display: flex;
    justify-content: space-between;
    padding-top: 70px;
    margin-bottom: 60px;
}
#project article {
	  flex: 1;
    background-color: #fff;
    padding: 20px 20px 30px 20px;
    margin: 10px;
    border-radius: 8px;
}
#project article > p{
  padding-bottom: 18px;
}
#project .article-title {
    font-size: 1rem;
    margin: 30px 0 15px 0;
}
@media screen and (max-width:768px) {
    #project {
        display: block;
        width: 100%;
        margin:0;
        padding-top: 50px;
    }
    #project .article {
        width: 100%;
        margin: 0 auto;
    }
}
/*------------------------------------

Students

------------------------------------*/
#lesson {
    position: relative;
    max-width: 1000px;
    height: 500px;
    margin: 70px auto 0;
}
#lesson .students-img {
    position: absolute;
    max-width: 680px;
    padding: 0px 160px 84px 24px;
    left: 0;
}
#lesson .students-dtl {
    position: absolute;
    max-width: 400px;
    height: 350px;
    right: 0px;
    background-color: #fff;
}
#lesson .students-img figcaption {
    background-color: #2a3b6b;
    color: #fff;
    padding: 5px;
}
.students-dtl p {
    line-height: 1.8;
    margin: 35px;
    text-align: left;
}
@media screen and (max-width: 768px) {
    #lesson {
        height: auto;
        position: static;
        margin-top: 70px;
    }
    #lesson .students-img {
        max-width: 100%;
        position: static;
        padding: 0;
    }
    #lesson .students-dtl {
        max-width: 100%;
        padding: 10px 10px;;
        position: static;
    }
}
@media screen and (max-width: 480px) {
  #lesson .students-dtl {
      height: 380px;
  }
}
/*------------------------------------

Stuff

------------------------------------*/
.img-linkbtn {
    margin-top: 50px;
    position: relative;
}
.img-linkbtn a {
  position: absolute;
  top: 80%;
  /* left: 50%; */
  -ms-transform: translate(-50%,-50%);
  /* -webkit-transform: translate(-50%,-50%); */
  transform: translate(-50%,-50%);
  /*以下装飾*/
  /* margin:0; *//*余計な隙間を除く*/
  /* font-size: 1em; *//*文字サイズ*/
  /* border: solid #2a3b6b 2px; */ /*線で囲う*/
  /* background-color: #2a3b6b; */
  /* padding: 10px 15px; *//*文字と線の間の余白*/
  /* color: white; *//*文字色*/
  /* text-decoration: none; *//*下線を表示させない*/
  /* border-radius: 3px; */
  }
/* .img-linkbtn a:hover {
  opacity: 0.7;
} */
.img-linkbtn img {
width: 100%;
}
@media screen and (max-width: 480px) {
  .img-linkbtn a {
    top: 86%;
    padding: 5px 15px;
    font-size: 0.8em;
	}
}
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}
@media only screen and (max-width: 480px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	}

/*------------------------------------

スポンサー

------------------------------------*/
#sponsor{
    background-color: #fff;
}
.sponsor_in{
    max-width: 680px;
    margin: 70px auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .sponsor_in{
      margin: 40px auto 30px;
    }
}
.link_box{
    margin-top: 40px;
    border: solid 1px #2a3b6b;
    border-radius: 10px;/*角の丸み*/
}
.link_box p {
    padding: 15px 0px;
    color: #2a3b6b;    
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .link_box {
        margin-top: 20px;
    }
    .link_box p {
        padding: 10px 0px;
    }
}
/*------------------------------------

SDGs

------------------------------------*/  
.sdgs_in{
    max-width: 1000px;
    margin: 30px auto;
    padding-left: 20px;
    padding-right: 20px;
}
.sdgs_icon {
    display: flex;
    justify-content:center; /* 水平方向 */
    align-items: center; /* 垂直方向 */
    text-align: left;
}
.sdgs_icon li {
    width: 60%;    /* 横幅を割合で指定 */
    height: auto;  /* 高さは自動指定 */
    padding-right: 20px;
}
.sdgs_txt {
    font-size: 14px;
}
@media screen and (max-width: 768px) {
    .sdgs_icon {
        flex-direction: column;
    }
    .sdgs_icon li {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 480px) {
	.sdgs_icon li {
		font-size: 14px;
	}
}
/*------------------------------------

Footer

------------------------------------*/  
#footer {
    color: #fff;
    background-color: #2a3b6b;
    padding: 20px;
   }
#footer a{
    color: #fff;
}
#footer a:hover{
    color: rgba(255, 255, 255, 0.7);
}
#footer .arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #fff;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
#footer .arrow::before,
#footer .arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
#footer .s_link::before{
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	border: 1px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
#footer .s_link::after{
	left: 5px;
	box-sizing: border-box;
	width: 3px;
	height: 3px;
	border: 3px solid transparent;
	border-left: 3px solid #fff;
}
   #footer .footer_in {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   }
   #footer .footer_in h3 {
    padding-bottom: 20px;
   }
   #footer .footer_in p {
    margin: 0;
    padding: 0 0 20px 0;
   }
   #footer .footer_in .footer_box {
    width: 40%;
   }
   #footer .footer_in .footer_info {
    width: 25%;
    font-weight: 700;
   }
   #footer .footer_in .footer_menu {
    width: 25%;
   }
   
   @media only screen and (max-width: 768px) {
   #footer .footer_in {
    width: 100%;
    padding: 0 20px;
   }
   #footer .footer_in .footer_box {
    width: 100%;
    margin-bottom: 30px;
   }
   #footer .footer_in .footer_info {
    width: 100%;
    margin-bottom: 30px;
   }
   #footer .footer_in .footer_menu {
    width: 100%;
    margin-bottom: 30px;
   }
   }

   @media screen and (max-width: 480px) {
    #footer .footer_in {
      padding: 0;
     }
   }
.bottom_in {
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;    
    text-align: center;
    font-size: 12px;
}

/*------------------------------------

Company

------------------------------------*/  
#info {
    max-width: 1000px;
    margin: 30px auto;
    padding: 40px 20px 40px 20px;
}
#info > h2 {
  display: inline-block;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #2a3b6b;
  position: relative;
}
#info > h2::before {
    content: "";
    width: 90px;
    height: 1px;
    background-color: #676767;
    position: absolute;
    top: 50%;
    left: -120px;
}
  @media screen and (max-width: 1000px) {
    #info {
      padding: 0 20px;
    }
    #info > h2 {
      left: 120px;
    }
  }
  @media (max-width: 480px) {
    #info > h2 {
      font-size: 1.6rem;
      margin-bottom: 30px;
      left: 80px;
    }
    #info > h2::before {
      width: 60px;
      left: -80px;
    }
    }
.sec_info_wrap_in > h3 {
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4269b3;
}
.sec_info_wrap {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 25px;  
  border-bottom: 1px solid #f0f0f0;
}
.sec_info_wrap_in {
  width: 650px;
  margin: 0 auto 30px;
}

@media (max-width: 480px) {
  .sec_info_wrap {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .sec_info_wrap_in {
  width: 300px;
}
}

.sec_info_wrap_in > p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #232733;
  line-height: 2rem;
}
.sec_info_wrap_in .txt_bold {
  font-weight: 600;
}
.sec_img {
  margin-top: 40px;
  margin-bottom: 30px;
}
.company-info > dl {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #c9ccd4;
  color: #3f5d96;
  font-size: 16px;
}
.company-info dl > dt {
  padding: 20px 30px;
  width: 200px;
	color: #a5a9b4;
	font-weight: 600;
}
.company-info dl > dd {
  padding: 20px 30px;
  width: 100%;
  color: #232733;
}
@media (max-width: 480px) {
  .company-info > dl {
    flex-direction: column;
  }
  .company-info dl > dt {
    width: 100%;
    padding: 20px 20px;
  }
  .company-info dl > dd {
    width: 100%;
    padding: 0px 20px 20px 20px;
  }
}

/*------------------------------------

Record

------------------------------------*/  
#record {
  max-width: 1000px;
  margin: 30px auto;
  padding: 40px 20px 40px 20px;
}
#record > h2 {
display: inline-block;
font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
font-size: 2rem;
font-weight: 600;
margin-bottom: 50px;
color: #2a3b6b;
position: relative;
}
#record > h2::before {
  content: "";
  width: 90px;
  height: 1px;
  background-color: #676767;
  position: absolute;
  top: 50%;
  left: -120px;
}
@media screen and (max-width: 1000px) {
  #record {
    padding: 0 20px;
  }
  #record > h2 {
    left: 120px;
  }
}
@media (max-width: 480px) {
	#record {
		padding-right: 10px;
	}
  #record > h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    left: 80px;
  }
  #record > h2::before {
    width: 60px;
    left: -80px;
  }
  }

.sec_record_wrap_in > h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4269b3;
}
.sec_record_wrap {
width: 100%;
padding-top: 50px;
padding-bottom: 25px;  
border-bottom: 1px solid #f0f0f0;
}
.sec_record_wrap_in {
width: 650px;
margin: 0 auto 30px;
}

@media (max-width: 480px) {
.sec_record_wrap {
  padding-top: 20px;
  padding-bottom: 0px;
}
.sec_record_wrap_in {
width: 100%;
}
}

.sec_record_wrap_in > p {
font-size: 1.15rem;
margin-bottom: 20px;
color: #232733;
line-height: 2rem;
}

.company-record > dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company-record > dl dt {
  text-align: right;
  width: 8.5em;
  padding: 0.5em 1.0em 0.5em 0;
  position: relative;
}

.company-record > dl dt::after {
  content: '●';
  position: absolute;
  right: -0.55em;
  top: 10px;
  font-size: 14px;
  color: #4269b3;
}

.company-record > dl dd {
  width: calc(100% - 8.5em);
  padding: 0.5em 2.0em 3.0em;
  border-left: 2px solid #ccc;
}
@media (max-width: 480px) {
	.company-record > dl dt {
		width: 6.5em;
	}
	.company-record > dl dd {
		width: calc(100% - 6.5em);
			padding-right: 10px;
		padding-bottom: 2.0em;
	}
}

.company-record > dl dd h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 5px;
}
.record_comment {
	font-size: 14px;
	color: #21355c;
}
.img_record {
  margin: 8px 0 6px;
}

/*------------------------------------

Staff

------------------------------------*/  
#staff {
  max-width: 1000px;
  margin: 30px auto;
  padding: 40px 20px 40px 20px;
}
#staff > h2 {
display: inline-block;
font-size: 2rem;
font-weight: 600;
margin-bottom: 50px;
color: #2a3b6b;
position: relative;
}
#staff > h2::before {
  content: "";
  width: 90px;
  height: 1px;
  background-color: #676767;
  position: absolute;
  top: 50%;
  left: -120px;
}
@media screen and (max-width: 1000px) {
  #staff {
    padding: 0 20px;
  }
  #staff > h2 {
    left: 120px;
  }
}
@media (max-width: 480px) {
  #staff > h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
	left: 80px;
  }
	#staff > h2::before {
	width: 60px;
	left: -80px;
  }
  }

.sec_staff_wrap_in > h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4269b3;
}
.sec_staff_wrap {
width: 100%;
padding-top: 50px;
padding-bottom: 25px;  
border-bottom: 1px solid #f0f0f0;
}
.sec_staff_wrap_in {
width: 650px;
margin: 0 auto 30px;
}

@media (max-width: 480px) {
.sec_staff_wrap {
  padding-top: 20px;
  padding-bottom: 0px;
}
.sec_staff_wrap_in {
width: 300px;
}
}

.sec_staff_wrap_in > p {
margin-bottom: 20px;
color: #232733;
line-height: 2rem;
}

.staff_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.staff_card {
	padding-right: 100px;
	padding-bottom: 50px;
  text-align: center;
}
@media (max-width: 480px) {
  .staff_container {
    justify-content: center;
  }
  .staff_card {
    padding-right: 0;
  }
}
.staff_intro {
	padding-top: 10px;
}
.staff_card_top {
  padding-bottom: 10px;
}
.staff_post {
	font-size: 18px;
	font-weight: 700;
	color: #4269b3;
}
.staff_duties {
	font-size: 14px;
	font-weight: 700;
	color: #757373;
}
.staff_card_bottom {
  padding-bottom: 10px;
}
.staff_name_jp {
	font-size: 20px;
	font-weight: 700;
	color: #2a3b6b;
}
.staff_name_en {
	font-size: 16px;
	color: #2a3b6b;
  margin-bottom: 10px;
}

.btn_more {
  display: inline-block;
  padding: 0.4em 1.6em;
  font-size: 0.8em;
  color: #fff;
  background: #4269b3;
  text-decoration: none;
  user-select: none;
  border-radius: 3px;
  transition: 0.4s ease;
}
.btn_more:hover {
  color: #4269b3;
  background: #fff;	
  border: 1px #4269b3 solid;
}

/*------------------------------------

Personal

------------------------------------*/  
#personal{
  max-width: 900px;
  margin: 30px auto;
  padding: 40px 20px 40px 20px;
}

#personal> h2 {
  text-align: left;
}

.staff_name {
  color: #2a3b6b;
  position: relative;
  display: inline-block;
  padding-bottom:0.5em;
  border-bottom: 1px solid #2a3b6b;
}
.name_en {
	padding-left: 10px;
	font-size: 0.8em;
}
   
.staff_name::before,
.staff_name::after {
  position: absolute;
  top: 100%;
  left:50%;
  transform:translateX(-50%);
  content: '';
  border: 10px solid transparent;
}

.staff_name::before {
  border-top: 10px solid #2a3b6b;
}

.staff_name::after {
  margin-top: -1px;
  border-top: 10px solid white;
}
@media screen and (max-width: 1000px) {
  #personal{
    padding: 0 20px;
  }
}

.sec_personal_wrap {
width: 100%;
padding-top: 50px;
padding-bottom: 25px;  
border-bottom: 1px solid #f0f0f0;
}
.sec_personal_wrap_in {
	width: 850px;
	}

@media (max-width: 480px) {
.sec_personal_wrap {
  padding-top: 20px;
  padding-bottom: 0px;
}
.sec_personal_wrap_in {
	width: 100%;
	padding: 0 10px;
}
}

.sec_personal_wrap_in > p {
font-size: 1.15rem;
margin-bottom: 20px;
color: #232733;
line-height: 2rem;
}

.personal_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.personal_card {
	padding-bottom: 50px;
}
.personal_data {
	width: 500px;
}
.personal_data dl {
	padding: 0 20px;
}
@media (max-width: 480px) {
  .personal_container {
    justify-content: center;
    /* text-align: center; */
  }
  .personal_card {
    margin: 0 auto;
  }
  .personal_data {
	padding-bottom: 20px;
  }
  .personal_data dl {
    padding: 0;
  }
}
.personal_data dt {
	font-weight: 600;
	color: #4269b3;
}
.personal_data .data_last {
	padding-bottom: 10px;
}
.btn_link {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}
.personal_sns {
	display: flex;
}
.personal_sns > li {
	padding-left: 10px; 
}
.personal_sns > li a:hover {
	opacity: 0.7;
}