/*---------------------------全ページ共通---------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    font-size: 62.5%
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #262d40;
    letter-spacing: 1.2px
}

p {
    line-height: 1.5;
    margin: 32px 0;
    padding-left: 1em;
    text-indent: 0;
}

a {
    color: #262d40;
    text-decoration: none
}

img {
    max-width: 100%
}

img {
  max-width: 300%
}

h1 {
    font-size: 6rem;
    font-weight: 700;
}

h2 {
    font-size: 3rem
}

h3 {
    position: relative;
    display: inline-block;
    font-size: 2.4rem;
    padding-bottom: 8px;
    margin-bottom: 32px
}

h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    border-bottom: 4px solid #262d40;
    width: 100%
}

h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 4px solid rgba(38, 45, 64, 0.4);
    width: calc(79vw - 256px)
}
@media screen and (max-width: 959px) {
    h3::after {
        width: 100vw
    }
}

h4 {
    margin-bottom: 32px
}

h5 {
    margin-bottom: 10px;
}

h6 {
    margin-top: 20px;
    margin-bottom: 10px;
}

ul{
  margin-bottom: 30px;
  list-style-type: circle;
}

ul,
dl {
    list-style: none
}

dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    margin: 32px 0;
}

dl dt,
dl dd {
    padding: 12px 0;
    line-height: 1.5;
}

dl dt {
    width: 40%;
    font-weight: 700;
}

ol {
    list-style-position: inside
}

.button {
    display: inline-block;
    color: #d2d9e1;
    padding: 8px 16px;
    margin: 32px 0;
    background-color: #262d40
}

.button:hover {
    background-color: rgba(38, 45, 64, 0.4)
}

.wrapper {
    display: flex
}

@media screen and (max-width: 959px) {
    .wrapper {
        display: block
    }
}

.flex{
  display: flex;
  justify-content: flex-start;
}

.flex p{
  width: 40%;
  overflow-wrap: normal;
}

ul.box_record{
  width: 100% !important;
  height: 500px !important;
  overflow-y: scroll !important; 
}

/*---------------------------左側---------------------------*/
.left {
    position: relative;
    width: 46.63vh;
    height: 100vh;
    /*background-color: #d2d9e1;/*メニューの背景色*/
    /*background-image: radial-gradient(#52556e 20%, transparent 20%), radial-gradient(#52556e 20%, transparent 20%);/*ドットの色*/
    background-image: url("../img/left2.jpg");
    /*background-repeat: no-repeat;*/
    /*background-size: 14px 14px;*/
    background-position: 0 0, 7px 7px;
    overflow-y: hidden
}

@media screen and (max-width: 959px) {
    .left {
        width: 100%
    }
}

.g-slide{
  position: relative;
  overflow: hidden;
  margin: 15px 0 20px 0;
  padding-bottom: 50%;
  padding-top: 65px;
}
.g-slide iframe {
width: 80%;
height: 80%;
position: absolute;
top: 0;
left: 0;
}

/*---------------------------/
サイト名
/---------------------------*/
.left header::before {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #262d40;/*サイト名部分の背景色*/
    transform: skewY(-65deg) translateY(-50vh)
}

@media screen and (max-width: 959px) {
    .left header::before {
        position: absolute;
        bottom: 10vh;
        left: 0;
        height: 120vh
    }
}

.left header h1 {
    position: absolute;
    top: 0;
    left: 0;
    color: #d2d9e1;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl
}

/*---------------------------/
メニュー
/---------------------------*/
.left nav {
    width: 100%;
    height: 50vh
}

.left nav ul.globalNav {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    bottom: 64px
}

.left nav ul.globalNav li {
    text-align: right
}

.left nav ul.globalNav li a {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 0 5px #d2d9e1, 0 0 5px #d2d9e1, 0 0 5px #d2d9e1, 0 0 5px #d2d9e1, 0 0 5px #d2d9e1;
    padding: 8px 0;
    margin: 8px 0;
    overflow: hidden
}

.left nav ul.globalNav li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 4px solid #262d40;
    width: 100%;
    transform: translateX(-100%);
    transition: 0.3s
}

.left nav ul.globalNav li a:hover::after {
    transform: none;
    transition: 0.3s
}

/*---------------------------/
クレジット
/---------------------------*/
.left small {
    position: absolute;
    right: 0;
    bottom: 8px;
    font-size: 1.4rem;
    text-shadow: 0 0 5px #d2d9e1, 0 0 5px #d2d9e1, 0 0 5px #d2d9e1, 0 0 5px #d2d9e1, 0 0 5px #d2d9e1;
    text-align: right
}

.left small a {
    transition: 0.3s
}

.left small a:hover {
    color: #d2d9e1;
    background-color: #262d40;
    text-shadow: none;
    transition: 0.3s
}

/*---------------------------右側---------------------------*/
.right {
    width: 79vw;
    height: 100vh;
    padding: 64px;
    padding-top: 0;
    overflow-y: auto
}

@media screen and (max-width: 959px) {
    .right {
        width: 100%;
        padding: 8px
    }
}

.right a {
    transition: 0.3s
}

.right a:hover {
    transition: 0.3s
}

/*---------------------------/
コンテンツ
/---------------------------*/
.right article{
  padding-top: 64px;
}
.right article section {
    margin: 64px;
    padding-bottom: 64px;
    overflow: hidden
}

@media screen and (max-width: 959px) {
    .right article section {
        margin: 8px
    }
}

.right article section h2 {
    margin-bottom: 32px
}

.right article section>h3 {
    margin-top: 32px
}

/*---------------------------/
ＮＥＷＳ
/---------------------------*/
.right article section.news ul li {
    padding: 32px 0;
    border-bottom: 1px solid rgba(38, 45, 64, 0.4)
}

.right article section.news ul li p {
  line-height: 1.5;
  margin: 32px 0;
  padding-left: 3em;
  text-indent: -2em;
  display: block;
}

.right article section.news ul li:first-child {
    padding-top: 0
}

.right article section.news ul li:last-child {
    border-bottom-width: 4px
}

.right article section.news ul li time {
    margin-right: 32px;
    margin-bottom: 10px;
}
@media screen and (max-width: 959px){
  .right article section.news ul li time{
    display: block;
    margin-bottom: 8px;
  }
}

.right article section.news ul.box_record{
  width: 100%;
  height: 500px;
  overflow-y: scroll; 
}

/*---------------------------/
Profile
/---------------------------*/
.right article section.profile ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(38, 45, 64, 0.4)
}

.right article section.profile ul li:first-child {
    padding-top: 0
}

.right article section.profile ul li:last-child {
    border-bottom-width: 4px
}

.right article section.profile ul li time {
    margin-right: 32px;
    margin-bottom: 10px;
}
@media screen and (max-width: 959px){
  .right article section.profile ul li time{
    display: block;
    margin-bottom: 8px;
  }
}

/*---------------------------/
memo
/---------------------------*/
.right article section.memo p {
    margin-top: 0px;
}

.right article section.memo ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(38, 45, 64, 0.4)
}

.right article section.memo ul li:first-child {
    padding-top: 0
}

.right article section.memo ul li:last-child {
    border-bottom-width: 4px
}

.right article section.memo ul li time {
    margin-right: 32px;
    margin-bottom: 10px;
}
@media screen and (max-width: 959px){
  .right article section.memo ul li time{
    display: block;
    margin-bottom: 8px;
  }
}

/*---------------------------/
ＡＢＯＵＴ
/---------------------------*/
.right article.about dl {
    margin-top: 0
}

.right article.about .sns {
    display: flex;
    align-items: flex-end
}

.right article.about .sns li {
    margin-right: 16px
}

.right article.about .sns li i,
.right article.about .sns li img {
    font-size: 3.2rem;
    transition: 0.3s;
}

.right article.about .sns li i:hover,
.right article.about .sns li img:hover {
    transform: scale(1.2);
    transition: 0.3s
}

.right article.about .sns li.academia img {
    width: 30px;
    height: 30px;
}

.right article.about .sns li.researchmap img {
    width: 120px;
    height: 30px;
}

/*---------------------------/
ＬＩＮＫ
/---------------------------*/
.right article section.link ul {
    display: flex;
    flex-wrap: wrap
}

.right article section.link ul li {
    margin-left: 8px;
    margin-bottom: 8px
}

/*---------------------------/
ＴＥＸＴ
/---------------------------*/
.right article section.textList ul {
    margin-top: 16px
}

.right article section.textList ul li {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 959px){
  .right article section.textList ul li {
    display: block;
  }
  .right article section.textList ul li span{
      display: inline-block;
      margin: 0 8px 8px 8px;
  }
}
.right article section.textList ul li .title {
    display: inline-block;
    position: relative;
    padding: 12px 8px;
    margin: 8px;
    margin-right: 64px;
}

.right article section.textList ul li .title::before,
.right article section.textList ul li .title::after {
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #262d40
}

.right article section.textList ul li .title::before {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none
}

.right article section.textList ul li .title::after {
    right: 0;
    bottom: 0;
    border-left: none;
    border-top: none;
}

.right article section.textList ul li a {
    padding: 4px 8px
}

.right article section.textList ul li a:hover {
    background-color: rgba(38, 45, 64, 0.2);
    border: 0
}

/*---------------------------/
ＴＥＸＴ　個別ページ
/---------------------------*/
.right article#textIndivi {
    padding: 64px 64px 0 64px
}

@media screen and (max-width: 959px) {
    .right article#textIndivi {
        padding: 0;
        margin-bottom: 64px
    }
}

.right article#textIndivi section {
    padding: 0;
    margin: 0 0 64px
}

/*---------------------------/
ＧＡＬＬＥＲＹ
/---------------------------*/
.right article section.galleryList ul {
    display: flex;
    flex-wrap: wrap
}

.right article section.galleryList ul li {
    width: calc((100% - 20px)/5);
    height: 80px;
    margin: 0 5px 5px 0;
    overflow: hidden
}

.right article section.galleryList ul li:nth-child(5n) {
    margin-right: 0
}

.right article section.galleryList ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s
}

.right article section.galleryList ul li img:hover {
    transform: scale(1.1);
    transition: 0.3s
}

/*---------------------------/
ＧＡＬＬＥＲＹ個別ページ
/---------------------------*/
.right article#galleryIndivi {
    padding: 64px 64px 0 64px
}

@media screen and (max-width: 959px) {
    .right article#galleryIndivi {
        padding: 0;
        margin-bottom: 64px
    }
}

.right article#galleryIndivi section {
    padding: 0;
    margin: 0 0 64px
}

.right article#galleryIndivi section img {
    margin-bottom: 64px
}

.right article#galleryIndivi section .wrapper {
    justify-content: space-between
}

/*---------------------------/
BLOG
/---------------------------*/

.right #content_main .article {
  height: 250px;
  margin-top: 0px;
  margin-bottom: 10rem;
}

.right #content_main .article figure {
  float: left;
  height: 250px;
  width: 250px;
  margin: 0;
}

.right #content_main .article figure img{
  border-radius: 5px;
  height: auto;
  width: 100%;
}

.right .article-info {
  display: inline-block;
  float: left;
  width: 500px;
  margin-left: 50px;
}

.right .article-info h1 {
  margin-top: 0px;
  margin-bottom: 25px;
  font-size: xx-large;
}

.right #content_main .article-category {
  text-align: left;
  background-color: #d2d9e1;
  border-radius: 15px;
  color: #000000;
  padding: 5px 8px 5px 8px;
}

.right #content_main .article-date {
  text-align: left;
  color: #8B8B8B;
  margin-left: 1rem;
}

.right #content_main p {
  font-size: 2rem;
  margin-top: 4rem;
}

.right #content_sub .widget {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	background-color: #fff;
	border-radius: 5px;
	margin-top: 30px;
	min-height: 300px;
	padding-left: 18px;
	padding-right: 18px;
}

.right #content_main {
  width: 800px;
	min-height: 500px;
	float: left;
}

.right #content_sub {
  float: right;
  padding-bottom: 1em;
}

.right #content_sub .widget-title {
  border-bottom: 1px solid #4DBFA5;
	display: block;
	font-size: 25px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
}

.right #content_sub .widget ul {
  list-style: none;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 0px;
}

.right #content_sub .widget ul li {
  border-bottom: 1px dashed #B5B5B5;
	color: #686868;
	font-size: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.right #content_sub .widget ul li span {
  background-color: #FAFAFA;
	border: 1px solid #686868;
	border-radius: 20px;
	color: #090909;
	padding: 2px 8px 2px 8px;
}

.right #content_sub .widget ul li last-child {
  border-bottom: none;
}

.right #pagination {
  margin-top: 70px;
	padding-left: 0px;
	text-align: center;;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.right #pagination li {
  background-color: #fff;
	border: 1px solid #D5D5D5;
	border-radius: 21px;
	color: #7D7D7D;
	display: inline-block;
	font-size: 25px;
	font-weight: bold;
	height: 42px;
	margin-left: 10px;
  padding-top: 5px;
	text-align: center;;
	width: 42px;
}

.right #entry_article {
  display: inline-block;
}

.right #entry_title {
  border-bottom: none;
  font-size: 3em;
  margin-bottom: 1em;
}

.right #entry_top_image {
  display: inline-block;
  height: 80%;
	width: 80%;
	margin: 30px 0px 0px 0px;
}

.right #entry_title h1 {
  font-size: 1.5em;
}

.right #entry_top_image img {
  display: inline-block;
  height: 100%;
	width: auto;
  vertical-align: middle;
}

.right #entry_content {
  display: inline-block;
	margin-top: 30px;
}

.right #entry_content p {
  margin-top: 0rem;
  font-size: 20px;
	line-height: 1.7;
  word-break: break-all;
}

.right #entry_content h2 {
  border-bottom: 3px solid #4DBFA5;
	padding-bottom: 10px;
}

.right #entry_content h3 {
  border-bottom: 3px dashed #4DBFA5;
	padding-bottom: 10px;
}

.right #wrapper {
  min-width: 1300px;
	text-align: center;
}

.right #content {
  width: 1150px;
	min-height: 500px;
	display: inline-block;
	text-align: left;
}

/*---------------------------/
Contact
/---------------------------*/

.right .contact {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
}

.right .contact-ttl {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.right .contact-table {
  width: 100%;
  margin-bottom: 20px;
}

.right .contact-item {
  padding: 20px;
  border: 1px solid #ccc;
  vertical-align: middle;
}

.right .contact-body {
  padding: 20px;
  border: 1px solid #ccc;
}

.right .contact-item {
  text-align: left; /* テキスト左寄せ */
  width: 30%; /* 横幅30%指定（グレーの背景色部分） */
  background-color: #eee; /* グレーの背景色 */
}

.right .contact-body {
  width: 70%; /* 横幅70%指定（白背景色部分） */
}

.right .form-text {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}

.right .contact-sex + .contact-sex {
  margin-left: 10px;
}

.right .contact-sex-txt {
  margin-left: 5px;
}

.right .form-select {
  width: 180px;
    height: 40px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.right .form-textarea {
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.right .contact-submit {
  width: 250px; /* 横幅指定 */
  background-color: #333; /* 背景色 */
  color: #fff; /* 文字色 */
  font-weight: bold; /* 文字の太さ */
  display: block; /* インライン要素をブロック要素に変更 */
  margin: 0 auto; /* 中央寄せ */
  font-size: 16px; /* 文字の大きさ */
  padding: 15px; /* 内側の余白 */
  border-radius: 100vh; /* 角丸指定 */
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/*---------------------------/
かぎかっこ
/---------------------------*/
.kagi {
    position: relative
}

.kagi::before,
.kagi::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    border: 1px solid #262d40
}

.kagi::before {
    top: 102px;
    border-right: none;
    border-bottom: none
}

.kagi::after {
    right: 0;
    bottom: -64px;
    border-left: none;
    border-top: none;
    margin-bottom: 64px
}

.kagi p {
  margin-left: 2rem;
}

.kagi form {
  margin-left: 2rem;
}

/*---------------------------/
スマホ用メニュー
/---------------------------*/
.toTop {
    position: relative;
    display: none
}

@media screen and (max-width: 959px) {
    .toTop {
        display: flex;
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        background-color: #262d40;
        font-size: 2rem;
        color: #fff;
        padding: 8px;
        justify-content: flex-end;
        align-items: center
    }

    .toTop a {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%
    }

    .toTop i {
        font-size: 4rem;
        margin-left: 8px
    }
}
