@charset "utf-8";
/* =========================================================================================================================================== */
/* 【部品】
/* 名前     : ヘッダー
/* セレクタ : #masthead
/* =========================================================================================================================================== */
#masthead {
/*  position: fixed; */
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* 白背景部(1行目) .row1
/* ------------------------------------------------------------------------------------------------------------------------------------------- */
#masthead .row1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 45px;
  padding-top: 31px;
  padding-bottom: 25px;
}
#masthead .row1 .logo {
/* <!-- 2021.09.11 ここから --> */
  width: calc(100% - 446px);
/* <!-- 2021.09.11 ここまで --> */
  height: 47px;
}
#masthead .row1 .logo img {
  max-width: 527px;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

#masthead .row1 #headnavi {
/* <!-- 2021.09.11 ここから --> */
  width: 316px;
/* <!-- 2021.09.11 ここまで --> */
  display: flex;
  justify-content: flex-end;
  font-size: 1.4rem;
  padding-top: 26px;
  padding-right: 3px;
}
#masthead .row1 #headnavi li {
  height: 17px;
  line-height: 17px;
  border-left: solid 1px #4f4f4f;
}
#masthead .row1 #headnavi li:first-child {
  border: none;
}
#masthead .row1 #headnavi li a {
/* <!-- 2021.09.11 ここから --> */
	display:inline-block;
/* <!-- 2021.09.11 ここまで --> */	
  text-decoration: none;
  padding: 0 12px;
  line-height: 17px;
  color: #343434;
}
#masthead .row1 #headnavi li a:hover {
  color: #939393;
}

#masthead .row1 .switcher a {
  cursor: pointer;
  width: 130px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #000000;
  border-radius: 13px;
  margin-top: 21px;
  margin-right: 2px;
  font-size: 1.4rem;
  text-decoration: none;
  color: #343434;
}
#masthead .row1 .switcher a:hover {
  border: solid 1px #939393;
  background-color: #ebebeb;
}

#masthead .row1 .switcher img {
  width: 15px;
  height: auto;
  margin-right: 4px;
}

#masthead .row1 .membernavi {
  position: absolute;
  top: 0;
  right: 45px;
  display: flex;
  justify-content: space-around;
  width: 362px;
  width: 330px;
  height: 38px;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f1f1f1;
}
#masthead .row1 .membernavi li a {
  text-decoration: none;
  color: #343434;
  padding-left: 15px;
  position: relative;
}
#masthead .row1 .membernavi li a::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 3px;
  top: -1px;
  font-size: 1rem;
}
#masthead .row1 .membernavi li.logout a::before {
  /* content: "×"; */
  content: "\f057";
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  line-height: 11px;
  width: 15px;
  height: 15px;
  left: -2px;
  top: -1px;
  border-radius: 7.5px;
  /* background-color: #727272; */
  /* color: white; */
  color: #727272;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .row1
/*----------------------------------------------------------*/
@media screen and (max-width: 1020px) {
  #masthead .row1 {
    padding: 0 20px;
    height: 79px;
  }
  #masthead .row1 .logo {
    width: 100%;
    height: 100%;
  }
  #masthead .row1 .logo img {
    object-position: center;
    margin: 0 auto;
  }
  #masthead .row1 #headnavi {
    display: none;
  }
  #masthead .row1 .switcher {
    display: none;
  }
  #masthead .row1 .membernavi {
    display: none;
  }
}

/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* スマホ専用黒背景行 .rowsp
/* ------------------------------------------------------------------------------------------------------------------------------------------- */
#masthead .rowsp {
  display: none;
}
/*----------------------------------------------------------*/
/* レスポンシブデザイン .rowsp
/*----------------------------------------------------------*/
@media screen and (max-width: 1020px) {
  #masthead .rowsp {
    display: block;
    width: 100%;
    height: 55px;
    background-color: black;
  }
  #masthead .rowsp .spnavi {
    display: flex;
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    justify-content: center;
  }
  #masthead .rowsp .spnavi li {
    width: 50px;
    margin: 0 10px
  }
  #masthead .rowsp .spnavi li a {
    text-decoration: none;
    color: white;
  }
  #masthead .rowsp .spnavi li a img {
    display: block;
    width: 23px;
    margin: 0 auto;
    padding-top: 9px;
  }
  #masthead .rowsp .spnavi li.meeting a img {
    width: 28px;
    padding-top: 8px;
    padding-bottom: 3px;
  }
  #masthead .rowsp .spnavi li.menu a .icon {
    width: 100%;
    height: 32px;
    position: relative;
  }
  #masthead .rowsp .spnavi li.menu a .icon span {
    width: 24px;
    height: 2px;
    display: block;
    position: absolute;
    left: 13px;
    right: auto;
    top: 19px;
    background-color: white;
    transition: all 0.5s ease;
  }
  body.member #masthead .rowsp .spnavi li.menu a .icon span {
    left: 3px;
  }
  #masthead .rowsp .spnavi li.menu a .icon span::before,
  #masthead .rowsp .spnavi li.menu a .icon span::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    position: absolute;
    background-color: white;
    transition: all 0.5s ease;
  }
  #masthead .rowsp .spnavi li.menu a .icon span::before {
    top: -7px;
  }
  #masthead .rowsp .spnavi li.menu a .icon span::after {
    top: 7px;
  }
  body.sp_menu_open #masthead .rowsp .spnavi li.menu a .icon span{
    width: 0;
  }
  body.sp_menu_open #masthead .rowsp .spnavi li.menu a .icon span::before,
  body.sp_menu_open #masthead .rowsp .spnavi li.menu a .icon span::after {
    top: 0;
    width: 21px;
  }
  body.sp_menu_open  #masthead .rowsp .spnavi li.menu a .icon span::before {
    transform: rotate(45deg);
  }
  body.sp_menu_open #masthead .rowsp .spnavi li.menu a .icon span::after {
    transform: rotate(-45deg);
  }
  #masthead .rowsp .spnavi li a .text {
    font-size: 12px;
    text-align: center;
    text-decoration: none;
  }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* パソコン専用黒背景行 .row2
/* ------------------------------------------------------------------------------------------------------------------------------------------- */
#masthead .row2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 57px;
}
#masthead .row2 .col1 {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 417px);
  background-color: black;
  flex: 1 0 0%;
}
#masthead .row2 .col1 #glonavi {
  height: 57px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 47px;
}
#masthead .row2 .col1 #glonavi li {
  position: relative;
}
#masthead .row2 .col1 #glonavi li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  margin-right: 23px;
  padding-bottom: 2px;
  color: white;
}
#masthead .row2 .col1 #glonavi li.current > a {
  border-bottom: solid 1px white;
}
#masthead .row2 .col1 #glonavi:hover li a {
  border-bottom: none;
}
#masthead .row2 .col1 #glonavi li.submenu_open > a,
#masthead .row2 .col1 #glonavi li a:hover {
  border-bottom: solid 1px white;
}

#masthead .row2 .col1 #glonavi li a br.midrange {
  display: none;
}


#masthead .row2 .col1 #glonavi .submenu {
  overflow: hidden;
  display: flex;
  position: absolute;
  top: 42px;
  background-color: #454545;
  max-height: 0;
  transition-delay: 0.1s;
  padding: 0 20px;
}
#masthead .row2 .col1 #glonavi >li:hover .submenu {
  max-height: 300px;
  transition: all 0.7s ease;
  padding: 20px;
}

#masthead .row2 .col1 #glonavi .submenu .submenu_col1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 17px;
  color: white;
  width: 190px;
}
#masthead .row2 .col1 #glonavi .submenu .submenu_col2 {
}
#masthead .row2 .col1 #glonavi .submenu .submenu_col3 {
}
#masthead .row2 .col1 #glonavi .submenu .submenu_col2 a,
#masthead .row2 .col1 #glonavi .submenu .submenu_col3 a {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 34px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
  white-space: nowrap;
}
#masthead .row2 .col1 #glonavi .submenu .submenu_col3 a {
  margin-left: 20px;
}
#masthead .row2 .col1 #glonavi .submenu .submenu_col2 a:hover,
#masthead .row2 .col1 #glonavi .submenu .submenu_col3 a:hover {
  background-color: #7f7f7f;
  border: none;
}
#masthead .row2 .col1 .search form {
  display: flex;
  justify-content: flex-end;
  height: 57px;
  align-items: center;
  padding-right: 14px;
}
#masthead .row2 .col1 .search form .input-kensaku {
  height: 23px;
  background: none;
  width: 133px;
  border: solid 1px #434343;
  background-color: #5a5a5a;
}
#masthead .row2 .col1 .search form a {
  width: 23px;
  margin-left: 7px;
}
#masthead .row2 .btn_search a {
  display: block;
  width: 57px;
  height: 57px;
  background-color: #454545;
  padding: 17px;
}
#masthead .row2 .btn_search a:hover {
  opacity: 0.7;
}
#masthead .row2 .guidance {
  width: 180px;
  height: 100%;
}
#masthead .row2 .guidance a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  background-color: #034477;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
#masthead .row2 .guidance a:hover {
  opacity: 0.7;
}
#masthead .row2 .guidance a br.midrange {
  display: none;
}

#masthead .row2 .guidance span {
  margin-left: 7px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,0.28);
  border-radius: 8px;
}

#masthead .row2 .login {
  width: 180px;
}
#masthead .row2 .login a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
  background-color: #a10022;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
#masthead .row2 .login a br.midrange {
  display: none;
}
#masthead .row2 .login a:hover {
  opacity: 0.7;
}
#masthead .row2 .login span {
  margin-left: 7px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,0.28);
  border-radius: 8px;
}
#masthead .row2 .fa-angle-right {
  font-size: 15px;
  padding-left: 2px;
}

/*----------------------------------------------------------*/
/* レスポンシブデザイン .row2
/*----------------------------------------------------------*/
/* 1260px以下 */
@media screen and (max-width: 1260px) {
  #masthead .row2 .col1 {
    width: calc(100% - 257px);
  }
  #masthead .row2 .col1 #glonavi li a {
    line-height: 1.3;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  #masthead .row2 .col1 #glonavi li a br.midrange {
    display: block;
  }
  #masthead .row2 .guidance {
    width: 100px;
  }
  
  #masthead .row2 .guidance a br.midrange {
    display: block;
  }
  #masthead .row2 .login {
    width: 100px
  }
  #masthead .row2 .login a br.midrange {
    display: block;
  }
  
  #masthead .row2 .col1 #glonavi .submenu {
    top: 38px;
  }
}
/* 1000px以下 */
@media screen and (max-width: 1020px) {
  
  #masthead .row2 {
    display: block;
    height: auto;
    max-height: calc(100vh - 134px);
    overflow-y: scroll;
  }
  #masthead .row2 .col1 {
    width: 100% !important;
    height: auto;
  }
  #masthead .row2 .col1 #glonavi {
    display: block;
    height: auto;
    width: 100%;
    padding: 0;
    max-height: 0;
    transition: all 1s ease;
    overflow: hidden;
  }
  body.menu_open #masthead .row2 .col1 #glonavi {
    max-height: 500px;
  }
  
  #masthead .row2 .col1 #glonavi li a {
    position: relative;
    display: flex;
    width: 100%;
    padding: 0;
    padding-left: 14px;
    height: 54px;
    align-items: center;
    border-top: solid 1px #343434;
    background-color: #f1f1f1;
    color: #343434;
    text-align: left;
    justify-content: flex-start;
  }
  #masthead .row2 .col1 #glonavi li a::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    display: flex;
    width: 53px;
    height: 53px;
    right: 0;
    position: absolute;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;  
  }
  #masthead .row2 .col1 #glonavi li a br.midrange {
    display: none;
  }
  #masthead .row2 .col1 #glonavi li:last-of-type a {
    border-bottom: solid 1px #343434;
  }
  #masthead .row2 .col1 .search {
    display: none;
  }
  #masthead .row2 .btn_search {
    display: none;
  }
  #masthead .row2 .guidance {
    display: none;
  }
  #masthead .row2 .guidance a br.midrange {
    display: none;
  }
  #masthead .row2 .login {
    display: none;
  }
  #masthead .row2 .login a br.midrange {
    display: none;
  }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* スマホ専用ドロップダウンメニュー .menu_sp
/* ------------------------------------------------------------------------------------------------------------------------------------------- */
#masthead .menu_sp {
  overflow: hidden;
  max-height: 0;
}
body.sp_menu_open #masthead .menu_sp {
  max-height: 0;
}
#masthead .menu_sp .menu_sp_row1 {
  background-color: #555555;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp {
  width: 261px;
  margin: 0 auto;
  font-size: 1.6rem;
  padding-top: 18px;
  padding-bottom: 16px;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp > li {
  border-bottom: solid 1px #969696;
  padding-bottom: 4px;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp > li > a {
  display: block;
  padding-left: 5px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  padding-top: 3px;
  line-height: 36px;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp > li.has_submenu > a {
  position: relative;
  padding-left: 29px;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp > li.has_submenu > a::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  top: 19px;
  left: 8px;
  background-color: white;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp > li.has_submenu > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  top: 19px;
  left: 8px;
  background-color: white;
  transform: rotate(-90deg);
  transition: all 0.5s ease;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp > li.sp_submenu_open > a::after {
  transform: rotate(0deg);
}

#masthead .menu_sp .menu_sp_row1 #glonavi_sp .submenu {
  font-size: 1.6rem;
  line-height: 2.8rem;
  max-height: 0;
  overflow: hidden;
  transition: all 1s ease;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp .sp_submenu_open .submenu {
  max-height: 100vh;
}
#masthead .menu_sp .menu_sp_row1 #glonavi_sp .submenu > li > a {
    display: block;
    padding-left: 30px;
    text-decoration: none;
    color: white;
}
#masthead .menu_sp .menu_sp_row2 {
  background-color: #7a7a7a;
  padding-bottom: 24px;
}
#masthead .menu_sp .menu_sp_row2 .membernavi_sp {
  width: 240px;
  margin: 0 auto;
  display: flex;
  font-size: 1.4rem;
  padding-top: 17px;
  font-weight: bold;
}
#masthead .menu_sp .menu_sp_row2 .membernavi_sp li a {
  padding: 0 10px;
  color: white;
  border-right: solid 1px white;
}
#masthead .menu_sp .menu_sp_row2 .membernavi_sp li:last-child a {
  border: none;
}
#masthead .menu_sp .menu_sp_row2 #headnavi_sp {
  width: 220px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding-top: 10px;
}
#masthead .menu_sp .menu_sp_row2 #headnavi_sp li a {
  position: relative;
  width: 150px;
  display: block;
  font-size: 1.4rem;
  line-height: 28px;
  padding-left: 18px;
  text-decoration: none;
  color: white;
}
#masthead .menu_sp .menu_sp_row2 #headnavi_sp li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  font-size: 15px;
  font-weight: bold;
}


#masthead .menu_sp .menu_sp_row2 .switcher a {
  cursor: pointer;
  width: 130px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 13px;
  font-size: 1.4rem;
  margin: 0 auto;
  margin-top: 11px;
  text-decoration: none;
  color: #343434;
}
#masthead .menu_sp .menu_sp_row2 .switcher a:hover {
  border: solid 1px #939393;
  background-color: #ebebeb;
}
#masthead .menu_sp .menu_sp_row2 .switcher a img {
  width: 15px;
  height: auto;
  margin-right: 4px;
}

/*----------------------------------------------------------*/
/* レスポンシブデザイン .menu_sp
/*----------------------------------------------------------*/
@media screen and (max-width: 1020px) {
  body.sp_menu_open #masthead .menu_sp {
    width: 100%;
    overflow-y: scroll;
    max-height: calc(100vh - 134px);
    transition: all 1s ease;
  }
  body.sp_menu_open #masthead.is-fixed .menu_sp {
    position: fixed;
    top: 55px;
  }
}


/* ------------------------------------------------------------------------------------------------------------------------------------------- */
/* 検索窓@パソコン・スマホ共通 .box_search
/* ------------------------------------------------------------------------------------------------------------------------------------------- */
#masthead .box_search {
  overflow: hidden;
  height: 55px;
  max-height: 0;
  background-color: #434343;
  width: 417px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
}
body.search_open #masthead .box_search {
  max-height: 55px;
  transition: 0.5s all ease;
}
body.search_open #masthead.is-fixed .box_search {
  position: fixed;
  top: 57px;
}
#masthead .box_search form {
  display: flex;
  justify-content: center;
  align-items: center;
}
#masthead .box_search form input[type="text"] {
  width: 280px;
  height: 30px;
  background-color: white;
  border: none;
  border-right: none;
}
#masthead .box_search form a {
  display: block;
  width: 83px;
  height: 30px;
  margin-left: 7px;
  border-radius: 15px;
  border: solid 1px #7e7e7e;
  background-color: #343434;
  color: white;
  font-size: 1.4rem;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
}

/*----------------------------------------------------------*/
/* レスポンシブデザイン .box_search
/*----------------------------------------------------------*/
@media screen and (max-width: 1020px) {
  #masthead .box_search {
    height: 64px;
    width: 100%;
    padding: 0 23px;
  }
  body.search_open #masthead .box_search {
    max-height: 64px;
  }
  body.search_open #masthead.is-fixed .box_search {
    top: 55px;
  }

  #masthead .box_search form {
    width: 100%;
    max-width: 432px;
  }
  #masthead .box_search form input[type="text"] {
    width: calc(100% - 104px);
    height: 34px;
    font-size: 1.6rem;
    border-radius: 0;
    padding: 0 4px;
  }
  #masthead .box_search form a {
    width: 95px;
    height: 32px;
    line-height: 32px;
    border-radius: 16px;
    margin-left: 9px;
  }
}

