@charset "UTF-8";
/* HEADER FOOTER CSS*/
/* -----------------------------------------------
 HEADER
-------------------------------------------------- */
/* header_menu */
#header {
  position: fixed;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
  z-index: 1000;
    border-radius: 0 0 25px 25px
  /*background-color: var(--aqua);
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);*/
}
/*スクロールで背景色変化js用*/
#header.change-color {
  background-color: rgba(255,255,255,.9);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.70);
  transition: background-color .4s, transform .4s, color .4s;
}
#h_logo {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: 13px;
}
#h_logo a {
  display: block;
  background-image: url("../images/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 220px 50px;
  width: 220px;
  height: 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*--- Entry ---*/
#entry-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 100;
  width: auto;
  text-align: center;
}
#entry-btn a {
  display: block;
  width: 100%;
  padding: 0.5em 2.5em;
  font-size: 14px;
  color: white;
  background: rgb(0, 112, 187, 1) ;
  background: var(--grad_blue);
  border-radius: 50px;
  transition: .3s; /*変形の時間*/
}

/* メニュー */
.global-nav {
  width: 100%;
  position: relative;
}
.global-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
  margin: 0;
  padding-right: 180px;
  width: auto;
}
.global-nav .nav-list li {
  margin: 0 0.7em
}
.global-nav .nav-list li a {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #33333a;
  font-size: 14px;
  height: 50px;
  padding: 2em 0 0.5em;
  /*transition: .5s;*/
}
/* カレント表示 */
.global-nav .nav-list li.current a {
  color: var(--blue);
	font-weight: 600
}
  .global-nav .nav-list li.current a::after{
    background: var(--blue);
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: left top;
    transform: scale(1, 1);
  }
.global-nav .nav-list li a {
  opacity: 1;
}
.global-nav-icon { /* spボタン */
  display: none;
}
.disp { /* PC以外で表示メニュー*/
  display: block
}
/*--- 1024以上pcのみ適応 --- */
@media screen and (min-width: 1025px) {
  /*gn hover effect*/
  .global-nav .nav-list li a:hover {
    transition: .5s
  }
  /*アンダーラインのスタイル*/
  .global-nav .nav-list li a::after{
    background: var(--blue);
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: auto;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .global-nav .nav-list li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .nav-list {
    position: relative;
  }
}
/*Tablet以下*/
@media screen and (max-width: 1024px) {
  /* header_menu */
  #header {
    height: 60px;
    width: 100%;
      border-radius: 0 0 10px 10px;
    background-color: rgba(255,255,255,0.9);
    z-index: 1000
  }
  /*---スクロールで背景色変化js用---*/
  #header.change-color {
    background-color: rgba(255,255,255,0.9);
  }
  #h_logo {
    left: 15px;
    top: 10px;
  }
  #h_logo a {
    display: block;
    background-image: url("../images/logo.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 180px auto;
    width: 180px;
    height: 36px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  /** btn-trigger **/
  .btn-trigger {
    position: relative;
    position: absolute;
    top: 8px;
    right: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    right: 0;
    width: 35px;
    height: 1px;
    background-color: rgba(2,130,203,1.00);
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 10px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 20px;
  }
  .btn-trigger span:nth-of-type(3) {
    top: 30px;
  }
  /** #btn01 **/
  #btn01.active span {
    background-color: var(--blue);
    padding-right: 10px
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  #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);
  }
  /* メニュー */
  .global-nav {
    width: 100%;
    height: 100vh;/*表示する高さ*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    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: scroll;
    -webkit-overflow-scrolling: touch; /*慣性スクロールを追加*/
    padding-top: 8em;
    padding-bottom: 8em;
    background-color: rgba(255,255,255,0.9);
    	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);

    }
  .global-nav .nav-list {
    position: relative;
    width: 80%;
    height: auto; /*必須*/
    display: block;
    margin: 0 auto;
    list-style: none;
    align-items: center;
    padding-right: 0;
  }
  .global-nav .nav-list li a { /*表示されているメニュー*/
    position: relative;
    width: 80%;
    display: block;
    vertical-align: middle;
    text-align: center;
    font-size: 16px;
    height: auto;
    padding: 1em;
    font-weight: 400;
    border-bottom: 1px dotted rgba(178,178,178,1.00);
    margin: 0 auto;
  }
  /* open*/
  .open .global-nav {
    transform: translateX(0);
  }
  /* open*/
  .open {
    overflow: hidden;
  }
  .open .global-nav {
    visibility: visible;
    opacity: 1;
  }
  .open .global-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
  #entry-btn {
    width: 70%;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1em;
  }
    #entry-btn a {
    padding: 1em;
        font-size: 20px
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 599px) {}
/* ----- /heaerここまで ------- */
/* -----------------------------------------------
 FOOTER
-------------------------------------------------- */
#footer {
  width: 100%;
  margin: 0px;
  padding: 0;
  position: relative;
  clear: both;
  float: none;
  z-index: 20;
  background-color: white;
}
#f-contact { /*parallax*/
  width: 100%;
  margin: 0px;
  padding-top: 80px;
  position: relative;
  z-index: 1;
  background-image: url("../images/f_bg.png");
  background-attachment: fixed;
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  color: white;
}
#f-contact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--grad_blue);
  mix-blend-mode: multiply;
}
#f-contact p{
    position: relative;
    line-height: 1.8
}
#f-contact p a{
    color: white;
    font-size: .9rem
}
#f-contact p.f-name{
    font-size: 1.2rem;
    margin-bottom: .8em
}
#f-contact p.address{
    margin-bottom: 2em;
    font-family: "Inter", sans-serif;
}

/*f-contact*/
#f-contact ul {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 2em;
}
#f-contact ul li {
  margin: 10px;
  width: 360px;
  text-align: center;
}
#f-contact ul li a {
  display: block;
  width: 100%;
  height: 70px;
  background-color: white;
  border-radius: 10px;
  color: var(--blue);
  font-size: 18px;
  text-align: center;
   line-height: 70px;
  font-weight: 600;
   transition: .3s;
}
#f-contact ul li a:hover {
    opacity: 1;
      box-shadow: 0px 0px 10px 8px rgba(0, 85, 148, 0.35);
}
#f-contact ul li a.icon-rec::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 26px;
  margin: -3px 10px 0 0;
  background: url("../images/icon_memo.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
#f-contact ul li a.icon-entry::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 26px;
  margin: 2px 10px 0 0;
  background: url("../images/icon_mail.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

#copy {
  width: 100%;
  background-color: white;
  font-size: 12px;
  text-align: center;
  padding: 2em;
  color: var(--blue)
}
/* ページTOPに戻る */
.pagetop{
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #5E9BD2;
    border-radius: 50%;
    line-height: 50px;
}
.pagetop a i{
    font-size: 20px;
    color:#fff;
    line-height: 50px;
}
@media screen and (max-width: 1200px) {}
/*Tablet以下*/
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 768px) {
  /*f-contact*/
  #f-contact { /*parallax*/
    background-attachment: scroll;
  }
  #f-contact ul {
    display: block;
    width: 80%
  }
  #f-contact ul li {
    margin: 0 auto 10px auto;
    padding: 0
  }
}
/* -----------------------------------------------
smartPhone 576以下
-------------------------------------------------- */
@media (max-width: 576px) {
  #footer p {
    text-align: center
  }
  #f-contact { /*ios用*/
    background-attachment: scroll;
  }
  #f-contact ul {
    display: block;
    width: 80%
  }
#f-contact ul li {
  width: 100%;
  text-align: center;
}
#f-contact ul li a {
  font-size: 14px;
	line-height: 60px;
  height: 60px;

}
}