@charset "UTF-8";
.min-cho, #top li div p:first-of-type, h4,
h5, h3, h1,
h2 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}

.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
@media (max-width: 1180px) {
  .scroll_up {
    transition: 1s ease-in-out;
    opacity: 0;
  }
  .scroll_up.on {
    opacity: 1;
  }
}
.scroll_down {
  transform: translateY(30px);
  transition: 1.5s ease-in-out;
  opacity: 0;
}

.scroll_down.on {
  transform: translateY(0px);
  opacity: 1;
}

/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

html {
  height: -webkit-fill-available;
  color: #000000;
  overflow-y: scroll !important;
  animation: display 1s ease-in-out forwards;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  overflow: hidden;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 14px;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  text-align: justify;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* body の背面に配置 */
  animation: bgZoom 20s linear infinite;
}

* {
  box-sizing: border-box;
}

_::-webkit-full-page-media,
_:future,
:root * {
  -webkit-font-smoothing: antialiased;
}

.wf-mplus1p {
  font-family: "M PLUS 1p";
}

.wf-roundedmplus1c {
  font-family: "M PLUS Rounded 1c";
}

/** 基本レイアウト **/
.left {
  float: left !important;
}

.right {
  float: right !important;
}

a img {
  transition: 0.3s;
}

a img:hover {
  opacity: 0.7;
}

.youtubewrap {
  width: 100%;
  margin: auto;
}

/** ページトップ **/
.pagetop {
  width: clamp(200px, 15.104vw, 400px);
  aspect-ratio: 290/332;
  position: fixed;
  bottom: 2vw;
  right: 2vw;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1180px) {
  .pagetop {
    bottom: 10vh;
  }
}
@media (max-width: 767px) {
  .pagetop {
    bottom: 2vw;
  }
}
.pagetop ul {
  list-style: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.pagetop ul a {
  display: block;
}
.pagetop ul img {
  width: 100%;
  height: auto;
}
.pagetop .contact {
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
}
.pagetop .top {
  width: 45%;
  position: absolute;
  bottom: 10%;
  right: 5%;
}

.pagetop.visible {
  opacity: 1;
  visibility: visible;
  transition: "opacity 0.3s ease";
}

/**フェードイン処理**/
.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  transition: 0.8s;
}

.fade-anime {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/**ヘッダー**/
header {
  width: 100%;
  max-width: 1920px;
  height: auto;
  padding: min(2vw, 20px);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  pointer-events: none;
  /* ヘッダー全体をクリック不可に */
}
header .logo {
  width: clamp(200px, 40%, 300px);
  height: auto;
  pointer-events: auto;
}
header .logo img {
  width: 100%;
}
header .nichiren-syu {
  width: clamp(90px, 30%, 164px);
  height: auto;
  display: block;
  padding-right: 1vw;
  pointer-events: auto;
}
header .nichiren-syu img {
  width: 100%;
}
header .h-inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bgZoomFade {
  0% {
    transform: scale(1.3);
    opacity: 1;
  }
  30% {
    transform: scale(1.4);
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}
@keyframes bgZoomFade-2 {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
  60% {
    transform: scale(1.3);
    opacity: 1;
  }
  90% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
.bg-animation {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/bg-img2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  mix-blend-mode: multiply;
  position: fixed;
  top: 0;
  z-index: -1;
}

.pattern-a {
  animation: bgZoomFade 20s linear infinite;
  transform: scale(-1, -1);
}

.pattern-b {
  animation: bgZoomFade-2 20s linear infinite;
}

/**フォーマット**/
main {
  width: 100%;
  min-width: 768px;
  z-index: 2;
}
@media (max-width: 767px) {
  main {
    min-width: 100%;
  }
}

.inner {
  width: 1024px;
  padding: 0 22px;
  overflow: hidden;
  margin: auto;
  padding: 0 20px;
}

section {
  max-width: 1200px;
  width: 90%;
  padding: clamp(50px, 11vh, 120px) 20px 0;
  padding-bottom: clamp(50px, 11.25vw, 160px);
  overflow: hidden;
  margin: auto;
  opacity: 0;
}
@media (max-width: 767px) {
  section {
    width: 88%;
    padding-left: 0;
    padding-right: 0;
  }
}

h1,
h2 {
  color: #84AA06;
  font-weight: 400;
  font-size: clamp(24px, 1.95vw, 40px);
  margin-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
}
h1::first-letter,
h2::first-letter {
  position: relative;
  z-index: 1;
  margin-right: 0.25em;
  margin-left: 0.25em;
  color: #fff;
}
h1::before,
h2::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: #84AA06;
  margin-top: 0.05em;
  top: 0;
  z-index: -1;
}

h3 {
  color: #2FA8A8;
  font-weight: 500;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-size: clamp(22px, 1.4vw, 26px);
}

h4,
h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  color: #fff;
  padding: 0em 1em;
  border-radius: 1em;
  background-color: #2FA8A8;
  margin-bottom: 0.75em;
}

ul.big-circle {
  list-style-position: inside;
  margin-left: 0;
}
ul.big-circle li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
ul.big-circle li::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  background-color: #84AA06;
  border-radius: 50%;
  margin-right: 0.5em;
}

ol.big-number {
  list-style-position: inside;
  margin-left: 0;
  font-weight: bold;
  color: #84AA06;
  font-size: 110%;
}
ol.big-number span {
  font-weight: normal;
  color: #000000;
  font-size: 90%;
}

ul.no-list-style {
  margin-left: 0;
  list-style: none;
}

#top {
  width: 100%;
  max-width: 1920px;
  list-style: none;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: max(11.25vw, 50px);
  position: relative;
}
#top li {
  width: 33.3333333333%;
  height: 100vh;
  max-height: 1080px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top li.mission {
  background-image: url(../img/top-01.webp);
}
#top li.vision {
  background-image: url(../img/top-02.webp);
}
#top li.value {
  background-image: url(../img/top-03.webp);
}
@media (max-width: 1180px) {
  #top li {
    width: 100%;
    position: relative;
  }
  #top li::after {
    content: "";
    display: block;
    width: 100%;
    height: 30vh;
    position: absolute;
    bottom: 0;
    background: rgb(170, 170, 170);
    background: linear-gradient(0deg, rgb(120, 120, 120) 25%, rgb(255, 255, 255) 100%);
    mix-blend-mode: multiply;
  }
  #top li .scroll {
    position: absolute;
    top: 80vh;
    width: 40px;
    height: 40px;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
  }
  #top li .scroll a {
    padding-top: 70px;
    position: relative;
    text-align: center;
  }
  #top li .scroll a::before {
    animation: scroll 3.5s infinite;
    display: inline-block;
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-bottom: solid 3px #fff;
    border-left: solid 3px #fff;
    transform: rotate(-45deg);
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
  }
  #top li.mission {
    background-image: url(../img/top-01small.webp);
    animation: display 1s ease-in-out forwards;
    opacity: 0;
    position: relative;
  }
}
@media (max-width: 1180px) and (max-width: 767px) {
  #top li.mission {
    background-image: url(../img/top-01.webp);
  }
}
#top li div {
  width: clamp(300px, 18vw, 340px);
  height: clamp(300px, 18vw, 340px);
  padding-top: max(1.5em, 2vw);
  text-align: center;
  background-image: url(../img/round.svg);
  background-size: contain;
  color: #fff;
}
#top li div h3 {
  text-align: center;
  color: #fff;
  font-size: clamp(32px, 1.97vw, 40px);
  display: inline-block;
  margin-bottom: 0.2em;
  letter-spacing: 0;
}
#top li div h3 span {
  display: block;
  font-size: 50%;
  letter-spacing: 0;
}
#top li div h3 span::before {
  content: "";
  border-top: 2px solid;
  display: block;
}
#top li div p {
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1.6;
}
#top li div p:first-of-type {
  font-size: clamp(16px, 1vw, 20px);
}
#top li div .button {
  width: 70%;
  background-color: #E88080;
}

@keyframes display {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
section > ul li > div {
  overflow: hidden;
  margin-bottom: 2em;
}
section > ul p {
  margin-bottom: 1.5em;
}
section > ul p:last-child {
  margin-bottom: 0;
}
section > ul p.sign {
  width: max(25%, 120px);
  float: right;
}
section > ul p.sign img {
  width: 100%;
}
section > ul ul,
section > ul ol {
  list-style-position: outside;
  margin-left: 1.2em;
  margin-bottom: 1.5em;
}
section > ul ul:last-child,
section > ul ol:last-child {
  margin-bottom: 0;
}
section > ul ul {
  list-style: disc;
}
section > ul dl {
  font-feature-settings: "palt";
}
section > ul dl dt,
section > ul dl dd {
  display: inline;
}
section > ul dl dt {
  margin-right: 1em;
}
section > ul dl dd::after {
  content: "\a";
  white-space: pre;
}
section > ul dl.timeline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section > ul dl.timeline dt,
section > ul dl.timeline dd {
  display: block;
}
section > ul dl.timeline dt {
  width: 5em;
}
section > ul dl.timeline dd {
  width: calc(100% - 6em);
}
section > ul .price li {
  font-weight: bold;
  font-size: 16px;
}
section > ul .price li::before {
  content: "●";
  color: #84AA06;
  font-size: 0.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}
section > ul .price li span {
  font-size: 140%;
}
section > ul .price li p {
  font-size: 14px;
  margin-top: -0.25em;
  font-weight: normal;
}

ul.contents {
  width: 100%;
  list-style: none;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  section:nth-last-of-type(even) ul.contents {
    flex-direction: column-reverse;
  }
}
ul.contents .picture {
  width: 41%;
}
@media (max-width: 767px) {
  ul.contents .picture {
    width: 100%;
  }
}
ul.contents .picture img {
  width: 100%;
  margin-bottom: 1em;
}
ul.contents .text {
  width: 49%;
  overflow: hidden;
}
@media (max-width: 767px) {
  ul.contents .text {
    width: 100%;
  }
}

ul.life-support {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
ul.life-support > li {
  width: 30%;
}
@media (max-width: 767px) {
  ul.life-support > li {
    width: 100%;
  }
}
ul.life-support > li img.main-img {
  width: 100%;
  margin-bottom: 2em;
}

#contact {
  position: relative;
  overflow: visible;
}
#contact h5 {
  margin: auto;
  font-size: 20px;
  background-color: #84AA06;
  display: inline-block;
  text-align: center;
  width: 12em;
  z-index: 1;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#contact h6 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  font-size: 110%;
}

ul#form {
  width: min(100%, 960px);
  margin: auto;
  background-color: #fff;
  box-shadow: 4px 4px 4px #ccc;
  border-radius: 20px;
  padding: max(20px, 3vw);
  padding-top: max(30px, 4vw);
  margin-top: 1em;
}
ul#form > li {
  margin-bottom: 2em;
}

a.line {
  max-width: 400px;
  background-color: #00B700;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 112%;
}
a.line img {
  width: 2.2em;
  margin-right: 0.5em;
}

/* フッター */
#footer-space {
  background-color: #84AA06;
  mix-blend-mode: multiply;
  position: fixed;
  bottom: 0;
  z-index: 10;
  opacity: 0;
}
@media (max-width: 767px) {
  #footer-space {
    width: 100% !important;
    position: absolute;
  }
}

footer {
  width: 100%;
  padding: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  color: #fff;
  z-index: 10;
  opacity: 0;
}
footer small {
  font-size: 1.2em;
  letter-spacing: 0.05rem;
  margin-right: 1em;
  font-weight: bold;
}
footer small::before {
  content: "©";
}
footer .logo {
  height: 50px;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  footer .logo {
    width: 40vw;
    height: auto;
    margin: 0;
  }
}
footer #address {
  text-align: left;
  line-height: 1.5;
}
footer #address span {
  font-size: 1.4em;
  font-weight: bold;
}
footer #sns {
  list-style: none;
  height: 50px;
  display: flex;
  justify-content: space-between;
  margin-left: 1em;
}
footer #sns li {
  width: 50px;
  margin-left: 0.75em;
}
footer #sns li img {
  width: 100%;
}
@media (max-width: 767px) {
  footer #sns {
    justify-content: center;
    margin: 0 1em;
  }
  footer #sns li {
    width: 40px;
    margin: 0 0.5em;
  }
}
@media (max-width: 767px) {
  footer {
    position: absolute;
    justify-content: center;
    padding: max(3vw, 20px);
    padding-bottom: calc(3vw - 1em);
  }
  footer > * {
    margin-bottom: 1em;
  }
}

#footer,
#footer-space {
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

@media (max-width: 767px) {
  #footer,
  #footer-space {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
/**テーブル**/
.table {
  width: 100%;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
}
.table tr {
  border-bottom: 1px solid #999;
}
.table tr:nth-last-of-type(2n) td {
  background-color: #FCFCFC;
}
.table th {
  width: 24%;
  padding: 0.75rem 1rem;
  background-color: #efefef;
  border-right: 1px solid #999;
}
.table td {
  padding: 0.75rem 1rem;
  border-right: 1px solid #999;
}

/*ボタン*/
.button,
.submit input {
  width: 100%;
  max-width: 300px;
  background-color: #2FA8A8;
  text-align: center;
  border-radius: 0.5em;
  margin: 0.5em auto;
  padding: 0.3em 2em;
  padding-right: 3em;
  display: inline-block;
  text-decoration: none !important;
  color: #fff;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: bold;
  background-image: url(../img/arrow.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: center right 0.25em;
  transition: 0.3s;
}
.button:hover,
.submit input:hover {
  opacity: 0.7;
}/*# sourceMappingURL=newlayout.css.map */