@charset "utf-8";
/* CSS Document */

/* =======================================

	Structure CSS
	
========================================== */
/*Text Decoration*/
.look_orange {
    color: #F60;
}
.look_red {
    color: #D90000;
}
.look_pink {
    color: #F69;
}
.look_navy {
    color: #002B84;
}
.look_blue {
    color: #00408f;
}
.look_gray {
    color: #404040;
}
.look_gray02 {
    color: #797C85;
}
.look_brown {
    color: #a35200;
}
.bold {
    font-weight: bold;
}
.normal {
    font-weight: normal;
}
.font-min {
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
    font-weight: bold;
}
/*Text Size*/

h1, .h1 {
    font-size: 180%;
}
h2, .h2 {
    font-size: 150%;
}
h3, .h3 {
    font-size: 120%;
}
h4, .h4 {
    font-size: 110%;
}
h5, .h5 {
    font-size: 95%;
}
h6, .h6 {
    font-size: 85%;
}

.txt_mini_85 {
    font-size: 85%;
}
.txt_95 {
    font-size: 95%;
}
.txt_90 {
    font-size: 90%;
}
.txt_110 {
    font-size: 110%;
    line-height: 1.5em;
}
.txt_120 {
    font-size: 120%;
    line-height: 1.5em;
}
.txt_150 {
    font-size: 150%;
    line-height: 1.5em;
}
.txt_180 {
    font-size: 180%;
    line-height: 1.5em;
}
.txt_240 {
    font-size: 240%;
    line-height: 1.5em;
}
.txt_360 {
    font-size: 360%;
    line-height: 1.5em;
}
.mini_txt {
    font-size: 85%;
}
/*Text Align*/
.txt_center {
    text-align: center;
}
.txt_right {
    text-align: right;
}
.va_center {
    vertical-align: middle;
}
/*Margin*/
#contents .no-mb {
    margin-bottom: 0px;
}
#contents .no-mt, .no-mt {
    margin-top: 0px;
}
.mt_10 {
    margin-top: 10px;
}
.mt_20 {
    margin-top: 20px;
}
.mt_30 {
    margin-top: 30px;
}
.mt_35 {
    margin-top: 35px;
}
.mt_42 {
    margin-top: 42px;
}
.mb_05 {
    margin-bottom: 5px;
}
.mb_20 {
    margin-bottom: 20px;
}
.mb_25 {
    margin-bottom: 25px;
}
.mb_30 {
    margin-bottom: 30px;
}
.mb_45 {
    margin-bottom: 45px;
}
.mb_2em {
    margin-bottom: 2em;
}

.lead {
	font-size: 18pt;
	line-height: 2em;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "メイリオ", " Meiryo", "ＭＳ Ｐ明朝", "MS PMincho", Osaka, serif;
    font-weight: bold;
	text-align: center;
}

/*カラム*/
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flex.start {
    justify-content: start;
}
.txt_2box {
    width: 48%;
}
.txt_2box.end {
    margin-right: 0%;
}
.txt_2box.w-70 {
    width: 70%;
}
.txt_2box.w-28 {
    width: 28%;
}
.txt_3box {
    width: 31.5%;
    margin-right: 2.75%;
}
.txt_3box.end {
    margin-right: 0%;
}
.txt_4box {
    width: 22.75%;
    margin-right: 3%;
}
.txt_4box.end {
    margin-right: 0%;
}

/* googlemap ifreame */

.map ifream {
    width: 100%;
    height: 450px;
}
.map iframe {
    width: 100%;
    height: 100%;
    min-height: 270px;
    border: none;
}
.map {
    height: calc(100% - 20px);
}


.btn-outline{
	font-size: 105%;
	display: inline;
    padding: 8px 12px;
	border: thin #FFFFFF solid;
	
}


/*白地リンクボタン*/
.btn_next {
    padding: 3px 8px;
    background-color: #fff;
    transition: 0.5s;
}

.btn_next a {
	color: #245F89;
}
.btn_next a:hover {
    text-decoration: none;
}
.btn_next :last-child {
    margin-right: 0;
}

.btn_next:hover {
    transition: 0.5s;
    background-color: #FFF4A4;
}

/*問い合わせリンクボタン*/

.btn_next.contact {
	font-size: 102%;
	max-width: 12em;
	font-family: 'Noto Sans Japanese', sans-serif;
	font-weight: 700;
}




/*共通のCSS - Transit*/
.button {
  display: inline-block;
  width: 210px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}