@charset "UTF-8";
/* ーーーーーーーーーー　リセット　ーーーーーーーーーー */
*,
::before,
::after{
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}
ul,ol{
  list-style-type: none;
}
html{
  scroll-padding-top: 124px;
  padding-top: 114px;
}
/* ーーーーーーーーーー　共通　ーーーーーーーーーー */
body{
  font-family: 'メイリオ', Meiryo,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  color: #333;
  /* background-image: url(../images/background01.png); */
  background-color: #fff;
  font-size: 16px;
  text-align: justify;
  	/*設置する親要素ページ全体ならbodyなど*/
	position: relative;
	height: 100vh;
	margin: auto;
	padding: 0;
}
h1{
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.1em;
  padding: 50px 0 0 0;
}
h2{
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 10px 0 50px 0;
}
h3{
  text-align: center;
  padding: 10px;
}
p{
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.3em;
  font-size: 12px;
  padding: 10px;
}

/* ーーーーーーーーーー　ヘッダー　ーーーーーーーーーー */
header{
  background-color: #2C332C;
  display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
  width: 100%;
}
.sp { display: none !important; }

header .inner{
  justify-content: space-between;
  align-items: center;
  margin: auto;
  display: flex;
}
header h1{
  padding: 20px 0 20px 50px;
}
header nav ul{
  display: flex;
  padding: 20px 250px 20px 0px
}
header nav li{
  width: 100px;
}
header nav li a{
  display: block;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
}



a#header_contact {
  display: block;
    background-color: #567756;
    line-height: 3;
    padding: 33px 3em;
    position: absolute;
    right: 0px;
    top: 0px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 200% auto;
    background-image: linear-gradient(
      to right,
      #6fa24a 0%,
      #6fa24a 50%,
      #567756 50%,
      #567756 100%
      );
      transition: background-position ease 0.4s;
      text-align: center;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
}
a#header_contact:hover {
  background-position: 0 0;
}


.contents {
	/*サンプルはfixedの確認のためにheight指定しています。*/
	height: 2000px;
}
.cp_snslink03 {
	position: fixed;
	top: 50%;
	right: 0;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0 0 0 5px;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.cp_snslink03 .cp_link_list {
	width: 150px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.cp_snslink03 .cp_link_list .cp_link {
	position: relative;
	right: -120px;
	margin: 10px 0;
	padding: 5px;
	cursor: pointer;
	-webkit-transition: right 0.6s ease-in-out;
	        transition: right 0.6s ease-in-out;
	text-align: left;
	background: #567756;
	border-right: none;
	-webkit-box-shadow: 0px 0px 0px 3px #ffffff;
	box-shadow: 0px 0px 0px 3px #2C332C;
}
.cp_snslink03 .cp_link_list .cp_link i {
	margin-right: 10px;
}
.cp_snslink03 .cp_link_list .cp_link:hover {
	right: 0;
	background: #567756;
	-webkit-box-shadow: 0px 0px 0px 3px #ffffff;
	box-shadow: 0px 0px 0px 3px #2C332C;
}
.cp_snslink03 .cp_link_list .cp_link a {
	text-decoration: none;
	color: #ffffff;
}
.cp_snslink03 .cp_link_list .cp_link:hover a {
	color: #2C332C;
}

/* ボタンのスタイル */
.buttonUnderline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  overflow: hidden;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  overflow-wrap: anywhere;
  background: transparent;
}

.buttonUnderline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right top;
}

@media (any-hover: hover) {
  .buttonUnderline::after {
    transition: transform 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .buttonUnderline:hover::after {
    transition: transform 0.4s cubic-bezier(0.9, 0, 0, 1);
    transform: scaleX(1);
    transform-origin: left top;
  }
}

/* ーーーーーーーーーー　top　ーーーーーーーーーー */
.top ul li{
  margin: auto;
  justify-content: center;
  text-align: center;
  max-width: 100%;
}
.top{
  width: 100%;
}


/* ーーーーーーーーーー　ニュース　ーーーーーーーーーー */
.news{
  margin: auto;
}
.news ul li{
  width: 100%;
}
.news a {
    text-decoration: none;
    color: #ffffff;
}

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


.inner {
  width: 80%;
  margin: 0 auto;
  padding: 0px 0 50px;
}
.news ul {
  margin-bottom: 30px;
}

.sub_ttl {
  font-size: 30px;
  text-align: center;
}
.inner a{
  margin: auto;
}
/* ここからがニュース記事のCSS */

.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #2c332c;
  padding: 20px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #2c332c;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #333;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  width: 100%;
  text-align: left;
  padding: 0 0 0 50px;
}
.news-list .item a:hover .title{
  color: #567756;
}


/* 装飾 */
 
*{
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
.news_in ol{
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 20px;
}
.news_in ol li{
  margin: 20px;
}
.news_in ol li p{
  color: #2C332C;
}
.news_in .pc{
  max-width: 250px;
}
.example3 a{
  color: #2C332C;
}




/* ---------- pagenation ---------- */
.example3 li {
  display: inline-block;
  height:40px;line-height:40px;
  width:40px;text-align:center;
  border:1px #ccc solid;color:#000053;
  border-radius: 5px / 5px;}
  .example3 .pre {background-color:#ccc;color:#333;}
  .example3 .this {background-color:#777;color:#fff;}
  .example3 li a{display:block;text-decoration: none;}
  .example3 li a:hover {color: #fff;text-decoration: none;
  background-color: #2C332C;}


/* ーーーーーーーーーー　about　ーーーーーーーーーー */

.about{
  padding: 0 0 100px 0;
  justify-content: center;
}
.about h3{
  font-size: 30px;
  letter-spacing: 0.5em;
  line-height: 70px;
}
.wrap {
  display:flex;
  margin:0 auto 1em;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
}
.content {
  margin: 0.5em auto;
  padding: 1em;
  width: 45%;
  flex-shrink: 0;
}
.naiyou{
  text-align: center;
  padding-left: 50px;
}
.naiyou  span p{
  text-align: left;
  line-height: 2.5em;
  letter-spacing: 0.3em;
  display: inline-block;
}
.marker {
  background:linear-gradient(transparent 50%, rgba(255, 220, 123) 50%);
  display: inline;

  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.5s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

/* ボタンのスタイル */
.animoButtonOverlay{display:inline-block;padding:10px 25px;position:relative;color:#fff;cursor:pointer}.animoButtonOverlay::before{content:'';position:absolute;height:100%;width:100%;top:5px;right:5px;background-color:#2C332C;z-index:-1;transition:transform .2s ease-in-out}.animoButtonOverlay::after{content:'';position:absolute;top:0;left:0;height:100%;width:100%;border:1px solid #2C332C}.animoButtonOverlay:hover::before{transform:translate(6px,-4px)}

.naka{
  max-width: 600px;
  margin: auto;
  display: flex;
}
.syoukai{
  display: flex;
  max-width: 60%;
  margin: auto;
  padding: 50px 0px 20px 0px;
}
.atama p{
  margin: auto;
  padding: 50px;
}
.sita{
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
  max-width: 80%;
  margin: auto;
}
.sita p{
  text-align: left;
  flex-direction: column;
}
.sita h1{
  margin: auto;
  padding: 30px;
}
.inbox{
  flex-direction: column;
  display: flex;
  margin: auto;
  justify-content: center;
}
.moji{
  margin: auto;
  justify-content: center;
  padding: 50px;
}
.moji h2{
  text-align: center;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 50px 0 30px 0;
}
.omoi h1{
  padding-bottom: 50px;
}
/* ーーーーーーーーーー　voice　ーーーーーーーーーー */
.voice{
  /* background-image: url(../images/voice_backgraund_sp02.png); */
  background-color: #F9F9F9;
  padding: 0 0 50px 0;
  position: relative;
  z-index: -2;
  width: 100%;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:94%;
  margin:0 auto;
}

.slider img {
  width:50vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
  height:auto;
}

.slider .slick-slide {
transform: scale(0.8);/*左右の画像のサイズを80%に*/
transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
transform: scale(1);/*中央の画像のサイズだけ等倍に*/
opacity: 1;/*透過なし*/
}



/*ドットナビゲーションの設定*/

.slick-dots {
  text-align:center;
margin:20px 0 0 0;
}

.slick-dots li {
  display:inline-block;
margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border-radius:50%;
  background:#2C332C;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#c2c2c2;/*ドットボタンの現在地表示の色*/
}

.koe h1{
  text-align: left;
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #fff;
  background: #2c332c;
  border-left: solid 20px #567756;
  max-width: 1000px;
  margin: auto;
}
.bun_1{
  display: flex;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0 50px 0;
}
.bun_2{
  display: flex;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0 50px 0;
}
.bun_3{
  display: flex;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0 50px 0;
}
.bun_4{
  display: flex;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0 0 0;
}

.bun img{
  padding-bottom: 20px;
}
.naka{
  flex-direction: column;
}
.koe .bun .naka p{
  text-align: left;
}
.koe{
  padding: 100px 0 100px 0;
}

/* ---------- pagenation ---------- */
.example3 li {
  display: inline-block;
  height:40px;line-height:40px;
  width:40px;text-align:center;
  border:1px #ccc solid;color:#000053;
  border-radius: 5px / 5px;}
  .example3 .pre {background-color:#ccc;color:#333;}
  .example3 .this {background-color:#777;color:#fff;}
  .example3 li a{display:block;text-decoration: none;}
  .example3 li a:hover {color: #fff;text-decoration: none;
  background-color: #2C332C;
}
.example3{
  padding: 0 0 50px 0;
}


/* ーーーーーーーーーー　worry　ーーーーーーーーーー */
.worry{
  padding: 0 0 50px 0;
  max-width: 1470px;
  width: 100%;
}
.worry .nayami{
  text-align: center;
}
.worry img{
  max-width: 60%;
}


/* ーーーーーーーーーー　COMMITMENT　ーーーーーーーーーー */
.commitment{
  padding: 0 0 50px 0;
}
.commitment .point{
  display: flex;
  justify-content: space-around;
  padding-bottom: 30px;
}

.animoButtonOverlay{position:relative;color:#fff;cursor:pointer}.animoButtonOverlay::before{content:'';position:absolute;height:100%;width:100%;top:5px;right:5px;background-color:#2C332C;z-index:-1;transition:transform .2s ease-in-out}.animoButtonOverlay::after{content:'';position:absolute;top:0;left:0;height:100%;width:100%;border:1px solid #2C332C}.animoButtonOverlay:hover::before{transform:translate(6px,-4px)}

.kodawari{
  max-width: 60%;
  margin: auto;
}
.kodawari h1{
  padding: 50px 0 50px 0;
  margin: auto;
  letter-spacing: 0.3em;
  line-height: 2em;
}
.kodawari h2{
  font-size: 20px;
  padding: 30px 0 20px 0;
  margin: auto;
  color: #567756;
}
.kodawari p{
  padding: 0 0 100px 0;
  margin: auto;
  text-align: left;
}

.moji p{
  text-align: left;
}
.comit_1{
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.comit_1 .mozi{
  flex-shrink: 0;
  margin:0 auto 1em;
}

.cam{
  text-align: center;
    padding: 0 0 100px 0;
    max-width: 60%;
    margin: auto;
}


/* ーーーーーーーーーー　menu　ーーーーーーーーーー */
.menu{
  background-color: #2C332C;
  color: #fff;
  padding: 0 0 20px 0;
  position: relative;
  z-index: -2;
}
.menu .matome{
  display: flex;
  background-color: #fff;
  color: #2C332C;
  justify-content: center;
  margin: 30px;
  position: relative;
  z-index: -2;
}
.menu .matome .gazou{
  max-width: 1000px;
}
.menu .matome .naiyou{
  max-width: 600px;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.naiyou_2{
  max-width: 40%;
  align-items: center;
  margin: auto;
}
.naiyou_2 p{
  padding: 20px 0 20px 0;
  line-height: 2.5em;
  text-align: left;
}
h4{
  font-size: 30px;
}
p{
  font-size: 14px;
}
.menu h2{
  padding: 0;
}
.menu h1{
  padding: 30px 0 0 0;
}
.gazou img{
  max-width: 100%;
}

/* ---------- sen ---------- */
.box17{
  margin:2em 0;
  position: relative;
  padding: 1.5em 1.5em;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}
.box17:before, .box17:after{
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: black;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
  margin: 0; 
  padding: 0;
}
.box17 p{
  margin: auto;
  max-width: 80%;
}

.animoButtonOverlay{position:relative;color:#fff;cursor:pointer}.animoButtonOverlay::before{content:'';position:absolute;height:100%;width:100%;top:5px;right:5px;background-color:#2C332C;z-index:-1;transition:transform .2s ease-in-out}.animoButtonOverlay::after{content:'';position:absolute;top:0;left:0;height:100%;width:100%;border:1px solid #2C332C}.animoButtonOverlay:hover::before{transform:translate(6px,-4px)}


/* ーーーーーーーーーー　キャンペーン　ーーーーーーーーーー */
.campaign{
  text-align: center;
  padding: 100px 0 50px 0;
  max-width: 60%;
  margin: auto;
}

/* ーーーーーーーーーー　FLOW　ーーーーーーーーーー */
.flow ol{
  margin: auto;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 50px 0;
}
.flow ol li{
  width: 33%;
}


/* ーーーーーーーーーー　CONTACT　ーーーーーーーーーー */
.contact{
  background-color: #2C332C;
  color: #fff;
  padding: 50px 0 50px 0;
}
.contact .matome{
  display: flex;
  justify-content: center;
}
.contact .matome .line{
  background-color: #fff;
  color: #2C332C;
}
.contact a{
  padding: 30px 25px;
}
.contact h1{
  padding: 0 0 0 0;
}
.contact p{
  line-height: 2.5em;
  letter-spacing: 0.5em;
}


/* ーーーーーーーーーー　ACCESS　ーーーーーーーーーー */
.access{
  padding: 0 0 100px 0;
}
.access .matome{
  display: flex;
  align-items: center;
  justify-content: center;
}
dl{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: left;
}
dt{
  width: 25%;
  text-align: right;
}
dd{
  width: 75%;
  padding: 0 0 20px 20px;
  text-align: left;
}
.access .map{
  padding: 0 200px 0 50px;
}

/* ーーーーーーーーーー　フッター　ーーーーーーーーーー */
/* .footer{
  background-color: #2C332C;
  color: #fff;
}
.footer ul{
  flex-direction: column;
  background-color: #2C332C;
  color: #fff;
}
.footer ul .link{
  display: flex;
  justify-content: center;
}
.footer ul .logo{
    justify-content: center;
    text-align: center;
    margin: auto;
}
footer nav ul{
  padding: 20px 20px 0 0px;
}
footer nav ul li a{
  padding: 20px;
}
footer p{
  font-size: 16px;
  padding: 10px 0 10px 0;
}

html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 70px;
  background: #2C332C;
  border: solid 2px #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

.pagetop {
  box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}

.footer-list-item{
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  .pagetop:hover, .pagetop:hover .pagetop__arrow {
      border-color: #567756;
  }
} */

#footer {
  position: relative;
  color: #fff;
}
#footer a {
  text-decoration: none;
  color: #fff;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .primary {
  padding: 40px 20px;
  background: #333;
}
#footer .secondary {
  display: flex;
  padding: 10px 10px;
  color: #333;
}


/* footer-logo */

#footer .logo {
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: bold;
}

/* address */

.address {
  margin: 10px 0 0;
  padding: 0;
}


/* navi */

.navi-row {
  display: flex;
  margin-top: 40px;
}
#footer .navi {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
}
#footer .navi li:first-child {
  margin-left: 0;
}


/* sns-navi */

#footer .sns-navi {
  margin: 0 0 0 auto;
  padding: 0;
}
#footer .sns-navi li {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 20px;
}
#footer .sns-navi li:last-child {
  margin-right: 0;
}


/* sitenavi */

#footer .sitenavi {
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .sitenavi li {
  display: inline-block;
  margin: 0 0 0 20px;
  padding: 0;
}
#footer .sitenavi li:first-child {
  margin-left: 0;
}


/* copyright */

#footer .copyright {
  margin: 0;
  padding: 0;
  text-align: right;
}

body {
  margin: 0;
  padding: 0;
}

/* ーーーーーーーーーー　botann　ーーーーーーーーーー */
/* aタグのリセットCSS（不要な場合、セレクタごと削除してください） */
a {
  color: inherit;
  text-decoration: none;
  color: #fff;
}

/* buttonタグのリセットCSS（不要な場合、セレクタごと削除してください） */
button {
  padding: 0;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/* ボタンのスタイル */
.buttonOutlineGradient {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  height: 64px;
  padding: 2px;
  font-family: sans-serif;
  font-size: 16px;
  text-align: center;
  overflow-wrap: anywhere;
  background: linear-gradient(135deg, #6fa24a, #15a1cc);
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonOutlineGradient::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, #6fa24a, #15a1cc);
  filter: blur(8px);
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
  opacity: 0;
}

.buttonOutlineGradient_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #222;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}



.about-text{
  display: none;
}

/* ------ 矢印 ------- */
slick-next {
  right: 0px;
}
.slick-next:before {
  content: '→';
  display: none;
}