@charset "utf-8";
:root{
  /* Base Font Size 1.0rem = 10px */
  font-size: 10px;

  /* フォントカラー */
  --color-blk: #000;
  --color-wht: #fff;
  --color-grn: #1a7d44;
  --ff: "Noto Sans JP", sans-serif;
  --ff-serif: "Noto Serif JP", serif;
  --ff-en: "Inter", sans-serif;
}
/* 320対応（374以下は、ルートベースフォントサイズを9pxに） */
@media screen and (max-width: 374px){
    :root{
        font-size: 9px;
    }
}

*, *::before, *::after {
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body {
  position: relative;
  background: var(--color-wht);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-blk);
  overflow-x: hidden;
}
:lang(en),
.en {
  font-family: "Inter", sans-serif;
}

img{
  width: 100%;
  height: auto;
}
p{
  position: relative;
  text-align: justify;
  font-size: 1.6rem;
}

a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.85;}
ul,ol{
  padding-inline-start: 0;
  list-style-position: inside;
}
.wrapper,
.wrap_min{
  max-width: 1080px;
  width: 92.1875%;
  margin-inline: auto;
}
.wrap_min{max-width: 768px;}

.item_container,
.item_container_r{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.item_container_r{
  flex-direction: row-reverse;
}
.itembox02{width: 48%;}
.itembox03{width: 30%;}
.itembox04{width: 23%;}

.pc_case{display: block;}
.sp_case{display: none;}

@media (max-width: 768px) {
  .pc_case{display: none;}
  .sp_case{display: block;}
  .itembox02,.itembox03{width: 100%;}
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ==============================
    footer
=============================== */
footer{
  text-align: center;
  padding: 40px 0;
}
footer p{display: inline-block;}
.shusai,
.fot_tel{
  text-align: center;
  color: var(--color-grn);
  font-size: 2.8rem;
  font-weight: 800;
}
.shusai span{
  display: inline-block;
  background: var(--color-grn);
  border-radius: 50%;
  color: var(--color-wht);
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: middle;
  padding: 2px 15px;
  margin:0 5px 5px 0;
}
.fot_tel{
  margin-left: 15px;
}
.fot_tel a:link,
.fot_tel a:visited{
  color: var(--color-grn);
}

@media (max-width: 768px){
  footer{padding: 20px 0;}
  .shusai,
  .fot_tel{
    display: block;
    font-size: 2.4rem;
  }
  .fot_tel{margin-left: 0;}
  .shusai span{font-size: 1.4rem;}

}


/* ==============================
    タイトル
=============================== */
.visuall_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
    FV
=============================== */
.fvArea{
  position: relative;
  width: 100%;
}
.fv_img{
  width: 100%;
  display: block;
}

/* 最初に表示する画像A */
.img_a{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  animation: fadeOut 2.5s ease forwards;
}
/* 背景の画像B */
.img_b{
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 2.5s ease forwards;
}

@keyframes fadeOut{
  0%{
    opacity: 1;
  }
  40%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

@keyframes fadeIn{
  0%{
    opacity: 0;
  }
  40%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}


@media (max-width: 768px){
}

