@charset "utf-8";
/* CSS Document */

/*-----------------------------------------
共通キャッチ
-----------------------------------------*/
.common-catch {
  text-align: center;
  padding-top: 4vw;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .3));  
}
.common-catch p {
  display: inline-block;
  font-weight: bold;
  color: #2C2A29;
  background-color: #ffe731;
  padding: 0 2vw;
  font-size: 3.8vw;
}
.common-catch + #main-title {
  padding-top: 2vw!important;
}

/*-----------------------------------------
上部切り替えタブ
-----------------------------------------*/
#head-navi {
    width: 100%;
}
#head-navi ul {
  width: 97vw;
  margin: 1vw auto 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 0 1.2vw;
}
#head-navi ul li {
  width: 49.5%;
  min-height: 10vw;
  font-size: 3.2vw;
  line-height: 1.2em;
  font-weight: bold;
  background-color: #bdbdbd;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px; 
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#head-navi ul li .small {font-size: 0.8em;}

#head-navi ul li.kaigai-navi.active { background-color: #11a4f7; }
#head-navi ul li.kokunai-navi.active { background-color: #0abe01; }

#head-navi ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 1vw;
}

#head-navi ul li span {
  display: block;
  width: 100%;
}


/*------------------------------------------------
	ページトップボタン
--------------------------------------------------*/
.goTop{
    position: fixed;
    bottom: 8px;
    right: 8px;
    z-index: 100;
}
.goTop a{
    width: 48px;
    height: 48px;
	display: flex;
    border: none;
    outline: none;
    cursor: pointer;
    transition: .2s ease-out;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(105, 113, 128, .5);
    text-decoration-line: none;
}
.goTop a p{
	color: #fff;
    font-size: 24px;
    line-height: 1;
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
