@charset "utf-8";
:root {
  --text-color: #004098;
}

/*レスポンシブサイズ設定*/
/* パーツ*/
@media only screen and (max-width: 640px) {
  .pc_only {
    display: none !important; } }

@media print, screen and (min-width: 641px) {
  .sp_only {
    display: none !important; } }

html { font-size: 115%; }
body.ja{
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
	text-align: justify;
}
body.en{
	font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
*{
	margin: 0;
	padding: 0;
		/*letter-spacing: 1px;
    text-decoration: none;
    list-style: none;
    color: #000;
    border: none;
    scroll-behavior: smooth;*/
	
	box-sizing: border-box;
  /*font-family: "Zen Maru Gothic", serif;*/
  /*font-optical-sizing: auto;
  font-weight: 100;*/
  font-style: normal;
}
header *,footer *,.sub_header *{
	text-decoration: none;
	list-style: none;
	color: #000;
	border: none;
	scroll-behavior: smooth;
}
a:hover{
 opacity: 0.7; 
}

.container{
    max-width: 1190px;
    margin: 0 auto;
}

/* PCヘッダー */

.header_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    margin-bottom: 10px;
}

.header_logo{
    width: 40%;
    max-width: 360px;
    transition-property: opacity;
    transition-duration: 0.5s;
}

.header_logo:hover{
    opacity: 0.7;
}

.header_logo img{
    display: block;
    margin: auto;
    width: 100%;
    padding: 0 10px;
}

.header_menu{
    display: flex;
    padding: 10px 10px 0 0;
    width: 50%;
    justify-content: right;
    flex-wrap: wrap;
}

.header_menu .maru.jp{
	border-radius: 50%;
  width: 44px;
  height: 44px;
	text-align: center;
	padding: 7px 0 0 0;
}
.header_menu .maru.en{
	border-radius: 50%;
  width: 44px;
  height: 44px;
	text-align: center;
	padding: 7px 0 0 0;
	margin: 0 0 0 10px;
}

.header_menu.en .maru.jp{
	padding: 12px 0 0 0;
}
.header_menu.en .maru.en{
	padding: 12px 0 0 0;
}
.header_menu .maru.on{
  background-color: #004098;
	color: #FFF;
	text-decoration: none;
}
.header_menu .maru.off{
  background-color: #D5DFEC;
	color: #151FA4;
	text-decoration: none;
}




.translation{
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
}

.header_form{
    display: flex;
}

.header_form input{
    background-color: #dadedf;
    max-width: 270px;
    width: 20vw;
    height: 40px;
    -webkit-appearance: none;
    border-radius: 0;
}

.header_form button{
    background-color: #2f5597;
    color: #fff;
    width: 90px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
}

.header_contact{
    display: block;
    color: #fff;
    background-color: #454e70;
    max-width: 175px;
    width: 15vw;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-left: 10px;
    position: relative;
}

/* PCヘッダーナビ */

.header_nav{
    position: relative;
}

.header_nav ul{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
.header_nav ul li a{
		font-weight: 400;
}

.menu_ttl{
    display: block;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: relative;
		font-size: 1.0rem;
}

.menu_ttl::after {
    position: absolute;
    left: -10%;
    content: '';
    width: 120%;
    height: 4px;
    background: #2fcec1;
    bottom: 0px;
    transform: scale(0, 1);
    transition: transform 0.5s;
    transform-origin: center top;
}

.menu_ttl:hover::after {
    transform: scale(1, 1)
}

.child_menu {
    width: 100vw;
    height: 95px;
    position: absolute;
    z-index: 500;
    top: 140;
    left: 0;
    padding: 30px 0;
    margin: 0 calc(50% - 50vw);
    background: rgba(69, 78, 112, 0.8);
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .2s;
}

.menu:hover .child_menu {
    transform: scaleY(1);
}

.menu_container{
    max-width: 1100px;
    width: 100%;
    height: 106%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.menu_container p{
    min-width: 13%;
    height: 60px;
    line-height: 60px;
    border-right: 2px solid;
    border-color: #fff;
    color: #fff;
    font-size: clamp(0.875rem, 0.195rem + 1.42vw, 1.25rem);
    font-weight: bold;
    padding-left: 10px;
}

.menu_container ul{
    display: flex;
    flex-wrap: wrap;
    padding-left: 5px;
}

.menu_container ul li{
    width: 120px;
    height: 30px;
}

.menu_container ul.menu_container__1{
    width: 700px;
}

.menu_container a{
    color: #fff;
    font-size: 1.0rem;
}


.child_menu.child_menu__img{
    background: rgb(83 145 194 / 0.9);
}
.menu_container.menu_container__img{
    align-items: flex-start;
}
.menu_container.menu_container__img ul li{
    width: 200px;
    height: 30px;
}


/* SPヘッダー */

.sp_header{
    display: none;
}

/* ローディング(ロゴ) */

.start {
	background: #FFF;
	position: fixed;
 top: 0;
 bottom: 0;
 right: 0;
 left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
 display: flex;
 justify-content: center;
 align-items: center;
}

.start img {
	display: none;
	z-index: 9999;
 animation: start 1s both;
 width: 30%;
 margin: auto;
}
@keyframes start {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}

/* フッター */

footer {
    width: 100%;
    background: #f5f5f5 ;
}

.sp_footer_nav{
    display: none;
}

.footer_flex{
    display: flex;
}
.footer_flex.en{
    display: block;
}
.footer_btm{
		color: #454e70;
		font-weight: bold;
		display: block;
		text-align: center;
		padding: 20px;
		background: #f5f5f5 ;
}

.footer_address{
    width: 30%;
    background-color: #f5f5f5;
    padding: 60px 1%;
}
.footer_address.en{
    width: 100%;
	text-align: center;
    padding: 60px 1% 0px 1%;
}
.triangle{
		width: 5%;
    background: aqua;
    padding: 15px;
    position: relative;
    background:
			linear-gradient(to bottom right,#f5f5f5 50%,#f5f5f5 51%);
}
.triangle.en{
		width: 0%;
}


.footer_address p{
    color: #454e70;
    margin-top: 5px;
		font-weight: bold;

}
.footer_address p a{
    color: #fff;
    border-bottom: 1px solid #fff;
}

.footer_address p a:hover{
    border: none;
}

.footer_logo{
    margin-bottom: 30px;
    max-width: 175px;
    width: 100%;
}

/* PCフッターナビ */

.footer_nav{
    width: 70%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-around;
    padding: 40px 2%;
}
.footer_nav.en{
    width: 100%;
}

.footer_nav ul{
    margin-right: 3%;
}

.footer_nav ul:last-child{
    margin: 0;
}

.footer_nav ul li{
	margin-bottom: 20px;
}
.footer_nav ul li:first-child{
	margin-bottom: 20px;
}
.footer_nav ul li a{
    font-size: 1.0rem;
    color: #454e70;
    margin-bottom: 15px;
    position: relative;
}

.footer_nav ul li h3:before {
    content: "";
    background: #034a8e;
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.footer_nav ul li p{
    margin-bottom: 15px;
}

.footer_nav ul li p a{
    font-size: 1.0rem;
    color: #454e70;
}
.footer_nav ul li p span a{
    font-size: 0.9rem;
}
.footer_nav_link b{
	font-size: 1.0rem;
	color: #454e70;
	font-weight: bold;
}
.copyright {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    color: #0b4589;
    font-size: 1.0rem;
}

/* フェードイン */

.fadein{
    transition: all 0.8s linear 0.1s;
    transform: translate3d(0, 0, 0);
}


/* カテゴリーページ */
.sub_header{
	background: #F3EDDD;
	color: var(--text-color);
  height: 220px;
	padding-top: 10px;
	box-sizing: border-box;
  text-align: center;
	margin: auto;
}
.pagelist{
	font-size: 0.8rem;
	color: var(--text-color);
	text-align: left;
	width: 1170px;
	margin: 0 auto 50px auto;
}
.pagelist a{
	color: var(--text-color);
	text-decoration: underline;
}
.pagelist ul{
	display: flex;
}
.pagelist ul li{
	color: var(--text-color);
	margin: 0 10px 0 0;
}
.pagelist ul li::after{
	padding: 0 0 0 10px;
	content: ">";
}
.pagelist ul li:last-child::after{
	content: "";
}

.sub_header h2{
	color: var(--text-color);
	font-size: 2.0rem;
	font-weight: normal;
	letter-spacing: 4px;
}
.sub_header span.read{
  font-size: 16px;
	text-transform:capitalize;
	color: var(--text-color);
	display: block;
}
.sub_header span.read::after{
	content: "";
	display: block;
	width: 140px;
	height: 4px;
	background: #6086bb;
	margin: 10px auto;
}

.page .container{
	background: #FFF;
  border-width: 1px;
  border-color: rgb(218, 222, 223);
  box-shadow: 0px 3px 7px 0px rgba(141, 141, 141, 0.35);
	margin: 30px auto 50px auto;
	padding: 50px 0 50px 0;
}

.page-title1{
	width: 200px;
	padding-top: 50px;
	text-align: center;
	margin: auto;
	background: url("/wp-content/themes/tpl-ulo.fish.hokudai.ac.jp-ver1.02/module/img/common/page-title-bg.png")no-repeat center;
	background-size: 100px;
	height: 150px;
}

.page-title1 h4{
	color: #454e70;
	font-size: 1.6rem;
	font-weight: normal;
}
.page-title1 span{
	color: #818181;
	font-size: 0.8rem;
	position: relative;
	top: -5px;
}


.page-title2{
	text-align: center;
}
.page-title2 h4{
	font-size: 1.4rem;
	font-weight: normal;
}
.page-title2::after{
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #454e70;
	margin: 15px auto;
}

.page-title3{
	text-align: center;
}
.page-title3 h4{
	color: #454e70;
	font-size: 1.4rem;
	font-weight: normal;
}
.page-title3::after{
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #454e70;
	margin: 15px auto;
}


/* アクセス */
.access{
	background: #FFF;
	padding: 50px 0 0 0
}
.access .access_sec1{
	text-align: center;
	margin: 0 0 30px 0;
}
.access .access_sec1 p{
	font-size: 1.0rem;
  font-weight: 700;
  font-style: normal;
	color: #7da0c8;
}
.access .access_sec1 h2{
	font-size: 1.8rem;
  font-weight: 700;
  font-style: normal;
	color: #0b4589;
}

.access .access_sec2{
	text-align: center;
	margin: 30px 0  50px 0;
}
.access .access_sec2 p{
	font-size: 1.2rem;
  font-weight: 500;
  font-style: normal;
	color: #0b4589;
}
.arr_hoso{
	width: 1rem;
}

/* SPレスポンシブ */
@media screen and (max-width:767px) {
html { font-size: 110%; }
/* PCヘッダー */
    .PC_header{
    display: none;
}

/* SPヘッダー */

.pagelist ul{
	padding-left: 5px;
}
.sp_header {
    display: block;
    height: 75px;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    z-index: 1000;
}

.header-inner {
    height: 75px;
    padding: 5px 5px 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sp_header_logo img{
    width: 80%;
}

	
.header_menu{
    padding: 10px 0 0 0;
    width: 50%;
    justify-content: center;
    margin: auto;
}

.header_menu .maru.jp{
	border-radius: 50%;
  width: 44px;
  height: 44px;
	text-align: center;
	padding: 7px 0 0 0;
}
.header_menu .maru.en{
	border-radius: 50%;
  width: 44px;
  height: 44px;
	text-align: center;
	padding: 7px 0 0 0;
	margin: 0 0 0 10px;
}
.header_menu.en .maru.jp{
	padding: 11px 0 0 0;
}
.header_menu.en .maru.en{
	padding: 11px 0 0 0;
}
.header_menu .maru.on{
  background-color: #1A8DB3;
	color: #FFF;
}
.header_menu .maru.off{
  background-color: #D5DFEC;
	color: #151FA4;
}

	
/* ハンバーガーメニュー */

#header-hamburger {
    background: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    margin-left: auto;
    position: relative;
    z-index: 10;
}


/* 三本線 */

#header-hamburger span {
    display: inline-block;
    background: #295094;
    width: 37px;
    height: 6px;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#header-hamburger span:nth-of-type(1) {
    top: 25%;
}

#header-hamburger span:nth-of-type(2) {
    top: 50%;
}

#header-hamburger span:nth-of-type(3) {
    top: 75%;
}


/* ×印 */

#header-hamburger.active span:nth-of-type(1) {
    top: 50%;
    left: 25%;
    transform: rotate(-45deg);
    width: 50%;
}

#header-hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

#header-hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 25%;
    transform: rotate(45deg);
    width: 50%;
}

/* メニューウィンドウ */

#hamburger-window {
    background-color: var(--text-color);
    transition: 0.3s;
    text-align: center;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .2s;
    position: absolute;
    top: 75px;
    z-index: 9999;
    width: 100%;
    min-height: calc(100vh - 75px);
    height: auto;
    padding: 0 20px;
}

.content::-webkit-scrollbar{
    display:none;
}

#hamburger-window.open {
    transform: scaleY(1);
}

.hamburger-window__link {
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* アコーディオン部分 */

	.hamburger-window__nav-list{
		margin-top: 30px;
	}
.acordion-btn {
    display: flex;
    align-items: center;
    padding-left: 5%;
    height: 70px;
    border-top: 1px solid #fff;
    margin: 0 auto;
    font-weight: bold;
}
a:hover.acordion-btn{
	    opacity: 1;
}

.acordion-btn2 {
    display: flex;
    align-items: center;
    padding-left: 5%;
    height: 60px;
    border-top: 1px solid #fff;
    margin: 0 auto;
    font-weight: bold;
		text-decoration: none;
}

.acordion-btn2 p{
    color: #fff;
}

.acordion-btn::after {
    content: '＋';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    position: absolute;
    right: 8%;
    width: 10px;
    aspect-ratio: 1/1;
    color: #fff;
}

.acordion-btn.is-open::after {
    content: '-';
    color: #fff;
}

.hamburger-window__title {
    color: #fff;
}

.acordion>.acordion__item {
    text-align: left;
    width: 100%;
		list-style: none;
}

.acordion>.acordion__item>.acordion__link {
    color: #fff;
    display: block;
    padding-left: 7%;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        padding-top .3s ease-out,
        padding-bottom .3s ease-out,
        line-height .3s ease-out,
        opacity .1s linear,
        visibility .1s linear;
}

.acordion.is-open>.acordion__item>.acordion__link {
    display: block;
    padding: 15px 0 0 0;
    padding-left: 5%;
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    transition:
        padding-top .3s ease-out,
        padding-bottom .3s ease-out,
        line-height .3s ease-out,
        opacity .1s linear,
        visibility .1s linear;
}

	a:hover.acordion.is-open>.acordion__item>.acordion__link{
    opacity: 1;
}

.acordion.is-open>.border-bottom{
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
}

.header_form{
    padding: 20px 0;
    justify-content: center;
}

.header_form input{
    width: 65vw;
}

.header_contact{
    background-color: #FFF;
		color:  var(--text-color);
    max-width: 330px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 10px auto 20px auto;
}


/* SPフッター */

footer {
    height: auto;
}

.sp_footer_nav{
    background-color: #f5f5f5;
    padding: 0 20px;
    display: block;
}


/* SPフッターナビ */

.footer_acordion-btn {
    height: 50px;
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    margin-top: -1px;
}

.footer_acordion-btn p{
    color: #333;
    font-size: 16px;
}

.footer_acordion-btn2 {
    height: 50px;
    border-bottom: 1px solid #333;
}

.footer_acordion-btn2 p{
    color: #2c599d;
    font-size: 16px;
}

.footer_acordion-btn::after {
    color: #2c599d;
}

.footer_acordion-btn.is-open::after {
    color: #2c599d;
}

.acordion>.acordion__item>.footer_acordion__link {
    color: #333;
}

.acordion>.acordion__item>.footer_acordion__link2 {
    color: #333;
}

.acordion.is-open>.acordion__item>.footer_acordion__link {
    opacity: 1;
    padding: 15px 0 0 5%;
		box-sizing: border-box;
}

.acordion.is-open>.acordion__item>.footer_acordion__link2{
    opacity: 1;
    padding: 15px 0 15px 5%;
		box-sizing: border-box;
		font-weight: bold;
}

.border_top{
    border-top: 1px solid #333;
    margin-top: -1px;
}

.border_none{
    border-top: none;
}

.border-bottom_none{
    border-bottom: none;
}

.footer_flex{
    flex-direction: column;
}

.footer_address{
		text-align: center;
    width: 100%;
    height: auto;
    padding: 60px 4%;
}

.footer_nav{
    display: none;
}

.copyright {
    font-size: 9px;
}

/* カテゴリーページ */
.sub_header{
	height: 180px;
	padding-top: 1px;
}
.sub_header h2{
	font-size: 1.2rem;
}

.page .container{
	width: 96%;
	top: -180px;
	padding-top: 30px;
	padding-bottom: 14px;
}

.page-title{
	padding-top: 55px;
}
.page-title h4{
	font-size: 1.4rem;
}
.pagelist{
	font-size: 0.7rem;
	width: 100%;
}
.page_wrap{
	width: 94%;
	margin: auto;
}

.access .access_sec1 h2{
	font-size: 1.4rem;
}
.access .access_sec2 p{
	font-size: 1.0rem;
}
	
}

/* SP文字崩れ調整用 */

@media screen and (max-width:580px){

.sp_br{
    display: block;
}

}
