@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;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: #313131;
  line-height: 1.8;
}
.mincho {
	font-family: 'Noto Serif JP', serif;
}

a {
  text-decoration: none;
  color: #313131;
}
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;
}

/* テンプレートによって追加・変更 */
.contents {
	width: 100%;
	box-sizing: border-box;
}
.section-content {
	margin: 5rem 0;
}

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

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

/*------------------------------------------
  Base Columns
------------------------------------------*/
/* テンプレートによって追加・変更 */
.layout-type01 {
  max-width: 1820px;
  width: 95%;
  margin: auto;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
}
.column-type01 {
  align-items: center;
  justify-content: space-between;
}
.column-type02 {
  justify-content: space-between;
}
.column-type03 {
  align-items: stretch;
  justify-content: space-between;
}
.column-type04 {
  align-items: flex-end;
  justify-content: space-between;
}
.col {
	box-sizing: border-box;
}
.col-img {
	text-align: center;
}
.col-two {
	width: 48%;
}
.col-three {
	width: 30%;
}

@media only screen and (max-width: 600px) {
	.layout-type01 {
    padding: 0 10px;
  }
  .col {
	  width: 100%;
  }
}

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

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
	position: relative;
	width: 100%;
	height: 100vh;
	background: url(../images/main_visual.jpg) no-repeat;
	background-position: center 0;
}
.cmn-header .main-catch {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%);
	text-align: center;
}
.cmn-header .main-catch .logo {
	width: 50%;
	margin: auto;
}
.cmn-header .main-catch .text {
	font-size: 65px;
	color: #fff;
	margin-top: 3rem;
}
.cmn-header .scroll {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.cmn-header .scroll .text {
	color: #fff;
	text-align: center;
	font-size: 18px;
}
.cmn-header .scroll .bar {
	width: 1px;
	height: 80px;
	background: #fff;
	text-align: center;
	margin: 1rem auto 0;
}

@media only screen and (max-width: 1024px) {
	.cmn-header {
		background-position: 30% 0;
		background-size: cover;
	}
	.cmn-header .main-catch .text {
		font-size: 35px;
	}
}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
	width: 100%;
	box-sizing: border-box;
}
.cmn-footer .copy {
	background: #f5f4ef;
	text-align: center;
	font-size: 12px;
	padding: .5rem 0;
}

/*------------------------------------------
  Contents
------------------------------------------*/
.contents .section-content .flexbox {
	border: 4px solid #000000;
	box-sizing: border-box;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.16);
}
.contents .section-content .col {
	width: 49%;
}
.contents .section-content .col-img .sp {
	display: none;
}
.contents .section-content .col-text {
	text-align: center;
}
.contents .section-content .col-text > img {
	width: 55%;
}
.contents .section-content .name {
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	background: #000;
	width: 245px;
	padding: 1.5rem 0 2rem;
	line-height: 1;
	margin: 3rem auto 2rem;
}
.contents .section-content .text {
	font-size: 18px;
	line-height: 1.5;
}
.contents .section-content .btn a {
	display: block;
	width: 57%;
	border-radius: 45px;
	background: #058754;
	color: #fff;
	line-height: 1;
	padding: 2.5rem 1rem;
	box-sizing: border-box;
	margin: auto;
	font-size: 24px;
}
.contents .section-content .btn img {
	transition: .5s;
	display: inline-block;
	margin-left: 5rem;
}
.contents .section-content .btn a:hover img {
	margin-left: 7rem;
}
.contents .section-content02 .btn a {
	background: #D53A17;
}

@media only screen and (max-width: 1400px) {
	.contents .section-content .name {
		font-size: 28px;
		padding: 1.5rem;
		margin: 1.5rem auto 2rem;
	}
	.contents .section-content .btn a {
		font-size: 18px;
		padding: 1.5rem 1rem;
	}
}
@media only screen and (max-width: 1024px) {
	.contents .section-content .flexbox {
		padding-bottom: 5rem;
	}
	.contents .section-content .col-img {
		width: 100%;
		order: 1;
	}
	.contents .section-content .col-text {
		width: 95%;
		order: 2;
		margin: auto;
	}
	.contents .section-content .col-img .sp {
	  display: block;
	  width: 100%;
	  margin-bottom: 3rem;
	}
	.contents .section-content .col-img .pc {
	  display: none;
	}
	.contents .section-content .col-text > img {
		width: 70%;
	}
	.contents .section-content .name {
		font-size: 20px;
		width: 100px;
		margin: 2rem auto 3rem;
	}
}
@media only screen and (max-width: 600px) {
	.contents .section-content .text {
		font-size: 14px;
	}
	.contents .section-content .btn a {
		width: 300px;
		font-size: 16px;
	}
}