@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スタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-size: 14px;
}

.w_base {
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.main {
  padding-bottom: 40px;
}

.con_bg {
  padding-bottom: 104px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
}
.hd_bg a {
  color: #000;
}
.hd_bg .hd {
  max-width: 1900px;
  height: 70px;
  margin: 0 auto;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd .hd_logo img {
  width: 30px;
  height: auto;
  margin-right: 7px;
  padding-bottom: 1px;
}
.hd_bg .hd .hd_logo .hd_ttl {
  font-size: 18px;
  line-height: 1.1;
}
.hd_bg .hd .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.07em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: 60%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  position: fixed;
  top: 0px;
  right: -60%;
  color: #fff;
  background: rgb(51, 152, 219);
  -webkit-box-shadow: 1px 1px 5px rgb(0, 0, 0);
          box-shadow: 1px 1px 5px rgb(0, 0, 0);
  overflow-x: none;
  overflow-y: auto;
  z-index: 100;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}

.nav_list li {
  position: relative;
}
.nav_list li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
.nav_list li.current > a {
  position: relative;
}
.nav_list li.current > a:after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  background: #2b84c0;
  border-radius: 5px;
  z-index: -1;
}
.nav_list > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.nav_list > li > a {
  position: relative;
  padding: 0.8em 1em 0.8em 24px;
  font-size: 16px;
  font-weight: bold;
}
.nav_list > li > a:after {
  content: attr(data-text);
  display: block;
}
.nav_list > li.lang {
  border: 1px solid #d2f1fe;
  background: #004b6b;
  margin: 1em 8px;
  border-radius: 5px;
  text-align: center;
}
.nav_list > li.lang a {
  padding: 0.5em 1em 0.6em 24px;
}
.nav_list > li {
  /* 子要素を持つメニュー（親）の場合 */
}
.nav_list > li.has_clist {
  position: relative;
}
.nav_list > li.has_clist .sub-menu-trigger {
  position: absolute;
  top: 0.8em;
  right: 8px;
  z-index: 10;
  width: 30px;
  height: 30px;
  background: #fff;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.nav_list > li.has_clist .sub-menu-trigger:before, .nav_list > li.has_clist .sub-menu-trigger:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: rgb(51, 152, 219);
}
.nav_list > li.has_clist .sub-menu-trigger::before {
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(0deg) translateX(-50%);
          transform: rotate(0deg) translateX(-50%);
}
.nav_list > li.has_clist .sub-menu-trigger:after {
  top: 50%;
  left: 7px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_list > li.has_clist .sub-menu-trigger.close:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav_list > li.has_clist .sub_menu_wrap {
  padding: 0 8px 8px;
  display: none;
  /* メニュー（子・孫）*/
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu {
  background: #fff;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li {
  border-left: none !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li > a {
  display: block;
  font-weight: 500;
  padding: 0.7em 10px 0.7em 16px;
  text-decoration: none;
  color: #151515 !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:last-child {
  border: none;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li.current > a:after {
  background: none;
  border-color: #3398db;
  background: rgba(51, 152, 219, 0.1);
  z-index: 1;
}
.nav_list > li.has_clist .sub_menu_wrap {
  /* メニュー（子）*/
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu {
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  -webkit-box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0 3px 3px rgba(0, 0, 0, 0.15);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li {
  position: relative;
  border-bottom: 1px solid #ccc;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > a {
  font-size: 14px;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu {
  width: 100%;
  top: 0;
  left: 100%;
  background: rgb(218, 222, 225);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li {
  border-bottom: 1px solid #b8b7b7;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li > a {
  font-size: 14px;
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  width: 30px;
  height: 24px;
  margin-top: -5px;
  position: fixed !important;
  top: 25px;
  right: 15px;
  cursor: pointer;
  z-index: 1000;
}
.sp_nav_trigger span {
  width: 100%;
  height: 4px;
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #000;
  border-radius: 4px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          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.sp_active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          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) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-weight: 300;
  background: rgba(51, 152, 219, 0.8);
}
.ft_bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url(../images/ft_bg.jpg) no-repeat 100%;
  -webkit-filter: saturate(0) brightness(1.3) opacity(0.25);
          filter: saturate(0) brightness(1.3) opacity(0.25);
  z-index: -1;
}
.ft_bg a {
  color: #fff;
}
.ft_bg .ft {
  height: 100%;
  padding: 10px 0;
}
.ft_bg .ft .ft_ttl h1 {
  font-size: 14px;
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
}
.ft_bg .ft .ft_ttl p {
  margin-bottom: 10px;
  display: block;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
.ft_bg .ft_copy {
  font-size: 10px;
  text-align: center;
  line-height: 1.3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  width: 60px;
  height: 50px;
  padding-bottom: 10px;
  position: fixed;
  right: -60px;
  bottom: -50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
  background-color: #207ebc;
  z-index: 100;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
}
.pt .pt_btn::before, .pt .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt .pt_btn::before {
  width: 6px;
  bottom: 0;
}
.pt .pt_btn::after {
  height: 6px;
  right: 0;
}
.pt.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
  right: 0px;
  bottom: 0px;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  padding-top: 50px;
}
.index_main h2 {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  color: rgb(51, 152, 219);
  line-height: 1.3;
}
.index_main h2 span {
  display: block;
  font-size: 0.44em;
}

.index_greet {
  margin-bottom: 70px;
}
.index_greet .txt {
  max-width: 100%;
  text-align: justify;
  margin-bottom: 30px;
}
.index_greet img {
  width: 100%;
}

.index_news {
  padding: 50px 0 70px;
}
.index_news .news_scrl {
  max-height: 300px;
  overflow: auto;
}
.index_news .news_scrl dl {
  width: 100%;
  border-bottom: 1px dotted #999;
  font-size: 13px;
  line-height: 1.6;
  display: block;
  font-size: 14px;
}
.index_news .news_scrl dl dt {
  padding-top: 10px;
}
.index_news .news_scrl dl dd {
  padding-bottom: 10px;
  border-bottom: 1px dotted #999;
}
.index_news .news_scrl dl dd .icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_news .news_scrl dl dd .icon_new:before {
  content: "NEW";
}

.index_slider_bg {
  position: relative;
}
.index_slider_bg img {
  width: 100vw;
  max-width: 100vw;
  height: 100vh !important;
  height: 100svh !important;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: saturate(0) brightness(1.3) opacity(0.25);
          filter: saturate(0) brightness(1.3) opacity(0.25);
}
.index_slider_bg .catchcopy_bg {
  width: 100%;
  height: 390px;
  position: absolute;
  right: 0;
  bottom: 0px;
  color: #fff;
  background: rgba(51, 152, 219, 0.85);
  clip-path: polygon(-270% 100%, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.index_slider_bg .catchcopy_bg .catchcopy {
  width: 100%;
  padding: 0 20px 30px;
  text-align: justify;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.index_slider_bg .catchcopy_bg .catchcopy h2 {
  font-size: clamp(1.7em, 4vw, 4em);
  margin-bottom: 15px;
  text-align: right;
}
.index_slider_bg .catchcopy_bg .catchcopy p {
  color: #fff;
  font-weight: 300;
}
.index_slider_bg .catchcopy_bg .catchcopy .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px; /* 2つのロゴ間の余白 */
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-top: 15px;
}
.index_slider_bg .catchcopy_bg .catchcopy .logo .logo_img {
  width: clamp(75px, 13vw, 120px);
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain; /* アスペクト比を維持 */
  -webkit-filter: none;
          filter: none;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*-- 
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */
.index_services {
  padding: 50px 0 60px !important;
  background-color: #f4f4f4;
}

.index_services .aboutus_con .services_wrap {
  grid-template-columns: 1fr;
  gap: 35px;
}

.index_services .services h3 {
  font-size: 1.5em;
  gap: 8px;
  color: rgb(51, 152, 219);
}
.index_services .services h3 .num {
  font-size: 1.8em;
  color: rgb(51, 152, 219);
}
.index_services .services .services_img {
  width: 100%;
  height: 160px;
}
.index_services .services .services_img img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.index_services .services p {
  font-size: 1.2em;
  line-height: 1.7;
  margin: 10px 0;
}

.index_table {
  padding: 30px 10px 60px;
  background-color: #f4f4f4;
}
.index_table #table01 {
  background-color: #fff;
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.index_table #table01 th,
.index_table #table01 td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
}
.index_table #table01 th {
  background-color: #f7f7f7;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}
.index_table #table01 tr:nth-child(even) {
  background-color: #fafafa;
}

/*----------------------------------------------------------------------------
******************************************************************************
** メールフォームプロ
******************************************************************************
----------------------------------------------------------------------------*/
#contactform form#mailformpro {
  max-width: 720px;
  margin: 0 20px;
}

/* -------------------------------
   定義リスト（表っぽさ除去）
-------------------------------- */
#contactform dl.mailform {
  border: none;
  background: none;
  display: block;
}
#contactform dl.mailform dt,
#contactform dl.mailform dd {
  border: none !important;
  background: none !important;
}
#contactform dl.mailform dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin: 23px 0 6px;
  padding: 0;
  line-height: 1.6;
  text-align: left;
}
#contactform dl.mailform dd {
  display: block;
  width: 100%;
  padding: 0;
  margin-top: 8px;
}

#contactform dl.mailform dd,
#contactform dl.mailform .mfp,
#contactform dl.mailform .mfp_col10 {
  width: 100% !important;
  max-width: 100% !important;
}

/* -------------------------------
   入力要素
-------------------------------- */
#mailformpro input[type=text],
#mailformpro input[type=email],
#mailformpro input[type=tel],
#mailformpro textarea,
#mailformpro select {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#mailformpro input[type=text]:focus,
#mailformpro input[type=email]:focus,
#mailformpro input[type=tel]:focus,
#mailformpro textarea:focus,
#mailformpro select:focus {
  outline: none;
  border-color: #035EBC;
}

#contactform dl.mailform dd input[type=checkbox] {
  width: auto;
  padding: 0;
  margin: 0 8px 0 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  vertical-align: middle;
}

#mailformpro textarea {
  min-height: 160px;
  resize: vertical;
}

#contactform dl.mailform dd input,
#contactform dl.mailform dd textarea,
#contactform dl.mailform dd select,
#contactform dl.mailform dd .mfp_col10 input,
#contactform dl.mailform dd .mfp_col10 textarea,
#contactform dl.mailform dd .mfp_col10 select {
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディング含めて幅100% */
}

/* 送信確認の dd をシンプルに */
#contactform dl.mailform dd.mfp:last-of-type {
  padding: 0;
  margin-top: 8px;
}

/* 送信確認部分をシンプルに */
#contactform dl.mailform dd.mfp.checkbox {
  padding: 0;
  margin-top: 8px;
  border: none !important;
  background: none !important;
}

/* チェックボックス本体 */
#contactform dl.mailform dd.mfp.checkbox input[type=checkbox] {
  width: auto !important;
  height: auto;
  padding: 0;
  margin: 0 8px 0 0;
  border: none !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  vertical-align: middle;
}

/* チェックボックスのラベル */
#contactform dl.mailform dd.mfp.checkbox label {
  font-size: 14px;
  font-weight: normal;
  color: #333;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

/* チェックボックス用ラベルをシンプルに */
form#mailformpro label.mfp_checked,
form#mailformpro label.mfp_not_checked {
  padding: 0;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form label {
  white-space: normal !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* -------------------------------
   必須ラベル
-------------------------------- */
#mailformpro .must {
  color: #db3d3d;
  font-size: 12px;
  font-weight: bold;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  float: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
}

/* -------------------------------
   行レイアウト
-------------------------------- */
.mfp_rows {
  clear: both;
}
.mfp_rows::after {
  content: "";
  display: block;
  clear: both;
}
.mfp_rows [class*=mfp_col] {
  float: left;
  width: 100%;
}

/* -------------------------------
   ボタン（文字ダブり対策）
-------------------------------- */
.mfp_buttons {
  text-align: center;
  margin-top: 40px;
}

/* MailformProが自動生成する span を非表示 */
.mfp_buttons button span {
  display: none;
}

.mfp_buttons button {
  background: #035EBC;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 2%;
  cursor: pointer;
  line-height: 1;
  text-shadow: none;
  width: 200px;
  height: 50px;
}
.mfp_buttons button:hover {
  background: #2f4a7a;
}

/* -------------------------------
   thanksボタン
-------------------------------- */
.back-to-top-area {
  text-align: center;
  margin: 40px 0;
}

.back-to-top-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 2%;
  background: #035EBC; /* 青 */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.back-to-top-btn:hover {
  background: #2f4a7a;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon .mcon_ttl {
  position: relative;
  background: #ccc;
  border-bottom: 2px solid rgb(51, 152, 219);
  overflow: hidden;
}
.mcon .mcon_ttl > p {
  position: relative;
  margin: 0 !important;
}
.mcon .mcon_ttl > p img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: opacity(0.7);
          filter: opacity(0.7);
}
.mcon .mcon_ttl h2 {
  width: 100%;
  padding: 0 30px;
  position: absolute;
  top: 58%;
  left: 50%;
  font-size: 24px;
  color: #000;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}
.mcon h3 {
  font-size: 1.5em;
  position: relative;
  padding-bottom: 10px;
  margin: 2em 0 1.1em;
}
.mcon h3::after {
  content: "";
  width: 120px;
  height: 5px;
  background: rgb(51, 152, 219);
  position: absolute;
  bottom: 0;
  left: 0;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5, .mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol, .mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li, .mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
}
.mcon p {
  margin-bottom: 1em;
}

.record_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 0 10px;
}

.record_item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.record_text {
  margin: 10px auto 5px;
  font-size: 20px;
  font-weight: bold;
}

.record_desc {
  font-size: 18px;
  color: #4e4e4e;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tabスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 760px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .index_slider_bg {
    position: relative;
  }
  .index_slider_bg img {
    width: 100vw;
    max-width: 100vw;
    height: 430px !important;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: saturate(0) brightness(1.3) opacity(0.25);
            filter: saturate(0) brightness(1.3) opacity(0.25);
  }
  .index_slider_bg .catchcopy_bg {
    width: 65%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: -15px;
    color: #fff;
    background: rgba(51, 152, 219, 0.85);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index_slider_bg .catchcopy_bg .catchcopy {
    width: 560px;
    margin-right: 10px;
    padding-left: 21%;
    padding-bottom: 10%;
    padding-top: 10%;
    text-align: justify;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
  .index_slider_bg .catchcopy_bg .catchcopy h2 {
    font-size: clamp(1.7em, 3.7vw, 4em);
    margin-bottom: 5px;
    text-align: left;
  }
  .index_slider_bg .catchcopy_bg .catchcopy p {
    color: #fff;
    font-weight: 300;
  }
  .index_slider_bg .catchcopy_bg .catchcopy .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px; /* 2つのロゴ間の余白 */
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    margin-top: 5px;
  }
  .index_slider_bg .catchcopy_bg .catchcopy .logo .logo_img {
    width: clamp(100px, 13vw, 140px);
    height: auto !important;
    -o-object-fit: contain;
       object-fit: contain; /* アスペクト比を維持 */
    -webkit-filter: none;
            filter: none;
  }
  .index_main {
    padding-top: 80px;
  }
  .index_greet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .index_greet img {
    width: 350px;
    height: 100%;
    padding-left: 30px;
  }
  .index_services {
    padding: 80px 0 85px;
    background-color: #f4f4f4 !important;
  }
  .index_services .aboutus_con .services_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .index_services .aboutus_con .services_wrap .services h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 10px;
    color: rgb(51, 152, 219);
  }
  .index_services .aboutus_con .services_wrap .services h3 .num {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
    color: rgb(51, 152, 219);
  }
  .index_services .aboutus_con .services_wrap .services .services_img {
    width: 100%;
    height: 150px;
    overflow: hidden;
  }
  .index_services .aboutus_con .services_wrap .services .services_img img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .index_services .aboutus_con .services_wrap .services p {
    margin-top: 10px;
    font-size: 1.3em;
    text-align: center;
  }
  .record_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** navigation
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  nav {
    width: 43% !important;
  }
}/*# sourceMappingURL=sp.css.map */