@charset "UTF-8";

/*----------------------------------
	1. カラムボックス
------------------------------------*/
/*
ブレイクポイントの設定用クラス .bp768 .bp480 .bp420 
を切り替えて使ってください。
.column-box 又は .float-box に設定して下さい
*/
/* ------ カラム（flex） ------- */
.column-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.column-box-around {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.column-box-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.column-box-left {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.column-box__2col {
  width: 48% !important;
}

.column-box__3col {
  width: 31% !important;
}

.column-box__4col {
  width: 23% !important;
}

.column-box__5col {
  width: 18% !important;
}

/* カスタム用カラムボックス */
.column-box__80 {
  width: 80% !important;
}

.column-box__75 {
  width: 75% !important;
}

.column-box__70 {
  width: 70% !important;
}

.column-box__65 {
  width: 65% !important;
}

.column-box__60 {
  width: 60% !important;
}

.column-box__55 {
  width: 55% !important;
}

.column-box__50 {
  width: 50% !important;
}

.column-box__45 {
  width: 45% !important;
}

.column-box__40 {
  width: 40% !important;
}

.column-box__35 {
  width: 35% !important;
}

.column-box__30 {
  width: 30% !important;
}

.column-box__25 {
  width: 25% !important;
}

.column-box__20 {
  width: 20% !important;
}

.column-box__auto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex: 1;
}
.column-box_outside{
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: auto;
	align-items: center;
}
.reverse{
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
	.sp-reverse{
		flex-direction: column-reverse;
	}
}
.column-outside-right{
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 4%;
}
@media screen and (max-width: 768px) {
	.column-box_outside{
		flex-wrap: wrap;
	}
	.column-outside-right{
		margin-right: 1px;
		margin-left: 1px;
	}
}
/* 中央揃え */
.column-box.align-c {
  align-items: center;
}
/* リバース */
.column-box.reverse {
  flex-direction: row-reverse;
}
/* 
最終行レイアウト維持のためのclass
コンテンツの数が変動する場合設定してください。
.column-box に設定してください。
*/
/* ３カラム用 */
.column-box--3return::after {
  content: "";
  display: block;
  width: 31%;
}

/* ４カラム用 */
.column-box--4return::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.column-box--4return::after {
  content: "";
  display: block;
  width: 23%;
}

/* ブレイクポイント-汎用 */
@media screen and (max-width: 890px) {
  .bp890 > [class*=column-box__] {
    width: 48% !important;
    margin-bottom: 20px;
  }
  .bp890 > [class*=column-box__]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .bp768 > [class*=column-box__] {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .bp768 > [class*=column-box__]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .bp480 > [class*=column-box__] {
    width: 100% !important;
  }
  .bp480 > [class*=column-box__]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 320px) {
  .bp320 > [class*=column-box__] {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ブレイクポイント-中央揃え */
@media screen and (max-width: 768px) {
  .column-box.bp768-c {
    justify-content: space-around;
  }
  .column-box.bp768-c > [class*=column-box__] {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480-c {
    justify-content: space-around;
  }
  .column-box.bp480-c > [class*=column-box__] {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320-c {
    justify-content: space-around;
  }
  .column-box.bp320-c > [class*=column-box__] {
    width: 100%;
  }
}
/* android4対策 */
@media screen and (max-width: 980px) {
  body.and4 .column-box {
    display: block;
    text-align: center;
  }
  body.and4 .column-box > div {
    display: inline-block;
  }
}

.gap-5{
	gap: 0 5px;
}
.gap-10{
	gap: 0 10px;
}
.gap-15{
	gap: 0 15px;
}
.gap-20{
	gap: 0 20px;
}

/*----------------------------------
	2. テキスト
------------------------------------*/

/* ------ テキストサイズ ------ */
/* ------ テキスト揃え ------ */
.l-txt {
  text-align: left !important;
}

.r-txt {
  text-align: right;
}

.c-txt {
  text-align: center;
}

.txt-red{
	color: #820909;
}


/*----------------------------------
	3. 空白ユーティリティ
------------------------------------*/
/* ------ 不変マージン ------ */
/* bottom */
.mb-70 {
  margin-bottom: 70px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 10px;
}


/* ------ 不変パディング ------ */
/* all */
.p-70 {
  padding: 70px;
	box-sizing: border-box;
}

.p-60 {
  padding: 60px;
	box-sizing: border-box;
}

.p-50 {
  padding: 50px;
	box-sizing: border-box;
}

.p-40 {
  padding: 40px;
	box-sizing: border-box;
}

.p-30 {
  padding: 30px;
	box-sizing: border-box;
}

.p-20 {
  padding: 20px;
	box-sizing: border-box;
}

.p-10 {
  padding: 10px;
	box-sizing: border-box;
}
/*padding*/
.pad_40-0{padding: 40px 0;}
.pad_50-0{padding: 50px 0;}
.pad_60-0{padding: 60px 0;}

@media(max-width:480px){
.pad_40-0{padding: 20px 0;}
.pad_50-0{padding: 20px 0;}
.pad_60-0{padding: 20px 0;}
}

.page_link_pd{
	padding: 96px 0 0 0;
	margin: -96px 0 0;
}
@media(max-width:480px){
	.page_link_pd{
		padding: 60px 0 0 0;
		margin: -60px 0 0;
	}
}
/* top bottom */
.mtb-70 {
  margin: 70px 0;
}

.mtb-60 {
  margin: 60px 0;
}

.mtb-50 {
  margin: 50px 0;
}

.mtb-40 {
  margin: 40px 0;
}

.mtb-30 {
  margin: 30px 0;
}

.mtb-20 {
  margin: 20px 0;
}

.mtb-10 {
  margin: 10px 0;
}

/*----------------------------------
	4. 中央配置
------------------------------------*/
/* ------ 中央揃え ------- */
/* position(高さ指定必要) */
.center-box01 {
  position: relative;
}

.center-box01__cell {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

/* position(高さ指定不要) */
.center-box02 {
  position: relative;
}

.center-box02__cell {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/* flex(幅・高さ指定不要) */
.center-box03 {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

/*----------------------------------
	5. 表示・非表示
------------------------------------*/
/* 
スマホ用の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
imgやbrなど細かい調節に使ってください
*/
/* 768px以下からon(表示) */
@media screen and (min-width: 769px) {
  .bp768-on {
    display: none;
  }
}
/* 768px以下からoff(非表示) */
@media screen and (max-width: 768px) {
  .bp768-off {
    display: none;
  }
}
/* 480px以下からon(表示) */
@media screen and (min-width: 481px) {
  .bp480-on {
    display: none;
  }
}
/* 480px以下からoff(非表示) */
@media screen and (max-width: 480px) {
  .bp480-off {
    display: none;
  }
}
/* 420px以下からon(表示) */
@media screen and (min-width: 421px) {
  .bp420-on {
    display: none;
  }
}
/* 420px以下からoff(非表示) */
@media screen and (max-width: 420px) {
  .bp420-off {
    display: none;
  }
}
/* 320px以下からoff(非表示) */
@media screen and (max-width: 320px) {
  .bp320-off {
    display: none;
  }
}
.no-wrap{
	display: inline-block;
}


/*----------------------------------
	タグ設定
------------------------------------*/
/* ------ color ------- */
:root {
  --color-bg-blue: #003B6E;
  --color-font: #333333;
  --color-blue: #194B80;
  --color-orange: #F17501;
  --color-yellow: #E4C72D;
  --color-gray: #F5F5F5;
}


/* ------ ベース ------- */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7em;
  color: var(--color-font);
  font-family: Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
	word-wrap: break-word;
    overflow-wrap: break-word;}

h1,h2,h3{
	font-family: serif;
}
h2,h3,p{
	margin-bottom: 1em;
}

/* ------ link ------- */
a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}

a img {
  border: none;
  border: 0;
}


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

/*----------------------------------
	ヘッダー
------------------------------------*/
#site-header {
  width: 100%;
  z-index: 10000;
	background-color: #fff;
	position: -webkit-sticky;
  position: sticky;
  top: 0;
	padding: 1em 0;
}
.header-inner {
  max-width: 1200px;
	width: 90%;
  margin: 0 auto;
  position: relative;
  /* padding-top: 50px; */
}
#site_logo{
	margin-bottom: 0 !important;
}
@media screen and (max-width: 1090px) {
  .header-inner {
    width: 98%;
  }
}
.header-main {
  padding: 5px 0 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 998px) {
  .header-main {
    /*padding: 0px 0 16px;*/
  }
}
@media screen and (min-width: 769px) and (max-width: 999px) {
  .header-main {
    /*padding: 35px 0 12px;*/
  }
}
/* ロゴ */
.header-titles{
	width: 26%;
}
.sp_h_btn{
	display: none;
}
@media screen and (max-width: 1130px) {
	.header-titles{
		width: 20%;
	}
}
@media screen and (max-width: 820px) {
	.header-titles{
		width: 90%;
		display: flex;
		flex-wrap: nowrap;
		padding: 0 0.5em 0.5em;
		box-sizing: border-box;
		align-items: center;
		justify-content: space-between;
	}
	#site-header {
		padding: 0.5em 0 0;
	}
	#site_logo{
		width: 62%;
	}
	.sp_h_btn{
		display: block;
		margin: 0;
	}
	.sp_h_btn a{
		display: block;
		font-style: italic;
    font-weight: bold;
    text-align: center;
    padding: 0.2em 1.5em !important;
    border-radius: 50px;
    background: var(--color-yellow);
	}
}
.global-nav{
	width: 72%;
}
@media screen and (max-width: 1130px) {
	.global-nav{
		width: 80%;
	}
}

/*----------------------------------
	ナビゲーション
------------------------------------*/
#nav li a {
  display: block;
  color: #333333;
  position: relative;
  font-size: 1.6rem;
	font-family: serif;
}

@media screen and (max-width: 940px) {
  #nav li a {
    font-size: 1.6rem;
  }
}
#nav li a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 820px) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: rgba(255, 255, 255, 0.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    transition: all 0.5s;
    min-height: 100vh;
  }
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 1.2%;
    right: 4%;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-blue);
    transition: all 0.5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 45px 0;
    background: var(--color-gray);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(100%);
    transition: all 0.5s;
		border-left: 2px solid var(--color-blue);
		box-sizing: border-box;
  }
  #nav.open {
    transform: translateZ(0);
  }
  #nav li {
    padding: 0 20px;
		text-align: center;
  }
  #nav li a {
    position: relative;
    padding: 8px 20px;
    color: #333333;
  }
  #nav li > a {
    text-align: center;
  }
  #nav li > a.btn_style_a {
		border-radius: 0;
  }
  #nav li#menu-item-30 > a {
    border-top: 1px solid #999;
  }
  #nav li#menu-item-22 > a,
  #nav li#menu-item-22 .menu-item-22_cu {
    border-bottom: 1px dashed #999;
  }
  #nav .menu-item-has-children > a:first-of-type {
    position: relative;
    padding-right: 2em;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color: #EE5400;
  }
  #nav .menu-item-has-children .sub-menu {
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;
  }
  #nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0 20px 0 30px;
  }
	.nav_tel{
		margin-bottom: 1em;
	}
}
@media print, screen and (min-width: 821px) {
  #menu_btn, .overlay {
    display: none;
  }
  #nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
	#nav ul.nav_tel li.h_tel{
	}
  #nav li {
    position: relative;
  }
  #nav li a {
    padding: 0.5em;
  }
  #nav .current-menu-item a {
    color: #333333;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type,
  #nav .current-menu-item a {
    color: #707070;
  }
  #nav .current-menu-item li a {
    color: #707070;
  }
  #nav li ul.sub-menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    width: 140px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color: #707070;
    padding: 0.5em 20px;
    font-size: 90%;
  }
  #nav li ul.sub-menu li a:hover {
    color: #83759a;
  }
}

#nav li:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  #nav li:not(:last-child) {
    margin-right: 0px;
		text-align: center;
  }
}

@media (max-width: 540px) {
  #menu_btn {
    top: 0.8%;
    right: 2%;
  }
}
@media (max-width: 480px) {
  #menu_btn {
    right: 1%;
  }
}
@media (max-width: 420px) {
  #menu_btn {
    right: 0;
    width: 40px;
    height: 40px;
  }
}
#nav li .entry_btn{
	display: block;
	width: fit-content;
	padding: 0.5em 3em 0.5em 2em;
	position: relative;
	font-weight: 500;
	color: #333333;
	box-sizing: border-box;
	border-radius: 50px;
	text-align: center;
	margin: 0 auto;
	box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.3);
	font-size: 2.0rem;
}
#nav li .entry_btn:before{
	width: 12px;
	height: 2px;
	background: #333333;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 22px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
#nav li .entry_btn:after{
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	right: 23px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #333333;
	border-right: 2px solid #333333;
}

/*----------------------------------
	メイン
------------------------------------*/
#main{
}

/*----------------------------------
	フッター
------------------------------------*/
#site-footer {
	padding: 3em 0 0;
	background: #262626;
	color: #fff;
}
#site-footer a{
	color: #fff;
}
#site-footer .footer_logo{
	font-size: 2.0rem;
}
.footer-nav ul{
  display: flex;
	justify-content: flex-end;
	gap: 2em;
}
.footer-nav a{
	color: #fff;
}
@media (max-width: 480px) {
  .footer-nav ul{
		width: 100%;
  }
}
.footer_copy{
	padding: 1em 0 0.5em;
	margin-top: 4em;
}
.footer_copy a{
	color: #fff;
	display: inline-block;
	margin-bottom: 1em;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #16793a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  color: #fff;
	z-index: 99999;
}
@media screen and (max-width: 768px) {
  .pagetop {
		display: none !important;
    bottom: 4px;
    right: 10px;
  }
}
.pagetop:hover {
  opacity: 0.7;
}
@media (max-width: 480px) {
	.footer_copy{
		margin-top: 2em;
	}
	.pagetop {
		width: 20%;
		bottom: -15px;
		right: 0px;
	}
}
