@charset "UTF-8";
/************************************************
	
	共通

*************************************************/
body:after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity .4s;
  opacity: 0;
  z-index: -9999;
}
body.open::after {
  opacity: 1;
  z-index: 10;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

.br_sp {
  display: none;
}

a[href^="tel:"] {
  cursor: default;
}

#to_top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
}

.btn01 {
  display: inline-block;
  color: #fff;
  background: #152b80;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 12px;
  letter-spacing: 3px;
  box-sizing: border-box;
  text-align: center;
  transition: .2s;
  width: 200px;
}
.btn01:hover {
  letter-spacing: 5px;
}
.btn01.back {
  background: none;
  color: #152b80;
  border: 1px solid;
}
.btn01.is-disabled {
  background: #bbb;
  pointer-events: none;
}

.target {
  transform: translateY(50px);
  transition: .5s ease 0s;
  opacity: 0;
}

.fadeIn {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.link_form {
  position: relative;
  padding-left: 18px;
  text-decoration: underline;
}
.link_form::before {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 10px;
  }

  .br_pc {
    display: none;
  }

  .br_sp {
    display: block;
  }

  a[href^="tel:"] {
    text-decoration: underline;
  }

  #to_top {
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 10px;
  }

  .btn01 {
    /*&.qa{
    	width: auto;
    }*/
  }

  .target {
    opacity: 1;
    transform: none;
  }
}
.link_blue {
  text-decoration: underline;
  color: #0073b1;
  word-break: break-word;
}

/************************************************
	
	header,gnav

*************************************************/
#header {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: relative;
}

#contact_list {
  display: flex;
  align-items: center;
}
#contact_list li {
  color: #666;
  font-size: 0.9em;
}
#contact_list li.tel {
  padding-left: 25px;
  margin-left: 20px;
  background: url(../images/ico_tel.png) no-repeat left top/20px;
}
@media screen and (max-width: 768px) {
  #contact_list li.mail {
    padding: 0;
    margin-bottom: 15px;
  }
}
#contact_list li.mail a {
  display: inline-block;
  background: #bf8947;
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
}
#contact_list li a {
  color: #666;
}
#contact_list .small {
  font-size: 75%;
  display: inline-block;
}

#gnav.fix {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 2px 8px -3px rgba(21, 43, 128, 0.3);
}
#gnav.fix #menu {
  margin-bottom: 0;
}
#gnav #menu {
  background: #152b80;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
#gnav #menu::after {
  content: '';
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 3px;
  left: 0;
}
#gnav #menu > li + li {
  margin-left: 40px;
}
#gnav #menu > li > a {
  color: #fff;
  display: block;
  padding: 10px 20px 13px 20px;
  font-size: 0.95em;
  transition: .2s;
}
#gnav #menu > li > a:hover, #gnav #menu > li > a.current {
  background: #e88a00;
}
#gnav #menu > li .dropmenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
}
#gnav #menu > li .dropmenu ul {
  background: #ffe9ce;
  display: flex;
  justify-content: center;
  padding: 12px 0 10px 0;
  width: 100%;
  box-shadow: 0px 2px 8px -3px rgba(21, 43, 128, 0.3);
}
#gnav #menu > li .dropmenu ul li {
  transform: skew(-20deg);
  border-left: 4px double #152b80;
}
#gnav #menu > li .dropmenu ul li:last-of-type {
  border-right: 4px double #152b80;
}
#gnav #menu > li .dropmenu ul li a {
  color: #152b80;
  transform: skew(20deg);
  display: block;
  font-size: 0.9em;
  padding: 2px 20px;
}
#gnav #menu > li .dropmenu ul li a:hover {
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#gnav #menu .ttl_contact_list {
  display: none;
}

#btn_menu {
  display: none;
  position: absolute;
  top: 12px;
  right: 15px;
}
#btn_menu .menu-trigger {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: relative;
  width: 35px;
  height: 26px;
}
#btn_menu .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #152b80;
}
#btn_menu .menu-trigger span:nth-of-type(1) {
  top: 0;
}
#btn_menu .menu-trigger span:nth-of-type(2) {
  top: 11px;
}
#btn_menu .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
#btn_menu .menu-trigger.active span:nth-of-type(1), #btn_menu .menu-trigger.active span:nth-of-type(3) {
  width: 15px;
}
#btn_menu .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translate(20px, 5px) rotate(45deg);
  transform: translate(20px, 5px) rotate(45deg);
}
#btn_menu .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translate(20px, -5px) rotate(-45deg);
  transform: translate(20px, -5px) rotate(-45deg);
}

@media screen and (max-width: 1000px) {
  #gnav #menu > li > a {
    padding: 10px 10px 13px 10px;
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    padding-top: 78px;
    padding: 12px 10px;
    box-sizing: border-box;
    display: block;
    position: fixed;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 2px 8px -3px rgba(21, 43, 128, 0.3);
  }
  #header .logo img {
    width: 150px;
    vertical-align: middle;
  }

  .contact_list_wrap {
    border-bottom: none !important;
  }
  .contact_list_wrap::after {
    display: none;
  }

  #contact_list {
    display: block;
    font-size: 1em;
    padding-left: 10px;
  }
  #contact_list li {
    padding: 3px 0px 3px 30px;
    margin-left: 10px;
  }
  #contact_list li:first-of-type {
    margin-left: 0;
    background-position: left 8px;
  }
  #contact_list li:nth-of-type(2) {
    margin: 5px 0 0 0;
    background-position: left center;
  }
  #contact_list li a {
    text-decoration: underline;
    word-break: break-all;
  }

  #gnav {
    position: fixed;
    top: 49px;
    right: 0;
    z-index: 20;
    width: 70%;
    height: calc(100% - 49px);
    pointer-events: none;
    -webkit-perspective: 500px;
    perspective: 500px;
  }
  #gnav #menu {
    display: block;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: #ffe9ce;
    transform: rotateY(-10deg);
    transform-origin: right;
    opacity: 0;
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    margin-bottom: 0;
    overflow: scroll;
  }
  #gnav #menu::after {
    display: none;
  }
  #gnav #menu > li {
    border-bottom: 1px solid #152b80;
    position: relative;
  }
  #gnav #menu > li::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 0 10px;
    border-color: transparent transparent transparent #152b80;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #gnav #menu > li + li {
    margin-left: 0;
    margin-top: 10px;
  }
  #gnav #menu > li > a {
    color: #152b80;
    padding: 10px 20px 5px 10px;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  #gnav #menu > li .dropmenu {
    display: block;
    position: relative;
  }
  #gnav #menu > li .dropmenu ul {
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 0px 0px 10px 10px;
    box-sizing: border-box;
  }
  #gnav #menu > li .dropmenu ul li {
    border: 0 !important;
    position: relative;
  }
  #gnav #menu > li .dropmenu ul li::after {
    content: '';
    width: 6px;
    height: 1px;
    background: #152b80;
    position: absolute;
    top: 0.9em;
    left: 5px;
  }
  #gnav #menu > li .dropmenu ul li a {
    display: inline-block;
    padding: 4px 0 4px 18px;
  }
  #gnav #menu .ttl_contact_list {
    display: block;
    margin-top: 30px;
    border-bottom: none;
    font-weight: bold;
    font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding-left: 10px;
  }
  #gnav #menu .ttl_contact_list::after {
    display: none;
  }
  #gnav.open {
    display: block;
    pointer-events: auto;
  }
  #gnav.open #menu {
    transform: rotateY(0);
    opacity: 1;
  }

  #btn_menu {
    display: block;
  }
}
@media screen and (max-width: 320px) {
  #contact_list {
    margin-top: 20px;
  }
  #contact_list li {
    font-size: 0.75em;
  }
}
/************************************************

	footer

*************************************************/
#footer {
  background: linear-gradient(to right, #e4e1df 50%, #8a8987 51%, #8a8987 100%);
  background: -webkit-linear-gradient(to right, #e4e1df 50%, #8a8987 51%, #8a8987 100%);
}
#footer .container {
  display: flex;
}
#footer .box_l {
  width: 50%;
  padding: 50px 0;
  background: #e4e1df;
  box-sizing: border-box;
}
#footer .box_l > ul > li {
  border-bottom: 1px solid #666;
  position: relative;
  transition: .3s;
  width: 370px;
}
#footer .box_l > ul > li::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 0 10px;
  border-color: transparent transparent transparent #666;
  position: absolute;
  right: 0;
  bottom: 0;
}
#footer .box_l > ul > li + li {
  margin-top: 20px;
}
#footer .box_l > ul > li > a {
  display: block;
  color: #666;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#footer .box_l > ul > li > a:hover {
  color: #152b80;
}
@media screen and (min-width: 769px) {
  #footer .box_l > ul > li.active {
    width: 390px;
    border-color: #152b80;
  }
  #footer .box_l > ul > li.active::after {
    border-color: transparent transparent transparent #152b80;
  }
}
#footer .box_l > ul > li ul {
  display: block;
  box-shadow: none;
  background: transparent;
  padding-left: 10px;
  box-sizing: border-box;
}
#footer .box_l > ul > li ul li {
  position: relative;
}
#footer .box_l > ul > li ul li::after {
  content: '';
  width: 6px;
  height: 1px;
  background: #666;
  position: absolute;
  top: 0.9em;
  left: 5px;
}
#footer .box_l > ul > li ul li a {
  color: #666;
  display: inline-block;
  padding: 4px 0 4px 18px;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.8em;
}
#footer .box_l > ul > li ul li a:hover {
  color: #152b80;
}
#footer .box_l > ul > li:nth-of-type(1) {
  border-bottom: none;
  padding-bottom: 0;
}
#footer .box_l > ul > li:nth-of-type(1)::after {
  display: none;
}
#footer .box_l > ul > li:nth-of-type(1) > span {
  display: block;
  width: 100%;
  border-bottom: 1px solid #666;
  position: relative;
  margin-bottom: 10px;
  transition: .3s;
  width: 370px;
}
#footer .box_l > ul > li:nth-of-type(1) > span::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 0 10px;
  border-color: transparent transparent transparent #666;
  position: absolute;
  right: 0;
  bottom: 0;
}
#footer .box_l > ul > li:nth-of-type(1) > span a {
  display: block;
  color: #666;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #footer .box_l > ul > li:nth-of-type(2) > span.active {
    width: 390px;
    border-color: #152b80;
  }
  #footer .box_l > ul > li:nth-of-type(2) > span.active::after {
    border-color: transparent transparent transparent #152b80;
  }
  #footer .box_l > ul > li:nth-of-type(2) > span.active a {
    color: #152b80;
  }
}
#footer .box_r {
  width: 50%;
  padding: 50px 0 50px 50px;
  box-sizing: border-box;
  color: #fff;
  background: #8a8987;
}
#footer .box_r ul {
  border-left: 1px solid #fff;
  padding-left: 30px;
  font-size: 0.9em;
  margin: 30px 0 10px 0;
}
#footer .box_r ul li + li {
  margin-top: 20px;
}
#footer .box_r ul a {
  display: inline-block;
  color: #fff;
  padding: 2px 0 2px 25px;
  background: url(../images/ico_tel02.png) no-repeat left center/15px;
}
#footer .box_r ul a.form {
  background: none;
  text-decoration: underline;
  position: relative;
}
#footer .box_r ul a.form::before {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%) rotate(-45deg);
}
#footer .box_r > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#footer .box_r > div p {
  font-size: 0.7em;
}

@media screen and (max-width: 1000px) {
  #footer .box_l {
    padding-right: 30px;
  }
  #footer .box_l > ul > li {
    width: 100%;
  }
  #footer .box_l > ul > li:nth-of-type(1) > span, #footer .box_l > ul > li:nth-of-type(2) > span {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #footer .container {
    display: block;
    padding: 0;
  }
  #footer .container .box_l, #footer .container .box_r {
    width: 100%;
    padding: 30px 20px;
  }
}
/************************************************

	unit

*************************************************/
.unit_2col {
  display: flex;
  flex-wrap: wrap;
}
.unit_2col > div {
  width: 50%;
  box-sizing: border-box;
}

.unit_2col01 {
  display: flex;
}
.unit_2col01 .box_a {
  width: 70%;
}
.unit_2col01 .box_b {
  width: 30%;
  margin: 0 0 0 20px;
}

@media screen and (max-width: 640px) {
  .unit_2col > div {
    width: calc((100% - 10px)/2);
  }
  .unit_2col > div:nth-of-type(even) {
    margin: 0 0 0 10px;
  }

  .unit_2col01 {
    display: block;
  }
  .unit_2col01 .box_a {
    width: 100%;
  }
  .unit_2col01 .box_b {
    width: 50%;
    margin: 20px auto 0 auto;
  }
}
/************************************************

	link

*************************************************/
a.out {
  color: #3092cd;
  padding-right: 30px;
  background: url(../images/ico_out.png) no-repeat right center/20px;
}
a.out:hover {
  text-decoration: underline;
}

/************************************************

	block

*************************************************/
.b-box_contact {
  margin: 25px 20px 0 20px;
  padding: 35px 50px 30px 50px;
  border: 1px solid #e88a00;
  position: relative;
}
@media screen and (max-width: 767px) {
  .b-box_contact {
    width: 95%;
    margin: 15px auto 0 auto;
    padding: 25px;
    box-sizing: border-box;
  }
}
.b-box_contact::after {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid #e88a00;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: -1;
}
.b-box_contact .b-box_contact__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .b-box_contact .b-box_contact__inner {
    display: block;
    text-align: center;
  }
}
.b-box_contact h3 {
  text-align: center;
  margin-right: 8%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .b-box_contact h3 {
    margin-right: 0;
  }
}
.b-box_contact h3 > span {
  color: #152b80;
  display: inline-block;
  background: url(../../images/sttl_contact.png) no-repeat center bottom/61px;
  padding-bottom: 17px;
  font-size: 1.35em;
}
.b-box_contact h3 > span > span {
  font-size: 1em;
}
.b-box_contact ul li {
  padding: 5px 0 5px 40px;
  display: flex;
  align-items: center;
  color: #666;
}
@media screen and (max-width: 767px) {
  .b-box_contact ul li {
    margin: 0 auto;
    width: fit-content;
  }
}
.b-box_contact ul li:first-of-type:not([class]) {
  background: url(../images/ico_tel.png) no-repeat left center/25px;
}
.b-box_contact ul li:first-of-type:not([class]) a {
  color: #666;
}
.b-box_contact ul li.mail {
  background: url(../images/ico_mail.png) no-repeat left center/25px;
}
.b-box_contact ul li.mail a {
  color: #666;
}
.b-box_contact ul li:nth-of-type(2):not([class]) {
  padding: 10px 0;
}
.b-box_contact ul li > span {
  font-size: 1.2em;
  font-weight: bold;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-break: break-all;
}
.b-box_contact ul li > span .small {
  font-size: 70%;
  display: inline-block;
}
.b-box_contact ul li .btn01 {
  width: 280px;
}
.b-box_contact ul li .btn01:hover {
  letter-spacing: 4px;
}

/************************************************

	Margin Padding

*************************************************/
.m10 {
  margin: 10px !important;
}

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

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50, .mb60 {
  margin-bottom: 50px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mb30_sp {
  margin-bottom: 30px !important;
}

@media screen and (max-width: 736px) {
  .mb30_sp {
    margin-bottom: 15px !important;
  }
}
/************************************************

	Width

*************************************************/
.w40 {
  width: 40px;
}

.w50 {
  width: 50px;
}

.w60 {
  width: 60px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w150 {
  width: 150px;
}

.w200 {
  width: 200px;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w450 {
  width: 450px;
}

.w700 {
  width: 700px;
}

.w750 {
  width: 750px;
}

.w_full {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/************************************************

	Float Align

*************************************************/
.f_left, .box_l {
  float: left;
}

.f_right, .box_r {
  float: right;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/************************************************

	clearfix

*************************************************/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*# sourceMappingURL=base.css.map */
