@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.6em;
  background: #fff;
  color: #000;
  line-height: 1.8;
}
.mincho {
	font-family: 'Noto Serif JP', serif;
}
.oswald {
	font-family: 'Oswald', sans-serif;
}
* {
	box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}
a.blue {
	color: #0000ff;
	text-decoration: underline;
}
a.blue:hover {
	text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* テンプレートによって追加・変更 */
.content {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	margin-top: 0px;
}

.disp-pc {
  display: block;
}
.disp-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
	.content {
		margin-top: 70px;
	}
}
@media only screen and (max-width: 600px) {
	.disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
  .hide-sp {
    display: none;
  }
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

/*------------------------------------------
  Pager
------------------------------------------*/
.pager {
  padding-top: 40px;
}
.pager .pagination {
  text-align: center;
  line-height: 0;
}
.pager .pagination li {
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-align: center;
  position: relative;
  border-radius: 2px;
}
.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
  color: #000;
}
.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  transform: none;
}
.pager .pagination li a:hover {
  color: #fff;
  background: #000;
}
.pager .pagination li .active {
  color: #fff;
  background: #000;
}
@media only screen and (max-width: 600px) {
	.pager .pagination li {
    display: none;
  }
	.pager .pagination .pre,
	.pager .pagination .next {
	  display: inline-block;
	  width: 40%;
	  height: 50px;
	  text-align: center;
	}
	.pager .pagination .pre a,
	.pager .pagination .next a {
	  width: 100%;
	  text-align: center;
	}
	.pager .pagination .pre span:after {
	  content: "　前の10件へ";
	}
	.pager .pagination .next span:before {
	  content: " 次の10件へ　";
	}
}

/*------------------------------------------
  Parts
------------------------------------------*/
/* Button Type01 */
.btn-type01 {
	text-align: right;
	font-size: 22px;
	line-height: 1;
}
.btn-type01 a {
	padding-right: 100px;
	position: relative;
	display: inline-block;
}
.btn-type01 a:after {
	content: "";
	width: 88px;
	height: 14px;
	display: block;
	background: url(../images/common/icon_arrow_large.png) no-repeat center / cover;
	position: absolute;
	right: 0;
	bottom: 0;
}
@media only screen and (max-width: 600px) {
	.btn-type01 {
		font-size: 16px;
	}
	.btn-type01 a {
		padding-right: 70px;
	}
	.btn-type01 a:after {
		width: 60px;
		height: 10px;
	}
}

/* Button Type02 */
.btn-type02 {
	width: 175px;
	height: 40px;
	line-height: 30px;
	display: block;
	text-align: center;
	border: 1px solid #1B2F62;
	margin: auto;
	padding: 3px;
}
.btn-type02 span {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #1B2F62;
	transition: .3s;
}
.btn-type02 span:hover {
	color: #fff;
	background: #1B2F62;
}

/* List Type01（お知らせ） */
.list-type01 {
	max-width: 745px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.list-type01 li {
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: .5rem;
}
.list-type01 a {
	display: block;
	position: relative;
}
.list-type01 a:after {
	content: "";
	width: 47px;
	height: 14px;
	display: block;
	background: url(../images/common/icon_arrow_small.png) no-repeat center / cover;
	position: absolute;
	right: 0;
	bottom: 10px;
}
.list-type01 .post-time {
	display: block;
	font-size: 18px;
}
.list-type01 .post-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	display: block;
	padding-right: 5rem;
}
@media only screen and (max-width: 600px) {
	.list-type01 .post-time {
		font-size: 14px;
	}
	.list-type01 .post-title {
		font-size: 16px;
	}
}

/* List FAQ */
.list-faq {
	max-width: 745px;
	width: 100%;
	margin: auto;
	list-style: none;
	padding: 0;
}
.list-faq li {
	border-bottom: 1px solid #D9D9D9;
	padding: 1.2em 0;
	padding-left: 1.5em;
	position: relative;
}
.list-faq li:first-child {
	border-top: none;
}
.list-faq li::before {
	content: "•";
	position: absolute;
	left: 0;
	font-size: 1.5em;
	line-height: 1.5;
	top: 1.4em;
	transform: translateY(-50%);
	color: #333;
}
.list-faq li a,
.list-faq li > span {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	display: block;
	line-height: 1.5;
}
.list-faq li a:hover {
	opacity: 0.7;
}
@media only screen and (max-width: 600px) {
	.list-faq li a,
	.list-faq li > span {
		font-size: 16px;
	}
	.list-faq li::before {
		top: 1.3em;
	}
}

/* List Type02（会社概要等） */
.list-type02 {
	max-width: 760px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}
.list-type02 dl {
	border-bottom: 1px solid #D9D9D9;
	font-size: 18px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}
.list-type02 dt {
	font-weight: 600;
	width: 120px;
	position: relative;
	padding: .5rem;
}
.list-type02 dt:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #0078E8;
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 2;
}
.list-type02 dd {
	width: calc(100% - 120px);
	padding: .5rem 2rem;
}
@media only screen and (max-width: 600px) {
	.list-type02 {
		gap: 20px 0;
	}
	.list-type02 dl {
		font-size: 16px;
	}
	.list-type02 dt {
		font-size: 14px;
		width: 75px;
	}
	.list-type02 dd {
		width: calc(100% - 75px);
		padding: .5rem 0 .5rem 2rem;
	}
}

/*------------------------------------------
  Form
------------------------------------------*/
.form-block {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-top: 3rem;
}
.form-block .required {
	display: inline-block;
	height: 17px;
	line-height: 15px;
	border-radius: 8px;
	background: #003260;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	padding: 0 10px;
	margin-left: 1rem
}
.form-block dl {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.form-block dt {
	width: 100%;
}
.form-block dd {
	width: 100%;
}
.form-block input[type="text"],
.form-block textarea {
	background: #fff;
	border-radius: 2px;
	width: 100%;
	padding: 8px 10px;
	box-sizing: border-box;
	border: 1px solid #A6A6A6;
}
.form-block .privacy {
	text-align: center;
	margin: 3rem 0;
}
.form-block .submit {
	width: 175px;
	height: 40px;
	line-height: 30px;
	display: block;
	text-align: center;
	border: 1px solid #1B2F62;
	margin: auto;
	padding: 3px;
}
.form-block .submit input {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #1B2F62;
	transition: .3s;
}
.form-block .submit input:hover {
	color: #fff;
	background: #1B2F62;
}
@media only screen and (max-width: 600px) {
}

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
	background: rgba(255, 255, 255, .9);
	width: 100%;
	height: 50px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}
.cmn-header .inner {
	max-width: 1708px;
  width: 90%;
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.cmn-header .gnav {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
}
.cmn-header .gnav a {
	font-size: 18px;
	color: #1B2F62;
  font-weight: bold;
}
.cmn-header .gnav li:nth-child(1) a,
.cmn-header .gnav li:nth-child(2) a,
.cmn-header .gnav li:nth-child(3) a {
	display: block;
	color: #FFF000;
	border-radius: 8px;
	padding: 6px 12px;
	line-height: 1.4;
	transition: .3s;
  min-width: 135px;
  text-align: center;
}
.cmn-header .gnav li:nth-child(1) a {
	background: #E7364A;
}
.cmn-header .gnav li:nth-child(2) a {
	background: #E7364A;
}
.cmn-header .gnav li:nth-child(3) a {
	background: #E7364A;
}
.cmn-header .gnav li:nth-child(4) a {
	color: #E4007F;
}
.cmn-header .gnav li:nth-child(5) a {
	color: #2AA738;
}
.cmn-header .gnav li:nth-child(6) a {
	color: #08A3E9;
}
.cmn-header .gnav li:nth-child(7) a {
	color: #E83D4F;
}
.cmn-header .gnav .last {
	color: #E83D4F;
	display: block;
	transition: .3s;
}
.cmn-header .gnav .last:hover {
	color: #003260;
	background: #fff;
}
.cmn-header .gnav .non-pc {
	display: none;
}

/* Trigger, Modal */
.menu-trigger {
	display: none;
	font-size: 12px;
	color: #0078E8;
	border-top: 1px solid #0078E8;
	border-bottom: 1px solid #0078E8;
}

@media only screen and (max-width: 1600px) {
	.cmn-header .logo {
		width: 300px;
	}
	.cmn-header .logo img {
		width: 100%;
		height: auto;
	}
	.cmn-header .gnav {
		gap: 10px;
	}
	.cmn-header .gnav a {
		font-size: 14px;
	}
	.cmn-header .gnav li:nth-child(1) a,
	.cmn-header .gnav li:nth-child(2) a,
	.cmn-header .gnav li:nth-child(3) a {
		min-width: 105px;
		padding: 5px 10px;
	}
}
@media only screen and (max-width: 1200px) {
	.cmn-header .logo {
		width: 250px;
	}
	.cmn-header .gnav {
		gap: 8px;
	}
	.cmn-header .gnav a {
		font-size: 13px;
	}
	.cmn-header .gnav li:nth-child(1) a,
	.cmn-header .gnav li:nth-child(2) a,
	.cmn-header .gnav li:nth-child(3) a {
		padding: 4px 8px;
    		min-width: auto;
	}
}
@media only screen and (max-width: 1024px) {
	.cmn-header {
		height: 70px;
	}
	.cmn-header .inner {
		width: 95%;
	}
	.cmn-header .logo {
		width: 235px;
		order: 1;
	}
	.cmn-header .gnav {
		order: 3;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		z-index: -99;
		transition: .3s;
		position: fixed;
		background: rgba(255, 255, 255, .95);
		top: 70px;
		left: 0;
		display: none;
		overflow: scroll;
	}
	.cmn-header.menu-open {
		border-bottom: 1px solid #D9D9D9;
	}
	.cmn-header .gnav.active {
		height: calc(100vh - 70px);
		opacity: 1;
		z-index: 1;
		visibility: visible;
		padding-top: 16px;
	}
	.cmn-header .gnav li {
		border-top: 1px solid #D9D9D9;
	}
	.cmn-header .gnav a {
		display: block;
		font-size: 30px;
		line-height: 1;
		padding: 2rem;
		box-sizing: border-box;
		position: relative;
	}
	.cmn-header .gnav a:after {
		content: "";
		width: 74px;
		height: 12px;
		display: block;
		background: url(../images/common/icon_arrow_large.png) no-repeat center / cover;
		position: absolute;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%);
	}
	.cmn-header .gnav li:nth-child(1),
	.cmn-header .gnav li:nth-child(2),
	.cmn-header .gnav li:nth-child(3) {
		display: block;
		border-top: none;
		margin-bottom: 30px;
		margin-left: 16px;
	}
	.cmn-header .gnav li:nth-child(1) a,
	.cmn-header .gnav li:nth-child(2) a,
	.cmn-header .gnav li:nth-child(3) a {
		display: inline-block;
		font-size: 18px;
		padding: 8px 12px;
	}
	.cmn-header .gnav li:nth-child(1) a:after,
	.cmn-header .gnav li:nth-child(2) a:after,
	.cmn-header .gnav li:nth-child(3) a:after {
		content: none;
	}
	.cmn-header .gnav a.last {
		color: #E83D4F;
		background: none;
	}
	.cmn-header .gnav .non-pc {
		display: block;
	}
	.cmn-header .gnav .non-pc a {
		font-size: 16px;
		color: #727272;
		font-weight: 400;
	}
	.cmn-header .gnav .non-pc a:after {
		content: none;
	}
	.cmn-header .gnav .non-sp {
		display: none;
	}
	.menu-trigger {
		display: block;
		order: 2;
	}
}
@media only screen and (max-width: 600px) {
}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
	margin-top: 15rem;
}
.cmn-footer .info {
	background: #fff;
	border-top: 8px solid #3D77CC;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 3rem 0;
}
.cmn-footer .info .inner {
	max-width: 1080px;
	width: 95%;
	margin: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.cmn-footer .info .title {
	font-size: 44px;
	font-weight: 500;
	color: #3D77CC;
	line-height: 1;
}
.cmn-footer .info .text {
	font-size: 18px;
	line-height: 1.5;
	color: #000;
}
.cmn-footer .info .flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;align-items: center;
	gap: 50px;
}
.cmn-footer .info .left {
	line-height: 1;
}
.cmn-footer .info .left span {
	font-size: 30px;
}
.cmn-footer .info .left a {
	font-size: 44px;
	font-weight: bold;
}
.cmn-footer .info .right a {
	width: 320px;
	height: 75px;
	line-height: 75px;
	display: block;
	text-align: center;
	background: #3D77CC;
	color: #fff;
	border: 1px solid #3D77CC;
	font-size: 18px;
	font-weight: bold;
	transition: .3s;
}
.cmn-footer .info .right a:hover {
	background: #fff;
	color: #003260;
}
.cmn-footer .copy {
	text-align: center;
	color: #000;
	font-size: 14px;
	background: #fff;
	padding: 5px 0;
}
@media only screen and (max-width: 1024px) {
	.cmn-footer .info .flex {
		flex-direction: column;
		gap: 30px 0;
	}
}
@media only screen and (max-width: 600px) {
	.cmn-footer .info {
		padding: 3rem 0 5rem;
	}
	.cmn-footer .info .text {
		font-size: 16px;
	}
	.cmn-footer .info .left span {
		font-size: 20px;
	}
	.cmn-footer .info .left a {
		font-size: 34px;
	}
}