/******************************************************************************
******************************************************************************
**
** 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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  padding: 1.4rem 1rem;
  border-bottom: 1px solid #1e26ab;
}
.hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  width: 240px;
}
.hd_logo img {
  height: auto;
  max-width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  background: #1e26ab;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 70%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -70%;
  position: fixed;
  transition: All 0.5s ease;
}
.nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.nav_list > li > a:hover,
.nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav_list > li > a::after {
  content: attr(data-text);
  display: block;
}
.nav_list > li > a > span {
  display: inline-block;
  margin-left: 0.5rem;
}
.nav_list > li > a > span.ff_en {
  font-size: 12px;
  opacity: 0.7;
}
.nav_list > li > a.ff_tel {
  background-color: #eba036;
  display: flex;
  align-items: center;
  height: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  padding-left: 20px;
}
.nav_list > li > span.ff_tel.sp_dn {
  display: none !important;
}
.nav_list > li > a.ff_contact {
  background-color: #29af33;
  display: flex;
  align-items: center;
  height: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  padding-left: 20px;
}
.nav_list > li > a.ff_contact:hover,
.nav_list > li > a.ff_contact.current {
  background-color: #eba036;
}
.nav_chaildList > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}
.nav_chaildList > li > a:hover,
.nav_chaildList > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  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);
}
.sp_nav_open {
  right: 0 !important;
}
.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 20px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #1e26ab;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: 'MENU';
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #1e26ab;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: 'CLOSE';
  bottom: -25px;
  color: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding: 0 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
}
.con_hd {
  width: 100%;
}
.con_hd h1 {
  background-color: #1e26ab;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin: 0 -1rem;
}
.main,
.main_wide {
  width: 100%;
  margin-top: 2rem;
}
.main_ft_nav {
  background-color: #efefef;
  padding: 1rem;
  margin: 3rem -10px 0;
}
.main_ft_nav h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.main_ft_nav_list li {
  margin-top: 1rem;
}
.main_ft_nav_list a {
  border: 1px solid #111;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  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 #eba036;
  background-color: #eba036;
  color: #fff;
  display: flex;
}
.side {
  margin-top: 1rem;
  width: 100%;
}
.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 {
  background-color: #1e26ab;
}
.ft_contact {
  background: #efefef;
  background-size: cover;
  padding: 30px 10px 30px;
}
.ft_contact h2 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1rem;
}
.ft_contact .ff_en {
  font-size: 16px;
  color: #666;
  text-align: center;
  display: block;
}
.ft_contact p {
  text-align: center;
}
.ft_contact_list {
  padding: 2rem 0 0;
}
.ft_contact_list li {
  margin-top: 1rem;
}
.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 .ft_contact_tel {
  background-color: #111;
}
.ft_contact_list a:hover {
  background-color: #eba036;
}

.ft_contact_list tel {
  display: none;
}
.ft_bg {
  background: #111;
}
.ft {
  padding: 30px 0;
}
.ft_copy {
  color: #fff;
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #1e26ab;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  right: 10px;
  position: fixed;
  width: 40px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt_btn {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  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: 5px;
  bottom: 0;
}
.pt_btn::after {
  height: 5px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_con {
  padding-bottom: 0 !important;
}
.index_main {
  width: 100%;
}
.index_news {
  padding: 2rem 1rem;
}
.index_news_item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.6em;
  font-size: 0.9rem;
}
.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: 2rem;
  position: relative;
}
.index_catch h2 {
  color: #0050ae !important;
  font-size: 30px;
  font-family: 'Allura', cursive;
  letter-spacing: 0.1em;
}
.index_catch_box {
}
.index_catch_box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.index_catch_box_thum {
}
.index_catch_box_thum img {
  width: 100%;
  height: 20vw;
  object-fit: cover;
}
.index_catch_box_con {
  padding: 1rem;
}
.index_service {
  background: #315ed7;
  background-size: cover;
  padding: 2rem 1rem;
}
.index_service h2 {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.index_service p {
  color: #fff;
  text-align: center;
  margin-top: 1rem;
}
.index_service p br {
  display: none;
}
.index_service_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}
.index_service_list li {
  background-color: #fff;
  width: calc((100% - 1rem) / 2);
  margin: 0 0 1rem 0;
  border-radius: 0.4em;
}
.index_service_list li:hover {
  opacity: 0.8;
}
.index_service_list li:nth-child(4n) {
  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.1rem;
  font-weight: bold;
}
.index_service_list_thum {
  height: 20vw;
  width: 100%;
  object-fit: cover;
}
.index_service_list h3 {
  font-size: 1rem;
  padding: 0.4em 1em;
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider_bg {
  background: url('../images/sp/index_slide_bg.png') no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
}
.index_slider_txt img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.main_eyecatch img {
  height: auto;
  width: 100%;
}
.btn_ghost_black {
  display: block;
  padding: 0.9em 0;
  color: #111;
  text-align: center;
  text-decoration: none;
  border: 1px solid #111;
  transition: All 0.5s ease;
}
.btn_ghost_black:hover {
  background-color: #111;
  color: #fff;
}
.page_eyecatch {
  margin-bottom: 2rem;
}
.page_topage {
  padding: 3rem 0 0;
}
.page_disc {
  margin-top: 1rem;
}
.fuuei_main_eyecatc_bg {
  background-image: url('../images/fuuei_main_eyecatc_bg.png');
}
.fuuei_list_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.fuuei_list_main li {
  border: 2px solid #111;
  border-radius: 8px;
  color: #111;
  font-weight: bold;
  margin: 0 0.5rem 1rem;
  padding: 0.5rem;
  width: calc(50% - 1rem);
  text-align: center;
}
.fuuei_list_main li.special {
  border: 2px solid rgba(165, 39, 39, 1);
  color: rgba(165, 39, 39, 1);
}
.googlemap_wrap iframe {
  width: 100%;
  height: 400px;
}
.googlemap_link {
  margin-top: 1rem;
}
.fees_tbl_fee {
  width: 30%;
  text-align: right;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon h1 {
  border-bottom: 1px solid #ccc;
  font-size: 1.5rem;
  font-weight: normal;
  padding: 1rem 0 0.5rem;
  margin-bottom: 2rem;
}
.mcon h2 {
  border: 1px solid #ccc;
  border-bottom: 3px solid #111;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  padding: 0.5rem 1rem 0.3rem;
}
.mcon h3 {
  border-bottom: 2px solid #aaa;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.mcon h4 {
  font-size: 1.1em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.pcon {
  word-wrap: break-word;
}
.pcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pcon h2 {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.pcon h2 br {
  display: none;
}
.pcon h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1.5rem;
  text-align: center;
}
.pcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.pcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
