/*===============================
reset
================================*/
*,
*:before,
*:after {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 word-break: break-all;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
 margin: 0;
 padding: 0;
 border: 0;
 vertical-align: baseline;
 font-size: 100%;
 word-break: normal;
 letter-spacing: normal;
}

body {
 line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
 display: block;
}

button {
 padding: 0;
 background: transparent;
 border: none;
 outline: none;
}

nav ul {
 list-style: none;
}

ol,
ul {
 list-style: none;
}

a {
 margin: 0;
 padding: 0;
 color: #fff;
 font-size: 100%;
 vertical-align: baseline;
 background: transparent;
 text-decoration: none;
}

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

blockquote,
q {
 quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
 content: "";
 content: none;
}

table,
td,
th {
 border-collapse: collapse;
 border-spacing: 0;
}

textarea {
 resize: vertical;
}

input,
button,
select,
textarea {
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 background: transparent;
 border: none;
 border-radius: 0;
 font: inherit;
 outline: none;
}

textarea {
 resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
 display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
 cursor: pointer;
}

select::-ms-expand {
 display: none;
}

/*===============================
base
================================*/
html {
 font-weight: 500;
 letter-spacing: 2px;
 color: #333;
 font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
  Meiryo, sans-serif;
 overflow: auto;
 height: 100%;
}

body {
 position: relative;
 z-index: 100;
 font-size: clamp(0.813rem, 0.782rem + 0.13vw, 0.938rem);
}
body:before {
 content: "";
 display: block;
 position: fixed;
 z-index: -1;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 /*background-image: url("../../images/common/body_bg.png");*/
 background-repeat: repeat;
 background-size: 100% auto;
 background-position: top left;
 background-attachment: fixed; /* スクロールに合わせて背景が固定される */
}

.wrap-s,
.wrap-s02,
.wrap,
.wrap-l {
 width: calc(100% - 60px);
 margin-inline: auto;
}
.wrap02 {
 width: calc(100% - 0px);
 margin-inline: auto;
}
@media screen and (min-width: 768px) {
 .wrap02 {
  width: calc(100% - 60px);
  margin-inline: auto;
 }
}
.wrap-s {
 max-width: 1000px;
}
.wrap-s02 {
 max-width: 1000px;
 padding-top: clamp(1.875rem, 1.572rem + 1.29vw, 3.125rem);
}
.wrap {
 max-width: 1200px;
}
.wrap02 {
 max-width: 1200px;
}

.wrap-l {
 max-width: 1500px;
}

.palmtop {
 display: block !important;
}
@media screen and (min-width: 1024px) {
 .palmtop {
  display: none !important;
 }
}

.laptop {
 display: none !important;
}
@media screen and (min-width: 1024px) {
 .laptop {
  display: block !important;
 }
}

.sclNone {
 overflow: hidden;
}

.h800:first-child {
 padding-top: 0; /* 最初の要素だけパディングなし */
 height: 700px;
 color: #fff;
}
.h800 {
 height: auto;
 color: #fff;
 padding-top: 80px;
}
@media screen and (min-width: 768px) {
 .h800:first-child {
  padding-top: 0; /* 最初の要素だけパディングなし */
  height: 800px;
  color: #fff;
 }
 .h800 {
  height: auto;
  color: #fff;
  padding-top: 100px;
 }
}

.h600:first-child {
 padding-top: 0; /* 最初の要素だけパディングなし */
 height: 250px;
 color: #fff;
}
.h600 {
 height: auto;
 color: #fff;
 padding-top: 80px;
}
@media screen and (min-width: 768px) {
 .h600:first-child {
  padding-top: 0; /* 最初の要素だけパディングなし */
  height: 600px;
  color: #fff;
 }
 .h600 {
  height: auto;
  color: #fff;
  padding-top: 100px;
 }
}
.only-sp {
 display: none;
 width: 100%;
 height: auto;
 object-fit: cover;
 margin-top: 70px;
}

@media screen and (max-width: 767px) {
 .only-sp {
  display: block;
 }
}

/* ブラー効果をかけるセクション */
.blur {
 position: relative;
 background-color: rgba(0, 0, 0, 0); /* 初期透明度 */
 backdrop-filter: blur(0px); /* 初期ブラー */
 -webkit-backdrop-filter: blur(0px); /* Safari対応 */
 transition: backdrop-filter 0.1s, background-color 0.1s; /* スムーズな変化 */
}
/* 背景動画コンテナ */
.bg-video {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: -1; /* 背景として配置 */
 overflow: hidden;
}

.bg-video video {
 width: 100%;
 height: 100%;
 object-fit: cover; /* 動画を要素のサイズに合わせて切り抜き */
}

.bg-black {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: #000;
 z-index: -1; /* 背景として配置 */
}
/*===============================
layout
================================*/
/*
wrapper
================================*/
.wrapper {
 max-width: 1500px;
 margin-inline: auto;
}
@media screen and (min-width: 1024px) {
 .wrapper {
  width: calc(100% - 100px);
 }
}

/*
header
================================*/
.l-header {
 position: fixed;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 100%;
 max-width: 100%;
 background-color: rgba(0, 0, 0, 0.7);
 transition: top 0.3s ease, height 0.3s ease, padding 0.3s ease; /* 高さの変化をスムーズに */
 z-index: 1000;
}
@media screen and (min-width: 1024px) {
 .l-header {
  width: calc(100% - 0px);
 }
}

.l-header .ctn {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 padding: 20px 30px; /* 初期のパディング */
 transition: padding 0.3s ease; /* スムーズに縮小 */
}
@media screen and (min-width: 1024px) {
 .l-header .ctn {
  padding: 30px 80px;
 }
 /* スクロール時に小さくする */
 .l-header.shrink .ctn {
  padding: 20px 100px 10px 80px; /* スクロール後のパディングを縮小 */
 }
}
.l-header .ctn .logo img {
 width: auto;
 height: 30px; /* 初期サイズ */
 transition: height 0.3s ease; /* スムーズに縮小・拡大 */
}

@media screen and (min-width: 1024px) {
 .l-header .ctn .logo img {
  height: 50px; /* 大画面時の初期サイズ */
 }
 .l-header.shrink .ctn .logo img {
  height: 40px; /* スクロール後のロゴサイズ */
 }
}
.l-header .ctn .menu .menu-list {
 display: flex;
 gap: 40px;
 flex-direction: row;
 align-items: center;
}
.l-header .ctn .menu .menu-list .btn-contact {
 width: 150px;
 display: flex;
 background-color: rgb(0 93 39 / 50%);
 padding: 10px 0;
 border-radius: 40px;
 flex-direction: row;
 justify-content: center;
}
.l-header .ctn .menu-list {
 list-style: none;
 padding: 0;
 margin: 0;
}

.l-header .ctn .menu-item {
 position: relative;
}

.l-header .ctn .flag {
 width: 25px;
 height: 25px;
 border-radius: 5px;
 margin-right: 10px;
}

.l-header .ctn .submenu {
 position: absolute;
 top: 100%; /* 親メニューの下に配置 */
 left: -45%;
 width: 300px;
 display: none; /* 初期状態で非表示 */
 background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒背景 */
 padding: 10px 0;
 list-style: none;
 margin: 0;
}

.l-header .ctn .submenu li {
 padding: 10px 20px;
}

.l-header .ctn .submenu li a {
 color: #fff;
 text-decoration: none;
 font-size: 14px;
 display: block;
}

/* 親メニューにホバーした時にサブメニューを表示 */
.l-header .ctn .menu-item:hover .submenu {
 display: block;
}

/*
main
================================*/
/*
footer
================================*/
.l-footer {
 background-color: #000;
 color: #fff;
}
.l-footer .sns_list {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}
.l-footer .sns_list .item:nth-child(2) {
 margin: 0 30px;
}
@media screen and (min-width: 1024px) {
 .l-footer .sns_list .item:nth-child(2) {
  margin: 0 60px;
 }
}
.l-footer .logo {
 text-align: center;
}
.l-footer .address {
 font-style: normal;
 margin-top: 30px;
}
.l-footer .address > div {
 text-align: center;
}
.l-footer .address > div:nth-child(2) {
 margin-top: 15px;
}
.l-footer .cp {
 padding: 20px 0;
 color: #fff;
 margin-top: clamp(2.5rem, 1.893rem + 2.59vw, 5rem);
}

/*
footer
================================*/
.l-footer .section_comment {
 padding-bottom: 35px;
}
.l-footer .section_title {
 font-size: 23px;
 font-weight: bold;
 padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
 .l-footer .section_title {
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 38px;
 }
}
.l-footer .section_main_title {
 font-size: 20px;
 line-height: 1.6;
 padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
 .l-footer .section_main_title {
  font-size: 35px;
  padding-bottom: 30px;
 }
}
.l-footer .section_sub_title {
 font-weight: normal;
 line-height: 1.6em;
}
@media screen and (min-width: 768px) {
 .l-footer .section_sub_title {
  font-size: 20px;
 }
}
.footer_contact:first-child {
 padding-top: 0px;
}
.footer_contact {
 display: flex;
 padding-top: 30px;
 flex-direction: column;
 align-items: stretch;
}
@media screen and (min-width: 768px) {
 .footer_contact {
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  align-items: center;
 }
}

.l-footer .contact_section {
 width: auto;
 display: flex;
 flex-direction: column;
 align-items: center;
 background: #00712f;
 padding: 20px 0;
 gap: 20px;
 border-radius: 10px;
}
@media screen and (min-width: 1024px) {
 .l-footer .contact_section {
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #00712f;
  padding: 30px 0;
  gap: 30px;
  border-radius: 10px;
 }
}
.l-footer .contact_section_title {
 font-size: 20px;
}
@media screen and (min-width: 768px) {
 .l-footer .contact_section_title {
  font-size: 26px;
 }
}

.l-footer .contact_box {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}
@media screen and (min-width: 768px) {
 .l-footer .contact_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
 }
}
.l-footer .contact_box02 {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}
@media screen and (min-width: 768px) {
 .l-footer .contact_box02 {
  display: flex;
  flex-direction: row;
  justify-content: center;
 }
}

.l-footer .contact_item01 {
 font-size: 20px;
 padding-bottom: 30px;
 margin: 0; /* 左右に均等なマージンを追加 */
}
@media screen and (min-width: 768px) {
 .l-footer .contact_item01 {
  font-size: 26px;
  margin: 0 75px; /* 左右に均等なマージンを追加 */
 }
}
.l-footer .contact_item01 .contact_sub_text {
 font-size: 15px;
 text-align: center;
 padding-top: 10px;
}
.l-footer .contact_item02 {
 font-size: 20px;
 padding-bottom: 20px;
 margin: 0; /* 左右に均等なマージンを追加 */
}
@media screen and (min-width: 768px) {
 .l-footer .contact_item02 {
  font-size: 26px;
  margin: 0 75px; /* 左右に均等なマージンを追加 */
 }
}

/* フッターオフィス一覧 */
.l-footer .footer_offices {
 display: flex;

 gap: 30px;
 padding-top: 60px;
 color: #fff;
 text-align: left;
 flex-direction: column;
}
@media screen and (min-width: 768px) {
 .l-footer .footer_offices {
  display: grid; /* Gridレイアウトを使用 */
  grid-template-columns: repeat(3, 1fr); /* 3列均等配置 */
  grid-template-rows: repeat(2, auto); /* 2行 */
  gap: 40px; /* 行と列の間隔 */
  padding-top: 60px;
  color: #fff; /* 文字色 */
  text-align: left; /* テキスト左揃え */
 }
}
/* 各拠点の情報 */
.l-footer .office_item {
 font-size: 16px;
}

.l-footer .office_item h4 {
 font-size: 18px;
 font-weight: bold;
 margin-bottom: 15px;
}

.l-footer .office_item p {
 font-size: 13px;
 line-height: 1.6;
 margin: 0;
}

.l-footer .footer_pc_menu {
 color: #fff;
 padding-top: 50px;
 text-align: left;
}

.l-footer .pc-menu-list {
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 gap: 20px;
 list-style: none;
 padding: 0;
 margin: 0;
 justify-items: start;
}

.l-footer .pc-menu-list li p {
 font-weight: bold;
 margin-bottom: 18px;
 font-size: 18px;
}

.l-footer .pc-menu-list ul {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 padding-left: 16px;
 gap: 10px;
 font-size: 15px;
}

.l-footer .pc-menu-list .pc-main-text02 {
 padding-top: 30px;
}

.l-footer .pc-menu-list ul li {
 margin-bottom: 5px;
}

.l-footer .pc-main-list .flag {
 width: 25px;
 height: 25px;
 border-radius: 5px;
 margin-right: 10px;
}

.l-footer .pc-menu-list ul li a {
 color: #fff;
 text-decoration: none;
 font-size: 14px;
}

/* 画面左下に固定するハンバーガーメニュー */
.bottom-menu {
 position: fixed;
 bottom: 25px; /* 画面下からの距離 */
 left: 15px; /* 画面左からの距離 */
 width: 60px; /* 幅を指定 */
 height: 60px; /* 高さを指定 */
 background-color: #00712f; /* 背景色 */
 border-radius: 5px; /* 角丸を適用 */
 display: flex;
 justify-content: center;
 align-items: center;
 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* 影をつける */
 z-index: 1000;
}

.bottom-menu button {
 border: none;
 background: none;
 color: #fff; /* アイコンの色 */
 font-size: 24px; /* アイコンの大きさ */
 cursor: pointer;
}

.bottom-menu button:focus {
 outline: none; /* フォーカス時の枠線を消す */
}

/* 下からスライドアップするメニュー */
.menu-content {
 position: fixed;
 bottom: -100%; /* 初期状態では非表示 */
 left: 0;
 width: 100%;
 height: 100%;
 background-color: #141414;
 box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
 z-index: 999;
 display: flex;
 justify-content: flex-start;
 align-items: flex-start; /* 上部に揃える */
 transition: bottom 0.5s ease;
 padding-top: 20px;
 flex-direction: column;
 overflow: hidden; /* 全体にスクロールさせる */
}

.menu-content .menu-list {
 display: flex;
 list-style: none;
 padding: 0;
 margin: 0;
 text-align: left;
 flex-direction: column;
 gap: 35px;
 overflow-y: auto; /* 縦スクロールを有効にする */
 max-height: calc(100% - 40px); /* 上下に余白を持たせる */
 padding: 80px 20px; /* 内側の余白を設定 */
}

.menu-content .menu-list::-webkit-scrollbar {
 width: 0px; /* スクロールバーの幅 */
}

.menu-content .menu-list::-webkit-scrollbar-thumb {
 background: #00712f; /* スクロールバーの色 */
 border-radius: 4px;
}

.menu-content .menu-list::-webkit-scrollbar-track {
 background: #141414; /* スクロールバーの背景 */
}

.menu-content .menu-list .main_menu {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 30px;
}

.menu-content .menu-list .main_menu ul {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 25px;
 padding-left: 20px;
}

.menu-content .menu-list .main_menu .main_menu_text {
 font-size: 18px;
}
.menu-content .menu-list .main_menu .flag {
 width: 25px;
 height: 25px;
 border-radius: 5px;
 margin-right: 10px;
}

.menu-content .menu-list .square_sub_menu {
 text-decoration: none;
 font-size: 14px;
 color: #fff;
 font-weight: bold;
 transition: color 0.3s ease;
}

.menu-content .menu-list .square_menu {
 background: #00712f;
 font-size: 20px;
 display: flex;
 flex-direction: column;
 gap: 25px;
 padding: 20px;
 border-radius: 10px;
 width: 100%;
 align-items: flex-start;
}
.menu-content .menu-list .square_menu .sub_menu a i {
 padding-right: 10px;
}
.menu-content .menu-list .square_menu .sub_menu .contact-item_text02 {
 font-size: 15px;
 padding-top: 10px;
 padding-left: 10px;
}

.menu-content .menu-list a:hover {
 color: #00491f;
}

/* メニューが表示される状態 */
.menu-content.show {
 bottom: 0; /* メニューが画面下にスライドアップ */
}
.menu-content .menu-list .btn-contact {
 width: 170px;
 display: flex;
 background-color: rgb(0 93 39 / 50%);
 padding: 10px 0;
 border-radius: 40px;
 flex-direction: row;
 justify-content: center;
}

/*
dw
================================*/
.dw {
 overflow-y: auto;
 opacity: 0;
 pointer-events: none;
 -webkit-transition: 0.3s ease opacity;
 transition: 0.3s ease opacity;
 position: fixed;
 z-index: 120;
 top: 0;
 left: 0;
 width: 100%;
 height: 100svh;
 background-image: url("../../images/common/dw_bg.jpg");
 background-repeat: repeat;
 background-size: 100% auto;
 background-position: top left;
}
@media screen and (min-width: 1024px) {
 .dw_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  height: 100%;
 }
}
.dw_menu {
 overflow-y: auto;
 padding: 73.02px 30px;
}
@media screen and (min-width: 1024px) {
 .dw_menu {
  width: auto;
  padding: 93.96px 15vw;
 }
}
.dw_menu_list .item {
 text-align: center;
}
.dw_menu_list .item:not(:first-child) {
 margin-top: 40px;
}
@media screen and (min-width: 1024px) {
 .dw_menu_list .item:not(:first-child) {
  margin-top: 60px;
 }
}
.dw_menu_list .item a {
 color: #fff;
 font-weight: 900;
}
@media screen and (min-width: 1024px) {
 .dw_menu_list .item a {
  font-size: 16px;
 }
}
.dw_menu .lang {
 margin-top: 40px;
}
@media screen and (min-width: 1024px) {
 .dw_menu .lang {
  margin-top: 60px;
 }
}
.dw_menu .lang_btn:nth-child(2) {
 margin-top: 15px;
}
@media screen and (min-width: 1024px) {
 .dw_menu .lang_btn:nth-child(2) {
  margin-top: 25px;
 }
}
.dw_menu .lang_btn:nth-child(2) a {
 border: 1px solid #fff;
}
.dw_menu .lang_btn a {
 display: block;
 width: 100%;
 max-width: 210px;
 margin-inline: auto;
 text-align: center;
 padding: 15px 30px;
 color: #fff;
}
.dw_menu .lang .selected a {
 background: #fff;
 color: #333;
}
.dw_menu .contact {
 margin-top: 40px;
}
@media screen and (min-width: 1024px) {
 .dw_menu .contact {
  margin-top: 60px;
 }
}
.dw_menu .contact_btn2 {
 margin-top: 15px;
}
@media screen and (min-width: 1024px) {
 .dw_menu .contact_btn2 {
  margin-top: 25px;
 }
}
.dw_menu .contact_btn:nth-child(1) a {
 border: 1px solid #fff;
}
.dw_menu .contact_btn a {
 display: block;
 width: 100%;
 max-width: 220px;
 margin-inline: auto;
 text-align: center;
 padding: 15px 30px;
 color: #333;
}
.dw_menu .contact_btn2 a {
 display: block;
 width: 100%;
 max-width: 220px;
 margin-inline: auto;
 text-align: center;
 padding: 15px 30px;
 color: #333;
 background-color: #fff;
}
.dw_menu .contact .selected a {
 color: #fff;
}
.dw_menu .reserve-btn {
 margin-top: 40px;
}
@media screen and (min-width: 1024px) {
 .dw_menu .reserve-btn {
  margin-top: 60px;
 }
}
.dw_menu .reserve-btn a {
 display: block;
 width: 100%;
 max-width: 200px;
 margin-inline: auto;
 text-align: center;
 padding: 15px 30px;
 color: #fff;
 border: 2px solid #fff;
}
.dw_overlay {
 display: none;
}
@media screen and (min-width: 1024px) {
 .dw_overlay {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-image: url("../../images/common/dw_bg_lt.jpg?2024");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
 }
}
.dw .closeBtn {
 position: absolute;
 top: 20px;
 right: 30px;
}
@media screen and (min-width: 1024px) {
 .dw .closeBtn {
  top: 30px;
  right: 80px;
 }
}
.dw .closeBtn img {
 height: 33.02px;
}

.is-dw {
 opacity: 1;
 pointer-events: auto;
}

/*===============================
module
================================*/
/*
h-style
================================*/
.h-style1 {
 text-align: center;
 font-size: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
 font-family: "Noto Serif JP", serif;
 letter-spacing: 4px;
 font-weight: 600;
 padding-bottom: clamp(1.875rem, 1.572rem + 1.29vw, 3.125rem);
}

/*
btn-style
================================*/
.btn-style1 {
 margin-top: clamp(1.875rem, 1.572rem + 1.29vw, 3.125rem);
}
.btn-style1 a {
 display: block;
 max-width: 300px;
 font-size: 16px;
 margin-inline: auto;
 text-align: center;
 padding: 20px 0;
 background: linear-gradient(to top, #bd0000, #ff4b4b);
 color: #fff;
 border-radius: 10px; /* 丸みを追加 */
 border: none;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
 cursor: pointer;
 text-decoration: none; /* リンクの場合 */
}
@media screen and (min-width: 768px) {
 .btn-style1 a {
  display: block;
  max-width: 350px;
  font-size: 20px;
  margin-inline: auto;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(to top, #bd0000, #ff4b4b);
  color: #fff;
  border-radius: 10px; /* 丸みを追加 */
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none; /* リンクの場合 */
 }
}
.gmap-btn {
 color: #295ecc;
 text-decoration: underline;
}

.section_button {
 display: flex;
 justify-content: center;
 flex-direction: row;
}
.section_button .btn01 {
 font-size: 17px;
 background-color: #07401f;
 width: 300px;
 border-radius: 40px;
 padding: 20px 0;
 text-align: center;
}

/*
p-style
================================*/
.p_kv {
 position: relative; /* 必要に応じて設定 */
 width: 100%;
 height: auto; /* 画面全体の高さ */
 background-position: center;
 background-size: cover;
 background-attachment: fixed; /* スクロール時に背景が追随 */
}
@media screen and (min-width: 1024px) {
 .p_kv {
 }
}
@media screen and (min-width: 1200px) {
 .p_kv {
 }
}
/* スマホだけ背景画像を無効に */
@media screen and (max-width: 767px) {
 .p_kv {
  background-image: none !important;
  background-attachment: scroll;
 }
}

.p_bg {
 color: #fff;
}
.p_bg02 {
 background-color: #fff;
 color: #000000;
}

.p_bg03 {
 background-color: #000000;
 color: #fff;
}

/*
news-style
================================*/
@media screen and (min-width: 768px) {
 .news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 50px;
 }
}
.news_list {
 padding: 40px 20px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
 .news_list {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
 }
}
.news_list .item {
 margin-top: 30px;
}
@media screen and (min-width: 768px) {
 .news_list .item {
  width: calc(33.3% - 13.3px);
  margin-right: 20px;
 }
}
@media screen and (min-width: 1024px) {
 .news_list .item {
  width: calc(33.3% - 26.6px);
  margin-right: 40px;
 }
}
.news_list .item:first-child {
 margin-top: 0;
}
@media screen and (min-width: 768px) {
 .news_list .item:nth-child(-n + 3) {
  margin-top: 0;
 }
}
@media screen and (min-width: 768px) {
 .news_list .item:nth-child(3n) {
  margin-right: 0;
 }
}
.news_list .item a .thumb {
 position: relative;
 overflow: hidden;
 aspect-ratio: 3/2;
}
.news_list .item a .thumb img {
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 border-radius: 20px;
}
.news_list .item a .date {
 margin-top: 15px;
}
@media screen and (min-width: 768px) {
 .news_list .item a .date {
  margin-top: 18px;
 }
}
.news_list .item a .news_h {
 padding-top: 12px;
 line-height: 1.6em;
 font-size: 16px;
 width: 100%;
}
@media screen and (min-width: 768px) {
 .news_list .item a .news_h {
  padding-top: 12px;
  line-height: 1.6em;
  font-size: 16px;
  width: 80%;
 }
}

.pagination {
 display: flex;
 justify-content: center; /* 要素を中央揃え */
 align-items: center; /* 垂直方向も中央揃え */
 gap: 8px; /* 各ボタンの間隔 */
 margin-bottom: 40px;
 padding: 10px;
 list-style: none; /* リストマーカーを非表示 */
}

.pagination li {
 display: inline; /* リストアイテムを横並びに */
}

.pagination a,
.pagination .current {
 display: inline-block;
 padding: 8px 12px;
 font-size: 14px;
 font-weight: bold;
 color: #003300;
 background-color: #ffffff;
 border: 2px solid #07401f;
 border-radius: 5px;
 text-decoration: none;
 transition: all 0.3s ease;
}

.pagination a:hover {
 color: #ffffff;
 background-color: #07401f;
}

.pagination .current {
 color: #ffffff;
 background-color: #07401f;
 border: 2px solid #07401f;
}

/*
space
================================*/
.pad-tb {
 padding: clamp(2.5rem, 1.893rem + 2.59vw, 5rem) 0;
}

.pad-t {
 padding-top: clamp(2.5rem, 1.893rem + 2.59vw, 5rem);
}

/*
align
================================*/
.left {
 text-align: left;
}

.center {
 text-align: center;
}

.right {
 text-align: right;
}

/*
font
================================*/
.gothic {
 font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
  Meiryo, sans-serif;
}

.serif {
 font-family: "Noto Serif JP", serif;
}

/*
font-weight
================================*/
/*
color
================================*/
/*
paragraph
================================*/
.ps p {
 line-height: 1.8em;
}
.ps .p2 {
 line-height: 1.8em;
 color: #fff;
}
.ps p:not(:first-child) {
 margin-top: 15px;
}
