@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

html {
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
 font-size: 62.5%;
 height: 100%;
}

body {
 color: #000;
 font-family: "M PLUS 1p", sans-serif;
 background:#fff;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
 overflow-wrap: anywhere;
 word-break: normal;
 line-break: strict;
}
@media screen and (max-width: 768px){
body {
 font-size: 14px;
}
}

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

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

a:hover{
 opacity: 0.5;
 transition: 0.8s;
}

a:visited{
/* color: inherit!important;*//*親と同じ色*/
}

p{
 line-height: 1.5;
}

.en{
 font-family: "Montserrat", sans-serif;
}

/*///////////////////////////////////////
ヘッダー
///////////////////////////////////////*/
/* ヘッダー */
#site-header {
 background: #fff;
 width: 95%;
 height: 70px;
 position: fixed;
 top: 1%;
 z-index: 999;
 border-radius: 50px;
 left:50%;
 transform: translate(-50%);
 -webkit-transform:translateX(-50%);
 -ms-transform:translateX(-50%);
}
.header-inner {
 /*max-width: 1200px;*/
 height: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 0 20px;
 margin: 0 auto;
}

/* ロゴ */
.site-logo a {
 font-size: 1.5em;
 font-weight: bold;
 color: #35BFF1;
 display: block;
 height: 44px;
}
.site-logo a img{
 width: 250px;
}

/* ナビメニュー */
.site-nav ul {
 display: flex;
 list-style: none;
}
.site-nav li {
 margin-left: 30px;
}
.site-nav a {
 font-size: 14px;
 font-weight: bold;
 transition: 0.3s;
}
.site-nav a:hover {
 color: #007d39;
 opacity: 1;
}

/* ハンバーガーアイコン */
#nav-toggle {
  display: none;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}
#nav-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  left: 0;
  transition: 0.5s;
}
#nav-toggle span:nth-child(1) { top: 0; }
#nav-toggle span:nth-child(2) { top: 11px; }
#nav-toggle span:nth-child(3) { top: 22px; }

/* open時の動き */
body.open #nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
body.open #nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.open #nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* SPメニュー初期状態 */
@media screen and (max-width: 768px) {

#site-header {
 height: 50px;
 border-radius: 30px;
}
.site-logo a img{
 width: 160px;
 max-width: 100%;
}

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 80vh;
    background: #fff;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
    padding-top: 60px;
    border-radius: 50px;
  }
  body.open .site-nav {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .site-nav li {
    margin: 20px 0;
  }

  #nav-toggle {
    display: block;
  }

  .site-nav ul {
    margin-top: 30px;
  }
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* 半透明の黒 */
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.open .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* スクロールを止める */
body.open {
  overflow: hidden;
}


/*///////////////////////////////////////
簡易表示切り替え用
///////////////////////////////////////*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}

/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.button a {
 background: #007d39;
 border-radius: 9999px;
 position: relative;
 display: flex;
 justify-content: space-around;
 align-items: center;
 margin: auto;
 max-width: 250px;
 padding: 10px 25px;
 text-decoration: none;
 color: #fff;
 line-height: 1.8;
 transition: 0.3s ease-in-out;
 font-weight: 500;
}
.button a:after {
 content: "";
 position: absolute;
 top: 50%;
 bottom: 0;
 right: 2rem;
 font-size: 90%;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: right 0.3s;
 width: 6px;
 height: 6px;
 border-top: solid 2px currentColor;
 border-right: solid 2px currentColor;
 transform: translateY(-50%) rotate(45deg);
}
.button a:hover {
 background: #e0ffed;
 color: #007d39;
 opacity: 1;
}
.button a:hover:after {
 right: 1.4rem;
}


/*///////////////////////////////////////
CSSアニメーション
///////////////////////////////////////*/
/*画面内に入ったらフェードイン*/
.fadein_youso{
 opacity: 0;
 transition: all 2s;
}
.fadeIn {
 opacity: 1;
}

/*///////////////////////////////////////
画面内に入ったら下から出てくる
fade-upを個別につければ勝手に遅れて徐々に表示される
///////////////////////////////////////*/
.fade-up {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
 opacity: 1;
 transform: translateY(0);
}


/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/

/*メインイメージ*/
.mainimg{
 display: block;
 height: 700px;
 position: relative;
 background: #fff url(../img/mainimg.jpg) 0 0 no-repeat;
 background-size: cover;
 background-attachment: fixed;
}
.imgcontent{
 display: flex;
 justify-content: center;
 align-items: center;
 background: rgba(0,125,57,0.6);
 position: absolute;
 top: 0;
 right: 0;
 width: 700px;
 height: 100%;
 padding: 30px;
 color: #fff;
 line-height: 1.5;
 font-weight: bold;
 text-align: center;
 font-size: 1.5em;
}
.imgcontent h2{
 line-height: 1.2;
 font-size: 2em;
 color: #fff;
}
.imgcontent img{
 display: block;
 width: 350px;
 max-width: 100%;
 margin: 0 auto;
}
.imgcontent span{
 display: block;
 background: #007d39;
 margin: 10px auto 0;
 padding: 5px 10px;
 text-align: center;
 font-weight: normal;
 font-size: 0.9em;
 color: #fff;
}

.imgcontent02{
 display: flex;
 position: absolute;
 bottom: 20%;
 left: 5%;
 gap: 30px;
 justify-content: flex-start;
}
@media screen and (max-width: 768px){
.imgcontent{
 top: 0%;
 left: 0%;
 max-width: 100%;
}
.imgcontent02{
 flex-wrap: wrap;
 bottom: 15%;
 left: 3%;
}
}
.head-point{
 display: block;
 width: 150px;
 max-width: 100%;
 line-height: 1.5;
 background: #1a17ae;
 color: #fff;
 padding: 10px;
 box-shadow: 5px 5px 0px 0px rgba(255, 242, 50, 1);
}
.head-point h3{
 text-align: center;
 font-size: 0.8em;
}
.head-point img{
 display: block;
 width: 90%;
 margin: 10px auto 0px;
}

.head-info{
 display: block;
 background: #fff;
 padding: 20px;
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 -webkit-transform: translateX(-50%);
 -ms-transform: translateX(-50%);
 width: 90%;
}
.head-info h3{
 display: block;
 color: #26368c;
 border-bottom: 1px solid #26368c;
 padding-bottom: 5px;
 text-align: left;
}
.head-info-inner{
 display: flex;
 justify-content: left;
 align-items: center;
 gap: 30px;
 margin-top: 10px;
}
.head-time{
 display: block;
 font-weight: bold;
}


/*コンテンツ領域*/
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
 line-height: 1.5;
}

main {
 /*margin: 6rem 0 0 0;*/
}
section {
/* margin: 5rem 0;*/
 padding: 5rem 0;
}

.center {
 text-align: center;
 margin-bottom: 4rem;
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}

@media screen and (max-width: 768px){
.imgcontent h2{
 font-size: 1.8em;
}
.center {
 text-align: left;
}
}


/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
.h2-center{
 display: block;
 text-align: center;
 font-size: 2em;
 margin: 50px auto 30px;
 font-weight: 500;
}
.h2-center span{
 display: block;
 text-align: center;
 font-size: 0.9em;
 color: #007d39;
}
@media screen and (max-width: 768px){
.h2-center{
 margin: 0px auto 30px;
}
}

.h2-border{
 display: block;
 font-size: 1.8em;
 font-weight: 500;
 color: #333;
 text-align: center;
}
.h2-border::after{
 content: "";
 display: block;
 width: 60px;
 height: 4px;
 border-radius: 3px;
 background: #007d39;
 margin: 10px auto 0;
}

h3{
 display: block;
 margin: 30px auto;
 color: #007d39;
 text-align: center;
 font-size: 1.3em;
}

/*///////////////////////////////////////
サービス紹介
///////////////////////////////////////*/
.service-item{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 10px;
 justify-content: center;
}
.service-item h3{
 margin: 0;
}
.service-item-in{
 display: block;
 text-align: center;
 color: #007d39;
 background: #fff;
 border-radius: 30px;
 padding: 30px 0;
}
.service-item-in img{
 display: block;
 width: 250px;
 margin: 10px auto;
}
@media screen and (max-width: 768px){
.service-item{
 grid-template-columns: 1fr;
}
}


/*///////////////////////////////////////
各ページタイトル/パンくず
///////////////////////////////////////*/
.pagetitle{
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 80%;
 font-weight: bold;
 height: 400px;
 background: url(../img/titleBG.jpg) no-repeat center center / cover;
 background-color: #fff;
}
.pagetitle h2{
 color: #fff;
 font-size: 2.5em;
}

.pagetitle-dogrun{
 background: url(../img/titleBG02.jpg) no-repeat top center / cover;
}

@media screen and (max-width: 768px){
.pagetitle{
 height: 270px;
}
}

/*パンくず*/
.breadcrumb {
 display: flex;
 flex-wrap: wrap;
 list-style: none;
 padding: 5px 20px;
 font-size: 0.8em;
}
.breadcrumb li:not(:last-of-type)::after {
 content: "/";
 margin: 0 .6em;
 color: #777;
}


/*///////////////////////////////////////
インデックス　ゴルフ
///////////////////////////////////////*/
.topgolf{
 display: block;
 position: relative;
 padding: 100px 0 0px;
 width: 1980px;
 max-width: 100%;
}
.golf-title{
 display: block;
 color: #97dbb3;
 font-size: 220px;
 font-weight: bold;
 position: absolute;
 top: -5%;
 left: 0%;
 font-family: "Montserrat", sans-serif;
}
.top-golf-img{
 display: block;
 border-radius: 0 30px 0 0;
 width: 1000px;
 max-width: 100%;
}
.top-golf-img02{
 display: block;
 width: 200px;
 max-width: 100%;
 position: absolute;
 top: -20%;
 right: 0;
}
.top-service-txt{
 display: block;
 position: absolute;
 right: 0;
 bottom: -5%;
 border-radius: 30px 0 0 30px;
 background: #f7f7f7;
 padding: 80px;
 width: 800px;
 max-width: 100%;
 line-height: 1.5;
 z-index: 1;
}
.top-service-txt h3{
 display: block;
 font-size: 1.8em;
 color: #007d39;
 text-align: left;
}
.top-service-txt p{
 font-size: 18px;
 margin: 20px auto;
 line-height: 1.8;
}
@media screen and (max-width: 768px){
.topgolf{
 padding: 0;
}
.top-service-txt{
 display: block;
 position: static;
 padding: 20px;
}
.golf-title{
 font-size: 100px;
 top: -10%;
 text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.1);
}
.top-service-txt h3{
 font-size: 18px;
}
.top-service-txt p{
 font-size: 16px;
}
.top-golf-img02{
 width: 110px;
 top:20%;
}
}


.topdog{
 display: block;
 position: relative;
 padding: 250px 0 50px;
 background: #97dbb3;
}
.dog-title{
 display: block;
 color: #fff;
 font-size: 220px;
 font-weight: bold;
 position: absolute;
 top: 10%;
 right: 0%;
 font-family: "Montserrat", sans-serif;
}
.top-dog-img{
 display: block;
 border-radius: 30px 0px 0 0;
 width: 1000px;
 max-width: 100%;
 margin-left: auto;
}
.top-service-txt02{
 display: block;
 position: absolute;
 left: 0;
 bottom: -5%;
 border-radius: 0px 30px 30px 0px;
 background: #f7f7f7;
 padding: 80px;
 width: 800px;
 max-width: 100%;
 line-height: 1.5;
 z-index: 1;
}
.top-service-txt02 h3{
 display: block;
 font-size: 1.8em;
 color: #007d39;
 text-align: left;
}
.top-service-txt02 p{
 font-size: 18px;
 margin: 20px auto;
 line-height: 1.8;
}
.top-dog-img02{
 display: block;
 width: 300px;
 max-width: 100%;
 position: absolute;
 top: -10%;
 right: 0;
}
@media screen and (max-width: 768px){
.topdog{
 padding: 100px 0 50px;
 display: flex;
 flex-wrap: wrap-reverse;
}
.top-service-txt02{
 display: block;
 position: static;
 padding: 20px;
}
.dog-title{
 font-size: 100px;
 line-height: 1;
 top: 0%;
 left: 0;
 text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.1);
}
.top-service-txt02 h3{
 font-size: 18px;
}
.top-service-txt02 p{
 font-size: 16px;
}
.top-dog-img02{
 width: 160px;
 top:36%;
}
}

/*///////////////////////////////////////
料金案内
///////////////////////////////////////*/
.price-wrap{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 10px;
 margin: 30px auto;
}
.price-wrap02{
 display: grid;
 grid-template-columns: 1fr 2fr;
 gap: 50px;
 margin: 30px auto;
}
.price-box{
 display: block;
 border: 1px solid #ddd;
 background: #fff;
 text-align: center;
}
.price-title{
 display: block;
 background: #e2e2e2;
 padding: 10px 0;
 font-size: 1.5em;
 font-weight: bold;
}
.price-box p{
 display: block;
 margin: 30px auto;
 font-size: 1.5em;
}
@media screen and (max-width: 768px){
.price-wrap{
 grid-template-columns: 1fr;
}
.price-wrap02{
 grid-template-columns: 1fr;
}
}

/*料金テーブル*/
.price-table {
 border-collapse: collapse;
 margin: 0 auto;
 padding: 0;
 table-layout: fixed;
 margin-top: 30px;
 width: 800px;
 max-width: 100%;
}
.price-table tr {
 background-color: #fff;
 padding: .35em;
 border-bottom: 2px solid #ddd;
}
.price-table th,
.price-table td {
 padding: 1em 10px 1em 1em;
 border-right: 2px solid #ddd;
}
.price-table th {
 background: #e2e2e2;
 color: #333;
}
.price-table thead tr{
 background-color: #167F92;
 color:#fff;
}
.price-table tbody th {
 background: #efefef;
 color: #fff;
}
.price-table .price{
 text-align: center;
 color: #333;
 background: #fff;
 font-size: 1.5em;
}
.price-table .non{
 background:#fff
}
@media screen and (max-width: 768px){
.price-table {
 border: 0;
 width:100%
}
.price-table th{
 background-color: #efefef;
 display: block;
 border-right: none;
}
.price-table thead {
 border: none;
 clip: rect(0 0 0 0);
 height: 1px;
 margin: -1px;
 overflow: hidden;
 padding: 0;
 position: absolute;
 width: 1px;
}
.price-table tr {
 display: block;
 margin-bottom: .625em;
}
.price-table td {
 border-bottom: 1px solid #bbb;
 display: block;
 font-size: .8em;
 text-align: right;
 position: relative;
 padding: .625em .625em .625em 4em;
 border-right: none;
}
.price-table td::before {
 content: attr(data-label);
 font-weight: bold;
 font-size: 0.8em;
 position: absolute;
 left: 10px;
 color: #333;
}
.price-table td:last-child {
 border-bottom: 0;
}
.price-table tbody th {
 color: #fff;
}
}


/*///////////////////////////////////////
施設案内
///////////////////////////////////////*/
.facility-wrap{
 display: grid;
 grid-template-columns: 500px 1fr;
 gap: 30px;
 margin: 50px auto;
 align-items: center;
}
.facility-wrap img{
 border-radius: 30px;
}
.facility-txt{
 display: block;
 line-height: 1.5;
 text-align: left;
}
.facility-txt h3{
 display: block;
 font-size: 1.6em;
 color: #007d39;
 text-align: left;
 margin-top: 0;
 margin-bottom: 20px;
}
.facility-txt p{
 display: block;
 line-height: 1.8;
 text-align: left;
}
.facility-img{
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 10px;
 align-items: center;
 margin-top: 20px;
}
@media screen and (max-width: 768px){
.facility-wrap{
 grid-template-columns: 1fr;
}
.facility-img{
 grid-template-columns: repeat(2,1fr);
}
.facility-wrap img{
 border-radius: 5px;
}
}

/*ライトボックス*/
.lightbox-overlay {
 visibility: hidden;
 opacity: 0;
 transition: opacity 0.3s, visibility 0.3s;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.8);
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 1000;
}
.lightbox-overlay:target {
 visibility: visible;
 opacity: 1;
}
.lightbox-content {
 max-width: 90%;
 max-height: 90%;
 overflow: auto;
 background: #fff;
 padding: 10px;
 border-radius: 5px;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
 transform: scale(0.8);
 transition: transform 0.3s ease-out;
}
.lightbox-overlay:target .lightbox-content {
  transform: scale(1);
}
.lightbox-content img {
 display: block;
 max-width: 100%;
 height: auto;
}
.lightbox-close {
 position: absolute;
 top: 15px;
 right: 25px;
 color: #fff;
 font-size: 40px;
 text-decoration: none;
 line-height: 1;
 z-index: 1001;
}
.lightbox-close:hover {
 color: #ccc;
}
.lightbox-overlay .lightbox-close-area {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 999;
}


/*///////////////////////////////////////
ドッグラン
///////////////////////////////////////*/
.dogrun-wrap{
 display: grid;
 grid-template-columns: 1fr 500px;
 gap: 30px;
 margin: 50px auto;
 align-items: center;
}
.dogrun-wrap img{
 border-radius: 30px;
}
.dogrun-txt{
 display: block;
 line-height: 1.5;
 text-align: left;
}
.dogrun-txt h3{
 display: block;
 font-size: 1.6em;
 color: #007d39;
 text-align: left;
 margin-top: 0;
 margin-bottom: 20px;
}
.dogrun-txt p{
 display: block;
 line-height: 1.8;
 text-align: left;
}
.dogrun-img{
 display: grid;
 grid-template-columns: repeat(4,1fr);
 gap: 10px;
 align-items: center;
 margin-top: 20px;
}
.dogrun-img img{
 border-radius: 20px;
}

@media screen and (max-width: 768px){
.dogrun-wrap{
 display: flex;
 flex-wrap: wrap-reverse;
}
.dogrun-img{
 grid-template-columns: repeat(3,1fr);
}
.dogrun-wrap img{
 border-radius: 10px;
}
.dogrun-img{
 grid-template-columns: repeat(2,1fr);
}
}


/*///////////////////////////////////////
アクセス
///////////////////////////////////////*/
.access-wrap{
 display: block;
 background: #fff;
 border-radius: 30px;
 padding: 10px;
 width: 900px;
 max-width: 100%;
 margin: 50px auto 30px;
}
.kaisya-gaiyou {
 border-collapse: collapse;
 width: 800px;
 max-width: 100%;
 margin: 10px auto;
}
.kaisya-gaiyou th,
.kaisya-gaiyou td {
 border-bottom: 1px solid #dbe1e8;
 padding: 15px;
}
.kaisya-gaiyou td{
 text-align: left;
}
.kaisya-gaiyou th {
 text-align: left;
 width: 200px;
 color: #007d39;
}

@media screen and (max-width: 768px){
.kaisya-gaiyou{
 width: 100%;
}
.kaisya-gaiyou tr,
.kaisya-gaiyou th,
.kaisya-gaiyou td {
 display: block;
 width: auto;
}
.kaisya-gaiyou tr:first-child {
 border-top: 1px solid #dbe1e8;
}
.kaisya-gaiyou th,
.kaisya-gaiyou td {
 border-top: none;
}
}


/*///////////////////////////////////////
スクール
///////////////////////////////////////*/
.school-wrap{
 display: flex;
 background: #fff;
 gap: 10px;
 padding: 10px;
 border-radius: 20px;
 margin: 30px auto;
 align-items: center;
 justify-content: center;
 width: 500px;
 max-width: 100%;
}
.school-wrap img{
 display: block;
 width: 200px;
 max-width: 100%;
}
@media screen and (max-width: 768px){
.school-wrap{
 flex-wrap: wrap;
}
}

.pro-wrap{
 display: grid;
 grid-template-columns: 200px 1fr;
 align-items: center;
 justify-content: center;
 gap: 30px;
 width: 800px;
 max-width: 100%;
 margin: 30px auto;
}

.pro-wrap h4{
 font-size: 1.3em;
 border-bottom: 2px solid #007d39;
}

.proname{
 display: block;
 padding: 5px;
 text-align:left;
 background: #007d39;
 color: #fff;
 font-weight: bold;
 margin-top: 30px;
 margin-bottom: 10px;
 font-size: 1.1em;
}

.pro-info{
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 padding-top: 30px;
}
.pro-days{
 display: flex;
 gap: 10px;
 margin-bottom: 20px;
}
.pro-days span{
 background: #007d39;
 color: #fff;
 padding: 5px 12px;
 border-radius: 20px;
 white-space: nowrap;
}
.pro-text{
 background: #f5f5f5;
 border-left: 4px solid #007d39;
 padding: 15px;
 line-height: 1.7;
 font-size: 0.95em;
}

@media screen and (max-width: 768px){
.pro-wrap{
 grid-template-columns: 1fr;
}
}


/*///////////////////////////////////////
ドッグランページ
///////////////////////////////////////*/
.dogrun-txt02{
 display: block;
 margin: 30px auto;
 width: 800px;
 max-width: 100%;
 text-align: left;
}

@media screen and (max-width: 768px){

}

.dogrunimg-wrap{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 gap: 10px;
 margin: 30px auto;
}
@media screen and (max-width: 768px){
.dogrunimg-wrap{
 grid-template-columns: 1fr;
}
}

.dogrunimg-wrap h4 {
 display: block;
 margin-bottom: 10px;
 background: #007d39;
 color: #fff;
 padding: 10px 0;
 text-align: center;
}

.azirite-wrap{
 display: grid;
 /*grid-template-columns: repeat(3,1fr);*/
 grid-template-columns: repeat(3,250px);
 gap: 10px;
 margin: 30px auto;
 align-items: flex-end;
 justify-content: center;
}
.azirite-wrap h4{
 display: block;
 margin-bottom: 10px;
 background: #007d39;
 color: #fff;
 padding: 10px 0;
 text-align: center;
}

.telBox-wrap{
 display: block;
 background: #fff;
 border-radius: 20px;
 padding: 10px;
 margin: 30px auto;
 width: 500px;
 max-width: 100%;
}
.telBox-wrap a{
 font-size: 2em;
 font-weight: bold;
 color: #007d39;
}
.telBox-wrap i{
 font-size: 2em;
 color: #007d39;
}
@media screen and (max-width: 768px){
.azirite-wrap{
 grid-template-columns: repeat(3,1fr);
}
}

/*///////////////////////////////////////
フッター
///////////////////////////////////////*/
footer{
 background: #007d39;
 color: #fff;
}

/*フッターメニュー*/
.footer-wrap{
 display: grid;
 grid-template-columns: 300px 1fr;
 margin: 0px auto;
 align-items: center;
 justify-content: center;
 padding: 40px;
}
@media screen and (max-width: 768px){
.footer-wrap{
 grid-template-columns: 1fr;
}
}

.footer-wrap-left{
 display: block;
 font-size: 0.7em;
}
.footer-wrap-left img{
 display: block;
 width: 200px;
 margin-bottom: 10px;
}

.footer-wrap ul{
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
 align-items: center;
 justify-content: end;
 list-style: none;
 font-weight: bold;
}
.footer-wrap ul li a{
 color: #fff;
}
@media screen and (max-width: 768px){
.footer-wrap ul{
 margin-top: 30px;
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 10px;
 justify-content: flex-start;
}
}

/*コピーライト*/
.copyright {
 text-align: center;
 padding: 1rem 0;
 background-color: #fff;
 color: #333;
 font-size: 0.8em;
}




/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
}

.header-box {
 display: none;
}

/*メインコンテンツ*/

/*フッター*/
#nav ul{
 display: inline-block;
}
#nav li{
 display: inline-block;
 width: 160px;
}

}



/*///////////////////////////////////////
フォーム
///////////////////////////////////////*/
.form-wrap{
 display: grid;
 grid-template-columns: 200px 1fr;
 gap: 10px;
 align-items: center;
 width: 800px;
 max-width: 100%;
 margin: 0 auto;
 border-bottom:1px solid #ddd;
 padding: 10px 0;
}

label{
 text-align: left;
}

.required{
 display: inline-block;
 background: #ff8291;
 padding: 2px 10px;
 border-radius: 5px;
 font-size: 0.8em;
 color: #fff;
 font-weight: bold;
 margin-left: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
 width: 100%;
 margin: 1em 0;
 padding: 0.5em;
 border: solid 2px #e3e6ea;
 border-radius: 4px;
}
input[type="text"]:focus,
input[type="mail"]:focus,
input[type="mail"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #529fff;
  outline: 0;
}

input[type="submit"]{
 display: block;
 background: #007d39;
 color: #fff;
 width: 200px;
 padding: 10px;
 text-align: center;
 margin: 10px auto;
}
input[type="submit"]:hover{
 background: #00730b;
}

.kiyaku{
 display: block;
 background: #00730b;
 padding: 10px;
 text-align: left;
 font-size: 0.9em;
 margin: 30px auto;
 width: 900px;
 max-width: 100%;
}
.kiyaku-in{
 display: block;
 background: #fff;
 padding: 30px;
 height: 200px;
 overflow-y: scroll;
}
.kiyaku ul{
 display: block;
 margin-left: 20px;
}

@media screen and (max-width: 768px){
form{
 margin-top: 30px;
}

.form-wrap{
 grid-template-columns: 1fr;
 gap: 2px;
 margin-bottom: 10px;
 padding-bottom: 10px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
 margin: 0;
}
}


/*///////////////////////////////////////
スライダー01
///////////////////////////////////////*/
/* Swiper共通の最低限のCSS */
.swiper {
 width: 100%;
 overflow: hidden;
 height: fit-content!important;
 margin-top:10px;
}
.swiper-wrapper {
 display: flex;
}
.swiper-slide {
 flex-shrink: 0;
 width: 100% !important;
}
.main-slider {
 width: 100%;
 height: auto;
}
.main-slider img {
 width: 100%;
 height: 500px;
 object-fit: cover;
 display: block;
}

/* サムネイルスライダー用 */
.thumbs-slider .swiper-slide {
 flex-shrink: 0;
 width: 130px!important;
 opacity: 0.4;
 cursor: pointer;
}
.thumbs-slider .swiper-slide img{
 display: block;
 width: 130px!important;
 height: 130px!important;
 object-fit: cover;
 margin-top: 5px;
}
.thumbs-slider .swiper-slide-thumb-active {
 opacity: 1;
 height: fit-content;
}
.thumbs-slider {
 overflow: hidden;
 height: 130px;
}
.swiper-free-mode > .swiper-wrapper{
 flex-wrap: wrap;
}

/* PC・タブレット用（デフォルト） */
.thumbs-slider .swiper-slide {
  width: 130px !important;
}
.thumbs-slider .swiper-slide img {
  width: 130px !important;
  height: 130px !important;
}

/* スマホ用 */
@media (max-width: 768px) {
  .thumbs-slider .swiper-slide {
    width: 65px !important;
  }
  .thumbs-slider .swiper-slide img {
    width: 65px !important;
    height: 65px !important;
  }
  .main-slider {
    height: auto;
  }
  .main-slider img {
  height: 200px;
  }
}

/*///////////////////////////////////////
スライダー02
///////////////////////////////////////*/
/* Swiper共通の最低限のCSS */
.main-slider02 {
 width: 100%;
 height: auto;
}
.main-slider02 img {
 width: 100%;
 height: 500px;
 object-fit: cover;
 display: block;
}

/* サムネイルスライダー用 */
.thumbs-slider02 .swiper-slide {
 flex-shrink: 0;
 width: 130px!important;
 opacity: 0.4;
 cursor: pointer;
}
.thumbs-slider02 .swiper-slide img{
 display: block;
 width: 130px!important;
 height: 130px!important;
 object-fit: cover;
 margin-top: 5px;
}
.thumbs-slider02 .swiper-slide-thumb-active {
 opacity: 1;
 height: fit-content;
}
.thumbs-slider02 {
 overflow: hidden;
 height: 130px;
}

/* PC・タブレット用（デフォルト） */
.thumbs-slider02 .swiper-slide {
  width: 130px !important;
}
.thumbs-slider02 .swiper-slide img {
  width: 130px !important;
  height: 130px !important;
}

/* スマホ用 */
@media (max-width: 768px) {
  .thumbs-slider02 .swiper-slide {
    width: 65px !important;
  }
  .thumbs-slider02 .swiper-slide img {
    width: 65px !important;
    height: 65px !important;
  }
  .main-slider02 {
    height: auto;
  }
  .main-slider02 img {
  height: 200px;
  }
}
