@charset "utf-8";
/*
  CSS のみのドロップダウンメニュー
  Copyright Rectus Inc, 2019
  https://www.rectus.co.jp/
  Released under the MIT license
 */


header {
max-height: 80px;
}
@media screen and (max-width: 1200px) {
header {
max-height: 80px;
}
}

h1 {
margin: 0;
margin-top: -7px;
padding: 0;

}
h1 img {
  width: 100%;
  max-width: 132px;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
h1 {
margin: 0;
margin-top: -7px;
padding: 0;
}
h1 img {
  width: 100%;
  max-width: 132px;
  height: 100%;
  max-height: 80px;
  object-fit: contain;
}
}



.head_contact {
	display: inline-block;
	vertical-align: middle;
	list-style: none;
	margin: 0;
	margin-top: 16px;
	padding: 0;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 200%;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	padding-left: 23px !important;
	background: url(../../../../uploads/2025/07/icon_tel.png);
	background-repeat: no-repeat;
	background-size: 23px;
	background-position: left 5px;
	line-height: 1.0;
}
.head_contact div {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans Japanese", "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.0;
	font-size: 38%;
	font-weight: normal;
}
.head_contact div span {
	font-weight: 500;
	font-size: 110%;
}
@media screen and (max-width: 1200px) {
.head_contact {
	display: none;
}
.head_contact div {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans Japanese", "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.0;
	font-size: 38%;
	font-weight: normal;
}
.head_contact div span {
	font-weight: 500;
	font-size: 110%;
}
}





#navi {
  background-color: #FFF;
  position: relative;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
}
/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  line-height: 80px;
  max-width: 128px;
}

@media screen and (max-width: 1200px) {
#navi {
  height: 80px;
}
.menu-left {
  float: left;
  line-height: 80px;
  max-width: 70%;
}
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
}
/* 上部メニュー */
.menu {
  float: right;
  margin-right: 8px;
}
.menu-parent {
  float: left;
  margin-right: 16px;
  line-height: 80px;
  font-weight: normal;
  white-space: nowrap;
  list-style: none;
}
@media screen and (max-width: 1200px) {
.menu-parent {
  line-height: 50px;
}
}
/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 1200px) {
  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
  }
  .menu-parent {
  float: right;
    width: 60%;
	min-width: 10em;
    height: auto;
    padding: 0px 16px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: 0;
  width: auto;
  box-sizing: border-box;
  padding: 4px 16px;
  background-color: #FFF;
  border: 1px solid #000;
  list-style: none;
}

.menu-parent a,
.menu-child li a {
color: #000;
text-decoration: none;
}

@media screen and (min-width: 1200px) {
.menu-parent
p, ul, ol, dl{
  line-height: 1.8;
}
.menu-child li {
  line-height: 1.8;
}
}





/* パソコン用 */
@media screen and (min-width: 1200px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 1200px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border-top: 1px solid #DDD;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 16px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  padding: 8px 0;
  border-bottom: 1px solid #DDD;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 1200px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 32px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 20px;
    height: 20px;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:0;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #000;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:0px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:15px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:0;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:2px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:8px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}


.bt_contact a {
background-color: #0194ff;
color: #FFF;
padding: 8px 16px;
}



/************************************
** タイトル
************************************/

.main_top {
margin-top: 0 !important;
}

.title {
     position: relative;
	background: url(../../../../uploads/2025/07/title_back.jpg);
	background-size: cover;
	background-position: center;
	 margin-top: 0;
	 text-align: center;
  text-box-trim: trim-both;
  width: 100%;
padding-bottom: 17.15%;
height: 0;
margin-bottom: 80px;
	 }

.titlebox {
	position: absolute;
	bottom: -50px;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	text-align: center;
	background-color: rgba(255,255,255,0.95);
	padding: 20px 50px;
	width: 85%;
	max-width: 600px;
line-height: 1.2;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
.title h1,
.title h2,
.title h3 {
padding: 0;
padding-top: 0;
padding-bottom: 0;
margin: 0;
line-height: 1.2;
margin-bottom: 0;
  text-box-trim: trim-both;
	text-decoration: none;
	color: #000;
	font-weight: normal;

}
.title h1 span,
.title h2 span,
.title h3 span {
line-height: 1.0;

}


@media screen and (max-width: 1200px) {
.title {
padding-bottom: 25.15%;

}
}
@media screen and (max-width: 1200px) {
.title {
padding-bottom: 25.15%;
	 margin-bottom: 80px
}
.titlebox {
	bottom: -64px;
	padding: 16px 16px;
	width: 85%;
}
}


