@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  font-family: "Noto Sans JP", "Lato", sans-serif;
  font-size: 15px;
}

.w_base {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg .hdBlock {
  width: 58vw;
  height: 300px;
  background: #F25E7A;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
}
.hd_bg .hd {
  top: 20px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  line-height: 1.2;
}
.hd_bg .hd .hd_logo a img {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-right: 20px;
}
.hd_bg .hd .icon {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.hd_bg .hd .icon a {
  display: block;
  transition: all 0.3s ease;
}
.hd_bg .hd .icon a img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
.hd_bg .hd .icon a:hover img {
  opacity: 0.7;
}
.hd_bg .hd_b {
  -moz-column-gap: 20px;
  column-gap: 20px;
  display: flex;
}
.hd_bg .hd_b .hd_img {
  margin-right: calc(50% - 50vw);
  margin-top: 50px;
  width: 100%;
}
.hd_bg .hd_b .hd_img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hd_lang {
  position: absolute;
  right: 0;
  top: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_list {
  width: 100%;
  margin: 40px 20px 20px;
}
.nav_list > li {
  position: relative;
  z-index: 1000;
  margin-bottom: 20px;
  padding-left: 20px;
}
.nav_list > li > a {
  position: relative;
  left: 0;
  display: block;
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  line-height: 2em;
  transition: all 0.3s ease;
}
.nav_list > li > a::before {
  position: absolute;
  top: 40%;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.nav_list > li > a:hover::before {
  opacity: 1;
}
.nav_list > li > a.current::before {
  opacity: 1;
}
.nav_list > li:hover .nav_clist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}

@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_clist {
  display: none;
  transition: All 0.5s ease;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
}
.nav_clist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}
.nav_clist > li > a {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.nav_clist > li > a:hover, .nav_clist > li > a.current {
  opacity: 0.8;
}
.nav_clist > li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}

.nav_glist {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
}
.nav_glist > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.nav_glist > li > a:hover, .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: #F25E7A;
}
.ft_bg .ft {
  padding: 30px 0;
  display: flex;
  justify-content: space-around;
}
.ft_bg .ft .ft_l p.ft_logo {
  color: #fff;
  font-size: 1em;
  line-height: 1.4;
}
.ft_bg .ft .ft_l p.ft_logo img {
  width: 30px;
  margin-right: 10px;
}
.ft_bg .ft .ft_l p.ft_address {
  margin-top: 20px;
  color: #fff;
}
.ft_bg .ft .ft_r .nav .nav_list {
  display: flex;
  margin-right: 0;
}
.ft_bg .ft .ft_r .nav .nav_list li a {
  color: #fff;
}
.ft_bg .ft .ft_r .nav .nav_list li a:hover {
  opacity: 0.6;
}
.ft_bg .ft .ft_r .ft_copy {
  color: #fff;
  text-align: right;
}

.ft_copy {
  font-size: 10px;
  text-align: center;
  margin-top: 100px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pageTop {
  position: sticky;
  right: 20px;
  bottom: 20px;
}

.pt {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  z-index: 100;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 20px;
}
.pt:hover {
  opacity: 0.6;
}
.pt::after {
  content: "PAGE TOP";
  display: block;
  font-size: 0.5em;
  position: absolute;
  margin-top: 30px;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.pt_btn::before, .pt_btn::after {
  background-color: #000;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 1px;
  bottom: 0;
}
.pt_btn::after {
  height: 1px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  margin-top: 50px;
}
.index_main h2 {
  font-size: 2.2em;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 30px;
  background: linear-gradient(transparent 50%, rgba(242, 94, 122, 0.5) 50%);
}
.index_main .index_topics .topi {
  display: flex;
  -moz-gap: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.index_main .index_topics .topi .index_topics_item {
  width: calc((100% - 40px) / 3);
}
.index_main .index_topics .topi .index_topics_item a {
  overflow: visible;
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 1.3em;
  text-align: center;
  text-decoration: none;
  line-height: 3em;
  box-shadow: 5px 3px 15px -5px #c7c7c7;
}
.index_main .index_topics .topi .index_topics_item a img {
  display: block;
  width: 100%;
  transition-duration: 0.5s;
}
.index_main .index_topics .topi .index_topics_item a span {
  display: block;
  padding: 15px 10px;
  font-weight: 600;
  font-size: 0.8em;
  line-height: 1.6;
}
.index_main .index_topics .topi .index_topics_item a:hover img {
  transform: scale(0.9, 0.9);
  transition-duration: 0.5s;
}

.index_bnr_list li {
  margin-bottom: 4px;
}
.index_bnr_list a {
  padding: 16px 16px 16px 42px;
  border: 1px solid #000000;
  border-radius: 3px;
  display: block;
  text-decoration: none;
  background: url(../images/icon_elink_black.png) no-repeat 16px center;
  color: #000000;
}
.index_bnr_list a:hover {
  background-color: #000;
  background-image: url(../images/icon_elink_white.png);
  color: #FFF;
}

.index_news h2 {
  margin-bottom: 0px;
}

.index_news_item {
  border-bottom: 1px dotted #999;
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
  align-items: flex-start;
  align-content: space-between;
  padding: 16px 0;
  width: 100%;
}

.index_news_item_date {
  color: #666;
  font-weight: 600;
}

.index_news_item_category {
  background: #eee;
  border: 1px solid #000;
  padding: 2px 10px;
}

.index_news_item_ttl {
  width: calc(100% - 140px);
}

.index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_news_item_icon_new:before {
  content: "NEW";
}

.index_news_scrl {
  max-height: 300px;
  overflow: auto;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*--
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
section {
  word-wrap: break-word;
}
section a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
section h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
section h2 {
  font-size: 2.2em;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 30px;
  background: linear-gradient(transparent 50%, rgba(242, 94, 122, 0.5) 50%);
}
section h3 {
  font-size: 1.6em;
  margin-bottom: 8px;
  margin-top: 16px;
  position: relative;
  left: 0;
  padding: 15px;
}
section h3::before {
  content: "";
  width: 10px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
section h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
  position: relative;
  left: 0;
  padding: 15px;
}
section h4::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #000;
  position: absolute;
  top: 45%;
  left: 0;
}
section h5, section h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
section hr {
  border: none;
  border-top: 1px dotted #000;
}
section iframe {
  max-width: 100%;
}
section img {
  max-width: 100%;
  height: auto;
}
section ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
section ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
section p {
  margin-bottom: 1em;
}
section ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
section ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

.profile-info {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.profile-info td {
    vertical-align: top;
    padding: 10px;
}

.profile-info td:first-child {

    width: 150px;
}

/*# sourceMappingURL=style.css.map */