@charset "UTF-8";
/* CSS Document */

/* ===================================================
base
==================================================== */
* {
    box-sizing: border-box;
}

.ggmap {
    width: 50%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    }

    .ggmap iframe,
    .ggmap object,
    .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

html,
body {
    width: 100%;
    height: 100%;
}

html{
	font-size: 62.5%;/* 16px*62.5%=10px */
}

body {
    min-width: 1280px;
    font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: normal;
    position: relative;
    color: #333;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'palt';
}

a {
    color: #333;
}

.wrapper{
    margin-left: auto;
    margin-right: auto;
    padding-left: 100px;
    padding-right: 100px;}

.wrapper_top{
    margin-left: auto;
    margin-right: auto;
    padding-top: 140px;
    padding-left: 100px;
    padding-right: 100px;}

.sp-none{
    display: block;
}

img{
    z-index: 1000;
    width: 100%;
    height: auto;
}

/* ========= ローディング画面のためのCSS =============== */
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #1B8573;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 50%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
    height: 2px;
}


/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
	display:block;
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 50%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: translateX(-300%) skewX(-45deg);
    background-color: #1B8573;/*伸びる背景色の設定*/
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:translateX(-300%) skewX(-45deg);
	}
	100% {
		transform-origin:left;
		transform:translateX(500%) skewX(-45deg);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
} 

/* ===========================================
header
=========================================== */
.c-logo__left {
    width: 160px;
    padding: 0 21px;
}

.l-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.l-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    padding-bottom: 1.5rem; }

  @media (min-width: 630px) {/* PCのみ */
.l-header__wrapper {
    justify-content: initial;
} 
    }
  @media (min-width: 630px) {/* PCのみ */
    .l-g__header__list {
    margin-left: auto;
    padding: 0 80px;
} 
    }

    .nav__wrapper li{
    font-size: 1.4rem;
    padding: 0;
    color: #fff;
  }
  @media (min-width: 630px) {/* PCのみ */
    .nav__wrapper {
    display: flex; 
    } 
  }
  
  .nav__item a {
    display: block;
    padding: 1rem;
    color: #333;
    font-weight: bold;}
  
  .nav__toggle {
    display: none;
    }

  .l-header__end{
    width: 60px;
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 5000;
  }
body {
    margin: 0;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.msg {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    background-color: #FFFAEB;
}

.features {
    font-family: "Lato", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
}
.features li {
    width: 100%;
    text-align: center;
    padding: 0.25em;
}

.drawer-list {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 25%;
    transform: translate(100vw, 0);
    /* ie workaround */
    -ms-transform: translatex(-100vw);
    box-sizing: border-box;
    pointer-events: none;
    padding-top: 40px;
    transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
    border-bottom-left-radius: 100vw;
    background-color: #66BD8E;
}
.drawer-list ul {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
}
.drawer-list li {
    list-style: none;
    text-transform: uppercase;
    pointer-events: auto;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translatex(100vw);
    /* ie workaround */
    -ms-transform: translatex(-100vw);
}
.drawer-list li:last-child {
    margin-bottom: 2em;
}
.drawer-list li a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    display: block;
    padding: 2rem;
    font-size: calc(24px - .5vw);
}
@media (min-width: 768px) {
    .drawer-list li a {
        padding: 2rem;
    }
}

.drawer-list li a:hover {
    cursor: pointer;
    color: #F29801;
    width: 30%;
    justify-content: center;
    margin: 0 auto;
}

input.hamburger {
    display: none;
}
input.hamburger:checked ~ .drawer-list {
    transform: translatex(0);
    border-bottom-left-radius: 0;
}
input.hamburger:checked ~ .drawer-list li {
    transform: translatex(0);
}
input.hamburger:checked ~ .drawer-list li:nth-child(1) {
    transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(2) {
    transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(3) {
    transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(4) {
    transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(5) {
    transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(6) {
    transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(7) {
    transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(8) {
    transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(9) {
    transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(10) {
    transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(11) {
    transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(12) {
    transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(13) {
    transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(14) {
    transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(15) {
    transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(16) {
    transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(17) {
    transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(18) {
    transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(19) {
    transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(20) {
    transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(21) {
    transition: transform 1s 1.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(22) {
    transition: transform 1s 1.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(23) {
    transition: transform 1s 1.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(24) {
    transition: transform 1s 1.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(25) {
    transition: transform 1s 2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(26) {
    transition: transform 1s 2.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(27) {
    transition: transform 1s 2.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(28) {
    transition: transform 1s 2.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(29) {
    transition: transform 1s 2.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(30) {
    transition: transform 1s 2.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(31) {
    transition: transform 1s 2.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(32) {
    transition: transform 1s 2.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(33) {
    transition: transform 1s 2.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(34) {
    transition: transform 1s 2.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(35) {
    transition: transform 1s 2.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(36) {
    transition: transform 1s 2.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(37) {
    transition: transform 1s 2.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(38) {
    transition: transform 1s 3.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(39) {
    transition: transform 1s 3.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(40) {
    transition: transform 1s 3.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(41) {
    transition: transform 1s 3.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(42) {
    transition: transform 1s 3.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(43) {
    transition: transform 1s 3.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(44) {
    transition: transform 1s 3.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(45) {
    transition: transform 1s 3.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(46) {
    transition: transform 1s 3.68s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(47) {
    transition: transform 1s 3.76s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(48) {
    transition: transform 1s 3.84s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(49) {
    transition: transform 1s 3.92s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li:nth-child(50) {
    transition: transform 1s 4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
input.hamburger:checked ~ .drawer-list li a {
    padding-right: 15px;
}
input.hamburger:checked ~ label > i {
    background-color: transparent;
    transform: rotate(90deg);
}
input.hamburger:checked ~ label > i:before {
    transform: translate(-50%, -50%) rotate(315deg);
}
input.hamburger:checked ~ label > i:after {
    transform: translate(-50%, -50%) rotate(-315deg);
}
input.hamburger:checked ~ label close {
    margin: 10px auto;
    color: #FEFEFE;
    width: 100%;
}
input.hamburger:checked ~ label open {
    color: rgba(0, 0, 0, 0);
    width: 0;
}

label.hamburger {
    z-index: 9999;
    position: relative;
    display: block;
    height: 50px;
    width: 50px;
}
label.hamburger:hover {
    cursor: pointer;
}
label.hamburger text close,
label.hamburger text open {
    text-transform: uppercase;
    font-size: 0.8em;
    text-align: center;
    position: absolute;
    transform: translateY(50px);
    text-align: center;
    overflow: hidden;
    transition: width 0.25s 0.35s, color 0.45s 0.35s;
}
label.hamburger text close {
    color: rgba(0, 0, 0, 0);
    right: 0;
    width: 0;
}
label.hamburger text open {
    margin: 10px auto;
    color: #FEFEFE;
    width: 100%;
}
label.hamburger > i {
    position: absolute;
    margin: 0 10px;
    width: 30px;
    height: 2px;
    top: 50%;
    background-color: #FEFEFE;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
}

label.hamburger > i:before, label.hamburger > i:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: #FEFEFE;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}
label.hamburger > i:before {
    transform: translate(-50%, -14px);
}
label.hamburger > i:after {
    transform: translate(-50%, 14px);
}

label.hamburger {
    position: fixed;
    top: 5px;
    right: 5px;
    background-color: #1B8573;
}

.main-nav__logo{
    position: absolute;
    width: 160px;
    top: 16px;
    left: 21px;
}

.main-nav__bg{
    position: absolute;
    bottom: 4vh;
    left: 0;
}

/*-------------------------------------
*btn
--------------------------------------*/
.btn{   
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    overflow: hidden;
    position: relative;
    z-index: 10;
	display: block;
	box-sizing: border-box;
    background-color: #F39800;
	border: 1px solid #F39800;
    border-radius: 2px;
	width: 150px;
	height: 50px;
	font-size: 1.3rem;
    letter-spacing: 0.11em;
	padding: 13px 0 0;
	text-align: center;
	font-family: 'Noto Sans', 'Noto Sans CJK JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    line-height: 22px;
    color: #fff;
    margin-bottom: 80px;    
}
.btn:before{
    content: "";
    position: absolute;
    display: block;
    background-color: #333/*rgba(57,104,50,0.12)*/;
    width: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: .3s ease 0s;
    transition: .3s ease 0s;
    z-index: -1;
}
.btn:hover{
    color: #fff;
    text-decoration: none;
    border: 1px solid #333;
}
.btn:hover:before{
    width: 100%;
}

.button-area {
    width: 150px;
    margin: 80px auto;
}

.button-area p {
    width: 150px;
}

.btn-big{
    width: 350px;
    margin: 20px 0;
    font-weight: bold;
    font-size: 2rem;
}

/* ===========================================
relux.js
=========================================== */
.main{
    position: relative;
}

.reluxbg__01{
    position: absolute;
    right: 10%;
    top: 10%;
    z-index: 1000;
    transform: rotate( -20deg );
    width: 97px;
    height: 71px;
}

.reluxbg__02{
    position: absolute;
    left: 10%;
    top: 20%;
    z-index: 1000;
    transform: rotate( -40deg );
    width: 104px;
    height: 103px;
}

.reluxbg__03{
    position: absolute;
    right: 25%;
    top: 25%;
    z-index: 1000;
    transform: rotate( 20deg );
    width: 118px;
    height: 109px;
}

.reluxbg__04{
    position: absolute;
    left: 20%;
    top: 60%;
    z-index: 1000;
    transform: rotate( -40deg );
    width: 104px;
    height: 103px;
}

.reluxbg__05{
    position: absolute;
    right: 10%;
    top: 50%;
    z-index: 1000;
    transform: rotate( -20deg );
    width: 97px;
    height: 71px;
}

.reluxbg__06{
    position: absolute;
    left: 10%;
    bottom: 15%;
    z-index: 1000;
    transform: rotate( 40deg );
    width: 170px;
    height: 164px;
}


/*-------------------------------------
*BG(ダンボール)
--------------------------------------*/

@keyframes cube {
    from {
        transform: scale(0) rotate(0deg) translate(-50%, -50%);
        opacity: 1;
    }
    to {
        transform: scale(20) rotate(960deg) translate(-50%, -50%);
        opacity: 0;
    }
}

.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: #ebfaf0;
    overflow: hidden;
    z-index: -1;
}
.background li {
    position: absolute;
    top: 80vh;
    left: 45vw;
    width: 10px;
    height: 10px;
    border: solid 1px #d3e1d8;
    color: transparent;
    transform-origin: top left;
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    animation: cube 13s ease-in forwards infinite;
}
undefined
.background li:nth-child(0) {
    animation-delay: 0s;
    left: 73vw;
    top: 9vh;
}

.background li:nth-child(1) {
    animation-delay: 2s;
    left: 30vw;
    top: 18vh;
}

.background li:nth-child(2) {
    animation-delay: 4s;
    left: 82vw;
    top: 36vh;
}

.background li:nth-child(3) {
    animation-delay: 6s;
    left: 50vw;
    top: 56vh;
    border-color: #ffffff;
}

.background li:nth-child(4) {
    animation-delay: 8s;
    left: 65vw;
    top: 63vh;
}

.background li:nth-child(5) {
    animation-delay: 10s;
    left: 1vw;
    top: 93vh;
}

.background li:nth-child(6) {
    animation-delay: 12s;
    left: 16vw;
    top: 20vh;
    border-color: #ffffff;
}

.background li:nth-child(7) {
    animation-delay: 14s;
    left: 45vw;
    top: 44vh;
    border-color: #ffffff;
}

.background li:nth-child(8) {
    animation-delay: 16s;
    left: 21vw;
    top: 70vh;
}

.background li:nth-child(9) {
    animation-delay: 18s;
    left: 99vw;
    top: 81vh;
    border-color: #ffffff;
}

/*-------------------------------------
*fontawesome
--------------------------------------*/
.fa-map-marker-alt{
    padding-right: 10px;
}

.fa-envelope{   
padding-right: 10px;
}
/*-------------------------------------
*section(共通パーツ)
--------------------------------------*/
.container{
    width: 1280px;
    align-items: center;
    padding-top: 80px;
    margin: 0 auto;
}

.item {
    width: 1280px;
    display: flex;
    justify-content: space-around;
    padding-top: 80px;
    margin: 0 auto;
    align-items: center;
}

.item_left{
    width: 75%;
    margin: 0 auto;
    margin-top: 80px;
}

.item_left02{
    width: 90%;
    margin: 0 auto; 
}

.item_left03{
    width: 80%;
    margin: 0 auto;
    margin-top: 80px;
}


.item:nth-child(2n+1) { flex-direction: row; }         /* 奇数番目は左から右へ並べる */
.item:nth-child(2n  ) { flex-direction: row-reverse; } /* 偶数番目は右から左へ並べる */

.item-img {
    padding: 0;
}

.item-body {
    padding: 0 160px 0 0;
}

.mission__title{
    position: relative; 
    margin: 0 0 30px;
    font-size: 3.6rem;
    font-weight: bold;
    color: #009143;
    font-family: 'Montserrat'; 
}


.item-title {
    margin: 0 0 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.item-body p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 2;
}

.section__title{
    position: relative; 
    margin: 0 0 30px;
    font-size: 3.6rem;
    font-weight: bold;
    color: #009143;
    font-family: 'Montserrat'; 
}

.section__title::after{
    content: "";
    width: 1px;
    height: 20px;
    background: #333;
    position: absolute;
    left: 50%;
    bottom: -25px;
}

.section__title_top::after{
    content: "";
    width: 1px;
    height: 20px;
    background: #333;
    position: absolute;
    left: 50%;
    bottom: -25px;
}

.section__title_top{
    position: relative; 
    margin: 0 0 30px;
}

.section__title-h2{
    font-size: 3.6rem;
    font-weight: bold;
    color: #009143;
    font-family: 'Montserrat';
    margin-bottom: 5px;   
}

.section_header{
    text-align: center;
}

.section__header-txt{
    line-height: 2;
}

.section__header-txt br{
    display: block;
}

.section_subtitle{
    color: #009143;
    font-weight: bold;
    padding-bottom: 10px;
}

.bdr01{
    text-align: center;
    display: inline-block;
    padding: 40px 60px 80px 20px;
    margin: 60px;
    border: solid 2px #009143;
    position: relative;
    line-height: 2;
    text-align: left;
    font-size: 1.6rem;
}
.bdr01:after{
    content: "";
    border: solid 2px green;
    position: absolute;
    top: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
}

.bdr01 p{
    width: 260px;
}

.bdr02{
    text-align: center;
    display: inline-block;
    padding: 70px 60px 72px 20px;
    margin: 10px 5px;
    border: solid 2px #009143;
    position: relative;
    line-height: 2;
    text-align: left;
    font-size: 1.6rem;
}
.bdr02:after{
    content: "";
    border: solid 2px green;
    position: absolute;
    top: -32px;
    left: -18px;
    width: 100%;
    height: 100%;
}

.bdr02 p{
    width: 260px;
}

.heading {
	font-size: 2.6rem;
    color: #009143;
    font-weight: bold;
    padding-bottom: 10px;
}

.heading::after {
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background-color: #333;
    margin: 20px 0;
}

.content_text{
    font-weight: bold;
    font-size: 2rem;
    line-height: 2;
}

.pd20-left{
    padding-left: 20px;
}

.pd60-bottom{
    padding-bottom: 60px;
}

nav.cp_navi *, nav.cp_navi *:after, nav.cp_navi *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
nav.cp_navi a {
	text-decoration: none;
}
nav.cp_navi {
	margin: 2em 0;
	text-align: center;
}
.cp_navi .cp_pagination {
	display: inline-block;
	margin-top: 2em;
	padding: 0 0.5em;
	background-color: #8BC34A;
}
.cp_navi .cp_pagenum {
	font-size: 1em;
	line-height: 2.5em;
	display: block;
	float: left;
	padding: 0 25px;
	transition: 400ms ease;
	letter-spacing: 0.1em;
	color: #ffffff;
}
.cp_navi .cp_pagenum:hover,
.cp_navi .cp_pagenum.current {
	font-weight: bold;
	color: #ffffff;
	background-color: #C5E1A5;
}
.cp_navi .cp_pagenum.prev:hover,
.cp_navi .cp_pagenum.next:hover {
	color: #C5E1A5;
	background-color: transparent;
}
@media only screen and (max-width: 960px) {
	.cp_navi .cp_pagination {
		margin-top: 50px;
		padding: 0 10px;
	}
	.cp_navi .cp_pagenum {
	font-size: 0.8em;
	line-height: 2.5em;
	padding: 0 15px;
	}
	.cp_navi .cp_pagenum.prev,
	.cp_navi .cp_pagenum.next {
		padding: 0 10px;
	}
}
@media only screen and (min-width: 120px) and (max-width: 767px) {
	.cp_navi .cp_pagenum {
	display: none;
	padding: 0 14px;
	}
	.cp_navi .cp_pagenum:nth-of-type(2) {
	position: relative;
	padding-right: 50px;
	}
	.cp_navi .cp_pagenum:nth-of-type(2)::after {
	font-size: 1.2em;
	position: absolute;
	top: 0;
	left: 45px;
	content: '...';
	}
	.cp_navi .cp_pagenum:nth-child(-n+3),
	.cp_navi .cp_pagenum:nth-last-child(-n+3) {
		display: block;
	}
	.cp_navi .cp_pagenum:nth-last-child(-n+4) {
		padding-right: 14px;
	}
	.cp_navi .cp_pagenum:nth-last-child(-n+4)::after {
		content: none;
	}
	.cp_navi .cp_pagenum.prev,
	.cp_navi .cp_pagenum.next {
		padding: 0 5px;
	}
}

/*-------------------------------------
*footer
--------------------------------------*/
footer{
    width: 100%;
}

.footer_menu{
    width: 100%;
    background-color: #1B8573;
    padding: 30px 0;
    color: #fff;
}

.footer_inner{
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;

}

.footer_list{
    border-left: 1px solid #fff;
    width: 30%;
}

.footer_list:first-of-type{
    border-left: none;
}

.footer_list:last-of-type{
    padding-left: 20px;
    padding-top: 20px;
}

.footer_nav{
    display: flex;
    justify-content: center;
}

.footer_nav-list{
    padding: 0 0 0 50px;
}

.footer_nav-list li{
    padding: 20px 0;
}

.footer_list a{
    color: #fff;
}

.footer_logo{
    font-size: 3rem;
    font-weight: bold;
    padding: 30px 0;
}

.footer_txt{
    padding: 20px 0;
}

.footer_txt:last-of-type{
    font-weight: bold;
}

.footer_contact_txt{
    display: flex;
    justify-content: space-between;
}

.footer_tel{
    font-size: 5.4rem;
    font-weight: bold;
    padding: 20px 0;
}

/* ===========================================
	パンくずリスト
=========================================== */
.cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_breadcrumb {
	margin: 1em auto;
	padding: 1em 2em;
	color: #fff;
	border-radius: 0.5em;
}
.cp_breadcrumb a {
	text-decoration: none;
	color: #333333;
}
.cp_breadcrumb .breadcrumbs {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.cp_breadcrumb li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	color:  #333333;
}
.cp_breadcrumb li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.cp_breadcrumb li:last-child {
	margin-right: 0;
	padding-right: 0;
	color: #ffffff;
}
.cp_breadcrumb li:last-child::before {
	content: normal;
}

/* ===========================================
	copyright
=========================================== */
.copyright{
    display: block;
    font-size: 1.2rem;
    letter-spacing: .1em;
    text-align: center;    
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}
/* ===========================================
	tel
=========================================== */
@media(min-width: 768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
    }
