@charset "UTF-8";
body {
  margin: 0 0;
  width: 100%;
  color: #140700;
  position: relative;
  background: #fff;
  -webkit-text-size-adjust: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt" 1;
  font-weight: 400;
  line-height: 1.6875;
  text-align: justify;
  font-size: 100%;
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1070px;
  padding: 0 35px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 860px) {
  .wrapper {
    width: 100%;
    padding: 0px 20px 0;
  }
}

.inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 35px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 860px) {
  .inner {
    width: 100%;
    padding: 0px 0 0;
  }
}

.table-wrapper {
  overflow-x: scroll;
  scrollbar-width: none;
}

.table-wrapper table {
  min-width: 860px;
}

.file-icon{
	height: 1.4em;
	width: auto;
	display: inline-block;
	vertical-align: middle;
	padding-left: 0.5em;
}
/* ページトップに戻る---------------- */
#skip {
  position: absolute;
  left: -9999em;
}

#return_top {
  z-index: 8888;
  position: fixed;
  right: 0px;
  bottom: -50px;
}

#return_top a {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/return-top.svg) left center/contain no-repeat;
  transition: 0.3s ease opacity;
  opacity: 1;
}

#return_top a:hover {
  opacity: 0.7;
}

#return_top p {
  visibility: hidden;
}

@media only screen and (max-width: 860px) {
  #return_top {
    z-index: 8888;
    position: fixed;
    right: 0px;
    bottom: -38px;
  }
  #return_top a {
    display: block;
    width: 38px;
    height: 38px;
  }
}

/* ヘッダー---------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: #ffffff;
  color: #231815;
  padding: 0;
  width: 100%;
}

header .wrapper{
	max-width: 100%;
}
header a {
  color: #231815;
  text-decoration: none;
}

.header-wrapper {
  padding: 0 35px;
}

@media screen and (max-width: 860px) {
  .header-wrapper {
    width: 100%;
    padding: 0px 20px 0;
  }
}

#header-box {
  display: flex;
  justify-content: space-between;
  gap: 30px 50px;
  padding: 15px 0;
}

#header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

#header-nav {
  display: flex;
  align-items: center;
}

#header-nav ul.main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  position: relative;
  text-align: center;
}

#header-nav ul.main-nav > li {
  font-size: 0.875em;
  line-height: 1.25;
  display: flex;
  align-items: start;
  justify-content: center;
  height: auto;
  padding-bottom: 0px;
  position: relative;
}
#header-nav ul.main-nav > li > span, 
#header-nav ul.main-nav > li > a {
  margin-top: 10px;
}
#header-nav ul.main-nav > li span, 
#header-nav ul.main-nav > li a {
  transition: 0.7s ease opacity;
}
#header-nav ul.main-nav > li span:hover, 
#header-nav ul.main-nav > li a:hover {
  opacity: 0.7;
}

#header-nav ul.main-nav > li.entry {
  font-size: 0.9375em;
  line-height: 1.2;
  padding-bottom: 0px;
}

#header-nav ul.main-nav > li.entry a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #005C8D;
  width: 220px;
  height: 50px;
  margin-top: 0px;
  border-radius: 100px;
  transition: 0.7s ease opacity;
}
#header-nav ul.main-nav > li.entry a:hover {
  opacity: 0.7;
}

#header-nav ul.main-nav > li.has-sub:after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background: url(../images/arrow-pulldown.svg) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
}
#header-nav ul.main-nav > li.has-sub.about:after {
  bottom: -2.5px;
}

#header-nav ul.main-nav > li > span {
  cursor: pointer;
}

#header-nav ul.sub-nav {
  display: none;
  list-style: none;
  position: absolute;
  left: 50%;
  top: calc(10px + 100%);
  transform: translateX(-50%);
  width: 220px;
  max-width: 320px;
  z-index: 888;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

#header-nav ul.sub-nav > li {
  border-bottom: 1px solid #ECEDED;
}

#header-nav ul.sub-nav > li :last-child {
  border-bottom: none;
}

#header-nav ul.sub-nav > li > a,

#header-nav ul.sub-nav > li > span {
  display: flex;
  align-items: start;
  justify-content: start;
  min-height: 45px;
  padding: 13px;
  text-align: left;
  font-size: 1em;
  color: #1A1004;
  background: #ffffff;
  transition: 0.6s ease opacity;
  position: relative;
}

#header-nav ul.sub-nav > li > a :hover {
  opacity: 0.7;
}

#header-nav ul.sub-nav > li > a:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/arrow-grobal.svg) no-repeat center center/contain;
}



#header-nav ul.sub-nav.interview {
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
  width: 640px;
  max-width: 640px;
  background: #ffffff;
}
#header-nav ul.sub-nav.interview > li{
	width: calc(50% - 20px);
}
#header-nav ul.sub-nav.interview > li:nth-child(5n + 1){
	order:1;
}
#header-nav ul.sub-nav.interview > li:nth-child(5n + 2){
	order:2;
}
#header-nav ul.sub-nav.interview > li:nth-child(5n + 3){
	order:3;
}
#header-nav ul.sub-nav.interview > li:nth-child(5n + 4){
	order:4;
}
#header-nav ul.sub-nav.interview > li:nth-child(5n + 5){
	order:5;
}

@media only screen and (max-width: 1200px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 0;
    z-index: 9999;
  }
  #header-logo img {
    height: 35px;
    width: auto;
  }
  #header-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
  }
  #header-nav ul.main-nav {
    flex-direction: column;
    background: #DEF2F6;
    text-align: left;
    gap: 0;
    width: 100%;
    max-height: calc(100vh - 65px);
    overflow-y: scroll;
    scrollbar-width: none;
  }
  #header-nav ul.main-nav li {
    height: auto;
    flex-direction: column;
    gap: 0;
  }
  #header-nav ul.main-nav li br {
    display: none;
  }
  #header-nav ul.main-nav li a, #header-nav ul.main-nav li span {
    width: 100%;
    display: block;
    padding: 15px 15px;
    transition: 0.3s ease opacity;
    position: relative;
    border-bottom: 2px solid #fff;
  }
  #header-nav ul.main-nav li a :hover, #header-nav ul.main-nav li span :hover {
    opacity: 0.6;
  }
  #header-nav ul.main-nav > li.has-sub span:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/menu-open.svg) no-repeat center center/contain;
  }
  #header-nav ul.main-nav > li.has-sub.active span:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/menu-close.svg) no-repeat center center/contain;
  }
  #header-nav ul.main-nav > li.has-sub:after {
    display: none;
  }
  #header-nav ul.main-nav > li.entry {
    padding: 20px;
  }
  #header-nav ul.sub-nav {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  #header-nav ul.sub-nav > li > a {
    color: #1A1004;
    background: #FFFFFF;
  }
  #header-nav ul.sub-nav > li > a :hover {
    opacity: 0.7;
  }
  #header-nav ul.sub-nav > li > a:after {
    display: none;
  }


  #header-nav ul.sub-nav.interview {
    gap: 0 20px;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
  }
  #header-nav ul.sub-nav.interview > li{
  	width: calc(50% - 10px);
  }

  #header-nav ul.sub-nav.interview > li:nth-child(5n + 1){
  	order:inherit;
  }
  #header-nav ul.sub-nav.interview > li:nth-child(5n + 2){
  	order:inherit;
  }
  #header-nav ul.sub-nav.interview > li:nth-child(5n + 3){
  	order:inherit;
  }
  #header-nav ul.sub-nav.interview > li:nth-child(5n + 4){
  	order:inherit;
  }
  #header-nav ul.sub-nav.interview > li:nth-child(5n + 5){
  	order:inherit;
  }
}

@media only screen and (max-width: 640px) {
  #header-nav ul.sub-nav.interview > li{
  	width: 100%;
  }
}
/* フッター---------------- */
footer {
  background: #f2fafb;
}

footer a {
  color: #140700;
  text-decoration: none;
}

#footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

#footer-top {
  display: flex;
  justify-content: start;
  gap: 30px 50px;
  padding: 40px 0;
}

#footer-nav {
  display: flex;
  align-items: center;
  flex: 1;
}

#footer-nav ul.main-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 20px 10px;
}

#footer-nav ul.main-nav > li {
  position: relative;
  font-size: 0.8125em;
  line-heihgt: 1.69;
  font-weight: 700;
  padding-top: 10px;
}

#footer-nav ul.main-nav > li:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 94px;
  height: 2px;
  background: #7BCDDC;
  position: absolute;
  top: 0;
  left: 0;
}

#footer-nav ul.sub-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 10px;
}

#footer-nav ul.sub-nav > li {
  position: relative;
  font-size: 0.92em;
  line-heihgt: 1.75;
  font-weight: 400;
  margin-left: 1em;
  text-indent: -1em;
}

#footer-nav ul.sub-nav > li a {
  color: #777777;
  transition: 0.7s ease opacity;
}
#footer-nav ul.sub-nav > li a:hover {
  opacity: 0.7;
}

#footer-nav ul.sub-nav > li:before {
  color: #777777;
  content: "－";
}

#footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 10px;
  padding: 0px 0 20px;
}

#footer-address {
  font-size: 0.875em;
  line-height: 1.57;
}

#footer-copy {
  font-size: 0.625em;
  line-height: 1.1;
}

@media only screen and (max-width: 860px) {
  #footer-top {
    flex-direction: column;
  }
  #footer-nav ul.main-nav {
    flex-wrap: wrap;
    justify-content: start;
  }
  #footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

/* スマホボタン---------------- */
#header-button {
  display: none;
}

@media only screen and (max-width: 1200px) {
  #header-button {
    display: block;
    position: fixed;
    top: 8px;
    right: 20px;
    cursor: pointer;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: #7BCDDC;
    border-radius: 50px;
  }
  .hnbgmenu {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .menu-line,
  .menu-inner::after,
  .menu-inner::before {
    position: absolute;
    display: block;
    width: 58%;
    left: 21%;
    height: 2px;
    transition: .15s ease-out;
    background-color: #fff;
  }
  .menu-inner::after,
  .menu-inner::before {
    content: "";
  }
  .menu-line {
    top: calc(50% - 1px);
  }
  .menu-inner::before {
    top: calc(30% - 1px);
  }
  .menu-inner::after {
    top: calc(70% - 1px);
  }
  .hnbgmenu.active .menu-line {
    width: 0;
    opacity: 0;
    transform: translateX(20px) rotate(90deg);
  }
  .hnbgmenu.active .menu-inner::before {
    transform: translateY(10px) translateX(0px) rotate(-135deg);
  }
  .hnbgmenu.active .menu-inner::after {
    transform: translateY(-10px) translateX(0px) rotate(135deg);
  }
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 27.77%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.gmap + p {
  text-indent: 0;
  margin-left: 40px;
  margin-top: 25px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 700px) {
  .gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
  }
  .gmap + p {
    margin-left: 0;
  }
}



.youtube {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.youtube iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
@media only screen and (max-width:640px){
	.youtube + p{
		margin-left:0;
	}
	.youtube {
		height: 0;
		overflow: hidden;
		padding-bottom: 178%;
		position: relative;
	}
}


/*ページネーション------------------------------------*/

.pagenation{
	margin-top: 60px;
}

.pagenation .wp-pagenavi {
	clear: both;
	text-align:center;
}

.pagenation .wp-pagenavi a,
.pagenation .wp-pagenavi span {
	text-decoration: none;
	margin: 0 12px;
	font-weight:400;
	color:#7bcddc;
	background:#ffffff;
	cursor:pointer;
	display:inline-block;
	width:44px;
	line-height:44px;
	border: 1px solid #7bcddc;
	border-radius:22px;
	text-decoration:none;
	position:relative;
	transition:0.15s ease;
	top:0;
	
	padding: 0;
}

.pagenation .wp-pagenavi a:hover{
	background:#7bcddc;
	color:#fff;
}
.pagenation .wp-pagenavi span.current {
	background:#7bcddc;
	color:#fff;
}

.pagenation .wp-pagenavi .nextpostslink,
.pagenation .wp-pagenavi .nextpostslink:hover,
.pagenation .wp-pagenavi .previouspostslink,
.pagenation .wp-pagenavi .previouspostslink:hover{
	background:none;
	border: none;
}

.pagenation .wp-pagenavi .nextpostslink{
	background:url(../images/pagenation-arrow-next.svg) no-repeat center center ;
	background-size:7px 12px;
	margin-right:0;
	padding: 0;
}

.pagenation .wp-pagenavi .nextpostslink:hover{
	background:url(../images/pagenation-arrow-next.svg) no-repeat center center ;
	background-size:7px 12px;
}

.pagenation .wp-pagenavi .previouspostslink{
	background:url(../images/pagenation-arrow-prev.svg) no-repeat center center ;
	background-size:7px 12px;
	margin-left:0;
	padding: 0;
}

.pagenation .wp-pagenavi .previouspostslink:hover{
	background:url(../images/pagenation-arrow-prev.svg) no-repeat center center ;
	background-size:7px 12px;
}


@media only screen and (max-width:860px){
	.pagenation{
		margin-top: 30px;
	}
	.pagenation .wp-pagenavi {
		white-space: nowrap;
		position: relative;
	}
	.pagenation .wp-pagenavi .sfwppa-link-next{
		width:25px;
	}
	.pagenation .wp-pagenavi .previouspostslink{
		width:25px;
	}
}
