@charset "UTF-8";
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*                reset (デフォルト設定の打ち消し)
======================================================= */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-size: 16px;
}

body, h1, h2, h3, h4, h5 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
}

body {
  color: #1F2840;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  font-size: 16px;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=esubmit],
button,
select,
textarea {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

a {
  cursor: pointer;
}

a:link {
  color: #333;
  text-decoration: none;
}

a:visited {
  color: #333;
  text-decoration: none;
}

/*                 基本レイアウト
======================================================= */
.fv-container {
  background-image: url(../img/fv-img.png);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  padding: 0 20px;
  position: relative;
}
.fv-container h2 {
  font-size: 1.2em;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contact-button {
  background-color: #326d12; /* ボタンの背景色 */
  color: #ffffff; /* ボタンの文字色 */
  border: none; /* ボタンの枠線を消す */
  padding: 10px 20px; /* ボタン内の余白を小さく */
  text-align: center; /* テキストを中央寄せ */
  text-decoration: none; /* テキストの下線を消す */
  display: inline-block;
  font-size: 14px; /* フォントサイズを小さく */
  margin: 4px 2px;
  margin-top: 20px;
  cursor: pointer; /* マウスカーソルを指マークにする */
  border-radius: 50px; /* ボタンを丸くする */
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 2s; /* アニメーションの持続時間 */
  animation-delay: 3s; /* アニメーションが開始するまでの遅延時間 */
  animation-fill-mode: forwards; /* アニメーション終了後に最終状態を保持 */
}

.news-container {
  margin-left: auto;
  margin-right: auto;
  display: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  width: 100vw;
}
.news-container .news-title {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-left: 40%;
  margin-right: 40%;
  width: 20%;
  height: auto;
  font-size: 1.3em;
  text-shadow: #bebebe;
  font-weight: bold;
}
.news-container .news-title::before, .news-container .news-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3em;
  height: 1px;
  background-color: #000;
}
.news-container .news-title::before {
  left: -4em;
}
.news-container .news-title::after {
  right: -4em;
}

.news-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.news-item .news-date {
  font-size: 1.2em;
  margin-right: 20px;
}
.news-item .news-text {
  font-size: 1.2em;
}

#Profile {
  text-align: center;
}

.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.profile-container .profile-contentL {
  flex: 1;
  padding: 0 10px;
  text-align: center;
}
.profile-container .profile-contentR {
  flex: 1;
  padding: 0 10px;
  text-align: center;
}
.profile-container .profile-contentR img {
  width: 300px;
  height: 300px;
}

#service {
  text-align: center;
  position: relative;
  background: url(../img/bgpala.webp) no-repeat center center fixed;
  background-size: cover;
  z-index: 0;
  padding-top: 50px;
}
#service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.service-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 10%;
  margin-right: 10%;
}
.service-container .service-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
.service-container .service-content img {
  max-width: 600px;
  height: auto;
  position: relative;
  z-index: 3;
  border-radius: 50px;
  top: 20px;
}
.service-container .service-content .service-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 30px;
  position: relative;
}
.service-container .service-content .service-text-wrapper .service-text {
  display: flex;
  flex-direction: column;
  text-align: justify;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  width: 90%;
  max-width: 800px;
  position: relative;
  z-index: 4;
  padding: 20px;
  transform: translateX(-10%);
  border-radius: 10px;
  top: 0;
}
.service-container .service-content .service-text-wrapper .service-text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-width: 10px;
  border-style: solid;
  border-color: white transparent transparent white;
}
.service-container .service-content .service-text-wrapper .service-text h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-container .service-content .service-text-wrapper .service-text h4 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}
.service-container .service-content .service-text-wrapper .service-text p {
  font-size: 1.1em;
  line-height: 1.5em;
}
.service-container .service-content .service-text-wrapper .service-text2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: justify;
  background-color: white;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 5;
  padding: 20px;
  margin-top: 20px;
  border-radius: 10px;
  transform: translateX(20%);
}
.service-container .service-content .service-text-wrapper .service-text2 h5 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-container .service-content .service-text-wrapper .service-text2 ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}
.service-container .service-content .service-text-wrapper .service-text2 li {
  font-size: 1.1em;
  line-height: 1.5em;
  margin-bottom: 10px;
}
.service-container .service-content .service-text-wrapper .service-text2 .highlight-line {
  position: relative;
  display: inline-block; /* 文字を横並びに維持する */
  overflow: hidden;
}
.service-container .service-content .service-text-wrapper .service-text2 .highlight-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5em;
  background: rgba(255, 255, 0, 0.3); /* 黄色で30%の透過 */
  transition: width 0.5s ease-in-out; /* アニメーションをトランジションに変更 */
}
.service-container .service-content .service-text-wrapper .service-text2 .highlight-line.active::after {
  width: 100%; /* アニメーション後に完全な長さで表示 */
}

#Profile {
  margin-top: 50px;
  margin-bottom: 50px;
}

#contact {
  text-align: center;
  margin-bottom: 20px;
}

.contact-text {
  margin-top: 20px;
  margin-bottom: 10px;
}

/*                共通パーツ
======================================================= */
/*タイトル共通化*/
.profile-title {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  margin: 0 auto;
  padding: 0 3em;
  z-index: 5;
}
.profile-title::before, .profile-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3em;
  height: 1px;
  background-color: #000;
  z-index: 5;
}
.profile-title::before {
  left: -4em;
}
.profile-title::after {
  right: -4em;
}

/*タイトル共通化END*/
/*                ヘッダー
======================================================= */
header {
  background: linear-gradient(135deg, rgba(29, 134, 31, 0.6666666667), #ADFF2F);
  color: #006400;
  padding: 20px 0;
  width: 100vw;
  height: 150px;
  display: flex;
  justify-content: space-between;
}
header img {
  width: auto;
  height: 150px;
}
header .head-logo {
  align-self: center; /* 中央揃え */
}
header .head-text {
  align-self: center; /* 中央揃え */
}
header .head-text nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center; /* 中央揃え */
}
header .head-text nav ul li {
  height: 50px; /* li要素の高さを指定します */
  display: flex; /* li要素をフレックスコンテナにします */
  align-items: center; /* li要素内のテキストを上下中央揃えにします */
  margin-right: 30px;
}
header .head-text nav ul a {
  color: #006400; /* 文字色を白に変更 */
  font-size: 1.3em;
}

/*                スマフォメニューボタン
======================================================= */
/*               スマフォメニュー
======================================================= */
/*                フッター
======================================================= */
.footer-container {
  display: flex;
  background: linear-gradient(135deg, #ADFF2F, rgba(29, 134, 31, 0.6666666667));
  justify-content: space-between;
  padding: 20px;
  padding-bottom: 50px;
  color: #006400;
  z-index: 9999;
  width: 100%;
  height: auto;
  padding-top: 5%;
}
.footer-container .footer-left {
  flex: 1;
  padding-left: 10%;
  color: #383737;
}
.footer-container .footer-left img {
  padding-bottom: 50px;
  height: 150px;
  width: auto;
}
.footer-container .footer-left .name {
  padding-bottom: 50px;
  font-size: 1.4em;
}
.footer-container .footer-left .address {
  font-size: 1.2em;
  line-height: 2em;
}
.footer-container .footer-right {
  flex: 1;
  padding-right: 10%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  color: #383737;
}/*# sourceMappingURL=common.css.map */