@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

.pc_only {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
.color_r {
  color: rgb(207, 54, 42) !important;
}

.color_y {
  color: rgb(227, 169, 49) !important;
}

.color_g {
  color: rgb(137, 181, 26) !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 60px;
  background: #fff;
}
.hd_bg .hd {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px;
}
.hd_bg .hd .hd_logo {
  width: calc(100% - 12vw);
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #707070;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a img {
  display: block;
  height: auto;
  max-height: 40px;
}
.hd_bg .hd .hd_logo a span {
  display: block;
  line-height: 1.3;
}
.hd_bg .hd .hd_logo a span > br {
  content: "";
  margin-left: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 60px;
  right: -100%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 100%;
  height: calc(100% - 60px);
  background: #51ADD5;
  color: #fff;
  transition: All 0.5s ease;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1.5em 3.5em 1.5em 1.5em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.nav .nav_list > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 1.25em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #51ADD5;
  border: 1px solid #fff;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
  background: #51ADD5;
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 3.5em 1.25em 1.5em;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #216684;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}
.nav .nav_link {
  display: flex;
  justify-content: center;
  padding: 35px 25px;
}
.nav .nav_link .nav_link_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.nav .nav_link .nav_link_list .nav_link_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 110px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
}
.nav .nav_link .nav_link_list .nav_link_item a:hover {
  opacity: 70%;
}
.nav .nav_link .nav_link_list .nav_link_item.contact {
  border-radius: 10px;
  background: linear-gradient(to right, #c70000, #d28300, #dfd000, #00873c, #005aa0, #181878, #800073);
  padding: 5px;
}
.nav .nav_link .nav_link_list .nav_link_item.contact .nav_link_item_contact {
  background: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
  color: #000;
  width: 180px;
}
.nav .nav_link .nav_link_list .nav_link_item.contact .nav_link_item_contact .contact_name {
  margin-top: 5px;
}
.nav .nav_link .nav_link_list .nav_link_item.contact .nav_link_item_contact .contact_name p {
  font-size: 11px;
  color: #707070;
}
.nav .nav_link .nav_link_list .nav_link_item.contact .nav_link_item_contact .contact_name img {
  width: 90%;
}
.nav .nav_link .nav_link_list .nav_link_item.contact .nav_link_item_contact .tel {
  font-weight: bold;
  background: linear-gradient(90deg, rgb(207, 54, 42) 25%, rgb(227, 169, 49) 50%, rgb(137, 181, 26) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: relative;
  margin: 0 0 5px;
  font-size: 16px;
}
.nav .nav_link .nav_link_list .nav_link_item.contact .nav_link_item_contact .tel::before {
  content: "やさい";
  position: absolute;
  top: -4px;
  right: 44px;
  font-size: 8px;
  color: #707070;
  -webkit-text-fill-color: #707070;
  letter-spacing: 1px;
}

.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: 30px;
  height: 21px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #035EBC;
  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: 9px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con .main {
  margin-bottom: 30px;
}
.con_bg .con .more {
  width: 250px;
  margin: 0 auto;
}
.con_bg .con .more a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #707070;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #aaa;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.con_bg .con .more a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../images/icon_arrow_gray.svg) no-repeat center center;
  transition: all 0.3s ease;
}
.con_bg .con .more a:hover {
  background: #035EBC;
  color: #fff;
  border: 1px solid #035EBC;
}
.con_bg .con .more a:hover::before {
  background: url(../images/icon_arrow_white.svg) no-repeat center center;
}
.con_bg .sp_link {
  padding: 35px 15px;
  border-top: 1px solid #ECEBEB;
}
.con_bg .sp_link .sp_link_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.con_bg .sp_link .sp_link_list .sp_link_item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 125px;
  padding: 15px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
}
.con_bg .sp_link .sp_link_list .sp_link_item a span {
  position: absolute;
  bottom: 10px;
  left: 25px;
  display: block;
}
.con_bg .sp_link .sp_link_list .sp_link_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  min-height: 125px;
  transition: all 0.3s;
  transition: 0.3s ease-in-out;
}
.con_bg .sp_link .sp_link_list .sp_link_item a:hover::before {
  transform: scale(1.1);
}
.con_bg .sp_link .sp_link_list .sp_link_item:first-of-type a span {
  text-shadow: -1px -1px 0 #035EBC, -1px 0 0 #035EBC, -1px 1px 0 #035EBC, 0 -1px 0 #035EBC, 0 1px 0 #035EBC, 1px -1px 0 #035EBC, 1px 0 0 #035EBC, 1px 1px 0 #035EBC;
}
.con_bg .sp_link .sp_link_list .sp_link_item:first-of-type a::before {
  background: url(../images/sp_side_img_01.jpg) no-repeat center center;
  background-size: cover;
}
.con_bg .sp_link .sp_link_list .sp_link_item:nth-of-type(2) a::before {
  background: url(../images/sp_side_img_02.jpg) no-repeat center center;
  background-size: cover;
}
.con_bg .sp_link .sp_bnr_list ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item {
  border: 1px solid #D8D8D8;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #707070;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a::before {
  content: "";
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  margin-left: 15px;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a:after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  content: "";
  width: 8px;
  height: 8px;
  background: url(../images/icon_arrow_gray.svg) no-repeat center center;
  background-size: cover;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a:hover {
  background: #f2f2f2;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item.twitter a::before {
  background: url(../images/icon_twitter.svg) no-repeat center center;
  background-size: contain;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item.facebook a::before {
  background: url(../images/icon_facebook.svg) no-repeat center center;
  background-size: contain;
}
.con_bg .sp_link .sp_bnr_list ul .sp_bnr_item.instagram a::before {
  background: url(../images/icon_instagram.svg) no-repeat center center;
  background-size: contain;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  display: flex;
  flex-direction: column-reverse;
  margin-top: auto;
}
.ft_bg .ft .ft_address {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
  line-height: 1.8;
}
.ft_bg .ft .ft_address .ft_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
}
.ft_bg .ft .ft_address .ft_logo::before {
  content: "";
  width: 30px;
  height: 33px;
  background: url(../images/logo.svg) no-repeat center center;
  background-size: cover;
}
.ft_bg .ft .ft_address .address {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 0;
  font-size: 15px;
  justify-content: center;
}
.ft_bg .ft .ft_copy {
  padding: 15px;
  background: #ECEBEB;
  font-size: 11px;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 10px 0;
  background: #035EBC;
  border-top: 1px solid #035EBC;
  border-bottom: 1px solid #035EBC;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 3px;
  cursor: pointer;
  display: block;
  width: 10px;
  height: 10px;
  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;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main .index_slider_bg .index_slider img {
  flex-shrink: 0;
  width: 100%;
  -o-object-fit: contain !important;
  object-fit: contain;
  font-family: "object-fit: cover!important;";
}
.index_main .index_news {
  padding: 30px 15px 20px;
}
.index_main .index_news h2 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #035EBC;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
}
.index_main .index_news h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.index_main .index_news .index_news_scrl {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 50vh;
  margin-bottom: 40px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  width: 100%;
  padding: 10px 0;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 10px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date .cate {
  margin-left: 10px;
  padding: 0 10px;
  color: #035EBC;
  font-size: 11px;
  border: 1px solid #035EBC;
  border-radius: 3px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: 100%;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #707070;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.index_main .index_Interview {
  padding: 20px 15px 50px;
}
.index_main img {
  width: 100%;
  height: auto;
} 
.index_main .index_Interview .hover-zoom {
  transition: all 0.3s ease; /* アニメーションの滑らかさ */
}
.index_main .index_Interview .hover-zoom:hover {
  transform: scale(1.05); /* 拡大 */
}
.index_main .index_Interview h2 {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}
.index_main .index_philosophy {
  padding: 20px 15px 50px;
}
.index_main .index_philosophy h2 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  padding: 50px 50px;
  margin: 0 auto 30px;
  background: url(../images/index_philosophy_bg.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.index_main .index_philosophy p {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.index_main .index_philosophy p.catch_copy {
  font-size: 25px;
  font-weight: bold;
  margin-top: 30px;
}
.index_main .index_overview {
  padding: 20px 15px 50px;
}
.index_main .index_overview h2 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  padding: 50px 50px;
  margin: 0 auto 30px;
  background: url(../images/index_overview_bg.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.index_main .index_overview .index_overview_table {
  border: 1px solid #ABABAB;
  width: 100%;
}
.index_main .index_overview .index_overview_table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #A8A8A8;
}
.index_main .index_overview .index_overview_table tr:last-child {
  border-bottom: none;
}
.index_main .index_overview .index_overview_table tr th {
  border-bottom: 1px solid #DCDCDC;
  padding: 0.5em;
  font-weight: normal;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.index_main .index_overview .index_overview_table tr td {
  padding: 0.5em;
  width: 100%;
  text-align: center;
}
.index_main .index_overview .index_overview_table tr td ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 0.3em;
}
.index_main .index_overview .index_overview_table tr td ul li {
  display: flex;
  text-align: left;
}
.index_main .index_overview .index_overview_table tr td ul li::before {
  content: "◎";
}
.index_main .index_overview .index_overview_table tr td ul li:last-child::before {
  content: none;
}
.index_main .index_history {
  padding: 20px 15px 50px;
  margin-bottom: 50px;
}
.index_main .index_history h2 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  padding: 50px 50px;
  margin: 0 auto 30px;
  background: url(../images/index_history_bg.jpg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.index_main .index_history .index_history_table {
  border: 1px solid #ABABAB;
  width: 100%;
}
.index_main .index_history .index_history_table tr {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #A8A8A8;
}
.index_main .index_history .index_history_table tr:last-child {
  border-bottom: none;
}
.index_main .index_history .index_history_table tr th {
  border-bottom: 1px solid #DCDCDC;
  padding: 0.5em;
  font-weight: normal;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.index_main .index_history .index_history_table tr td {
  padding: 0.5em;
  width: 100%;
  text-align: center;
}
.index_main .index_about {
  padding: 30px 15px;
  background: #ECEBEB;
}
.index_main .index_about h2 {
  margin-bottom: 10px;
  color: #707070;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
}
.index_main .index_about h2::after {
  display: block;
  content: attr(data-text);
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news_list .news_item {
  width: 100%;
  padding: 10px 0;
}
.news_list .news_item .news_item_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 10px;
}
.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: 100%;
}
.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;
  padding: 0 10px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon > section {
  padding: 20px 15px;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
  padding: 20px;
  font-size: 30px;
  font-weight: 500;
  background: url(../images/ttl_bg.jpg) no-repeat center left;
  background-size: cover;
}
.mcon h1 span {
  position: relative;
  z-index: 1;
  color: #707070;
  font-family: "Noto Serif JP", serif;
}
.mcon h2 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #035EBC;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #aaa;
}
.mcon h2:first-of-type {
  margin-top: 0;
}
.mcon h3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #7B7878;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #035EBC;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 0;
  color: #7B7878;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #035EBC;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 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;
}
.mcon .tel_ttl {
  text-align: center;
  color: #51ADD5;
  font-size: 1.2em;
  font-weight: bold;
}
.mcon .contact_name {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  max-width: 100%;
  margin: auto;
}
.mcon .contact_name img {
  width: 100%;
}
.mcon .contact_name p {
  font-size: 22px;
  margin-bottom: 0;
}
.mcon .tel {
  font-size: 33px;
  font-weight: bold;
  background: linear-gradient(90deg, rgb(207, 54, 42) 25%, rgb(227, 169, 49) 50%, rgb(137, 181, 26) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: relative;
  margin: 0;
}
.mcon .tel::before {
  content: "やさい";
  position: absolute;
  top: -8px;
  right: 0;
  left: 94px;
  font-size: 14px;
  color: #707070;
  -webkit-text-fill-color: #707070;
  letter-spacing: 5px;
  margin: 0 auto;
}
.mcon .h4_support {
  font-size: 25px;
  border-bottom: 1px solid;
  width: -moz-max-content;
  width: max-content;
  margin: auto auto 20px;
  padding: 0.5em 0.5em 0;
}
.mcon .h4_support::before {
  content: none;
}
.mcon .work_container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.mcon .work_container .work_inner {
  width: calc(50% - 18px);
}
.mcon .work_container .work_inner img {
  width: 100%;
}
.mcon .work_container .work_inner .prefecture {
  margin: 10px 0 0;
  font-size: 0.9em;
}
.mcon .work_container .work_inner .work_ov {
  padding: 0 10px 10px 10px;
}
.mcon .work_container .work_inner .work_ov h4 {
  margin-top: 0;
  padding: 0;
}
.mcon .work_container .work_inner .work_ov h4::before {
  content: none;
}
.mcon .work_container .work_inner:not(:has(.prefecture)) .work_ov {
  margin-top: 32.39px;
}
.mcon .last_bg {
  background: #FFFF94;
  padding: 36px;
}
.mcon .last_bg h2 {
  text-align: center;
  padding: 0;
  border: none;
  margin-bottom: 20px;
}
.mcon .last_bg .sincerely {
  font-size: 1.2em;
  text-decoration: underline;
  text-align: center;
  margin-top: 40px;
}
.mcon .support_container_01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.mcon .support_container_01 p {
  margin-bottom: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.5em;
  padding: 20px;
  line-height: 1.2;
}
.mcon .support_container_01 p.support_01_01 {
  border: 2px solid #FFA8A8;
  border-radius: 50%;
  width: 160px;
}
.mcon .support_container_01 p.support_01_03 {
  border: 2px solid #93FF8B;
  border-radius: 50%;
  width: 160px;
}
.mcon .support_container_01 p.support_01_04 {
  -webkit-writing-mode: vertical-lr;
}
.mcon .support_container_01 p.support_01_05 {
  background: #FFF700;
  color: #25A400;
  font-weight: bold;
}
.mcon .support_container_03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
}
.mcon .support_container_03 .support_03_01 {
  width: 100%;
  margin-bottom: 15px;
}
.mcon .support_container_03 .support_03_01::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 15px auto 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, rgb(120, 204, 242) 0%, rgb(241, 248, 254) 100%);
}
.mcon .support_container_03 .support_03_01 p {
  font-size: 0.9em;
  margin-bottom: 10px;
  position: relative;
}
.mcon .support_container_03 .support_03_01 p::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 10px auto 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: linear-gradient(180deg, rgb(120, 204, 242) 0%, rgb(241, 248, 254) 100%);
}
.mcon .support_container_03 .support_03_01 p:last-child::after {
  content: none;
}
.mcon .support_container_03 .support_03_01 p span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e9e9e9;
  border-radius: 10px;
  font-size: 1.2em;
  font-weight: 500;
  padding: 10px 20px;
}
.mcon .support_container_03 .support_03_01 p:nth-child(1) span::before {
  content: url(../images/support_icon_01.png);
  line-height: 0;
}
.mcon .support_container_03 .support_03_01 p:nth-child(2) span::before {
  content: url(../images/support_icon_02.png);
  line-height: 0;
}
.mcon .support_container_03 .support_03_01 p:nth-child(3) span::before {
  content: url(../images/support_icon_03.png);
  line-height: 0;
}
.mcon .support_container_03 .support_03_01 p:nth-child(4) span::before {
  content: url(../images/support_icon_04.png);
  line-height: 0;
}
.mcon .support_container_03 .support_03_02 {
  width: 100%;
  background: #FFE384;
  font-size: 1.5em;
  font-weight: 500;
  border: 1px solid #FFE384;
  border-radius: 10px;
}
.mcon .support_container_03 .support_03_02 p {
  margin-bottom: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mcon .support_container_03 .support_03_02 p::before {
  content: url(../images/support_icon_05.png);
  line-height: 0;
}
.mcon .recruitment_banner {
  margin-bottom: 50px;
}
.mcon .recruitment_banner .recruitment_banner_text {
  display: block;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  background: #FFFFFF;
  padding: 10px 30px;
  text-align: center;
  border: 2px solid #00AF4F;
  border-radius: 50px;
  color: #00AF4F;
  font-size: 12px;
  margin: 0 auto 2px;
}
.mcon .recruitment_banner .recruitment_banner_text::after, .mcon .recruitment_banner .recruitment_banner_text::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}
.mcon .recruitment_banner .recruitment_banner_text::before {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #FFFFFF;
  z-index: 1;
}
.mcon .recruitment_banner .recruitment_banner_text::after {
  border-color: rgba(0, 175, 79, 0);
  border-top-width: 13px;
  border-bottom-width: 13px;
  border-left-width: 13px;
  border-right-width: 13px;
  margin-left: -13px;
  border-top-color: #00AF4F;
}
.mcon .recruitment_banner .recruitment_banner_logo {
  display: block;
  color: #fff;
  font-size: 24px;
  background-color: #00AF4F;
  padding: 10px 40px;
  width: -moz-max-content;
  width: max-content;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  margin: auto;
  transition: 0.5s;
}
.mcon .recruitment_banner .recruitment_banner_logo:hover {
  opacity: 0.6;
}
.mcon .recruitment_table {
  width: 100%;
  max-width: 720px;
  display: block;
  margin: auto;
}
.mcon .recruitment_table tbody {
  display: block;
}
.mcon .recruitment_table tbody tr {
  display: block;
}
.mcon .recruitment_table tbody tr th, .mcon .recruitment_table tbody tr td {
  border-right: 1px solid #CBCBCB;
  border-left: 1px solid #CBCBCB;
  padding: 1em;
  line-height: 1.6;
  width: 100%;
  display: block;
}
.mcon .recruitment_table tbody tr th {
  text-align: center;
  font-weight: normal;
  background: #51ADD5;
  color: #fff;
}
.mcon .recruitment_table tbody tr td:nth-of-type(2) {
  border-top: 1px solid #CBCBCB;
}
.mcon .recruitment_table tbody tr td ul {
  margin-top: 0.5em;
}
.mcon .recruitment_table tbody tr td ul li {
  margin-bottom: 0.3em;
}
.mcon .recruitment_table tbody tr:last-child td {
  border-bottom: 1px solid #CBCBCB;
}
.mcon .recruitment_img_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 3em;
  -moz-column-gap: 0.9em;
       column-gap: 0.9em;
  width: 100%;
  max-width: 720px;
  margin: auto;
}
.mcon .recruitment_img_container figure {
  position: relative;
}
.mcon .recruitment_img_container figure img {
  width: 100%;
}
.mcon .recruitment_img_container figure figcaption {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6%;
  width: 70%;
  text-align: center;
  background: #51ADD5;
  color: #FFFDBF;
  font-size: 0.875rem;
}
.mcon .contact_work .contact_work_menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mcon .contact_work .contact_work_menu li {
  width: 200px;
  text-align: center;
  background: #25A400;
  border-radius: 50px;
  margin: 0;
  list-style-type: none;
  transition-duration: 0.5s;
}
.mcon .contact_work .contact_work_menu li:hover {
  transform: scale(0.9, 0.9);
}
.mcon .contact_work .contact_work_menu li a {
  padding: 10px 0;
  display: block;
  color: #fff;
  text-decoration: none;
}
.mcon .contact_work .contact_work_container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 420px;
  margin: auto;
}
.mcon .contact_work .contact_work_container .contact_work_item {
  width: 100%;
}
.mcon .contact_work .contact_work_container .contact_work_item_con {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.mcon .contact_work .contact_work_container .contact_work_item_con img {
  width: 100px;
}
.mcon .contact_work .contact_work_container .contact_work_item_con ul {
  font-size: 0.8em;
  width: calc(100% - 60px);
  height: 100%;
  margin: auto;
  padding: 10px;
  border: 1px solid #DBD8D8;
}
.mcon .contact_work .contact_work_container .contact_work_item_con ul li:last-child {
  margin-bottom: 0;
}
.mcon .contact_work .contact_work_other {
  max-width: 600px;
  margin: 50px auto 0;
}
.mcon .contact_work .contact_work_other span {
  display: block;
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 1.2em;
  font-weight: bold;
  color: #51ADD5;
}
.mcon.activity img {
  margin: auto;
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
}
.mcon.activity .activity_img_container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.mcon.activity .activity_img_container > img {
  width: calc((100% - 20px) / 2);
}
.mcon.activity .activity_img_container > figure {
  width: calc((100% - 20px) / 2);
}
.mcon.activity .activity_img_container > figure > img {
  width: 100%;
}
.mcon.activity .activity_img_container > figure > figcaption {
  text-align: center;
  font-size: 1.2em;
  margin-top: 0.5em;
  color: #51ADD5;
}

@media screen and (max-width: 520px) {
  .mcon .work_container {
    flex-direction: column;
    align-items: center;
  }
  .mcon .work_container .work_inner {
    width: 100%;
    max-width: 420px;
  }
}
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .index_main .index_overview h2 {
    padding: 90px 50px;
  }
  .index_main .index_history h2 {
    padding: 90px 50px;
  }
  .index_main .index_philosophy h2 {
    padding: 90px 50px;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .con_bg .sp_link {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
  }
  .con_bg .sp_link .sp_link_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc((100% - 2em) / 2);
    margin-bottom: 15px;
  }
  .con_bg .sp_link .sp_link_list .sp_link_item a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 125px;
    padding: 15px;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
  }
  .con_bg .sp_link .sp_link_list .sp_link_item a span {
    position: absolute;
    bottom: 10px;
    left: 25px;
    display: block;
  }
  .con_bg .sp_link .sp_link_list .sp_link_item a::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 100%;
    min-height: 125px;
    transition: all 0.3s;
    transition: 0.3s ease-in-out;
  }
  .con_bg .sp_link .sp_link_list .sp_link_item a:hover::before {
    transform: scale(1.1);
  }
  .con_bg .sp_link .sp_link_list .sp_link_item:first-of-type a span {
    text-shadow: -1px -1px 0 #035EBC, -1px 0 0 #035EBC, -1px 1px 0 #035EBC, 0 -1px 0 #035EBC, 0 1px 0 #035EBC, 1px -1px 0 #035EBC, 1px 0 0 #035EBC, 1px 1px 0 #035EBC;
  }
  .con_bg .sp_link .sp_link_list .sp_link_item:first-of-type a::before {
    background: url(../images/sp_side_img_01.jpg) no-repeat center center;
    background-size: cover;
  }
  .con_bg .sp_link .sp_link_list .sp_link_item:nth-of-type(2) a::before {
    background: url(../images/sp_side_img_02.jpg) no-repeat center center;
    background-size: cover;
  }
  .con_bg .sp_link .sp_bnr_list {
    width: calc((100% - 2em) / 2);
  }
  .con_bg .sp_link .sp_bnr_list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item {
    border: 1px solid #D8D8D8;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #707070;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a::before {
    content: "";
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    margin-left: 15px;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: "";
    width: 8px;
    height: 8px;
    background: url(../images/icon_arrow_gray.svg) no-repeat center center;
    background-size: cover;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item a:hover {
    background: #f2f2f2;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item.twitter a::before {
    background: url(../images/icon_twitter.svg) no-repeat center center;
    background-size: contain;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item.facebook a::before {
    background: url(../images/icon_facebook.svg) no-repeat center center;
    background-size: contain;
  }
  .con_bg .sp_link .sp_bnr_list ul .sp_bnr_item.instagram a::before {
    background: url(../images/icon_instagram.svg) no-repeat center center;
    background-size: contain;
  }
  .con_bg .mcon .support_container_01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .con_bg .mcon .support_container_01 p {
    margin-bottom: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.5em;
    padding: 20px;
    line-height: 1.2;
  }
  .con_bg .mcon .support_container_01 p.support_01_01 {
    border: 2px solid #FFA8A8;
    border-radius: 50%;
    width: 160px;
  }
  .con_bg .mcon .support_container_01 p.support_01_03 {
    border: 2px solid #93FF8B;
    border-radius: 50%;
    width: 160px;
  }
  .con_bg .mcon .support_container_01 p.support_01_04 {
    -webkit-writing-mode: unset;
  }
  .con_bg .mcon .support_container_01 p.support_01_05 {
    background: #FFF700;
    color: #25A400;
    font-weight: bold;
  }
  .con_bg .mcon .contact_work .contact_work_container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 100%;
  }
  .con_bg .mcon .contact_work .contact_work_container .contact_work_item {
    width: calc((100% - 25px) / 2);
  }
  .con_bg .mcon .contact_work .contact_work_container .contact_work_item_con {
    display: flex;
    align-items: stretch;
    gap: 20px;
  }
  .con_bg .mcon .contact_work .contact_work_container .contact_work_item_con img {
    width: 100px;
  }
  .con_bg .mcon .contact_work .contact_work_container .contact_work_item_con ul {
    font-size: 0.8em;
    width: calc(100% - 60px);
    height: 100%;
    margin: auto;
    padding: 10px;
    border: 1px solid #DBD8D8;
  }
  .con_bg .mcon .contact_work .contact_work_container .contact_work_item_con ul li:last-child {
    margin-bottom: 0;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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;
    gap: 0;
    width: 57px;
    height: 57px;
    padding: 0;
    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;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
}/*# sourceMappingURL=sp.css.map */