@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
  position: relative;
  z-index: 10;
  opacity: 0;
}
#header .inner {
  width: 1280px;
  width: max(66.67vw, 1280px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#header .logo-wrap {
  width: 170px;
  width: max(8.85vw, 170px);
  height: 170px;
  height: max(8.85vw, 170px);
  position: relative;
}
#header .logo-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  width: max(5.63vw, 108px);
  height: auto;
}
@media screen and (max-width: 767px) {
  #header {
    width: 100%;
  }
  #header .inner {
    width: 100%;
  }
  #header .logo-wrap {
    width: 70px;
    height: 70px;
    z-index: 1;
  }
  #header .logo-wrap img {
    width: 40px;
  }
  #header .logo-wrap .sp-only {
    margin-top: 2px;
  }
}

/*----------------------------------------------------
	header（下層ページ調整用）
----------------------------------------------------*/
#header.lower-page {
    background: #fff;
	padding: 10px 0;
    opacity: inherit;
}
#header.lower-page .inner {
    position: static;
}
#header.lower-page .fixed-wrap {
    justify-content: space-between;
    align-items: center;
}
#header.lower-page .logo-wrap {
    width: 70px;
    height: 70px;
}
#header.lower-page .logo-wrap img {
    position: static;
    transform: inherit;
    width: 70px;
    height: 70px;
    object-fit: contain;
}
#header.lower-page .menu {
    margin: 0;
}
#header.lower-page .menu nav ul li a {
	color: #000;
}
@media screen and (max-width: 767px) {
	#header.lower-page {
		padding: 10px;
	}
	#header.lower-page .fixed-wrap {
		position: static;
	}

	#header.lower-page .logo-wrap {
		width: 50px;
		height: 50px;
	}
	#header.lower-page .logo-wrap img {
		width: 50px;
		height: 50px;
	}
	
}

/*----------------------------------------------------
	header（固定用css）
----------------------------------------------------*/
/* トップページ */
#header.scroll-fixed {
    
}

/* 下層ページ */
#header.fixed {
    position: sticky;
    left: 0;
    top: 0;
    /* width: 100%; */
}
#header.fixed + .heading {
    position: relative;
}






/*  main-v  */
.main-v {
  height: 780px;
  height: max(40.63vw, 780px);
  background: #fff url(../images/mv.jpg) no-repeat center / cover;
  position: relative;
}
.main-v .main-title-wrap {
  position: absolute;
  top: 54%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  width: 1280px;
  width: max(66.67vw, 1280px);
}
.main-v .main-title {
  opacity: 0;
}
.main-v .main-title,
.main-v .main-title span {
/*  font-size: 78px;
  font-size: max(4.06vw, 78px);
  line-height: 1.11;*/
	font-size: max(3.06vw, 68px);
    line-height: 1.11;
}
.main-v .main-text {
  font-size: 28px;
  font-size: max(1.46vw, 28px);
  line-height: 1.71;
  margin-top: 15px;
  margin-top: max(0.78vw, 15px);
  opacity: 0;
}
.main-v .main-search {
  margin-top: 70px;
  margin-top: max(3.65vw, 70px);
  opacity: 0;
}
.main-v .main-search .inner {
}
.main-v .main-search .select-wrap::before {
  /* 三角マーク */
  content: "";
  position: absolute;
  top: 25px;
  top: max(1.3vw, 25px);
  right: 17px;
  right: max(0.89vw, 17px);
  border: 6px solid transparent;
  border: max(0.31vw, 6px) solid transparent;
  border-top: 11px solid #3e4043;
  border-top: max(0.57vw, 11px) solid #3e4043;
  z-index: 1;
}
.main-v .main-search select {
  display: block;
  width: 260px;
  width: max(13.54vw, 260px);
  height: 60px;
  height: max(3.13vw, 60px);
  font-size: 15px;
  font-size: max(0.78vw, 15px);
  font-family: inherit;
  color: #303030;
  background: #fff;
  border: none;
  border-radius: 10px;
  border-radius: max(0.52vw, 10px);
  padding: 12px 35px 14px 20px;
  padding: max(0.63vw, 12px) max(1.82vw, 35px) max(0.73vw, 14px)
    max(1.04vw, 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.main-v .main-search .cross {
  position: relative;
  width: 32px;
  width: max(1.67vw, 32px);
  height: 31px;
  height: max(1.61vw, 31px);
  margin: 0 8px 0 10px;
  margin: 0 max(0.42vw, 8px) 0 max(0.52vw, 10px);
}
.main-v .main-search .cross::before,
.main-v .main-search .cross::after {
  content: "";
  position: absolute;
  top: 29px;
  top: max(1.51vw, 29px);
  right: 15px;
  right: max(0.78vw, 15px);
  width: 2px;
  height: 40px;
  height: max(2.08vw, 40px);
  background: #fff;
}
.main-v .main-search .cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.main-v .main-search .cross:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.main-v .main-search .sbtn-wrap {
  margin-left: 18px;
  margin-left: max(0.94vw, 18px);
  position: relative;
}
.main-v .main-search .sbtn-wrap::before {
  /* 虫眼鏡アイコン */
  content: "";
  display: block;
  width: 31px;
  width: max(1.61vw, 31px);
  height: 31px;
  height: max(1.61vw, 31px);
  background-image: url(../images/icon-search.png);
  background-size: cover;
  position: absolute;
  top: 14px;
  top: max(0.73vw, 14px);
  left: 31px;
  left: max(1.61vw, 31px);
  cursor: pointer;
}
.main-v .main-search input[type="submit"] {
  border: none;
  width: 150px;
  width: max(7.81vw, 150px);
  height: 60px;
  height: max(3.13vw, 60px);
  border-radius: 60px;
  font-size: 20px;
  font-size: max(1.04vw, 20px);
  padding-top: 2px;
  padding-top: max(0.1vw, 2px);
  padding-left: 28px;
  padding-left: max(1.46vw, 28px);
  cursor: pointer;
}
.main-v .main-search button[type="button"] {
  border: none;
  width: 150px;
  width: max(7.81vw, 150px);
  height: 60px;
  height: max(3.13vw, 60px);
  border-radius: 60px;
  font-size: 20px;
  font-size: max(1.04vw, 20px);
  padding-top: 2px;
  padding-top: max(0.1vw, 2px);
  padding-left: 28px;
  padding-left: max(1.46vw, 28px);
  cursor: pointer;
}

@media screen and (max-width: 767px) {
	.main-v {
		height: 550px;
		background-position: center right calc(50% - 15%);
	}
	.main-v .main-title-wrap {
		width: 90%;
		top: 60%;
	}
	.main-v .main-title,
	.main-v .main-title span {
		font-size: 38px;
	}
	.main-v .main-text {
		margin-top: 15px;
		font-size: 16px;
	}
	.main-v .main-search {
		margin-top: 30px;
	}
	.main-v .main-search .select-wrap::before {
		top: 22px;
		right: 10px;
		border: 5px solid transparent;
		border-top: 8px solid #3e4043;
	}
	.main-v .main-search select {
		width: 40vw;
		height: 50px;
		font-size: 15px;
		border-radius: 8px;
		padding: 12px 27px 12px 12px;
	}
	.main-v .main-search .cross {
		width: 10vw;
		height: 31px;
		margin: 0;
	}
	.main-v .main-search .cross::before,
	.main-v .main-search .cross::after {
		top: 25px;
		right: 16px;
		width: 2px;
		height: 30px;
	}
	.main-v .main-search .sbtn-wrap {
		margin-left: 0;
		margin-top: 15px;
	}
	.main-v .main-search .sbtn-wrap::before {
		width: 22px;
		height: 22px;
		top: 14px;
		left: calc(50% - 50px);
	}
	.main-v .main-search input[type="submit"] {
		width: 90vw;
		height: 50px;
		font-size: 18px;
		padding-top: 3px;
		padding-left: 0;
	}
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
}
#footer .foot-content {
  padding: 27px 0 18px;
  position: relative;
}
#footer .logo {
  position: absolute;
  bottom: 18px;
  left: 0;
}
#scroll-top a {
  border-radius: 50%;
  background: rgba(0, 72, 150, 0.7);
  bottom: 70px;
  display: block;
  float: right;
  height: 70px;
  width: 70px;
  padding: 5px;
  position: fixed;
  right: 30px;
  text-align: center;
  padding-top: 16px;
  z-index: 9999;
}
#scroll-top a .fa-arrow-up::before {
  font-size: 36px;
  color: #fff;
}
#footer .copy {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #footer {
  }
  #footer .foot-content {
    padding: 30px 0;
  }
  #footer .logo {
    position: static;
    text-align: center;
    margin-bottom: 25px;
  }
  #footer .logo img {
    width: 50%;
    max-width: 220px;
    height: auto;
  }
  #scroll-top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }
  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
}

/*----------------------------------------------------
	sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  width: 30px; /*---線の長さ---*/
  height: 25px; /*---線の太さ長さによって調整---*/
  margin-top: -10px;
}
.bar,
.bar:before,
.bar:after {
  height: 3px; /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #004896;
  transition: all 0.25s;
  position: absolute;
}
.bar {
  left: 0;
  top: 10px;
}
.bar:before {
  content: "";
  left: 0;
  top: -10px;
}
.bar:after {
  content: "";
  left: 0;
  top: 10px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}
.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}
.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}

/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .fixed-wrap,
#header .menu {
  display: flex;
}
#header .menu {
  margin-top: 40px;
  margin-left: 35px;
}
#header .menu nav ul {
  display: flex;
}
#header .menu nav ul li {
  margin-left: 19px;
}
#header .menu nav ul li:first-of-type {
  margin-left: 0;
}
#header .menu nav ul li a {
  display: block;
  transition: 0.3s;
  font-size: 15px;
  font-size: max(0.78vw, 15px);
  letter-spacing: 0.03em;
}
#header .menu nav ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
	#header .fixed-wrap {
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: auto;
		z-index: 1000;
	}
	#header .menu {
		display: none;
		width: 100vw;
		margin-top: 0;
		margin-left: 0;
		padding-top: 70px;
		padding-bottom: 0;
		background-color: #fff;
		position: absolute;
		top: 0;
		left: 0;
	}
	#header .menu nav ul {
		display: block;
		padding: 0 0;
	}
	#header .menu nav ul li {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}
	#header .menu nav ul li a {
		color: #000;
		font-size: 15px;
		padding: 15px 0;
		border-top: 1px solid #ddd;
	}
	#header .menu nav ul li:last-child a {
		border-bottom: 1px solid #ddd;
	}
	#header .menu-ani-button-wrap {
		position: absolute;
		top: 30px;
		right: 20px;
		display: block;
		width: 30px;
		height: 100%;
		z-index: 1;
	}
}



/*----------------------------------------
ナビゲーション(フッター)
----------------------------------------*/
#foot-navi > .ul-wrap > ul {
  text-align: center;
  display: table;
  table-layout: auto;
  margin: 0 auto;
}
#foot-navi > .ul-wrap > ul > li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 30px 0 0;
  position: relative;
}
#foot-navi > .ul-wrap > ul > li:last-of-type {
  padding-right: 0;
}
#foot-navi > .ul-wrap > ul > li > a {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  transition: 0.3s;
}
#foot-navi > .ul-wrap > ul > li > a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  #foot-navi {
  }
  #foot-navi > .ul-wrap {
    width: 100%;
    padding: 0;
  }
  #foot-navi > .ul-wrap > ul {
    text-align: left;
    display: block;
    table-layout: initial;
  }
  #foot-navi > .ul-wrap > ul > li {
    display: block;
    border-bottom: rgba(255, 255, 255, 0.7) 1px solid;
    padding: 0;
  }
  #foot-navi > .ul-wrap > ul > li:first-child {
    border-top: rgba(255, 255, 255, 0.7) 1px solid;
  }
  #foot-navi > .ul-wrap > ul > li > a {
    padding: 14px 30px;
  }
}



/*----------------------------------------
サイドカラム
----------------------------------------*/
#side {
    width: 30%;
    min-width: 300px;
    margin-left: 30px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 3px 13px #ddd;
    border-radius: 12px;
    overflow: hidden;
}
.side-content {
    margin-bottom: 30px;
}
.side-content:last-child {
    margin-bottom: 0;
}
.side-content > h3 {
    font-size: 18px;
    line-height: 1.2em;
	padding: 1rem;
    margin-bottom: 20px;
}

.side-content .item {
    margin-bottom: 15px;
    display: block;
	cursor: pointer;
}
.side-content .item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	#side {
		width: 100%;
		padding: 20px 15px 20px;
		margin: 5px 5px 40px 5px;
	}
	
}


.post-popular {}
.side-content .item .ranking {
    width: 25px;
    height: 25px;
	z-index: 1;
	
    position: absolute;
    left: 0;
    top: 0;
}
.post-popular .item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.post-popular .item .category {
    color: #004896;
    font-size: 14px;
    padding: 2px 5px;
    background: rgba(255,255,255, 0.9);
    position: absolute;
    bottom: 0;
    left: 0;
}
.post-popular .item .title {
    font-size: 16px;
    line-height: 1.4em;
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
	.post-popular {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.post-popular .item {
		width: 48%;
	}
	.post-popular .item img {
		height: 100px;
	}
	.post-popular .item .title {
		font-size: 14px;
	}
}


.post-relation .item {
    display: flex;
    align-items: flex-start;
}
.post-relation .item figure {
    width: 45%;
	padding-right: 10px;
}
.post-relation .item .category {
    color: #004896;
    font-size: 14px;
	line-height: 1.3em;
    padding: 2px 5px;
    background: rgba(255,255,255, 0.9);
    position: absolute;
    bottom: 0;
    left: 0;
}
.post-relation .item .txt-box {
	width: 55%;
}
.post-relation .item .title {
	font-size: 16px;
    line-height: 1.4em;
}

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




.category-list {}
.category-list .item {
    color: #3498db;
    font-size: 14px;
    line-height: 1.4em;
    padding: 15px 15px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin-bottom: 0;
	position: relative;
    display: block;
}
.category-list .item:last-child {
    border-bottom: 1px solid #ddd;
}
.category-list .item::after {
	content: "";
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #004896;
	border-right: solid 2px #004896;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 43%;
	right: 15px;
}


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













