<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*** all reset ***/
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-indent: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {

}

body {

	margin:auto;
	

}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  
    position: fixed;
    width: 100%;
    z-index: 1111;
}

.logo {
  font-size: 24px;
}



/* ボタン共通設定 */
.btn04 {
    /*線の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	display:inline-block;
    padding: 10px 30px;
	color:#333;
	border:1px solid #ccc;
    text-decoration: none;
    outline: none;
    /*はみ出す背景色を隠す*/
 	overflow: hidden;
}

/*hoverした際のボタンの形状*/
.btn04:hover {
	color:#ccc;
	border-color: transparent;
    /*色の変化を遅らせる*/
	transition-delay: .6s;
}

/*線の設定*/
.btn04 span{
    display: block;
    z-index: 2;
}

/*== 線から塗に変化（左から右） */

/*線の設定*/
.borderleft span::before,
.borderleft span::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    width:0;
    height:1px;
    /*線の形状*/
    background: #333;
    /*アニメーションの設定*/
	transition: all .3s;
}

/*左上線*/
.borderleft span::before {
    left:0;
    top:0;
}

/*左下線*/
.borderleft span::after {
    left:0;
    bottom:0;
}

/*hoverをすると線が伸びる*/
.borderleft:hover span::before,
.borderleft:hover span::after {
    width: 100%;
}

/*背景の設定*/
.borderleft::before{
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	left: 0;
    bottom:0;
	z-index: -1;
    /*背景の形状*/
	height: 100%;
	width: 0;
	background:#A81F24;
    /*アニメーションの設定*/
	transition: all .3s;
}

/*hoverをすると背景が伸びる*/
.borderleft:hover::before{
	width: 100%;
    /*0.4秒遅れてアニメーション*/
	transition-delay: .4s;
}

/*ハンバーガーメニュー背景*/
@media only screen and (min-width: 765px) {
.iconmen{
   
    display: inline-block;
	position: relative;
	top: -40px;
	right: 0px;
    }
}
@media only screen and (max-width: 764px) {
	.iconmen{
		
		display: inline-block;
		position: relative;
		top: -19px;
		left: 13px;

	}
}

/* ここから下がぱんくずに関するCSS */

.breadcr {position: absolute;
    margin: 0% 0 0 3%;
    display: block;
    font-size: 10px;}
.breadcr li{display:inline-block;}
.breadcr li a span{color:#000;}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 50px;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 45px;
  border-radius: 3px;
  background: #000;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 100%;
  left: 0%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #f00;
  transition: .5s;
  text-align: center;
  padding-top: 20px;
}


/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
    font-size: 1.5em;
    letter-spacing: 1.2px;
    line-height: 2.2em;
}


.nav_item a {
  color: #fff;
  text-decoration: none;
}



/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#005c30;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 30%;
    /*線の形状*/
    width: 40%;
    height: 2px;
    background:#fff;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}




/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0;
  top: 0;
  
  /* メニューを画面に入れる */
  
}



img {
  border: none;

  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
address,
em,
strong,
th,
ins {
  font-size: 100%;
  font-style: normal;
}

table {
  border-collapse: collapse;
  border: 0;
}

th {
  text-align: left;
}

input,
select,
textarea {
  vertical-align: middle;
}

ins,
a {
  text-decoration: none;
}

ul {
  list-style: none;
}

br {
  letter-spacing: 0;
}

.pc-tag {
  display: block;
}

.mainpc{
 text-align:center;
 /*padding-top:8%;*/

 }
 
.centm{
	width: 100%;
 position: relative;
 z-index:1;

}

.leftm{
 max-width: 17%;
 position: relative;
 z-index:3;
 left: 10%;
 margin-top: -37%;
    }
.rightm{
    margin-left: 70%;
    margin-top: -5%;
    max-width: 20%;
    position: relative;
    z-index:2;
	}

.rightm1{
    margin-left: 70%;
    margin-top: -13%;
    max-width: 20%;
    position: relative;
    z-index:2;
	}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
animation-delay: 0.2s;
}

.delay-time04{
animation-delay: 0.4s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:2.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeUp2 {
animation-name:fadeUpAnime;
animation-duration:4.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUp2Anime{
  from {
    opacity: 0;
	transform: translateY(300px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}




/* 拡大 */
.zoomIn{
	animation-name:zoomInAnime;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
  }

  to {
      transform: scale(1);
  }
}

header{margin:0 auto 1% auto;}
#jikanou{
	text-align: center;
    width: 70%;
    margin: auto;
}

#kodawa{
	text-align: center;
    max-width: 900px;
    margin: auto;
}

#jikanousp{
	text-align: center;
    width: 100%;
    margin: auto;
}

#kodawasp{
	text-align: center;
    width: 100%;
    margin: auto;
}


section{
	margin-bottom:5%;
	margin:auto;
	
	}

@media only screen and (max-width: 764px) {
  .mainpc {
    display: none;
  }

  
  
}
@media only screen and (min-width: 765px) {
 
  .mainsp {
    display: none;
  }
  
  
  
}


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


  
  
}

@media print {
  .sp-tag {
    display: none;
  }
  .pc-tag {
    display: block;
  }
}

a,
a:hover,
a:visited,
a:active,
a:focus {
  display: block;

}

a {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.6;
}

.base_w {
  max-width: 1000px;
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}

@media only screen and (max-width: 999px) {
  header .inner {

  }
}

@media only screen and (max-width: 764px) {
  header .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /*padding-bottom: 0;*/
  }
}

header .logo {
  margin-right: 75px;
}

.icon {
   display:inline-block;
}


.icon a{
  display:inline-block;
}


@media only screen and (max-width: 764px) {
  header .logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 0;
    text-align: left;
  }
}

header .h-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 764px) {
  header .h-r {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 10px;
  }
}

header .h-r .red {
  margin-bottom: 10px;
  min-height: 0%;
}

@media only screen and (max-width: 764px) {
  header .h-r .red {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

header .h-r .h-tel {
  min-height: 0%;
}

.main-img {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.yellow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: #fef4d8;
}

.yellow .inner {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 764px) {
  .yellow .inner {
    padding-top: 20px;
  }
}

.yellow h2 {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 764px) {
  .yellow h2 {
    width: 100%;
    margin-bottom: 15px;
  }

  .yellow h2 img{
    width: 100%;
  }
}

.yellow .box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 764px) {
  .yellow .box-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.yellow .box-list p {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-right: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.8);
          box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.8);
}

@media only screen and (max-width: 764px) {
  .yellow .box-list p {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.yellow .box-list p:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 764px) {
  .yellow .box-list p:last-child {
    margin-bottom: 0;
  }
}

.yellow .box-list p.box1 {
  width: 361px;
}

@media only screen and (max-width: 764px) {
  .yellow .box-list p.box1 {
    width: auto;
  }
}

.yellow .box-list p.box2 {
  width: 256px;
}

@media only screen and (max-width: 764px) {
  .yellow .box-list p.box2 {
    width: auto;
  }
}

.yellow .box-list p.box3 {
  width: 283px;
}

@media only screen and (max-width: 764px) {
  .yellow .box-list p.box3 {
    width: auto;
  }
}

.yellow .cap {
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
}

.yellow .cap.sp-tag {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  margin-right: 0;
}

@media only screen and (max-width: 764px) {
  .yellow .cap.sp-tag {
    font-size: 3.4vw;
  }
}

.photo-area {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 999px) {
  .photo-area {
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media only screen and (max-width: 764px) {
  .photo-area {
    padding-bottom: 20px;
  }
}

.photo-area h2 {
  padding-bottom: 30px;
  text-align: center;
}

.photo-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.photo-area ul li {
  width: 32%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 764px) {
  .photo-area ul li {
    width: 100%;
  }
}

@media only screen and (max-width: 764px) {
  .photo-area ul li a {
    pointer-events: none;
  }
}


@media only screen and (max-width: 764px) {
   .logo a {
    display: inline-block;
  }
}

.access-area {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media only screen and (max-width: 999px) {
  .access-area {
    margin-left: 3%;
    margin-right: 3%;
  }
}

.access-area .map-under{
  position:relative;
  overflow: auto;
}

.access-area .map-under .s-map {
  max-width: 521.5px;
  padding-top: 20px;
  position: absolute;
}

@media only screen and (max-width: 999px) {
  .access-area .map-under .s-map {
    max-width: 55%;
  }
}

@media only screen and (max-width: 764px) {
  .access-area .map-under .s-map {
    display: none;
  }
}

.access-area .map-under .s-map::after {
  content: "";
  display: block;
  width: 230px;
  height: 184px;
  background: url(../images/top/map-arrow.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 65%;
}

@media only screen and (max-width: 999px) {
  .access-area .map-under .s-map::after {
    width: 23vw;
    height: 18vw;
  }
}

.access-area .txtbox {
  width: 42%;
  float: right;
  margin-top: 1%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (max-width: 764px) {
  .access-area .txtbox {
    width: 100%;
    padding-top: 40px;
    position: static;
  }
}

.access-area .txtbox h2 {
  padding-bottom: 10px;
  color: #bf0008;
  font-size: 2.6rem;
  font-weight: normal;
}

@media only screen and (max-width: 999px) {
  .access-area .txtbox h2 {
    font-size: 2.6vw;
  }
}

@media only screen and (max-width: 764px) {
  .access-area .txtbox h2 {
    font-size: 5.6vw;
    letter-spacing: 1px;
    text-align: center;
  }
}

.access-area .txtbox .txt {
  font-size: 2rem;
  text-align: justify;
}

.access-area .txtbox p.txt:last-of-type {
    margin-bottom: 30px;
}

@media only screen and (max-width: 999px) {
  .access-area .txtbox .txt {
    font-size: 1.8vw;
  }
}

@media only screen and (max-width: 764px) {
  .access-area .txtbox .txt {
    font-size: 4.2vw;
  }
}

.access-area .txtbox dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.access-area .txtbox dl dt,
.access-area .txtbox dl dd {
  margin-bottom: 15px;
}

.access-area .txtbox dl dt {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 28%;
  margin-right: 2%;
  background: #8fb72f;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.1;
  padding: 4px 0 6px;
}

@media only screen and (max-width: 999px) {
  .access-area .txtbox dl dt {
    font-size: 1.8vw;
  }
}

@media only screen and (max-width: 764px) {
  .access-area .txtbox dl dt {
    font-size: 4.4vw;
  }
}

.access-area .txtbox dl dd {
  width: 70%;
  font-size: 1.9rem;
}

@media only screen and (max-width: 999px) {
  .access-area .txtbox dl dd {
    font-size: 1.8vw;
  }
}

@media only screen and (max-width: 764px) {
  .access-area .txtbox dl dd {
    font-size: 4.4vw;
  }
}

.access-area .txtbox dl dd span.dd-m2 {
  display: inline-block;
  width: 6.5rem;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.access-area .txtbox dl dd span.dd-small {
  font-size: 1.4rem;
}

.access-area .txtbox dl dd p .dd-indent {
  display: inline-block;
  width: 12rem;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.access-area .txtbox dl dd p .dd-bun {
  padding-left: 1em;
}

@media only screen and (max-width: 999px) {
  .access-area .txtbox dl dd span.dd-m2{
    width: 5.8rem;
  }

  .access-area .txtbox dl dd span.dd-small {
    font-size: 1.3vw;
  }

  .access-area .txtbox dl dd p .dd-indent {
    width: 11rem;
  }
}

@media only screen and (max-width: 764px) {
  .access-area .txtbox dl dd span.dd-m2{
    width: 15vw;
  }

  .access-area .txtbox dl dd span.dd-small {
    font-size: 3vw;
  }

  .access-area .txtbox dl dd p .dd-indent {
    width: 28vw;
  }
}

.tel-area {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  color: #71453c;
}

@media only screen and (max-width: 764px) {
  .tel-area {
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 30px;
  }
}

.tel-area .txt {
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 2.2rem;
}

@media only screen and (max-width: 764px) {
  .tel-area .txt {
    padding-bottom: 15px;
    text-align: left;
    font-size: 3.4vw;
  }
}

@media only screen and (max-width: 764px) {
  .tel-area .tel {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.tel-area .btm {
  padding-top: 5px;
  font-weight: bold;
  font-size: 2rem;
}

@media only screen and (max-width: 764px) {
  .tel-area .btm {
    font-size: 3.6vw;
  }
}

footer {
  
}

footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 764px) {
  footer .inner {
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.screenshot-map {
  max-width: 1000px;
  margin: 40px auto 40px;
  position: relative;
}

.screenshot-map h2 {
  background: #83BA00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  display: inline;
  padding: 6px 8px 8px;
  border-radius: 10px 10px 0 0;
}

.screenshot-map iframe{
  margin: 7px 0 0;
  width: 100%;
}

@media only screen and (max-width: 764px) {
  .screenshot-map {
    padding-left: 3%;
    padding-right: 3%;
    margin-bottom: 40px;
  }
  
  .screenshot-map iframe {
    width: 100%;
    height:320px;
  }
}

.facebook {
  max-width: 500px;
  max-height: 500px;
  margin: 18px auto 18px;
}

.facebook div {
  width: 100%;
}

.facebook-button {
  max-width: 500px;
  margin: 18px auto 70px;
  border: 2px solid #008900;
  border-radius: 50px;
}

.facebook-button a{
  width: 100%;
  height: 46px;
  color: #008900;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.facebook-button a::before{
  content: ""
}

.facebook-button a::after {
  content: "";
  background-image: url("../images/top/right-arrow.svg");
  display: inline-block;
  height: 1em;
  width: 0.5em;
}

@media only screen and (max-width: 764px) {
  .facebook-area {
    padding-left: 3%;
    padding-right: 3%;
  }
}

.contact-title {
  padding-bottom: 30px;
  text-align: center;
}

.contact_info {
  max-width: 1000px;
  margin: 0 auto 70px;
  position: relative;
}

.contact_info .contact_box {
  display: flex;
}

.tel_info ,
.mail_info {
  width: 50%;
  height: 214px;
  letter-spacing: 0em;
  font-size: 1.6rem;
  color: #fff;
  padding-top: 30px;
  text-align: center;
}

.tel_info {
  border-radius: 20px 0 0 20px;
  background:#83BA00;
}

.mail_info {
  border-radius: 0 20px 20px 0;
  background: #2D8613;
}

.tel_info h3,
.mail_info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.tel_info h3::before,
.mail_info h3::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin: -3px 10px 0 0;
}

.tel_info h3::before {
  background-image: url('../images/top/icon_phone.svg');
}

.mail_info h3::before{
  background-image: url('../images/top/icon_envelope.svg');
}

.tel_info h3::after,
.mail_info h3::after{
  content: "";
  position: relative;
  right: 20%;
  top: 16px;
  display: inline-block;
  width: 20px;
  height: 1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
}

.tel_number {
  font-size: 5.0rem;
  font-weight: 800;
  margin-top: -10px;
}

.tel_number a {
  color: #fff;
}

.tel_number a:hover{
  opacity: 0.6;
}

.mail_info .btn-link {
  display: block;
  background-color: #fff;
  color: #2D8613;
  font-weight: bold;
  width: 86%;
  margin: 26px auto 0;
  padding: 14px 0;
  border-radius: 50px;
}

.mail_info .btn-link:hover {
  opacity: 0.6;
}

.btn-link::after{
  content: "";
  background-image: url('../images/top/bxs-chevron.svg');
  width: 10px;
  height: 14px;
  display: inline-block;
  position: relative;
  right: -46px;
}

.btn-link span {
  font-size: 1.2rem;
  padding-left: 4px;
}

.mail_info .text-under {
  width: 86%;
  font-size: 1.2rem;
  text-align: left;
  margin: 10px auto 0;
}

.kintetsu-info {
  font-size: 1.4rem;
  color: #555555;
  margin-top: 8px;
}

@media only screen and (max-width: 764px) {
  
  .contact-area {
    padding-left: 3%;
    padding-right: 3%;
  }
  
  .contact_info {
    margin: 0 auto 50px;
  }

  .contact_info .contact_box {
    display:block;
  }
  
  .contact_info .tel_info,
  .contact_info .mail_info {
    width: 100%;
    display: block;
  }
  
  .contact_info .tel_info {
    border-radius: 20px 20px 0 0;
  }
  
  .contact_info .mail_info {
    border-radius: 0 0 20px 20px;
  }
  
  .tel_info h3, .mail_info h3 {
    margin: 0 8% 5% 8%;
    position: relative;
  }
  
  .tel_info h3::after, .mail_info h3::after {
    left: 50%;
    top: 10vw;
    position: absolute;
  }

  .tel_info, .mail_info {
    padding-top: 8%;
    height: auto;
    padding-bottom: 5vw;
  }

  .tel_number {
    font-size: 13.125vw;
  }
  
  _:lang(x)+_:-webkit-full-screen-document, .tel_number {
    letter-spacing:-0.5vw;
  }
  
  .tel_number a:hover {
    opacity: 1;
  }
  
  .mail_info .btn-link {
    width: 92%;
    font-size: 5vw;
    position: relative;
  }
  
  .btn-link span {
    display: block;
    font-size: 3.75vw;
  }
  
  .btn-link::after {
    top: 43%;
    right: 20px;
    position: absolute;
  }
  
  .mail_info .btn-link:hover {
    opacity: 1;
  }
  
  .kintetsu-info {
    font-size: 3.75vw;
  }
  
}

@media only screen and (max-width: 320px) {
  .tel_info h3::after, .mail_info h3::after {
    top: 12vw;
  }
}

footer .f-logo {
  width: 48%;
}

@media only screen and (max-width: 764px) {
  footer .f-logo {
    width: 52%;
    margin-bottom: 30px;
  }
}

footer .info {
  width: 48%;
  font-size: 1.4rem;
  color: #fff;
}

@media only screen and (max-width: 764px) {
  footer .info {
    width: 100%;
    font-size: 2.2vw;
  }
}

footer .copyright {
  padding: 10px 0;
  background: #fff;
  text-align: center;
  font-size: 0.8rem;
}

@media only screen and (max-width: 764px) {
  footer .copyright {
    padding-bottom: 10px;
    line-height: 1.2;
  }
}

.sptel a {
  pointer-events: none;
}

@media only screen and (max-width: 764px) {
  .sptel a {
    pointer-events: auto;
  }
  
}

@media only screen and (min-width: 765px) {
.icon {



}



.icon img{
	    vertical-align: middle;

}

@media only screen and (max-width: 764px) {
  .header { 
  justify-content: normal;
  width:100%;
 }
}



/*==================================================
共通　横並びのための設定
===================================*/

.gnavi{
    display: inline-flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    margin:0 0 50px 0;
    list-style: none;
}

.gnavi li a{
    display: inline-block;
    padding:10px 30px;
    text-decoration: none;
    color: #fff;
}

.gnavi li{
    margin-bottom:-7px;
}

@media only screen and (max-width: 764px) {
 .gnavi{
        display: block;
        flex-wrap: wrap;
        margin: 16px auto;
        list-style: none;
        text-align: center;
}

 }
}
/*==================================================
　5-3-5 左から右に背景が伸びる
===================================*/

/*背景の設定*/

.gnavi li a{
    /*背景色の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li a::after {
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
    /*背景の形状*/
	width: 0;
	height:100%;
	background:#A91F24;
    /*アニメーションの指定*/
	transition:all .5s;
	opacity: 0;/*はじめは透過0*/
}

/*現在地とhoverの設定*/

.men3 li a{
	color: #000;
	font-size:23px;	
	width:270px;
}

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

.men3 li {
	
    display: flex;
    text-align: center;
    margin-left:13%;
}
}
.gnavi li.current a::after,
.gnavi li a:hover::after {
    /*背景の形状*/
	width: 100%;/*横幅を伸ばす*/
	opacity: 1;/*不透明に*/
}

.gnavi li.current a,
.gnavi li a:hover{
  	color: #fff;
}

@media only screen and (min-width: 765px) {

.nav_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4つの列を作成 */
  gap: 20px; /* アイテム間のスペース */
  list-style: none; /* リストのデフォルトスタイルを削除 */
  padding: 0;
  margin: 0;
}

.nav_item {
  text-align: center; /* 各アイテムを中央揃え */
}
}

</pre></body></html>