@charset "utf-8";
/* CSS Document */

/*-----------------------------------------
共通キャッチ
-----------------------------------------*/
.common-catch {
  text-align: center;
  padding-top: 32px;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, .3));  
}
.common-catch p {
  display: inline-block;
  font-weight: bold;
  color: #2C2A29;
  background-color: #fff231;
  padding: 0 16px;
  font-size: 28px;
}
.common-catch + #main-title {
  padding-top: 16px!important;
}

/*-----------------------------------------
上部切り替えタブ
-----------------------------------------*/
#head-navi {
    width: 100%;
}
#head-navi ul {
  width: 1104px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 0 8px;
}
#head-navi ul li {
  width: 49.5%;
  font-size: 18px;
  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.kaigai-navi a:hover { background-color: #11a4f7; opacity: .8; }
#head-navi ul li.kokunai-navi a:hover { background-color: #0abe01; opacity: .8; }

#head-navi ul li a {
  width: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px 0;
}

#head-navi ul li span {
	width: 100%;
}

/*------------------------------------------------
	ページトップボタン
--------------------------------------------------*/
.goTop{
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}
.goTop a{
  width: 40px;
  height: 40px;
  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:hover{
	opacity: .8;
}
.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;
}
.is-ipad {
    & .goTop a {
        width: 50px;
        height: 50px;
        & p {
            font-size: 30px;
        }
    }
}
.page-top {
    position: fixed !important;
}
