@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  z-index: 200;
  font-size: 16px;
  background-color: white;
  transition: .3s;
}
#header a {
  text-decoration: none;
  font-size: 15px
}
/* ロゴ*/
#h_logo {
  position: fixed;
  z-index: 100;
  left: 3%;
  top: 12px;
}
#h_logo a {
  display: block;
  background-image: url("../images/h_logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 210px;
  height: 60px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*--- 1024以上pcのみ適応 --- */
@media screen and (min-width: 1024px) {
  /* メニュー */
  .global-nav {
    position: relative;
    top: 0px;
    right: 2%;
    width: 100%;
    z-index: 1
  }
  /* 親メニュー*/
  .global-nav .nav-list {
    position: relative;
    top: 20px;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .global-nav .nav-list li {
    padding: 0 1em;
  }
  .global-nav .nav-list li + li {
    position: relative;
  }
  .global-nav .nav-list li + li::before {
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(20deg);
  }
  .global-nav .nav-list li a {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: black;
    font-size: 15px;
    height: 40px;
    cursor: pointer;
  }
  .global-nav .nav-list li a:hover {
    opacity: 1;
  }
  .global-nav .nav-list li a:after {
    background-color: var(--red);
    left: -4px;
    bottom: -2px;
    content: "";
    height: 1px;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
    width: 110%; /* 要素の幅 */
  }
  /* リンクにホバーした際の下線の表示 */
  .global-nav .nav-list li a:hover::after {
    transform: scale(1, 1);
  }
  .global-nav-icon { /* spボタン */
    display: none;
  }
  .disp { /* PC以外で表示メニュー*/
    display: block
  }
}
/*Tablet以下*/
@media screen and (max-width: 1024px) {
  /* header */
  header {
    height: 60px;
  }
  /* ロゴ*/
  #h_logo {
    top: 0;
  }
  #h_logo a {
    width: 150px;
  }
  /* メニュー */
  .global-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    text-align: left;
    align-items: center;
    font-size: 18px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /*慣性スクロールを追加*/
    padding-bottom: 2em;
    background-color: rgba(1, 51, 90, .9);
    box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  }
  .global-nav .nav-list {
    position: relative;
    width: 70%;
    height: auto; /*必須*/
    display: block;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    padding-right: 0;
    padding-top: 80px;
  }
  .global-nav .nav-list li a { /*表示されているメニュー*/
    position: relative;
    width: auto;
    display: block;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
    height: auto;
    padding: 1.2em;
    color: white;
    letter-spacing: 3px
  }
  /* open*/
  .open .global-nav {
    transform: translateX(0);
  }
  /* open*/
  .open {
    overflow: hidden;
  }
  .open .global-nav {
    visibility: visible;
    opacity: 1;
  }
  /*=============================
ハンバーガボタン
=============================*/
  .btn-trigger {
    position: fixed;
    top: 18px;
    right: 3%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 200;
    display: flex;
  }
  .btn-trigger span {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #184669;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 20px;
  }
  /*=============================
#btn01
=============================*/
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
    background-color: white;
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    background-color: white;
  }
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {}
@media (max-width: 576px) {}
/* ----- /heaerここまで ------- */
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
#f-contact {
  padding-top: 20px;
  width: 1200px;
}
#f-contact .border-right {
  border-right: 1px solid #66A9D2
}
#f-contact p {
  margin-bottom: 0
}
.mailform a {
  position: relative;
  top: 20px;
  display: inline-block;
  font-size: 22px !important;
  font-weight: 600;
  background-image: url("../images/arrow_blue.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  padding-left: 35px;
}
.mailform a:hover {
  opacity: 1
}
.mailform a:after {
  background-color: rgba(102, 168, 210, 1.00);
  ;
  left: 0;
  bottom: -2px;
  content: "";
  height: 1px;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.mailform a:hover::after {
  transform: scale(1, 1);
}
.tel {
  position: relative;
  top: -20px;
  font-size: 50px !important;
  letter-spacing: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-align: center;
}
.tel::before {
  position: relative;
  top: 3px;
  left: 0;
  content: "";
  background-image: url("../images/icon_tel.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 33px 33px;
  padding-left: 45px;
  line-height: 1
}
.tel span {
  display: block;
  font-size: 12px;
  margin-top: -20px
}
footer {
  width: 100%;
  margin: 0;
  padding: 5% 0 3%;
  position: relative;
  clear: both;
  float: none;
  background-color: white;
  z-index: 1
}
footer p {
  margin-bottom: 0 !important;
  line-height: 1.8;
  font-size: 15px
}
.cp-name {
  font-size: 24px;
  margin-bottom: .8em;
  padding-left: 10px;
	text-align: left!important;
}
.f-address p {
	text-align: left!important;
}
.f-address i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--red);
  padding-right: 7px;
  font-size: 13px
}
.f-logo {
  width: 150px !important;
  margin-bottom: 1.5em;
}
footer #copy {
  font-size: 12px;
  font-family: var(--mont);
  text-align: right;
  color: #666
}
.f-links{
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5em;
}
.f-links li{
	margin: 0;
	align-items: center;
	line-height: 1;
	padding-bottom: 4px

}
.f-links li a{
	font-size: 14px!important;
	padding: 0 10px;
}
.f-links li a:hover{
	color: black;
	text-decoration: underline
}
.f-links li + li {
	border-left: 1px solid #ccc
}
/* ページTOPに戻る */
.pagetop {
  position: absolute;
  top: -25px;
  right: 2%;
  width: 50px;
  height: 50px;
  z-index: 100
}
.pagetop-btn {
  color: white;
  width: 50px;
  height: 50px;
  background: var(--blue);
  position: relative;
  display: block;
  transition: 0.5s;
  border-radius: 100px;
  text-decoration: none;
}
.pagetop-btn:after {
  font-family: "Font Awesome 5 Free";
  content: "\f062";
  position: absolute;
  right: 35%;
  top: 22%;
  font-weight: 900;
  font-size: 16px
}
.pagetop-btn:hover {
  opacity: 1;
  background-color: var(--red)
}
.pagetop-btn:hover:after {
  transform: rotate3d(0, 1, 0, 360deg);
  transition: 2s;
}
@media screen and (max-width: 1024px) {
  #f-contact {
    width: 100%;
    padding-top: 0
  }
  #f-contact .border-right {
    border-right: none;
  }
  .mailform a {
    margin-bottom: .5em;
  }
  .tel {
    position: relative;
    top: 0;
    font-size: 42px !important;
  }
  .tel span {
    font-size: 12px;
    margin-top: -5px;
    letter-spacing: 0
  }
  footer {
    padding: 20px 0 0 0;
  }
  footer p {
    text-align: center !important
  }
  .f-logo {
    display: block;
    width: 150px !important;
    margin: 0 auto 10px auto
  }
  footer #copy {
    text-align: center;
  }
}
@media screen and (max-width: 992px) {
.cp-name {
	text-align: center!important;
}
.f-address p {
	text-align: center!important;
}
.f-links{
	margin: 1.8em;
	justify-content: center
}
.f-links a{
	font-size: 14px!important
}
}
@media screen and (max-width: 768px) {
  .mailform a {
    font-size: 20px !important;
    padding-left: 30px;
  }
}
@media (max-width: 576px) {
  .f-address p {
    font-size: 12px;
    line-height: 1.6
  }
  .f-logo {
    display: block;
    width: 120px !important;
    margin: 0 auto 10px auto
  }
}
/*Sabmenu*/
.sabmenu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto
}
.sabmenu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
  margin: 0 auto
}
.sabmenu li {
  padding: .5em 1.5em .8em;
  background-color: rgba(0, 0, 0, 0.8);
}
.sabmenu.js_fixed ul {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
}
.sabmenu.js_fixed li {
  background-color: rgba(0, 0, 0, 0);
}
.sabmenu li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.30)
}
.sabmenu li a {
  font-size: 15px;
  color: white;
}
@media screen and (max-width: 1024px) {
  .sabmenu {
    display: none
  }
}