@charset "UTF-8";
/*================================

# 共通

================================*/
html {
  font-size: 16px;
}

body {
  padding-top: 47px;
  font-size: 100%;
  color: #000;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

main {
  margin: 0 auto;
  padding: 0 3rem;
  max-width: 1140px;
}

ul {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin: 0;
}

.view_pc {
  display: block;
}

.view_sp {
  display: none;
}

/* ----------------------------
   レスポンシブ：スマホ以下
----------------------------- */
@media screen and (max-width: 767px) {
  body {
    padding-top: 90px;
    margin-bottom: 54px;
  }
  main {
    padding: 0 1.5rem;
  }
  h3 {
    font-size: 1.125rem;
  }
  .view_pc {
    display: none;
  }
  .view_sp {
    display: block;
  }
}
/*================================

header.php

================================*/
/*----------------------------
　固定ヘッダー
------------------------------*/
.header_contain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 0;
}

.header_ttl {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 21px;
  color: #333;
}
.header_ttl:hover {
  text-decoration: none;
  color: #333;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.nav_menu {
  display: flex;
  justify-content: left;
  align-items: center;
  list-style: none;
  margin-right: 15px;
  gap: 15px;
}
.nav_menu .nav_menu_item > a {
  color: #000;
  text-decoration: none;
  font-size: inherit;
}

.nav_search_pc {
  display: flex;
  padding: 0 5px;
  border: 1px solid #000;
  height: 34px;
}
.nav_search_pc > input {
  width: 100%;
  padding: 5px;
  font-size: 0.875rem;
  border: none;
}
.nav_search_pc > button {
  background: none;
  border: none;
  cursor: pointer;
}

/* ----------------------------
   固定ヘッダー
   レスポンシブ：タブレット以下
----------------------------- */
@media screen and (max-width: 1180px) {
  .header_contain {
    flex-direction: column;
    align-items: start;
  }
  nav {
    padding-right: 20px;
    font-size: 12px;
  }
  .nav_menu {
    margin: 0;
    padding: 10px 0 0 24px;
    gap: 10px;
  }
  .nav_search_pc {
    height: 27px;
  }
}
/* ----------------------------
   固定ヘッダー
   レスポンシブ：スマホ以下
----------------------------- */
@media screen and (max-width: 767px) {
  .header_contain {
    top: auto;
    bottom: 0;
  }
  .header_ttl {
    display: none;
  }
  .header_sp_img {
    position: fixed;
    top: 0;
    z-index: 999;
  }
  nav {
    flex: 2;
    justify-content: space-around;
  }
  nav .nav_menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: calc(100% - 54px);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #333;
    transition: right 0.3s ease;
    z-index: 1000;
    margin-right: 0;
  }
  nav .nav_menu.is_active {
    right: 0;
  }
  nav .nav_menu.is_active .nav_menu_item.is_active > a {
    color: #fff;
  }
  nav .nav_menu .nav_menu_item {
    width: 100%;
    padding: 8px 0;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  }
  nav .nav_menu .nav_menu_item:last-child {
    display: none;
  }
  nav .nav_menu .nav_menu_item > a {
    color: #fff;
    font-size: 16px;
  }
  nav .nav_menu .nav_menu_item > a:active {
    text-decoration: underline;
  }
  nav .nav_menu .nav_menu_item > a:focus {
    text-decoration: underline;
    background: rgba(255, 255, 255, 0.05);
  }
  .nav_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    z-index: 9999;
  }
  .nav_sp_home,
.nav_sp_ham,
.nav_sp_search {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 1px #ccc;
  }
  .nav_sp_ham,
.nav_sp_search {
    transition: background-color 0.3s ease;
    border-left: 1px solid #ccc;
    font-size: 21px;
  }
  .nav_sp_ham.nav_active,
.nav_sp_search.nav_active {
    background-color: #333;
    color: #fff;
    border-top: none;
  }
  .nav_sp_home {
    transition: background-color 0.3s ease;
  }
  .nav_sp_home a {
    font-size: 21px;
    color: #333;
    text-align: center;
  }
  .nav_sp_home a:hover {
    color: #fff;
  }
  .nav_sp_home:hover {
    background-color: #333;
  }
  .nav_sp_search_panel {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: calc(100% - 54px);
    padding: 20px;
    background-color: #333;
    transition: right 0.3s ease;
    z-index: 9998;
  }
  .nav_sp_search_panel.is_active {
    right: 0;
  }
  .nav_sp_search_panel.is_active input {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .nav_sp_search_panel.is_active button {
    width: 100%;
    padding: 12px;
    border: 2px solid;
    color: rgba(255, 255, 255, 0.75);
  }
}
/*----------------------------
　トップ画面：メインビュー
------------------------------*/
.mv_wrapper {
  position: relative;
}

.mv_wrapper,
#mv_splide,
.mv_splide_img {
  height: 800px;
}

#mv_splide > .splide__track,
#mv_splide .splide__list,
#mv_splide .splide__slide {
  height: 800px;
}

.mv_splide_img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mv_splide_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  border: 2px solid white;
  width: 300px;
  height: 300px;
}
.mv_splide_logo > p {
  line-height: 44px;
  text-shadow: 0 0 5px #000;
}

.mv_splide_txt {
  position: absolute;
  top: 71%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 30px 15px;
  text-align: center;
  font-size: 1.625rem;
  line-height: 35px;
}
.mv_splide_txt > p {
  margin: 0;
  font-weight: bold;
}
.mv_splide_txt > a {
  text-decoration: underline;
  color: #fff;
  font-weight: bold;
}

/* ----------------------------
   トップ画面：メインビュー
   レスポンシブ：スマホ以下
----------------------------- */
@media screen and (max-width: 767px) {
  .mv_wrapper {
    height: 400px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
  }
  #mv_splide {
    height: 100%;
  }
  #mv_splide > .splide__track,
#mv_splide .splide__list,
#mv_splide .splide__slide {
    height: 400px;
  }
  .mv_splide_img {
    height: 100%;
  }
  .mv_splide_logo {
    width: 180px;
    height: 180px;
    font-size: 20px;
    padding: 10px;
    border: 1px solid white;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .mv_splide_logo p {
    margin-bottom: 0;
    line-height: 33px;
  }
  .mv_splide_txt {
    position: absolute;
    top: 74%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    line-height: 21px;
  }
  .mv_splide_txt > p {
    margin: 0;
    color: white;
    font-weight: bold;
  }
  .mv_splide_txt > a {
    margin-top: 5px;
    color: white;
    text-decoration: underline;
    font-size: 1rem;
  }
}
/* ----------------------------
   ページヘッダー：共通
----------------------------- */
.breadcrumbs {
  background-color: #EEEEEE;
  color: #000;
  font-size: 14px;
  margin-bottom: 24px;
  padding: 0.75rem 1.5rem;
}

.breadcrumbs_wrapper {
  max-width: 1050px;
  margin: 0 auto;
}
.breadcrumbs_wrapper i {
  margin-left: 5px;
  margin-right: 10px;
}

.company_main_ttl,
.business_main_ttl,
.faq_main_ttl,
.archive_main_ttl,
.single_main_ttl,
.flow_main_ttl,
.contact_main_ttl,
.form_main_ttl,
.check_main_ttl,
.complete_main_ttl {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}

.company_main_ttl_bk,
.business_main_ttl_bk,
.faq_main_ttl_bk,
.archive_main_ttl_bk,
.single_main_ttl_bk,
.flow_main_ttl_bk,
.contact_main_ttl_bk,
.form_main_ttl_bk,
.check_main_ttl_bk,
.complete_main_ttl_bk {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 307px;
  background-color: RGBA(0, 0, 0, 0.62);
  color: #fff;
}
.company_main_ttl_bk::before,
.business_main_ttl_bk::before,
.faq_main_ttl_bk::before,
.archive_main_ttl_bk::before,
.single_main_ttl_bk::before,
.flow_main_ttl_bk::before,
.contact_main_ttl_bk::before,
.form_main_ttl_bk::before,
.check_main_ttl_bk::before,
.complete_main_ttl_bk::before {
  content: "";
  position: absolute;
  background-size: cover;
  background-position: 0 69%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  z-index: -1;
}
.company_main_ttl_bk::after,
.business_main_ttl_bk::after,
.faq_main_ttl_bk::after,
.archive_main_ttl_bk::after,
.single_main_ttl_bk::after,
.flow_main_ttl_bk::after,
.contact_main_ttl_bk::after,
.form_main_ttl_bk::after,
.check_main_ttl_bk::after,
.complete_main_ttl_bk::after {
  font-family: sans-serif;
  position: absolute;
  top: 55%;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
}

/* ----------------------------
   ページヘッダー：共通
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .breadcrumbs_wrapper {
    text-align: center;
  }
}
/* ----------------------------
   ヘッダー：事業所案内
----------------------------- */
.company_main_ttl_bk::before {
  background-image: url(../img/zigyousyo.jpg);
}
.company_main_ttl_bk::after {
  content: "Company";
}

/* ----------------------------
   ヘッダー：事業内容
----------------------------- */
.business_main_ttl_bk::before {
  background-image: url(../img/DSC_5031.jpg);
}
.business_main_ttl_bk::after {
  content: "Business";
}

/* ----------------------------
   ヘッダー：お知らせ
----------------------------- */
.archive_main_ttl_bk::before,
.single_main_ttl_bk::before {
  background-image: url(../img/ship.jpg);
  background-position: 0 49%;
}
.archive_main_ttl_bk::after,
.single_main_ttl_bk::after {
  content: "News";
}

/* ----------------------------
   ヘッダー：flow
----------------------------- */
.flow_main_ttl_bk::before {
  background-image: url(../img/flow01.jpg);
}
.flow_main_ttl_bk::after {
  content: "Agreement";
}

/* ----------------------------
   ヘッダー：よくある質問
----------------------------- */
.faq_main_ttl_bk::before,
.check_main_ttl_bk::before,
.complete_main_ttl_bk::before {
  background-image: url(../img/zaimu.jpg);
}
.faq_main_ttl_bk::after,
.check_main_ttl_bk::after,
.complete_main_ttl_bk::after {
  content: "Question";
}

/* ----------------------------
   ヘッダー：お問い合わせ
----------------------------- */
.form_main_ttl_bk::before {
  background-image: url(../img/DSC_5031.jpg);
}
.form_main_ttl_bk::after {
  content: "Inquiry";
}

/*================================

# page-home.php
共通

================================*/
#home-wrapper {
  padding: 0 10px;
}

.news,
.topics,
.chart,
.greeting,
.gallery {
  border-bottom: 1px solid #000;
}

.news_ttl,
.topics_ttl,
.chart_ttl,
.greeting_contain_ttl,
.gallery_ttl,
.access_ttl {
  font-size: 26px;
}

.news_ttl,
.topics_ttl,
.chart_ttl,
.gallery_ttl,
.access_ttl {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 20px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .news_ttl,
.topics_ttl,
.chart_ttl,
.greeting_contain_ttl,
.gallery_ttl,
.access_ttl {
    font-size: 16px;
  }
}
/*==========================================

page-home.php
NEWS

===========================================*/
.news_wrap {
  margin: 0 auto;
  width: 70%;
}

.news_contain {
  display: flex;
  font-size: 16px;
  padding: 0 150px;
  border-bottom: 1px dotted #aaa;
  padding: 5px 0;
}

.news_contain_day {
  width: 120px;
  text-align: left;
  font-weight: bold;
  flex-shrink: 0;
}

.news_contain_topics {
  font-size: 1.1875rem;
}
.news_contain_topics > a {
  color: #666;
}
.news_contain_topics > a:hover {
  color: #C02942;
  text-decoration: none;
}

.news_btn_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 12px 24px;
  margin: 20px auto 25px;
}
.news_btn_wrap:hover {
  background-color: #000;
}
.news_btn_wrap > a {
  text-decoration: none;
  color: #000;
}
.news_btn_wrap:hover a {
  color: #fff;
  text-decoration: none;
}

/* ----------------------------
   NEWS：レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .news_wrap {
    font-size: 14px;
    width: 100%;
    padding: 0;
  }
  .news_contain_day {
    width: 90px;
    margin-right: 10px;
  }
}
/*==========================================

# page-home.php
TOPICS

===========================================*/
.topics_contain {
  display: flex;
  margin-bottom: 50px;
}

.topics_contain_img {
  width: 73%;
  margin-right: 20px;
}

.topics_txt {
  border: solid 1px #ccc;
  margin-bottom: 20px;
  padding: 10px;
}
.topics_txt > h5 {
  margin-bottom: 10px;
  font-size: 21px;
  color: #0020B2;
}
.topics_txt > h5 > span {
  color: #E4161A;
}
.topics_txt > h6 {
  font-size: 18px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .topics > h3 {
    text-align: center;
    margin-bottom: 10px;
  }
  .topics > h3 > br {
    display: block;
  }
  .topics h4 {
    font-size: 1.125rem;
  }
  .topics_wrap {
    flex-direction: column;
  }
  .topics_contain {
    padding: 0;
  }
}
/*================================

page-home.php
組織図

================================*/
/* ---------- 基本構造 ---------- */
.chart p {
  text-align: center;
}

.chart_pc {
  position: relative;
}

/* ---------- 組織図 --------- */
.chart_pc_img {
  width: 663px;
  margin: 125px auto;
}

/* ----------------------------
   レスポンシブ：ノートPC
----------------------------- */
@media screen and (max-width: 1366px) {
  .chart_pc_img {
    width: 470px;
  }
}
/* ---------- 共通コンテンツ --------- */
.chart_blue,
.chart_yellow,
.chart_green {
  display: none !important;
}

.chart_support_financing_ttl,
.chart_support_information_ttl,
.chart_support_consult_ttl,
.chart_exit_ttl,
.chart_review_ttl,
.chart_kaizen_ttl,
.chart_work_ttl,
.chart_sougyo_ttl,
.chart_zouyo_ttl,
.chart_backoffice_ttl {
  padding: 10px;
  text-align: center;
  top: 0;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

.chart_support_financing_ttl,
.chart_support_information_ttl,
.chart_support_consult_ttl,
.chart_exit_ttl,
.chart_review_ttl,
.chart_kaizen_ttl,
.chart_work_ttl,
.chart_sougyo_ttl {
  background-color: #AAE8EA;
  color: #1E757C;
}

.chart_zouyo_ttl {
  background-color: #FBEAA6;
  color: #89852B;
}

.chart_backoffice_ttl {
  background-color: #9AE67A;
  color: #2E9751;
}

.chart_txt {
  display: flex;
  flex-direction: column;
  max-height: 70vh;
}
.chart_txt > ul {
  padding: 20px 40px;
  flex: 1;
  overflow-y: auto;
}
.chart_txt li {
  font-weight: 500;
  margin-bottom: 10px;
  list-style: disc;
}
.chart_txt span {
  font-weight: normal;
}

.chart_txt .chart_review_attention {
  list-style: none;
  color: #ED1A3D;
}

.chart_external_link {
  background-color: #F5B5BD;
  border: solid 2px #666;
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  margin: 0 20px 5px 20px;
}
.chart_external_link:hover {
  background-color: #d26975;
  transition: background-color 0.3s;
}
.chart_external_link a {
  color: #000;
  text-decoration: none;
}
.chart_external_link a:hover {
  -webkit-text-decoration: solid;
          text-decoration: solid;
}

.chart_more_link {
  border-top: solid 1px #ccc;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

/* ----------------------------
   レスポンシブ：ノートPC
----------------------------- */
@media screen and (max-width: 1366px) {
  .chart_txt {
    max-height: 380px;
    min-height: 0;
    font-size: 1rem;
  }
}
/* ---------- 吹き出し ---------- */
.chart_support_wrap,
.chart_support_contain,
.chart_support_box,
.chart_exit_wrap,
.chart_exit_contain,
.chart_review_wrap,
.chart_review_contain,
.chart_kaizen_wrap,
.chart_kaizen_contain,
.chart_work_wrap,
.chart_work_contain,
.chart_sougyo_wrap,
.chart_sougyo_contain,
.chart_zouyo_wrap,
.chart_zouyo_contain,
.chart_backoffice_wrap,
.chart_backoffice_contain {
  cursor: pointer;
}
.chart_support_wrap::before,
.chart_support_contain::before,
.chart_support_box::before,
.chart_exit_wrap::before,
.chart_exit_contain::before,
.chart_review_wrap::before,
.chart_review_contain::before,
.chart_kaizen_wrap::before,
.chart_kaizen_contain::before,
.chart_work_wrap::before,
.chart_work_contain::before,
.chart_sougyo_wrap::before,
.chart_sougyo_contain::before,
.chart_zouyo_wrap::before,
.chart_zouyo_contain::before,
.chart_backoffice_wrap::before,
.chart_backoffice_contain::before {
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 15px;
  border-radius: 10px;
  font-size: clamp(12px, 1.2vw, 16px);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.chart_support_wrap::after,
.chart_support_contain::after,
.chart_support_box::after,
.chart_exit_wrap::after,
.chart_exit_contain::after,
.chart_review_wrap::after,
.chart_review_contain::after,
.chart_kaizen_wrap::after,
.chart_kaizen_contain::after,
.chart_work_wrap::after,
.chart_work_contain::after,
.chart_sougyo_wrap::after,
.chart_sougyo_contain::after,
.chart_zouyo_wrap::after,
.chart_zouyo_contain::after,
.chart_backoffice_wrap::after,
.chart_backoffice_contain::after {
  content: "";
  position: absolute;
  width: 6%;
  height: 6%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
.chart_support_wrap:hover::before, .chart_support_wrap:hover::after,
.chart_support_contain:hover::before,
.chart_support_contain:hover::after,
.chart_support_box:hover::before,
.chart_support_box:hover::after,
.chart_exit_wrap:hover::before,
.chart_exit_wrap:hover::after,
.chart_exit_contain:hover::before,
.chart_exit_contain:hover::after,
.chart_review_wrap:hover::before,
.chart_review_wrap:hover::after,
.chart_review_contain:hover::before,
.chart_review_contain:hover::after,
.chart_kaizen_wrap:hover::before,
.chart_kaizen_wrap:hover::after,
.chart_kaizen_contain:hover::before,
.chart_kaizen_contain:hover::after,
.chart_work_wrap:hover::before,
.chart_work_wrap:hover::after,
.chart_work_contain:hover::before,
.chart_work_contain:hover::after,
.chart_sougyo_wrap:hover::before,
.chart_sougyo_wrap:hover::after,
.chart_sougyo_contain:hover::before,
.chart_sougyo_contain:hover::after,
.chart_zouyo_wrap:hover::before,
.chart_zouyo_wrap:hover::after,
.chart_zouyo_contain:hover::before,
.chart_zouyo_contain:hover::after,
.chart_backoffice_wrap:hover::before,
.chart_backoffice_wrap:hover::after,
.chart_backoffice_contain:hover::before,
.chart_backoffice_contain:hover::after {
  opacity: 1;
}

.chart_support_wrap::before,
.chart_support_contain::before,
.chart_support_box::before,
.chart_exit_wrap::before,
.chart_exit_contain::before,
.chart_review_wrap::before,
.chart_review_contain::before,
.chart_kaizen_wrap::before,
.chart_kaizen_contain::before,
.chart_work_wrap::before,
.chart_work_contain::before,
.chart_sougyo_wrap::before,
.chart_sougyo_contain::before {
  background-color: #AAE8EA;
}
.chart_support_wrap::after,
.chart_support_contain::after,
.chart_support_box::after,
.chart_exit_wrap::after,
.chart_exit_contain::after,
.chart_review_wrap::after,
.chart_review_contain::after,
.chart_kaizen_wrap::after,
.chart_kaizen_contain::after,
.chart_work_wrap::after,
.chart_work_contain::after,
.chart_sougyo_wrap::after,
.chart_sougyo_contain::after {
  background-image: url("../img/chart_blue.png");
}

.chart_zouyo_wrap::before,
.chart_zouyo_contain::before {
  background-color: #FAE9A5;
}
.chart_zouyo_wrap::after,
.chart_zouyo_contain::after {
  background-image: url("../img/chart_yellow.png");
}

.chart_backoffice_wrap::before,
.chart_backoffice_contain::before {
  background-color: #9AE67B;
}
.chart_backoffice_wrap:after,
.chart_backoffice_contain:after {
  background-image: url("../img/chart_green.png");
}

.chart_support_wrap::before {
  content: "いつでも経理や税務について相談できますか？";
  top: 2%;
  left: 5%;
  max-width: 24%;
}
.chart_support_wrap::after {
  top: 15%;
  left: 17%;
}

.chart_support_contain::before {
  content: "資金繰り実績表を作りたい";
  top: -8%;
  right: 64%;
}
.chart_support_contain::after {
  top: 1%;
  left: 30%;
}

.chart_support_box::before {
  content: "役員会に参加して気づいた問題点等について忌憚なくアドバイスしてほしい";
  top: -16%;
  right: 33%;
  max-width: 30%;
}
.chart_support_box::after {
  top: -3%;
  left: 43%;
  transform: scaleX(-1) rotate(10deg);
}

.chart_exit_wrap::before {
  content: "法人から個人事業に戻る事を検討している";
  top: -7%;
  right: 6%;
}
.chart_exit_wrap::after {
  top: 3%;
  right: 28%;
  transform: rotate(110deg);
}
.chart_exit_wrap:hover::before, .chart_exit_wrap:hover::after {
  opacity: 1;
}

.chart_exit_contain::before {
  content: "後継者不在・未定問題について相談したい";
  top: 3%;
  right: 6px;
  max-width: 21%;
}
.chart_exit_contain::after {
  right: 18%;
  top: 16%;
  transform: rotate(126deg);
}

.chart_review_wrap::before {
  content: "法人の決算・申告を依頼したい";
  bottom: 58%;
  left: -10%;
}
.chart_review_wrap::after {
  bottom: 51%;
  left: 12%;
}

.chart_review_contain::before {
  content: "個人の所得税確定申告を依頼したい";
  top: 20%;
  left: -9%;
}
.chart_review_contain::after {
  top: 29%;
  left: 13%;
}

.chart_kaizen_wrap::before {
  content: "現状の経理業務を改善・最適化したい";
  bottom: -12%;
  left: 28%;
}
.chart_kaizen_wrap::after {
  transform: rotate(-149deg);
  right: 61%;
  bottom: -2%;
}

.chart_kaizen_contain::before {
  content: "経理スタッフの指導・育成を依頼したい";
  top: 96%;
  left: 2%;
  max-width: 24%;
}
.chart_kaizen_contain::after {
  top: 93%;
  right: 67%;
  transform: rotate(-44deg);
}

.chart_work_wrap::before {
  content: "ベテラン経理スタッフが退職したが補充出来ない";
  bottom: 20%;
  left: -4%;
  max-width: 21%;
}
.chart_work_wrap::after {
  bottom: 14%;
  left: 18%;
}

.chart_work_contain::before {
  content: "経理代行・会計代行・入力代行を依頼したい";
  top: 48%;
  left: -8%;
  max-width: 22%;
}
.chart_work_contain::after {
  top: 61%;
  left: 12%;
}

.chart_sougyo_wrap::before {
  content: "脱サラ・独立・起業・新規開業を検討している";
  bottom: 58%;
  right: -10%;
  max-width: 22%;
}
.chart_sougyo_wrap::after {
  right: 11%;
  bottom: 51%;
  transform: scaleX(-1) rotate(10deg);
}

.chart_sougyo_contain::before {
  content: "法人設立や個人事業の法人化を検討している";
  top: 58%;
  right: -97px;
  max-width: 21%;
}
.chart_sougyo_contain::after {
  top: 53%;
  right: 12%;
  transform: scaleX(-1) rotate(-60deg);
}
.chart_sougyo_contain:hover::before {
  opacity: 1;
}

.chart_zouyo_wrap::before {
  content: "相続が発生したが何をどうすれば良いかわからない";
  bottom: -13%;
  right: 5%;
  max-width: 27%;
}
.chart_zouyo_wrap::after {
  right: 42%;
  bottom: -45px;
  transform: scaleX(-1) rotate(44deg);
}

.chart_zouyo_contain::before {
  content: "今の財産の整理・把握ができていない";
  bottom: -13%;
  left: 32%;
  max-width: 19%;
}
.chart_zouyo_contain::after {
  bottom: -33px;
  right: 33%;
  transform: rotate(40deg);
}

.chart_backoffice_wrap {
  cursor: pointer;
}
.chart_backoffice_wrap::before {
  content: "何処に相談したらよいかわからない";
  right: 0%;
  top: 88%;
  max-width: 19%;
}
.chart_backoffice_wrap::after {
  top: 86%;
  left: 75%;
  transform: rotate(86deg);
}

.chart_backoffice_contain::before {
  content: "事務所のお客様相談窓口はありますか？";
  right: -6%;
  top: 74%;
  max-width: 19%;
}
.chart_backoffice_contain::after {
  top: 74%;
  transform: rotate(79deg);
  left: 81%;
}

/* ----------------------------
   レスポンシブ：ノートPC
----------------------------- */
@media screen and (max-width: 1366px) {
  .chart_support,
.chart_exit,
.chart_review,
.chart_kaizen,
.chart_work {
    font-size: 14px;
  }
  .chart_support_wrap::after,
.chart_support_contain::after,
.chart_support_box::after,
.chart_exit_wrap::after,
.chart_exit_contain::after,
.chart_review_wrap::after,
.chart_review_contain::after,
.chart_kaizen_wrap::after,
.chart_kaizen_contain::after,
.chart_work_wrap::after,
.chart_work_contain::after,
.chart_sougyo_wrap::after,
.chart_sougyo_contain::after,
.chart_zouyo_wrap::after,
.chart_zouyo_contain::after,
.chart_backoffice_wrap::after,
.chart_backoffice_contain::after {
    width: 6%;
    height: 10%;
    background-size: 32px;
  }
  .chart_support_wrap::before {
    top: -15%;
    left: 28%;
    max-width: 23%;
  }
  .chart_support_wrap::after {
    top: 4%;
    left: 34%;
    transform: rotate(16deg);
  }
  .chart_support_contain::before {
    top: -6%;
    right: 78%;
  }
  .chart_support_contain::after {
    top: 10%;
    left: 29%;
    transform: rotate(-12deg);
  }
  .chart_support_box::before {
    top: 4%;
    right: 72%;
    max-width: 22%;
  }
  .chart_support_box::after {
    content: none;
  }
  .chart_exit_wrap {
    cursor: pointer;
  }
  .chart_exit_wrap::before {
    top: 13%;
    left: 71%;
    max-width: 20%;
  }
  .chart_exit_wrap::after {
    right: 30%;
    top: 10%;
    transform: scaleX(-1) rotate(-34deg);
  }
  .chart_exit_contain::before {
    top: -6%;
    left: 69%;
    max-width: 19%;
  }
  .chart_exit_contain::after {
    right: 32%;
    top: 5%;
    transform: scaleX(-1) rotate(-10deg);
  }
  .chart_review_wrap::before {
    bottom: 49%;
    left: 1%;
    max-width: 19%;
  }
  .chart_review_wrap::after {
    bottom: 49%;
    left: 21%;
  }
  .chart_review_contain::before {
    top: 17%;
    left: 5%;
    max-width: 16%;
  }
  .chart_review_contain::after {
    top: 29%;
    left: 22%;
  }
  .chart_kaizen_wrap::before {
    bottom: 6%;
    left: 12%;
    max-width: 20%;
  }
  .chart_kaizen_wrap::after {
    transform: rotate(-2deg);
    right: 61%;
    bottom: 0%;
  }
  .chart_kaizen_contain::before {
    top: 65%;
    left: 9%;
    max-width: 19%;
  }
  .chart_kaizen_contain::after {
    content: none;
  }
  .chart_work_wrap::before {
    max-width: 22%;
    bottom: 11%;
    left: 2%;
  }
  .chart_work_wrap::after {
    transform: rotate(-47deg);
    bottom: 16%;
    left: 25%;
  }
  .chart_work_contain::before {
    top: 52%;
    left: 3%;
    max-width: 19%;
  }
  .chart_work_contain::after {
    top: 63%;
    left: 23%;
  }
  .chart_sougyo_wrap::before {
    bottom: 71%;
    right: 7%;
    max-width: 21%;
  }
  .chart_sougyo_wrap::after {
    right: 22%;
    bottom: 60%;
  }
  .chart_sougyo_contain::before {
    top: 34%;
    right: 6%;
    max-width: 19%;
  }
  .chart_sougyo_contain::after {
    right: 21%;
    top: 51%;
    transform: scaleX(-1) rotate(6deg);
  }
  .chart_zouyo_wrap::before {
    bottom: 6%;
    right: 13%;
    max-width: 22%;
  }
  .chart_zouyo_wrap::after {
    bottom: -4%;
    right: 32%;
    transform: rotate(-1deg);
  }
  .chart_zouyo_contain::before {
    bottom: 19%;
    left: 70%;
  }
  .chart_zouyo_contain::after {
    content: none;
    background-image: none;
  }
  .chart_backoffice_wrap::before {
    right: 7%;
    top: 54%;
    max-width: 16%;
  }
  .chart_backoffice_wrap::after {
    top: 68%;
    left: 73%;
    transform: rotate(29deg);
  }
  .chart_backoffice_contain::before {
    right: 9%;
    top: 80%;
    max-width: 17%;
  }
  .chart_backoffice_contain::after {
    top: 84%;
    transform: rotate(79deg);
    left: 68%;
  }
}
/* ----------------------------
   レスポンシブ：タブレット
----------------------------- */
@media screen and (max-width: 1080px) {
  .chart_pc {
    display: none;
  }
  .chart_sp {
    display: block;
    margin-top: 20px;
  }
  .chart_sp .chart_txt {
    max-height: none;
    overflow-y: auto;
  }
  .chart_sp .chart_txt > ul:last-of-type {
    padding-bottom: 20px;
  }
  .chart_more_link {
    position: static;
    width: auto;
  }
  /* ---------- スライダー ------- */
  #chart_sp_blue .splide__slide,
#chart_sp_yellow,
#chart_sp_green {
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    max-width: 500px;
    max-height: 100%;
    margin: 0 auto 40px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  #chart_sp_blue {
    margin-bottom: 70px;
  }
  #chart_sp_blue .splide__slide,
#chart_sp_blue .splide__track,
#chart_sp_blue .splide__list {
    width: 100% !important;
    max-width: 500px;
    max-height: 100%;
    display: flex;
    position: relative;
    margin: 0 auto;
  }
  #chart_sp_blue .splide__arrows .splide__arrow--next {
    right: 42px;
  }
  #chart_sp_blue .splide__arrows .splide__arrow--prev {
    left: 41px;
  }
  #chart_sp_blue .splide__pagination {
    padding: 10px;
    bottom: auto;
  }
}
/* ----------------------------
   レスポンシブ：スマホ
----------------------------- */
@media screen and (max-width: 767px) {
  #chart_sp_blue .splide__arrows {
    display: none;
  }
}
/* ---------- モーダル ------- */
#chart_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

#chart_modal.show {
  display: flex;
}

.chart_modal_contain {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  max-width: 500px;
  margin: 60px auto;
}

.chart_modal_contain_close {
  position: absolute;
  top: 4px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

/*==========================================

# page-home.php
ご挨拶

===========================================*/
.greeting_wrap {
  display: flex;
  margin-top: 35px;
  margin-bottom: 55px;
}

.greeting_contain > p {
  padding: 0 15px;
  line-height: 2rem;
}

.greeting_contain_ttl {
  margin-bottom: 20px;
  text-align: center;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .greeting_wrap {
    flex-direction: column;
  }
  .greeting_wrap_img {
    margin-bottom: 10px;
  }
}
/*================================

page-home.php
フォトギャラリー

================================*/
.gallery .splide__pagination {
  margin-bottom: 40px;
}

/*================================

# page-home.php
アクセス

================================*/
.access {
  margin-bottom: 30px;
}

.access_wrap {
  display: flex;
}

.access_wrap_img {
  max-width: 100%;
  height: auto;
  width: 50%;
  padding: 10px;
}

.access_modal_wrap {
  height: 100%;
}

.access_modal_wrap_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px;
  cursor: pointer;
}

.access_modal_wrap_content {
  background-color: transparent;
}

.access_modal_wrap_close {
  position: absolute;
  top: 30px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: none;
  color: #fff;
  opacity: 0.8;
}
.access_modal_wrap_close:hover {
  color: #fff;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .access_wrap {
    flex-direction: column;
  }
  .access_wrap_img {
    width: 100%;
  }
}
/*================================

# page-company.php

================================*/
.company_ttl {
  display: flex;
  align-items: center;
  background-color: #E0E2FF;
  padding: 10px;
  margin-bottom: 15px;
  height: 54px;
}
.company_ttl > h3 {
  display: flex;
  align-items: center;
  height: 24px;
  padding-left: 10px;
  border-left: solid 5px #0020b2;
}

/* ----------------------------
   全体：レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .company_ttl {
    height: 48px;
  }
  .company_ttl > h3 {
    height: 18px;
  }
}
/*----------------------------
　目指すもの
------------------------------*/
.company_goal_txt {
  text-align: center;
}
.company_goal_txt > h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 44px;
}
.company_goal_txt > p {
  font-size: 20px;
  margin-bottom: 44px;
}

/*----------------------------
　目指すもの：レスポンシブ
------------------------------*/
@media screen and (max-width: 767px) {
  .company_goal_txt > h4 {
    font-size: 18px;
  }
  .company_goal_txt > p {
    font-size: 16px;
  }
}
/*----------------------------
　スタッフ紹介
------------------------------*/
.company_staff {
  margin-bottom: 45px;
}
.company_staff h4 {
  text-align: center;
  background-color: #4054b2;
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
  width: 100%;
}

.company_staff_wrap {
  display: flex;
  flex-wrap: wrap;
}

.company_staff_contain {
  padding: 10px;
  width: 50%;
}
.company_staff_contain:nth-of-type(4) > h4 {
  font-size: 22px;
  padding: 3px 0;
}

.company_staff_box {
  display: flex;
  justify-content: space-between;
}

.company_staff_box_img {
  height: 100%;
}

.company_staff_box_prof {
  color: #666;
  width: 75%;
  padding-left: 10px;
}

.company_staff_box_shikaku {
  width: 95px;
}

.company_shikaku_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

.company_shikaku_star {
  text-indent: 15px;
  margin-bottom: 30px;
}

.orange_star {
  color: #ffd700;
}

.green_star {
  color: #32cd32;
}

.purple_star {
  color: #800080;
}

/*----------------------------
　スタッフ紹介：レスポンシブ
------------------------------*/
@media screen and (max-width: 767px) {
  .company_staff h4 {
    font-size: 16px;
    padding: 5px 0;
  }
  .company_staff_wrap {
    flex-direction: column;
  }
  .company_staff_contain {
    width: 100%;
  }
  .company_staff_contain:nth-of-type(4) > h4 {
    font-size: 16px;
    padding: 5px 0;
  }
  .company_staff_box {
    justify-content: center;
  }
  .company_staff_box_prof {
    padding-left: 50px;
  }
}
/*----------------------------
　所長プロフィール
------------------------------*/
.company_chief_prof table,
.company_overview table {
  border: solid 1px #ccc;
  width: 90%;
  margin: 0 auto 35px;
}
.company_chief_prof table tr,
.company_overview table tr {
  border-bottom: solid 1px #ccc;
}
.company_chief_prof table th,
.company_overview table th {
  border-right: solid 1px #ccc;
  background-color: #EEEEEE;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  width: 30%;
  padding: 10px;
}
.company_chief_prof table td,
.company_overview table td {
  padding: 10px;
}

/*----------------------------
　所長プロフィール：レスポンシブ
------------------------------*/
@media screen and (max-width: 767px) {
  .company_chief_prof table,
.company_overview table {
    border: none;
    border-top: solid 1px #ccc;
  }
  .company_chief_prof table th,
.company_chief_prof table td,
.company_overview table th,
.company_overview table td {
    display: block;
    width: 100%;
  }
  .company_chief_prof table th,
.company_overview table th {
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
}
/*----------------------------
　アクセス
------------------------------*/
.company_access {
  margin-bottom: 30px;
}

.access_wrap {
  display: flex;
}

.modal_inner {
  height: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
}

.access_img {
  max-width: 100%;
  height: auto;
  width: 50%;
  padding: 10px;
}

.access_modal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 70px;
}

.modal_content {
  background-color: transparent;
}

.close {
  position: absolute;
  top: 30px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  text-shadow: none;
  color: #fff;
  opacity: 0.8;
}
.close:hover {
  color: #fff;
}

/*----------------------------
　アクセス：レスポンシブ
------------------------------*/
@media screen and (max-width: 767px) {
  .access_wrap {
    flex-direction: column;
  }
  .access_img {
    width: 100%;
  }
}
/*================================

page-business.php

================================*/
.business_ttl {
  display: flex;
  align-items: center;
  background-color: #E0E2FF;
  padding: 10px;
  margin-bottom: 20px;
  height: 54px;
}
.business_ttl > h3 {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 24px;
  border-left: solid 5px #0020B2;
}

.business_wrap {
  display: flex;
  margin-bottom: 50px;
}

.business_wrap_img {
  width: 75%;
  height: 100%;
  margin-right: 20px;
}

.business_contain {
  width: 100%;
}
.business_contain > h3 {
  color: #fff;
  background-color: #0020B2;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.business_sozoku > p,
.business_human > p {
  font-size: 15px;
}

.business_contain_txt {
  margin-bottom: 20px;
}
.business_contain_txt > h4 {
  margin-bottom: 20px;
}

.business_contain_btn,
.business_box_btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #388dc9;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 15px;
}
.business_contain_btn > a,
.business_box_btn > a {
  color: #fff;
}

.business_contain_pdf {
  display: flex;
  font-size: 14px;
  gap: 15px;
}
.business_contain_pdf > a {
  color: #337ab7;
}
.business_contain_pdf > a:hover {
  color: #23527c;
}
.business_contain_pdf > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f1c1";
  margin-left: 5px;
}

.business_box {
  display: flex;
  gap: 20px;
}

.business_box_tel_img {
  height: 28px;
}

.business_box_src_img {
  height: 73px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .business_wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .business_wrap_img {
    margin: 0;
    width: 100%;
  }
  .business_contain_btn {
    margin: 0 auto;
  }
  .business_contain_pdf,
.business_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
/*================================

page-faq.php

================================*/
.faq {
  margin-bottom: 50px;
}

.faq_ttl {
  display: flex;
  align-items: center;
  background-color: #E0E2FF;
  padding: 10px;
  margin-bottom: 15px;
  height: 54px;
}
.faq_ttl > h3 {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 24px;
  border-left: solid 5px #0020b2;
}

.faq_accordion {
  border: solid 1px #d5d8dc;
  margin: 0 15px;
}
.faq_accordion[open] .faq_accordion_ttl {
  color: #0020b2;
  border-bottom: solid 1px #d5d8dc;
}

.faq_accordion_ttl {
  color: #666;
  font-size: 19px;
  font-weight: 600;
  padding: 20px 15px 20px 40px;
}

.faq_accordion_txt {
  font-weight: 900;
  padding: 15px 20px;
  font-size: 19px;
}
.faq_accordion_txt > p {
  margin-bottom: 24px;
}

summary {
  position: relative;
  display: block;
  padding-left: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "+";
  margin: auto;
  position: absolute;
  top: 19px;
  left: 13px;
  transition: transform 0.3s ease;
}

details[open] summary:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
  margin: auto;
  position: absolute;
  top: 19px;
  left: 13px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .faq_accordion_ttl {
    padding: 12px 15px 12px 35px;
  }
  summary:before {
    top: 12px;
  }
  details[open] summary:before {
    top: 12px;
  }
}
/*================================

page-flow.php

================================*/
.flow_ttl {
  display: flex;
  align-items: center;
  background-color: #E0E2FF;
  padding: 10px;
  height: 54px;
}
.flow_ttl > h3 {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 24px;
  border-left: solid 5px #0020B2;
}

.flow_wrap {
  display: flex;
}

.flow_wrap_txt {
  width: 65%;
  padding: 10px;
  box-sizing: border-box;
}
.flow_wrap_txt > h4 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: dotted 1px #000;
  color: #6EC1E4;
}

.flow_wrap_img {
  width: 35%;
  padding: 10px;
  box-sizing: border-box;
}

.flow_contain {
  margin-bottom: 24px;
  line-height: 24px;
}

.flow_arrow_img {
  max-width: 10%;
  margin: 0 auto;
  padding: 10px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .flow_wrap {
    flex-direction: column;
  }
  .flow_ttl {
    height: 48px;
  }
  .flow_ttl > h3 {
    height: 24px;
  }
  .flow_wrap_txt,
.flow_wrap_img {
    width: 100%;
  }
  .flow_arrow_img {
    max-width: 20%;
  }
}
/*==========================================

page-form.php

===========================================*/
.form_tel > p,
.form_mail > p {
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
}
.form_tel a,
.form_mail a {
  color: #666;
}
.form_tel a:hover,
.form_mail a:hover {
  color: #c02942;
  text-decoration: none;
}

.form_tel_ttl,
.form_mail_ttl,
.form_internet_ttl {
  display: flex;
  align-items: center;
  background-color: #E0E2FF;
  padding: 10px;
  height: 54px;
}
.form_tel_ttl > h3,
.form_mail_ttl > h3,
.form_internet_ttl > h3 {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 24px;
  border-left: solid 5px #0020B2;
}

.form_internet_contain {
  padding: 10px;
}
.form_internet_contain table {
  border: solid 1px #ccc;
  width: 90%;
  margin-bottom: 45px;
}
.form_internet_contain tr {
  border-bottom: solid 1px #ccc;
}
.form_internet_contain th {
  background-color: #eee;
  border-right: solid 1px #ccc;
  width: 30%;
  padding: 10px;
  vertical-align: top;
  text-align: left;
}
.form_internet_contain td {
  background-color: #f9f9ff;
  padding: 10px;
}
.form_internet_contain input,
.form_internet_contain textarea {
  background-color: #fff;
  border: solid 2px #999;
  width: 100%;
  padding: 0.5rem 0.75rem;
}

.required {
  position: relative;
}
.required:after {
  content: "(必須)";
  position: absolute;
  top: -6px;
  right: -46px;
  color: #ff0000;
}

.form_submit input {
  width: auto;
  background-color: #c02942;
  color: #fff;
  border: none;
  font-size: 15px;
  padding: 0.75rem 1rem;
  margin-bottom: 45px;
}
.form_submit input:hover {
  background-color: #333;
  transition: all 0.5s ease-in-out;
  text-decoration: underline;
}

.wpcf7-spinner {
  display: none;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .form_tel_ttl > h3,
.form_mail_ttl > h3,
.form_internet_ttl > h3 {
    font-size: 18px;
  }
  .form_internet_contain table {
    border: none;
    width: 100%;
    border-top: solid 1px #ccc;
  }
  .form_internet_contain table th,
.form_internet_contain table td {
    display: block;
    width: 100%;
  }
  .form_internet_contain table th {
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
  .form_submit {
    display: flex;
    justify-content: center;
  }
  .form_submit > input {
    display: flex;
  }
}
/*==========================================

page-check.php

===========================================*/
.form_check_ttl {
  display: flex;
  align-items: center;
  background-color: #E0E2FF;
  padding: 10px;
  height: 54px;
}
.form_check_ttl > h3 {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 24px;
  border-left: solid 5px #0020B2;
}

.form_check_contain {
  padding: 10px;
}
.form_check_contain table {
  border: solid 1px #ccc;
  width: 90%;
  margin-bottom: 45px;
}
.form_check_contain tr {
  border-bottom: solid 1px #ccc;
}
.form_check_contain th {
  background-color: #eee;
  border-right: solid 1px #ccc;
  width: 30%;
  padding: 10px;
  vertical-align: top;
  text-align: left;
}
.form_check_contain td {
  font-size: 1.1875rem;
  background-color: #f9f9ff;
  padding: 10px;
}
.form_check_contain input,
.form_check_contain textarea {
  background-color: #fff;
  border: solid 2px #999;
  width: 100%;
  padding: 0.5rem 0.75rem;
}

.required {
  position: relative;
}
.required:after {
  content: "(必須)";
  position: absolute;
  top: -6px;
  right: -46px;
  color: #ff0000;
}

.form_submit input {
  width: auto;
  background-color: #c02942;
  color: #fff;
  border: none;
  font-size: 15px;
  margin-bottom: 45px;
}

.form_check_btn {
  display: flex;
}

.form_check_back {
  width: auto;
  margin-right: 30px;
  padding: 0 0.75rem;
}

.form_check_submit input {
  width: auto;
  height: 49px;
  background-color: #c02942;
  color: #fff;
  border: none;
  font-size: 15px;
  padding: 0.75rem 1rem;
  margin-bottom: 45px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .form_check_contain table {
    margin: 45px auto;
    border: none;
    border-top: solid 1px #ccc;
  }
  .form_check_contain table th,
.form_check_contain table td {
    display: block;
    width: 100%;
  }
  .form_check_contain table th {
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
  .form_check_btn {
    justify-content: center;
  }
}
/*==========================================

page-complete.php

===========================================*/
.form_complete {
  text-align: center;
}
.form_complete > h3 {
  font-weight: bold;
  margin-bottom: 30px;
}

.form_complete_wrap {
  margin-bottom: 30px;
}

.form_complete_tel {
  color: #666;
}
.form_complete_tel:hover {
  color: #c02942;
  text-decoration: none;
}

.form_complete_back {
  background-color: #0E2A91;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  padding: 0.75rem 1rem;
  margin: 45px auto;
}
.form_complete_back > a {
  color: #fff;
}
.form_complete_back:hover {
  color: #fff;
}

/*==========================================

archive-news.php

===========================================*/
.news_archive_wrap {
  display: flex;
  align-items: center;
  border-bottom: dotted 1px #ccc;
  padding: 5px 0;
  font-size: 16px;
}

.news_archive_wrap_day {
  width: 120px;
  text-align: left;
  font-weight: bold;
  flex-shrink: 0;
}

.news_archive_wrap_topics {
  font-size: 1.1875rem;
}
.news_archive_wrap_topics > a {
  color: #666;
}
.news_archive_wrap_topics > a:hover {
  color: #C02942;
  text-decoration: none;
}

/*==========================================

single-news.php

===========================================*/
.single_news {
  margin: 0 auto;
  width: 80%;
  margin-bottom: 50px;
}

.single_news_ttl {
  padding: 20px 0;
}
.single_news_ttl > h3 {
  font-size: 1.9375rem;
}

/* ページネーションの汎用スタイル */
/* ページネーション全体を中央寄せ */
.navigation.pagination {
  display: flex;
  justify-content: center;
}

.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}

.nav-links li > *:not(.dots) {
  width: 45px;
  color: #000000;
  background: #efefef;
  transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li > .current,
.nav-links li > a:hover {
  color: #ffffff;
  background: #162987;
}

.single_pagenation {
  display: flex;
  justify-content: space-between;
  padding: 0 3rem;
  margin: 0 auto 10px;
  margin-bottom: 10px;
  width: 80%;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .single_news,
.single_news_ttl {
    width: 100%;
  }
  .single_pagenation {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    width: 100%;
  }
  .single_pagenation a {
    display: block;
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .single_pagenation > div {
    display: flex;
    align-items: center;
    font-size: 12px;
  }
}
/*================================

search.php

================================*/
.search-results {
  margin-top: 5px;
}
.search-results > h2 {
  margin-bottom: 20px;
}
.search-results h3 {
  margin-bottom: 10px;
}
.search-results p {
  margin-bottom: 20px;
}

/* ----------------------------
   レスポンシブ：タブレット
----------------------------- */
@media screen and (max-width: 1180px) {
  .search-results {
    margin-top: 27px;
  }
}
/* ----------------------------
   レスポンシブ：スマホ
----------------------------- */
@media screen and (max-width: 767px) {
  .search-results {
    margin-top: 68px;
  }
}
/*==========================================

404.php

===========================================*/
.error_ttl,
.error_txt {
  text-align: center;
  margin: 50px 0 1.5rem;
}

.error_txt,
.error_redtxt {
  text-align: center;
  margin-bottom: 20px;
}

/* ----------------------------
   レスポンシブ
----------------------------- */
@media screen and (max-width: 767px) {
  .error_ttl {
    text-align: center;
    margin: 110px 0 1.5rem;
  }
  .error_txt,
.error_redtxt {
    text-align: center;
  }
}
/*==========================================

footer.php

===========================================*/
#footer {
  text-align: center;
  color: #fff;
  background-color: #162987;
}

.footer_contain {
  padding: 10px 0;
}
.footer_contain > p {
  margin: 0;
}

.footer_contain_tel > a,
.footer_contain_mail > a,
.footer_contain_copyright > a {
  color: #fff;
}
.footer_contain_tel > a:hover,
.footer_contain_mail > a:hover,
.footer_contain_copyright > a:hover {
  color: #fff;
}

.footer_sp_contain {
  display: none;
}

/* ----------------------------
   レスポンシブ：スマホ以下
----------------------------- */
@media screen and (max-width: 680px) {
  .footer_contain {
    display: none;
  }
  .footer_sp_contain {
    display: block;
    padding: 10px;
  }
  .footer_sp_contain > a {
    color: #fff;
  }
  .footer_sp_contain > a:hover {
    color: #fff;
  }
}
/*# sourceMappingURL=style.css.map */