/******************************************************************************
******************************************************************************
**
** 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 {
  overflow-x: hidden;
  font-size: 1rem;
}
.w_base {
  margin: 0 auto;
  width: 1120px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #1e26ab;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
}
.hd_logo {
  line-height: 0;
}
.hd_logo img {
  width: 228px;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_list {
  display: flex;
}
.nav_list > li {
  border-left: 1px solid #1e26ab;
  position: relative;
}

.nav_list > li > a.nav_clist_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: #1e26ab;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8em 1.6em;
}
.nav_list > li > a.nav_clist_btn:hover,
.nav_list > li > a.current {
  background-color: #1e26ab;
  color: #fff;
}
.nav_list > li > a > span {
  display: block;
  text-align: center;
}
.nav_list > li > a > span.ff_en {
  font-size: 0.8rem;
}
.nav_list > li > span.ff_tel {
  background-color: #1e26ab;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0 1.4em;
  text-align: center;
  height: 50%;
}

.nav_list > li > a.ff_contact {
  background-color: #008c00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 1.4em;
  text-align: center;
  height: 50%;
}
.nav_list > li > a.ff_contact:hover,
.nav_list > li > a.ff_contact.current {
  background-color: #eba036;
}
.nav_list > li:hover .nav_chaildList {
  display: block;
}
@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_chaildList {
  display: none;
  transition: All 0.5s ease;
  width: 150%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
}
.nav_chaildList > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.nav_chaildList > li > a {
  background-color: #161c81;
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
  font-size: 0.9rem;
}
.nav_chaildList > li > a:hover,
.nav_chaildList > li > a.current {
  opacity: 0.8;
}
.nav_chaildList > 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
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 0 4rem;
}
.con_hd {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
.con_hd h1 {
  background-color: #1e26ab;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}
.main {
  padding-top: 3rem;
  width: 70%;
}
.main_wide {
  width: 100%;
}
.main_eyecatch {
  background-size: cover;
  background-color: #efefef;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  text-align: center;
  margin-bottom: 4rem;
}
.main_eyecatch img {
  height: auto;
  max-width: 100%;
}
.main section {
  padding: 4rem 0;
}
.main_ft_nav {
  background-color: #efefef;
  padding: 2rem;
  margin-top: 4rem;
}
.main_ft_nav h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.main_ft_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main_ft_nav_list li {
  width: calc(50% - 1rem);
}
.main_ft_nav_list a {
  border: 1px solid #111;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 18px 0 16px;
  text-decoration: none;
}
.main_ft_nav_list a:hover {
  border: 1px solid #1e26ab;
  background-color: #1e26ab;
  color: #fff;
  display: flex;
}
.main_ft_nav_list a.main_ft_nav_mail_btn {
  border: 1px solid #1e26ab;
  background-color: #1e26ab;
  color: #fff;
  display: flex;
}
.side {
  padding-top: 3rem;
  width: calc(30% - 2rem);
}
.side h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.side h3:first-of-type {
  margin-top: 0;
}
.side h3::before {
  border-top: 1px solid #1e26ab;
  content: '';
  display: inline;
  flex-grow: 1;
  margin-right: 0.5em;
}
.side h3::after {
  border-top: 1px solid #1e26ab;
  content: '';
  display: inline;
  flex-grow: 1;
  margin-left: 0.5em;
}
.side_archive {
  margin-top: 1rem;
}
.side_archive select {
  width: 100%;
}
.side_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_list li a:hover,
.side_nav_list li a.current {
  text-decoration: underline;
}
.side_category_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.side_category_list li {
  margin: 0 0.6rem 0.6rem 0;
}
.side_category_list a {
  border: 1px solid #1e26ab;
  color: #1e26ab;
  display: block;
  font-size: 0.9rem;
  padding: 0.2em 0.5em;
  text-decoration: none;
}
.side_category_list a:hover {
  background-color: #1e26ab;
  color: #fff;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_contact {
  background: #efefef;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  padding: 100px 0;
}
.ft_contact h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
.ft_contact .ff_en {
  font-size: 16px;
  color: #666;
  text-align: center;
  display: block;
}
.ft_contact p {
  text-align: center;
}
.ft_contact_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 0 0;
}
.ft_contact_list li {
  width: 300px;
  margin: 0 15px;
}
.ft_contact_list a,
.ft_contact_list tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 18px 0 16px;
}
.ft_contact_list a {
  background-color: #1e26ab;
  color: #fff;
  text-decoration: none;
}
.ft_contact_list a:hover {
  background-color: #eba036;
}

.ft_contact_list tel {
  border: 1px solid #111;
}
.ft_bg {
  background: #1e26ab;
}
.ft {
  padding: 30px 0;
}
.ft_copy {
  color: #fff;
  font-size: 10px;
  text-align: center;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #1e26ab;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.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: #fff;
  content: '';
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
body.home {
  padding-top: 0;
}
.index_con {
  padding-bottom: 0 !important;
}
.index_main {
  position: relative;
}
.index_news {
  background-color: #fff;
  width: 880px;
  margin: 0 auto;
  padding: 2rem;
  margin-top: -4rem;
  margin-bottom: 2rem;
}
.index_news_item {
  border-bottom: 1px solid #ddd;
  display: flex;
  padding-bottom: 0.6em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.index_news_date {
  width: 10em;
}
.index_news_topage {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.index_news_topage .button {
  display: block;
  padding: 0.6em 2em;
  background-color: #1e26ab;
  color: #fff;
  text-decoration: none;
}
.index_news_topage .button:hover {
  background-color: #eba036;
}
.index_catch {
  margin-bottom: 6rem;
  position: relative;
}
.index_catch h2 {
  color: #0050ae !important;
  font-size: 80px;
  font-family: 'Allura', cursive;
  letter-spacing: 0.1em;
  transform: rotate(-15deg);
  position: absolute;
  z-index: 100;
  top: -60px;
  left: -80px;
}
.index_catch_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.index_catch_box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.index_catch_box_thum {
  width: 450px;
}
.index_catch_box_thum img {
  width: 450px;
  height: auto;
}
.index_catch_box_con {
  background-color: rgba(225, 225, 239, 0.8);
  padding: 3rem;
  width: 600px;
  margin-left: -3rem;
}
.index_service {
  background: url(../images/index_bg_01.jpg) no-repeat center;
  background-size: cover;
  margin: 0 calc(50% - 50vw);
  padding: 100px 0;
}
.index_service h2 {
  color: #fff;
  font-size: 26px;
  text-align: center;
}
.index_service p {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-top: 2rem;
}
.index_service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 0 0;
  width: 1100px;
  margin: 0 auto;
}
.index_service_list li {
  background-color: #fff;
  width: calc((100% - 60px) / 3);
  margin: 0 20px 20px 0;
  border-radius: 0.4em;
}
.index_service_list li:hover {
  opacity: 0.8;
}
.index_service_list li:nth-child(3n) {
  margin-right: 0;
}
.index_service_list li a {
  color: #111;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.6em 0.4em;
  font-size: 1.2rem;
  font-weight: bold;

}
.index_service_list_thum {
  display: block;
  height: 10vw;
  width: 100%;
  object-fit: cover;
}
.index_service_list h3 {
  font-size: 0.9rem;
  padding: 0.4em;
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider_bg {
  background: url('../images/index_slider_bg.png') no-repeat;
  background-size: cover;
  position: relative;
  height: 36vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_slider_txt img {
  height: auto;
  width: 50vw;
}
.index_slider img {
  width: 100%;
  max-height: 800px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: 'object-fit: cover!important;';
}
.p-profile {
  background-color: #eee;
  padding: 3rem;
  margin-bottom: 2rem;
}
.p-profile__officeName {
  font-size: 1.4rem;
}
.p-profile__name {
  font-size: 1.6rem;
}
.p-profile__point {
  padding-left: 1rem;
  position: relative;
}
.p-profile__point::before {
  content: '';
  height: 0.6rem;
  width: 0.6rem;
  border-radius: 50%;
  background-color: #1e26ab;
  left: 0;
  top: 0.4rem;
  position: absolute;
}
