@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
/* html, body {
  overflow-x: hidden;
} */
body {
  margin: 0;
  padding: 0;
}

.wrap {
  border-top: 10px solid #34a57a;
}

/* .w_base {
  width: 1020px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
} */
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
header {
  width: 100%;
  margin: 20px auto 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 20px;
}

.head {
  width: calc(100% - 55px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 10px;
}
.head a {
  display: block;
  width: 100%;
  max-width: 300px;
}
.head a img {
  width: 100%;
  height: auto;
}

.title {
  margin-left: 10px;
}
.title h1 {
  font-size: 1.4em;
}
.title p {
  font-size: 1.3em;
  margin-top: -8px;
}

.contact {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}
.contact p {
  font-size: 1.2em;
  margin-bottom: 5px;
}
.contact a {
  display: inline-block;
}
.contact a:visited, .contact a:link {
  text-decoration: none;
  color: #000;
}

.tel::before,
.mail::before {
  font-family: FontAwesome;
  margin-right: 5px;
  vertical-align: middle;
  font-size: 0.7em;
}

.tel::before {
  content: "\f095";
}

.mail::before {
  content: "\f0e0";
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  background-color: #34a57a;
  color: #fff;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  z-index: 100;
  width: 100%;
  overflow-x: none;
  overflow-y: auto;
  top: 0px;
  right: -100%;
  padding-top: 100px;
  position: fixed;
  transition: All 0.5s ease;
}
nav .sp_nav_title {
  display: block;
  margin: auto;
  margin-bottom: 30px;
}
nav .sp_nav_title img {
  display: block;
  margin: auto;
  width: 70%;
  max-width: 300px;
}

ul.nav_list {
  width: 85%;
  margin: auto;
}
ul.nav_list > li {
  border-top: solid 1px #b7b7b7;
  position: relative;
}
ul.nav_list > li:last-child {
  border-bottom: solid 1px #b7b7b7;
}
ul.nav_list > li:not(:has(.child_wrap_btn))::after {
  content: "→";
  position: absolute;
  font-size: 1.5rem;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
ul.nav_list > li a {
  display: block;
  position: relative;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
ul.nav_list > li a img {
  display: none;
}

.child_wrap {
  display: none;
}
.child_wrap .sub-menu {
  position: relative;
  z-index: 110;
}
.child_wrap .sub-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.child_wrap .sub-menu > li > a {
  background-color: rgba(0, 0, 0, 0.2);
  /* color: #fff; */
  /* display: block; */
  font-size: 13px;
  padding: 1em 2em;
  /* text-decoration: none; */
}
.child_wrap .sub-menu > li .child_wrap_btn {
  width: 20px;
  height: 20px;
}
.child_wrap .sub-menu > li .child_wrap_btn::before, .child_wrap .sub-menu > li .child_wrap_btn::after {
  width: 10px;
}
.child_wrap .sub-menu > li .child_wrap_btn::after {
  left: 25%;
}
.child_wrap .nav_glist {
  position: relative;
  z-index: 120;
}
.child_wrap .nav_glist > 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: 12px;
  padding: 1em 3em;
}
.child_wrap .nav_glist > li > a:before {
  content: ">";
  position: absolute;
  left: 2em;
  top: 50%;
  transform: translateY(-50%);
}
.child_wrap_btn {
  position: absolute;
  top: 1em;
  right: 0.8em;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.child_wrap_btn::before, .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.child_wrap_btn::after {
  top: 50%;
  left: 0.55em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.child_wrap_btn.close::after {
  transform: rotate(0deg);
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  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: #000;
  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: #000;
  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;
}

.nav_sns_links {
  width: 100%;
  margin-top: 35px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.nav_sns_links a {
  display: block;
  width: 50px;
  margin-right: 20px;
}
.nav_sns_links a img {
  width: 100%;
  height: auto;
}
.nav_sns_links a:last-child {
  margin-right: initial;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.main_img img {
  width: 100%;
  height: auto;
}

.index_slider_bg,
.eyecatch_bg {
  position: relative;
}
.index_slider_bg img,
.eyecatch_bg img {
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.8);
}
.index_slider_bg h1,
.eyecatch_bg h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8vw;
  text-align: right;
  color: #fff;
  width: 100%;
}
.index_slider_bg h1 span,
.eyecatch_bg h1 span {
  display: block;
  text-align: center;
}

.main {
  max-width: 960px;
  margin: 0 auto;
  display: block;
}

.main_area {
  margin-bottom: 70px;
  width: 100%;
  padding-right: 15px;
  padding: 0;
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer {
  background: #34a57a;
  height: 60px;
  margin-top: 60px;
}
footer p {
  color: #fff;
  text-align: center;
  line-height: 5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
/* .pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  background: #035EBC;
  border: 1px solid #035EBC;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 5px;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 1px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 1px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 0;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 12px;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #035EBC;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #035EBC;
} */
/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 0;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.pager .pager_list .page-numbers {
  border: 1px solid #000;
  color: #000 !important;
  display: block;
  font-size: 1rem;
  margin: 0 2px;
  padding: 5px 0;
  text-decoration: none;
  text-align: center;
  width: 2.4rem;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #000;
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: #000;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.link_area {
  font-size: 1.3em;
  margin: 60px 0 50px 40px;
  margin: 10px;
  padding: 20px;
}
.link_area .link_list > li {
  width: 80%;
  margin: 10px auto;
}
.link_area .link_list > li > a {
  display: block;
  position: relative;
  color: #34a57a;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  max-width: 300px;
  border: solid 1px #34a57a;
  cursor: pointer;
}
.link_area .link_list > li > a:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.link_area .link_list > li > a:hover:before {
  right: 10px;
}
.link_area .link_list img {
  width: 100%;
}

.about_area .about {
  position: relative;
}
.about_area .about h2 {
  position: absolute;
  width: 150px;
  height: 50px;
  text-align: center;
  background: #000;
  top: -30px;
  color: #fff;
  padding-top: 10px;
  font-size: 1.4em;
  letter-spacing: 1px;
}
.about_area .about h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1.2em;
  border-left: 4px solid #34a57a;
  border-bottom: 1px dotted #000;
  letter-spacing: 1px;
  padding-left: 8px;
}
.about_area .about h4 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
.about_area .about h4::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #000;
}
.about_area .about h5 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.about_area .about h5::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #000;
}
.about_area .about > div {
  border: 10px solid #dddddd;
  padding: 40px 30px;
  font-size: 1.3em;
  margin: 30px 10px;
  padding: 20px;
}

.news_area {
  padding: 15px;
}
.news_area h2 {
  position: relative;
  margin-top: 20px;
  font-size: 1.6em;
  border-bottom: 6px solid #000;
}
.news_area h2::after {
  content: attr(data-text);
  display: block;
  position: absolute;
  top: 0;
  left: 150px;
}

.side_area {
  width: 100%;
  padding: 10px;
  padding-left: 15px;
}
.side_area h2 {
  margin-top: 20px;
  font-size: 1.6em;
  border-bottom: 6px solid #000;
}

h2.widgettitle {
  color: #fff;
  background: #000;
  text-align: center;
  border-bottom: none;
}

.news_box {
  border-bottom: 1px dotted #000;
  padding: 20px 5px 20px 5px;
  font-size: 1.1em;
}
.news_box time::before {
  font-family: FontAwesome;
  content: "\f017";
  font-size: 0.8em;
  margin-right: 2px;
}
.news_box p {
  padding: 5px 10px;
}

.index_btn {
  position: relative;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: auto;
  border: solid 1px #34a57a;
  cursor: pointer;
}
.index_btn a {
  display: block;
  text-decoration: none;
  color: #34a57a;
  padding: 20px 0;
}
.index_btn a:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn a:hover:before {
  right: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/* .news_list .news_item {
  display: flex;
  align-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px 0;
}
.news_list .news_item .news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.news_list .news_item .news_item_date .cate {
  margin-left: 10px;
  padding: 0 10px;
  color: #035EBC;
  font-size: 11px;
  border: 1px solid #035EBC;
  border-radius: 3px;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 140px);
}
.news_list .news_item .news_item_ttl a {
  color: #707070;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-weight: 500;
} */
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
#news_list .main_area {
  width: 100%;
  padding: 15px;
  margin-bottom: 0;
}

#page .main_area,
#single .main_area {
  width: 100%;
  padding: 15px;
  margin-bottom: 0;
}
#page .main_area .contents_area,
#single .main_area .contents_area {
  /*contactform7 */
}
#page .main_area .contents_area > *:first-child,
#single .main_area .contents_area > *:first-child {
  margin-top: 0;
  padding-top: 0;
}
#page .main_area .contents_area h2,
#single .main_area .contents_area h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 1.4em;
  border-left: 4px solid #34a57a;
  border-bottom: 1px dotted #000;
  letter-spacing: 1px;
  padding-left: 8px;
}
#page .main_area .contents_area h3,
#single .main_area .contents_area h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #000;
  font-size: 20px;
  font-weight: 500;
}
#page .main_area .contents_area h3::before,
#single .main_area .contents_area h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #000;
}
#page .main_area .contents_area h4,
#single .main_area .contents_area h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
#page .main_area .contents_area h4::before,
#single .main_area .contents_area h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #000;
}
#page .main_area .contents_area h5,
#page .main_area .contents_area h6,
#single .main_area .contents_area h5,
#single .main_area .contents_area h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}
#page .main_area .contents_area p,
#single .main_area .contents_area p {
  font-size: 1.1em;
  padding-top: 5px;
  line-height: 2;
}
#page .main_area .contents_area .wpcf7 input:not([type=radio]),
#page .main_area .contents_area .wpcf7 textarea,
#single .main_area .contents_area .wpcf7 input:not([type=radio]),
#single .main_area .contents_area .wpcf7 textarea {
  width: 100%;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 770px) {
  /* nav ul li a {
    font-size: 0.8em;
  }
  nav ul li:nth-last-child(1) {
    border-right: none;
  }
  nav ul li:nth-child(1) {
    border-left: none;
  } */
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}/*# sourceMappingURL=sp.css.map */