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

html {
  width: 100%;
}
body {
  *font-size: small;
  *font: x-small;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #333;
  -webkit-text-size-adjust: 100%;
  position: relative;
  background: url("../img/bgi-body.jpg") center;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, p, ul, ol, li, img, table, th, td, dl, dt, dd {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
li {
  list-style-type: none;
}
a {
  transition: opacity .2s;
  cursor: pointer;
  color: #333333;
  text-decoration: none;
}
a:hover {
  opacity: .8;
}
img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
input, textarea, select, button, label {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.spOnly {
  display: none;
}
@media only screen and (max-width:767px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}


/* header
-----------------------------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  width: 100%;
  padding: 35px 40px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .8s;
}
header.active {
  background: rgba(243,242,239,.97);
}
header h1,
header p {
  width: 100px;
}
header #navi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
}
header #navi li a {
  position: relative;
  font-size: 16px;
}
header #navi li.current a::before {
  content: "";
  position: absolute;
  left: calc(50% - 3px);
  top: -15px;
  width: 6px;
  height: 6px;
  background: #86BD25;
  border-radius: 6px;
}
header #menuBtn {
  display: none;
}
@media only screen and (max-width:1023px) {
  header #navi {
    gap: 30px;
  }
  header #navi li a {
    font-size: 14px;
  }
}
@media only screen and (min-width:766px) {
  header #navi {
    display: flex !important;
  }
}
@media only screen and (max-width:767px) {
  header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header h1,
  header p {
    width: 80px;
  }
  header #navi {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% - 56px);
    background: rgba(243,242,239,.97);
    padding: 0 35px;
  }
  header #navi li {
    margin-top: 30px;
    text-align: center;
  }
  header #navi li a {
    font-size: 18px;
  }
  header #navi li.current a::before {
    left: -18px;
    top: 10px;
  }
  header #menuBtn {
    display: block;
    position: relative;
    cursor: pointer;
    padding-bottom: 18px;
  }
  header #menuBtn .icon {
    position: relative;
    display: block;
    width: 30px;
    height: 18px;
  }
  header #menuBtn .icon::before, 
  header #menuBtn .icon::after,
  header #menuBtn span {
    content: "";
    height: 1px;
    background: #333;
    position: absolute;
    right: 0;
    font-size: 0;
    transition: all .2s;
  }
  header #menuBtn .icon::before {
    width: 30px;
    top: 0;
  }
  header #menuBtn .icon::after {
    width: 20px;
    bottom: 0;
  }
  header #menuBtn .icon span {
    width: 25px;
    top: 50%;
  }
  header #menuBtn.active .icon::before {
    top: 50%;
    right: -50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  header #menuBtn.active .icon::after {
    width: 30px;
    bottom: 50%;
    right: -50%;
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  header #menuBtn.active .icon span {
    opacity: 0;
  }
  header #menuBtn p {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    white-space: nowrap;
    font-size: 10px;
  }
}


/* loader
-----------------------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999998;
  width: 100%;
  height: 100%;
  background: url("../img/bgi-body.jpg") center;
}


/* sns
-----------------------------------------------*/
footer .sns {
  background: #D9D9D9;
  padding: 38px 0 11px 0;
}
.sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
  gap: 22px;
}
header #navi .sns  {
  gap: 40px;
  display: none;
}
.sns li {
  max-width: 30px;
}
.sns li a:hover img {
  opacity: .8;
}
@media only screen and (max-width:767px) {
  footer .sns{
    padding: 27px 0 11px 0;
  }
  header #navi .sns  {
    display: block;
  }
}

/* footer
-----------------------------------------------*/
#sitemap {
  background: #D9D9D9;
  padding: 11px 0 38px 0;
}
#sitemap p {
  width: 100px;
  margin: 0 auto;
}
#sitemap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}
#sitemap ul li:not(:last-child)::after {
  content: "|";
  margin: 0 5px;
}
#sitemap ul a {
  font-size: 12px;
  line-height: 170%;
  text-decoration-line: underline;
}
#copyright {
  background: #35342F;
  padding: 14px 0 12px 0;
}
#copyright p {
  color: #FFF;
  text-align: center;
  font-size: 12px;
}
@media only screen and (max-width:767px) {
  #sitemap {
    padding: 11px 0 27px 0;
  }
  #sitemap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }
}


/* btnArea
-----------------------------------------------*/
.btnArea {
  padding: 100px 60px;
}
.btnArea .btn a {
  display: block;
  width: 360px;
  height: 92px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.25);
  line-height: 90px;
  padding: 0 60px 0 35px;
  font-size: 18px;
  background: url("/img/icon-arrow.svg") right 35px center no-repeat;
}
@media only screen and (max-width:767px) {
  .btnArea {
    padding: 60px 0;
  }
  .btnArea .btn a {
    width: 282px;
    height: 60px;
    line-height: 58px;
    padding: 0 40px 0 19px;
    font-size: 15px;
    background: url("/img/icon-arrow.svg") right 21px center no-repeat;
  }
}


/* slick
-----------------------------------------------*/
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


#flotingBtn {
    position: fixed;
    bottom: 125px;
    right: 15px;
    width: 360px;
	height: 92px;
    padding: 0px;
    z-index: 10000;
}
#flotingBtn a {
	display: block;
	width: auto;
	line-height: 90px;
	border:1px solid #fff;
	padding: 0px 35px;
	color: #fff;
	font-size: 18px;
	background-image: url("../img/flowting_right.png");
	background-repeat: no-repeat;
	background-size: 10px 21px;
	background-position: 310px center;
	background-color: rgba(0,0,0,0.20);
  	-webkit-backdrop-filter: blur(7px) !important; /* Safari対応 */
	backdrop-filter: blur(7px) !important;
}

.fbv2 a {
    color: #393939 !important;
	background-image: url("../img/flowting_right_bk.png") !important;
    border: 1px solid rgba(0, 0, 0, 0.25) !important;
	background-color: rgba(255,255,255,5%);
}

@media only screen and (max-width:767px) {
#flotingBtn {
    position: fixed;
    bottom: 15px;
	right: 0px;
    width: 280px;
	height: 55px !important;
    padding: 0px;
    z-index: 10000;
}
#flotingBtn a {
	line-height: 55px !important;
	text-align: center;
	margin: 0px 15px;
}

}
