* {box-sizing: border-box;margin: 0;padding: 0;}
@media screen and (min-width: 768px) {
  .container {
    width: 1024px;
    margin: auto;
    clear: both;
  }
}
@media screen and (max-width: 767px) {
  .container {
    margin: auto;
    clear: both;
    padding: 10px;
  }
  img {
    width: 100%;
  }
}
img {
  max-width: 100%;
}
@media (max-width: 767px) {
  body {
    font-size: 1.0rem; /*全体のフォントサイズは14pxとする*/
    -webkit-text-size-adjust: 100%; /*スマホでPC表示した際に勝手に文字が大きくなるのを防ぐ*/
  }
  .hidden_sp {
    display: none;
  }
  .container {
    margin: 0 15px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.0rem; /*全体のフォントサイズは16pxとする*/
  }
  .container {
    max-width: 1200px;
    width: calc(100% - 100px);
  }
  .hidden_pc {
    display: none;
  }
}
/*========= ヘッダー ===============*/
#header {
  position: fixed;
  width: 100%;
	z-index: 99999;
}
#header .headWrap {
  background-color: #FFF;
  display: flex;
  height: 60px;
}
#header .headWrap .sitename {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  line-height: 1;
  gap: 4px;
}
#header .headWrap .sitename .logo {}
#header .headWrap .sitename .logo a {
  display: block;
}
#header .headWrap .sitename h1 {
  font-size: 0.6em;
  font-weight: 500;
}
@media (max-width: 767px) {
  #header .headWrap {
    width: calc(100% - 100px);
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  #header {
    width: 100%;
  }
  #header .headWrap {
    height: 100px;
  }
  #header .headWrap .sitename {
    flex-basis: 300px;
    margin-right: auto;
    padding-left: 15px;
  }
  #header .headWrap .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    padding: 15px;
  }
  #header .headWrap .menu ul {
    display: flex;
    justify-content: flex-end;
  }
  #header .headWrap .menu ul li a {
    display: block;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    padding: 0 1em;
  }
  #header .headWrap .menu ul li:last-child a {
    padding-right: 0px;
  }
  #header .headWrap .menu .headTel {
    display: flex;
    flex-direction: column;
  }
  #header .headWrap .menu .headTel .tel {
    flex-grow: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Bahnschrift', sans-serif;
    font-size: 1.5em;
    font-weight: 900;
    line-height: 1.2;
  }
  #header .headWrap .menu .headTel .tel::before {
    content: "\f095";
    font-family: FontAwesome;
    font-size: 0.8em;
  }
  #header .headWrap .menu .headTel span {
    font-size: 0.6em;
  }
}
/*========= スマホメニューのボタン ===============*/
@media (max-width: 767px) {
.openbtn1 {
  position: fixed;
  z-index: 99999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100px;
  height: 60px;
  background: #132f76d1;
  border-radius: 0;
}
/*×に変化*/
.openbtn1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.openbtn1 > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 50%;
  text-align: center;
}
.openbtn1 > div:last-child {
  font-size: 11px;
  color: #FFF;
  flex-basis: 70%;
}
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  /*position: absolute;*/
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 60%;
  margin: auto;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(5px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-5px) rotate(45deg);
  width: 50%;
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  position: fixed;
  z-index: 1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  background: #1443a9ed; /*背景を少し透過させる*/
  transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
	width: 100vw;
  height: 100vh;
		right: 0px;
}
#g-nav .inner {
	display: none;
}
#g-nav.panelactive .inner {
	display: block;
}
.spNav .inner {
	margin-top: 60px;
	color: #FFF;
	border-top: 1px solid #FFF;
}
.spNav .inner a {
	color: #FFF;
	text-decoration: none;
}
.spNav .navy {
	background-color: #132F76;
}
.spNav .navy .subNav {
	padding: 8px 15px;
}
.spNav .navy .corner {
	position: relative;
}
.spNav .navy .corner::before {
    position   : absolute;
    content    : "";
    bottom     : 0px;
    right      : 0px;
    height     : 15px;
    width      : 15px;
    background : rgba(255,255,255);
    clip-path  : polygon(0% 100%, 100% 100%, 100% 0%);
}
.spNav .navy .subNav .sNav_ttl {
	font-weight: bold;
	margin-bottom: 0.5em;
}
.spNav .navy .subNav .sNav_ttl span {
  font-family: 'Oswald', sans-serif;
	margin-right: 0.5em;
	font-size: 80%;
	font-weight: 500;
}
.spNav .navy .subNav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
}
.spNav .navy .subNav ul li {
	flex-basis: calc(50% - 4px);
}
.spNav .navy .subNav ul li.w100 {
	flex-basis: 100%;
}
.spNav .navy .subNav {
	border-bottom: 1px dotted #FFF;
}
.spNav .navy .subNav.last {
	border-bottom: none;
	padding: 0;
	display: flex;
}
.spNav .navy .subNav.last > div + div {
	border-left: 1px dotted #FFF;
}
.spNav .navy .subNav.last > div {
	flex-basis: 50%;
}
.spNav .navy .textLink a {
	display: block;
	padding: 0.5em 0 0.5em 20px;
	background-image: url("../img/arrow02.png");
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: 8px auto;
}
.spNav .navy .subNav.last a {
	padding: 15px;
	display: block;
	font-weight: bold;
}
.spNav .navy .subNav.last a span {
  font-family: 'Oswald', sans-serif;
	margin-right: 0.5em;
	font-size: 80%;
	font-weight: 500;
}
.spNav .flex2 {
	display: flex;
	padding: 8px 0;
	border-bottom: 1px solid #FFF;
	margin-bottom: 30px;
}
.spNav .flex2 > div {
	flex: 1;
}
.spNav .simple.home {
	border-bottom: 1px dotted #FFF;
}
.spNav .flex2 .simple + .simple {
	border-left: 1px dotted #FFF;
}
.spNav .simple a {
	display: block;
	line-height: 1.2;
	padding: 1em 15px;
	background-image: url("../img/arrow01.png");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 23px auto;
}
.spNav .simple a span {
	font-size: 70%;
}
.spNav .simple a span::after {
	content: "\a";
	white-space: pre;
}
.spNav .flex2 .simple a {
	padding: 0.5em 15px;
}
.spNav ul.smLink {
	display: flex;
}
.spNav ul.smLink li {
	font-size: 80%;
}
.spNav ul.smLink li a {
	display: block;
	padding: 1em;
}
}
/*========= フッター ===============*/
footer {
  background: url(../img/footBg.jpg) top center;
  background-size: cover;
  padding: 30px 0 0 0;
  color: #FFFFFF;
  clear: both;
}
footer a {
  color: rgba(255, 255, 255, 1.00);
}
@media screen and (max-width: 767px) {
  footer .info img {
    width: 60%;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  footer .info {
    float: left;
    border-right: 1px solid #FFFFFF;
    width: 56%;
    font-size: 12px;
  }
  footer .info h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .info h3 {
    font-size: 16px;
    margin-top: 10px;
  }
  footer .info ul li {
    float: left;
    margin-right: 20px;
  }
  footer .menu {
    float: right;
    width: 43%;
    font-size: 12px;
    margin-bottom: 30px;
  }
  footer .menu ul {
    float: left;
    padding: 0 20px;
  }
  footer .menu ul li a {
    color: #FFFFFF;
    display: block;
    text-align: left;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  footer .info {
    float: none;
    font-size: 12px;
    padding: 0 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  footer .info h2 {
    margin-bottom: 10px;
  }
  footer .info h3 {
    font-size: 14px;
    margin-top: 20px;
  }
  footer .menu {
    font-size: 12px;
  }
  footer .menu ul {
    padding: 0 30px;
  }
  footer .menu ul li a {
    color: #FFFFFF;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
}
footer .copy {
  background: #202020;
  padding: 10px 0;
  clear: both;
  text-align: center;
  font-size: 10px;
}
/* ----------------------------------------
* pagetop
---------------------------------------- */
.pagetop {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 50px;
  right: 50px;
  color: #fff;
}
.pagetop span {
  display: block;
  border-radius: 25px;
  background: #010197;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 40px;
  font-size: 36px;
}
.pagetop span i {
  color: #fff;
}
.pagetop.show {
  visibility: visible;
  opacity: .8;
}
@media screen and (max-width: 768px){
  .pagetop {
    right: 20px;
    bottom: 80px;
  }
}
a.anchor {
	height: 1px;
display: block;
padding-top: 100px;
margin-top: -100px;
}
@media screen and (max-width: 768px){
a.anchor {
padding-top: 60px;
margin-top: -60px;
}
}
/*========= second 共通 ===============*/
@media screen and (min-width: 768px) {
  #wrap {
    padding-top: 100px;
  }
  .kaitori #wrap {
    padding-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  #wrap {
    padding-top: 60px;
  }
  .kaitori #wrap {
    padding-top: 0px;
  }
}
.contsTtl {
  background-image: url("/img/ttlBg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  display: flex;
  flex-direction: column;
}
.contsTtl .ttlWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contsTtl h2 {
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .contsTtl {
    height: 110px;
  }
  .contsTtl .ttlWrap {
    flex-basis: 90px;
  }
  .contsTtl h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .contsTtl {
    height: 163px;
  }
  .contsTtl .ttlWrap {
    flex-basis: 120px;
  }
  .contsTtl h2 {
    font-size: 26px;
  }
}
/*--------------------breadcrumb--------------------*/
@media screen and (min-width: 768px) {
  ul.breadcrumb {
    font-size: 0.8em;
    display: flex;
    gap: 0.5em;
		margin-bottom: 1em;
  }
  ul.breadcrumb li:before {
    content: ">";
    padding: 0 0.5em;
  }
  ul.breadcrumb li.home:before {
    content: "\f015";
    font-family: FontAwesome;
  }
  ul.breadcrumb li a {
    color: #000;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  ul.breadcrumb {
    display: none;
  }
}
/*-------------------base--------------------*/
@media screen and (min-width: 768px) {
  .main {
    padding: 80px 0;
  }
  .main .container {
    width: 1024px;
    margin: auto;
  }
  .main h2 {
    font-size: 2em;
    margin-bottom: 50px;
    font-weight: bold;
    color: rgba(255, 255, 255, 1.00);
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding: 30px 8px;
  }
  .main h2 {
    font-size: 2em;
    margin: 50px 0 60px 0;
    font-weight: bold;
    color: rgba(255, 255, 255, 1.00);
  }
}
.main h3.midashi {
  background: #f2f2f2;
  border-bottom: 3px solid #010197;
  text-align: left;
  padding: 20px;
  margin: 30px 0;
  font-weight: bold;
  font-size: 1.5em;
  clear: both;
}
.main h4.midashi {
  background: #f2f2f2;
  text-align: left;
  padding: 20px;
  margin: 30px 0;
  font-weight: bold;
  font-size: 1.2em;
  clear: both;
}
.main p.midashi {
  font-size: 2em;
  font-weight: bold;
  color: #010197;
  clear: both;
}
  .kaitori .main {
    padding: 0px;
  }
