@charset "UTF-8";
@import url(//use.fontawesome.com/releases/v5.0.6/css/all.css);
@import url(//fonts.googleapis.com/css?family=Oswald);
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*------------------------------------------
  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 Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
  font-size: 1.4em;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.8;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity .2s ease;
}
a:hover {
  opacity: .7;
  transition: opacity .2s ease;
}
a.link-tel {
  pointer-events: none;
}

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

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

.disp-pc {
  display: block;
}

.disp-tab {
  display: none;
}

.disp-sp {
  display: none;
}

.fa-phone-square {
  transform: rotateY(180deg);
}

.layout-type01 {
  padding: 0 40px;
  max-width: 1000px;
  margin: auto;
}

.flexbox {
  display: -webkit-flex;
  display:    -moz-flex;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: justify;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.column-type01 {
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.col-w20 {
  width: 20.6%;
}

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

@media only screen and (max-width: 480px) {
  a.link-tel {
    pointer-events: auto;
  }
  .disp-pc {
    display: none;
  }
  .disp-sp {
    display: block;
  }
}

/*------------------------------------------
  contents
------------------------------------------*/
.main-section {
	width: 100%;
	height: auto;
	background: url(../images/entrance_bg.png) no-repeat center;
	background-size: cover;
}
.main-section .section-inner {
	padding: 13% 20px 16% 20px;
}
.main-section h1 {
	font-size: 42px;
	font-weight: bold;
	color: #149142;
	text-align: center;
	letter-spacing: 2px;
}
.main-section .read {
	font-size: 18px;
	color: #80B970;
	text-align: center;
}
.main-section .flexbox {
	margin-top: 5rem;
}
.main-section .flexbox p {
	font-size: 16px;
	padding: 0 0.5rem;
	background: #fefde9;
}
.main-section .flexbox .col {
	position: relative;
	display: block;
	overflow: hidden;
	cursor: pointer;
}

.main-section .flexbox .col .door {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
.main-section .flexbox .col .door01 {
	background: url(../images/door01.png) no-repeat;
	background-size: contain;
}
.main-section .flexbox .col .door02 {
	background: url(../images/door02.png) no-repeat;
	background-size: contain;
}
.main-section .flexbox .col .door03 {
	background: url(../images/door03.png) no-repeat;
	background-size: contain;
}
.main-section .flexbox .col .door04 {
	background: url(../images/door04.png) no-repeat;
	background-size: contain;
}
.main-section .flexbox .col a:hover {
	opacity: 1;
}


@media only screen and (max-width: 1450px) {
	.main-section .flexbox {
		width: 90%;
		margin: 3rem auto 0;
	}
	.main-section .flexbox p {
		font-size: 15px;
	}
	.col-w20 {
		width: 22%;
	}
}

@media only screen and (max-width: 800px) {
	.main-section h1 {
		font-size: 28px;
	}
}

@media only screen and (max-width: 480px) {
	.main-section .section-inner {
		padding: 56% 20px 100% 20px
	}
	.main-section h1 {
		font-size: 24px;
	}
	.main-section .flexbox {
		width: 100%;
	}
	.col-w20 {
		width: 48%;
		margin-bottom: 1rem;
	}
	.main-section .flexbox .col .door {
		display: none;
	}
}


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