@charset "utf-8";

/*------ヒーローヘッダースライダー--------*/
body{
    margin: 0;
    padding: 0;
  }
  .hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
  }
  .slider{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  .slider .image{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: anime 15s 0s infinite; /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
    opacity: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  /*
    ②画像の数ごとに animation-delay を設定します。
  　下記では、5秒間隔で切り替わるように設定しています。
  */
  .slider .image:nth-of-type(1){
    background-image: url(https://picsum.photos/id/237/960/540);
  }
  .slider .image:nth-of-type(2){
    animation-delay: 5s;
    background-image: url(https://picsum.photos/id/238/960/540);
  }
  .slider .image:nth-of-type(3){
    animation-delay: 10s;
    background-image: url(https://picsum.photos/id/239/960/540);
  }
  @keyframes anime {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: scale(1.18);
    }
  }
  /*------ヒーローヘッダースライダー--------*/

/*---top-news---*/
div#index-news-title {
  width: 790px;
  border-bottom: solid 1px #ddd;
  margin: 0;
  display: flex;
}
h2.index-news-headline {
  margin: 0;
  min-height: 32px;
}
p#index-news-archivelink {
  display: block;
  padding-left: 63%;
  font-size: 12px;
}
li.time {
  width: 100%;
  padding-top: 8px;
  display: flex;
  padding-bottom: 8px;
  width: 790px;
  border-bottom: solid 1px #ddd;
  margin: 0;
  font-size: 12px;
}
  span.index-news-date {
    padding-right: 50px;
    color: #da2408;
}

/*---top-news11---*/

section#index-news1 {
  margin-top: 50px;
}
p#index-news-archivelink1 {
  display: block;
  padding-left: 65%;
  font-size: 12px;
}
/*---index-banner---*/

.index-banner {
  margin-top: 50px;
  margin-bottom: 50px;
}




/*画像エフェクトcss　　特定カテゴリー表示*/
figure {
  width: 250px;
  /* height: 200px; */
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
}
figure img {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
ul.news_list {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
.news_data {
  padding-top: 10px;
  padding-left: 10px;
  height: 170px;
  border: 0.2px dotted #736a60;
  width: 238px;
  margin-bottom: 20px;
}
li.blog {
  list-style: none;
  padding-right: 10px;
  margin-right: auto;
}
h4.b-title {
  font-size: 12px;
  margin-top: 0px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
}
p.dis {
  margin: 10px 0 0;
  padding-bottom: 10px;
  font-size: 12px;
  line-height: 200%;
  padding-top: 10px;
  padding-left: 5px;
  padding-right: 10px;
  text-align: left;
}
span.datetime {
  font-size: 12px;
  display: block;
  border-bottom: dotted 1px #666;
  padding-bottom: 10px;
  width: 95%;
}
div#index-recipe-title {
  display: flex;
}

.box {
  padding-top: 10px;
}

  .footer_logo_text_area {
    position: absolute;
    display: block;
    width: 250px;
    font-size: 12px;
    padding-top: 10px;}
h3#footer_logo_text {
  color: white;
}
h4#footer_description {
  color: white;
  font-size: 12px;
  line-height: 1.7;
  padding-top: 10px;
}.footer-widget-box {
}
.footer a:link {
  color: rgb(255 255 255);
}

/* 入会ボタン */

.btn--orange,
a.btn--orange {
  color: #fff!important;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
	color: #fff!important;
	background-color: #843500;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
}

.btn--radius,
a.btn--radius,
button.btn--radius
{
    border-radius: 100vh;
}
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 4.5rem;
}
a.btn.btn--orange {
    margin-top: 20px;
}
/* END入会ボタン */
span.index-news-date {
    color: #da2408;
}

/*top-side入会ボタン */

.btn-box {
	margin-top: 10px;
  text-align: center;
}
.btnn--orange,
a.btnn--orange {
  color: #fff!important;
  background-color: #eb6100;
}
.btnn--orange:hover,
a.btnn--orange:hover {
	color: #fff!important;
	background-color: #843500;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
}

.btnn--radius,
a.btnn--radius,
button.btnn--radius
{
    border-radius: 100vh;
}
.btnn,
a.btnn,
button.btnn {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 4.5rem;
  padding-left: 42px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-right: 42px;
}
/*END top-side入会ボタン */
.side-text {
	font-size: 15px;
	line-height: 1.8em;
}

span.icon-new {
	padding-right: 10px;
	font-weight: 700;
	color: #F00;
}
.contents-1 {
  width:900px;
  margin-left: auto;
  margin-right: auto;
}
h1.contents-1 {
  font-size: 1.5em;
  padding-bottom: 10px;
}
section {
  padding-bottom: 50px;
}
.cbox {
  display: flex;
  padding-bottom: 50px;
}
.box-L {
  color: #666;
  width: 550px;
  padding-right: 40px;
  line-height: 1.8em;
}
.img01 {
  border-radius: 50%;
  width: 280px;
  height: 250px!important;
  box-shadow: 0 0 18px grey;
}
img.banner {
  width: 100%;
}
/* 日付 */
.post_date {
  width: 80px;
  height: auto;
  min-height: 80px;
  float: left;
  background: #000;
}
.post_date_year {
  display: block;
  width: 80px;
  height: 25px;
  line-height: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #444;
  text-align: center;
  margin: 0;
  padding: 0;
}
.post_date_month {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}
span.month {
  display: block;
  font-size: 26px;
  margin: 0 0 -0.3em;
  padding: 0;
  height: 38px;
  line-height: 38px;
}
i.far.fa-user.fa-size {
  font-size: 25px;
}
h1.rec {
  padding-top: 150px;
}

section.rec {
  /* max-width: 300px; */
  margin: 0 auto;
  display: inline-block;
  /* width: 600px; */
  display: flex;
}
a.btn_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #228bc8;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin-left: 20px;
}
a.btn_04:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(
45deg
);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn_04:hover {
  background: #fff;
  color: #228bc8;
}
table.officer {
  text-align: left;
}