@charset "UTF-8";
/************************************************
# ページ固有のスタイル
*************************************************/
/*------------------------------
  TOP 
----------------------------------*/
/* front-page.php */
/*---- メインビジュアル・スライダー -----*/
.home .p-top-mv {
  text-align: center;
  margin-bottom: 2.5rem;
  background-size: auto auto;
  background-color: rgb(255, 234, 180);
  background-image: repeating-linear-gradient(120deg, transparent, transparent 6px, rgba(241, 176, 82, 0.1) 6px, rgba(241, 176, 82, 0.1) 8px);
}
.home .p-top-mv img {
  max-width: 1920px;
  border: solid 6px #FFEAB4;
}
@media screen and (max-width: 767px) {
  .home .p-top-mv img {
    border: none;
  }
}
.home .swiper-container {
  margin-bottom: 6rem;
}
.home .swiper {
  position: relative;
  max-width: 1140px;
  margin-right: 0;
}
@media screen and (max-width: 1400px) {
  .home .swiper {
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .home .swiper {
    margin: auto;
  }
}
.home .swiper-button-wrapper {
  max-width: 1140px;
  margin: auto;
  text-align: right;
  width: 90%;
  margin-top: 2rem;
}
@media screen and (max-width: 480px) {
  .home .swiper-button-wrapper {
    margin-top: 20px;
  }
}

/*---- カレンダーストライプ -----*/
.event-wrap {
  position: relative;
}
.event-wrap .event-stripe {
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: -1;
  height: 280px;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(120deg, transparent, transparent 6px, rgb(255, 234, 180) 6px, rgb(255, 234, 180) 8px);
}
@media screen and (max-width: 820px) {
  .event-wrap .event-stripe {
/*     left: -40px; */
    width: 100vw !important;
  }
}
/*----pickup カード-----*/
.pickup-wrap {
  background-color: #FEFCEF;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.pickup-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pickup-card li {
  margin: 2% 0;
  width: 31%;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .pickup-card li {
    width: 48%;
  }
}
@media screen and (max-width: 480px) {
  .pickup-card li a {
    text-align: left !important;
    font-size: 1rem !important;
  }
}
.pickup-card li::before, .pickup-card li::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  transition: all 0.3s linear;
}
.pickup-card li::before {
  border-left: solid 2px #E0721B;
  border-top: solid 2px #E0721B;
  border-radius: 5px 0 0 0;
  top: 0;
  left: 0;
}
.pickup-card li::after {
  border-right: solid 2px #E0721B;
  border-bottom: solid 2px #E0721B;
  border-radius: 0 0 5px 0;
  bottom: 0;
  right: 0;
}
.pickup-card li:hover::before, .pickup-card li:hover::after {
  width: 30%;
  height: 30%;
}
.pickup-card li a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  color: #333;
  text-align: center;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.3s linear;
}
.pickup-card li a img {
  width: 80px;
  height: 60px;
  margin-bottom: 1rem;
  transition: all 0.3s linear;
}

/*------------------------------
　下層ページメイン画像 各箇所のポジションを変更
----------------------------------*/

/* 学内制度ページ・学内育児スペースページ */
.page-top-img.cover-img#childcare-space img{
	object-position: 50% 15%;
}
.page-top-img.cover-img#campus-system img{
	object-position: 50% 45%;
}


/*------------------------------
　TIDE ページ
----------------------------------*/
.icon-award {
  position: relative;
  padding-left: 1.5rem;
}
.icon-award::before {
  position: absolute;
  line-height: 0;
  top: 4px;
  left: 0;
  content: url(../img/icon-award.svg);
}

.tide-ttl-box {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .tide-ttl-box .m-box_feature {
    padding: 20px 10px;
  }
}

/*------------------------------
 SOGIハラスメント ページ
----------------------------------*/
.sogi-warap {
  position: relative;
}
.sogi-warap::before, .sogi-warap::after {
  position: absolute;
  content: "";
  background-image: url(../img/sogi-img.png);
  width: 600px;
  height: 630px;
  z-index: -1;
}
.sogi-warap::before {
  top: 0;
  right: -500px;
}
.sogi-warap::after {
  left: -500px;
  bottom: -100px;
}
@media only screen and (min-width: 2000px) {
  .sogi-warap::before, .sogi-warap::after {
    zoom: 120%;
  }
  .sogi-warap::before {
    top: -100px;
    right: -750px;
  }
  .sogi-warap::after {
    left: -750px;
  }
}
@media only screen and (max-width: 1024px) {
  .sogi-warap {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
  }
  .sogi-warap::before, .sogi-warap::after {
    opacity: 0.8;
  }
  .sogi-warap::before {
    top: -100px;
    right: -400px;
  }
  .sogi-warap::after {
    bottom: -200px;
    left: -400px;
  }
}

.sogi-sect {
  margin-bottom: 5rem;
}

.sogi-ttl_01 {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 4rem;
}

.sogi-ttl_02 {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 4rem;
}

.sogi-ttl_01 mark,
.sogi-ttl_02 mark {
  background: linear-gradient(transparent 50%, #FFEAB4 0%);
}

/*------------------------------
 活動報告 ページ
----------------------------------*/
/*
.m-table table tr:first-child {
  color: #EB5F60;
}
*/

/*------------------------------
 LGBTQガイドラインWEB版 ページ
----------------------------------*/
#guideline-link {
  margin-top: 4.5rem;
}
@media screen and (max-width: 480px) {
  #guideline-link {
    margin-top: 2.5rem !important;
  }
}


/*------------------------------
 学会・研究会等での託児所の開設 ページ
----------------------------------*/
.p-conference-childcare .mamamate__note{
	margin-top: 1.5rem;
}

.p-conference-childcare .mamamate__tell a{
	display: inline-block;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

/*------------------------------
 404 ページ
----------------------------------*/
.error404-content {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.error404-content h2 {
  text-align: center;
  line-height: 0.5;
  font-size: 5rem;
  color: #E0721B;
  margin-bottom: 2.5rem;
}
.error404-content h2 span {
  font-size: 2rem;
}
.error404-content p {
  text-align: center;
}
.error404-content .top-btn {
  text-align: center;
  margin-top: 2.5rem;
}
.error404-content .top-btn a {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  max-width: 280px;
  width: 100%;
  border-radius: 5px;
  padding: 1rem;
  background: #E0721B;
  color: #fff;
}

/*------------------------------
相談案内
----------------------------------*/
.counseling-int-wrap .m-btn_int_01 a::before {
  transform: rotate(90deg);
}

.counseling-anchor-btn a {
  position: relative;
  padding-left: 2rem;
  font-weight: bold;
}
.counseling-anchor-btn a::before {
  position: absolute;
  line-height: 0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  content: url(../img/icon-anchor.svg);
  zoom: 0.92;
}

/*------------------------------
ゆりのき保育所ページ
----------------------------------*/
.opening table td {
  text-align: center !important;
}

/*------------------------------
 お問い合わせ一覧ページ
----------------------------------*/
.contact-box .m-box_index-item {
  padding: 2.5rem 5rem;
}
.contact-box li {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.contact-box .u-indent {
  padding-left: 1.25em;
  text-indent: -1.25em;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .contact-box .m-box_index-item {
    padding: 2.5rem;
  }
}

/*------------------------------
  筑波で輝く研究者interviewページ
----------------------------------*/
.p-interview-wrap{
	background: #FEFCEF;
}
.p-interview .wid920{
	width: 100%;
    max-width: 920px;
    box-sizing: border-box;
    margin: auto;
}
.p-interview {
	padding: 6rem 40px;
}
#interview-content{
	background: #fff;
	padding: 80px;
}

@media screen and (max-width: 768px) {
	#interview-content{
		padding: 40px;
	}
}
@media screen and (max-width: 480px) {
	.p-interview {
	padding: 2.5rem 20px;
	}
	#interview-content{
		padding: 40px 20px;
	}
}
.p-interview-group,
.p-interview-author,
.p-interview-backbtn{
	margin-top: 4rem;
}
.p-interview-author{
	font-size: 0.875rem;
	line-height: 1.5;
}
.p-interview-backbtn{
	display: flex;
    justify-content: center;
    margin-top: 4rem;
}
@media screen and (max-width: 600px) {
	.c-interview-comicbox {
	    flex-direction: column;
	}	
	.c-interview-comicbox__item {
    width: 100%;
	}
}





