@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.5;
}
.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;
}

/* テンプレートによって追加・変更 */
.content {
	width: 100%;
	background: #ccc;
	position: relative;
	padding: 0;
}

.content .inner {
	max-width: 1200px;
	width: 95%;
	margin: auto;
	position: relative;
	z-index: 2;
}

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

@media only screen and (max-width: 600px) {
	.content {
		padding: 5rem 0;
	}
	.content:before {
		width: 100px;
		height: 100px;
		top: -70px;
		left: -15px;
	}
	.content:after {
		width: 120px;
		height: 120px;
		top: -80px;
		left: -25px;
	}
	.disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  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: #7C7A73;
}
.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  transform: none;
}
.pager .pagination li a:hover {
  color: #7C7A73;
  background: #CDDD38;
}
.pager .pagination li .active {
  color: #7C7A73;
  background: #CDDD38;
}
@media only screen and (max-width: 600px) {
	.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;
	}
}

/*------------------------------------------
  Parts
------------------------------------------*/
/* Title Type01 */
.m-title01 {
	font-size: 34px;
}
@media only screen and (max-width: 1024px) {
	.m-title01 {
		font-size: 30px;
	}
}
@media only screen and (max-width: 600px) {
	.m-title01 {
		font-size: 24px;
	}
}

/* Button Type01 */
.m-button01 {
	width: 230px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}
.m-button01:after {
	content: "";
	width: 198px;
	height: 11px;
	display: block;
	background: url(../images/common/icon_arrow_large.svg) no-repeat center / cover;
	position: absolute;
	left: -30px;
	bottom: 20px;
	transition: .3s;
}
.m-button01:hover:after {
	left: 0;
}
.m-button01 .txt {
	font-size: 18px;
	padding-top: 10px;
	padding-right: 15px;
}
.m-button01 .icon {
	width: 64px;
	height: 64px;
	display: block;
	border: 1px solid #000;
	border-radius: 50%;
}
@media only screen and (max-width: 600px) {
	.m-button01 {
		width: 150px;
	}
	.m-button01:after {
		width: 135px;
		height: 8px;
		left: -10px;
		bottom: 10px;
	}
	.m-button01 .txt {
		font-size: 16px;
		padding-top: 0;
	}
	.m-button01 .icon {
		width: 35px;
		height: 35px;
	}
}

/* List Type01（お知らせ等） */
.m-list01 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	max-width: 990px;
	width: 100%;
	margin: auto;
	gap: 0 4.544%;
}
.m-list01 .post {
	width: 30.304%;
}

.m-list01 .post img{
	border: 1px solid #000;
}
.m-list01 .label {
	padding: 2rem 1.5rem;
	font-size: 14px;
}
.m-list01 .label .title {
	display: block;
	font-weight: 500;
	margin-top: 1rem;
}
@media only screen and (max-width: 600px) {
	.m-list01 {
		gap: 2rem 0;
	}
	.m-list01 .post {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.m-list01 .post img {
		width: 50%;
	}
	.m-list01 .label {
		width: 50%;
		padding: .5rem 1rem;
	}
	.m-list01 .label .title {
		margin-top: .5rem;
	}

}

/* List Type02（会社概要等） */
.m-list02 {
	max-width: 910px;
	width: 100%;
	margin: auto;
	border-top: 1px solid #D9D9D9;
}
.m-list02 dl {
	border-bottom: 1px solid #D9D9D9;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.m-list02 dt {
	width: 300px;
	text-align: center;
	padding: 2rem 0;
}
.m-list02 dd {
	width: calc(100% - 300px);
	padding: 2rem 0;
}
@media only screen and (max-width: 600px) {
	.m-list02 dt {
		width: 120px;
		text-align: left;
		padding: 1.5rem 0;
	}
	.m-list02 dd {
		width: calc(100% - 120px);
		padding: 1.5rem 0;
	}
}

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

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
	position: relative;
	background-color: rgba(255, 255, 255, 0);
	width: 100%;
	height: 65px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	padding: 6.5px 0;	
	transition: .3s;
}
.cmn-header.active {
	height: 100vh;
	background-color: #f6f6f6;
}
.cmn-header .inner {
	max-width: 1400px;
	width: 70%;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.cmn-header .menu-trigger {
	width: 55px;
	height: 35px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.cmn-header .menu-trigger:hover {
	cursor: pointer;
}
.cmn-header .menu-trigger span {
	width: 100%;
	height: 1px;
	background: #fff;
	display: block;
	transition: .3s;
}
.cmn-header .menu-trigger.active span:nth-of-type(1) {
	transform: translateY(16.5px) rotate(145deg);
}
.cmn-header .menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.cmn-header .menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-16.5px) rotate(-145deg);
}

.cmn-header .menu {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: auto;
	width: 90%;
	height: 0;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	padding-top: 50px;
}
.cmn-header.active .menu {
	height: auto;
	opacity: 1;
	visibility: visible;
	background-color: #f6f6f6;
}

.cmn-header .menu-trigger.active span{
	background: #000;
} 
.cmn-header .menu .flex {
	max-width: 820px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 70px 0;
	margin: auto;
}
.cmn-header .menu ul {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 50px 90px;
}
.cmn-header .menu ul li {
	width: 44.513%;
	border-bottom: 1px solid #D9D9D9;
	position: relative;
	padding: 0 1.5rem 1.5rem;
}
.cmn-header .menu ul a {
	font-size: 30px;
	font-weight: 300;
	color: #1B2F62;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.cmn-header .menu ul .icon {
	width: 85px;
	overflow: hidden;
	position: relative;
	display: inline-block;
}
.cmn-header .menu ul .icon:before {
	content: "";
	width: 68px;
	height: 6px;
	background: url(../images/common/icon_arrow_small.svg) no-repeat center / cover;
	position: absolute;
	left: 0;
	bottom: 10px;
	transition: .3s;
}
.cmn-header .menu ul .icon span {
	width: 35px;
	height: 35px;
	border: 1px solid #000;
	border-radius: 50%;
	display: block;
	margin-left: auto;
}
.cmn-header .menu ul a:hover .icon:before {
	left: 0;
}
.cmn-header .menu .flex .sub a {
	font-size: 14px;
	color: #1B2F62;
}
@media only screen and (max-height: 600px) {
	.cmn-header .menu ul {
		gap: 15px 0;
	}
	.cmn-header .menu ul a {
		font-size: 24px;
	}
}
@media only screen and (max-width: 1024px) {
	.cmn-header .menu-trigger {
		width: 30px;
		height: 20px;
	}
	.cmn-header .menu-trigger.active span:nth-of-type(1) {
		transform: translateY(9px) rotate(145deg);
	}
	.cmn-header .menu-trigger.active span:nth-of-type(3) {
		transform: translateY(-8px) rotate(-145deg);
	}
	.cmn-header .menu .flex {
		gap: 30px 0;
	}
	.cmn-header .menu ul {
		flex-direction: column;
		gap: 20px 0;
	}
	.cmn-header .menu ul li {
		width: 100%;
	}
}
@media only screen and (max-width: 600px) {
	.cmn-header .menu ul {
		gap: 15px 0;
	}
	.cmn-header .menu ul a {
		font-size: 24px;
	}
}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
	background:#7C7A73;
	padding-bottom: .5rem;
}
.cmn-footer .inner {
	max-width: 1400px;
	width: 95%;
	margin: auto;
}
.cmn-footer .logo {
	text-align: center;
	padding: 3rem 0;
}
.cmn-footer .flex {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px 0;
	margin: auto;
	border-top: 1px solid #fff;
}
.cmn-footer .flex ul {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0 10.892%;
}
.cmn-footer .flex ul li {
	width: 26.072%;
	border-bottom: 1px solid #fff;
	position: relative;
	padding: 2rem 1.5rem 1.5rem;
}
.cmn-footer .flex ul a {
	font-size: 30px;
	font-weight: 300;
	color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.cmn-footer .flex ul .icon {
	width: 85px;
	overflow: hidden;
	position: relative;
	display: inline-block;
}
.cmn-footer .flex ul .icon:before {
	content: "";
	width: 68px;
	height: 6px;
	background: url(../images/common/icon_arrow_small_footer.svg) no-repeat center / cover;
	position: absolute;
	left: 0;
	bottom: 10px;
	transition: .3s;
}
.cmn-footer .flex ul .icon span {
	width: 35px;
	height: 35px;
	border: 1px solid #fff;
	border-radius: 50%;
	display: block;
	margin-left: auto;
}
.cmn-footer .flex ul a:hover .icon:before {
	left: 0;
}
.cmn-footer .flex .sub a {
	font-size: 14px;
	color: #fff;
}
.cmn-footer .flex .copy {
	font-size: 10px;
	font-weight: 300;
	color: #fff;
}
@media only screen and (max-width: 1024px) {
	.cmn-footer .flex ul {
		flex-direction: column;
		gap: 20px 0;
	}
	.cmn-footer .flex ul li {
		width: 100%;
	}
}
@media only screen and (max-width: 600px) {
	.cmn-footer .logo{
		padding: 1rem 0;
	}

	.cmn-footer .flex ul {
		gap: 8px 0;
	}

	.cmn-footer .flex ul li{
		padding: 8px;
	}
	.cmn-footer .flex ul a {
		font-size: 16px;
	}

	.cmn-footer .sub{
		font-size: 12px;
	}
}

/*------------------------------------------
  Background Line
------------------------------------------*/
.bg-line {
	max-width: 1800px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.bg-line .line {
	width: 1px;
	height: 100%;
	background: #fff;
}
@media only screen and (max-width: 600px) {
	.bg-line > .line:nth-of-type(1),
	.bg-line > .line:nth-of-type(2) {
		display: none;
	}
}