@charset "UTF-8";
#main-contents .clear_float::after {
  clear: both;
  content: "";
  display: table;
}
#main-contents .mrgbtm0 {
  margin-bottom: 0;
}
#main-contents .mrgbtm0 figure {
  margin-bottom: 0;
}
#main-contents .mrgbtm05 {
  margin-bottom: 0.5em;
}
#main-contents .mrgbtm1 {
  margin-bottom: 1em;
}
#main-contents .mrgbtm2 {
  margin-bottom: 2em;
}
#main-contents .mrgbtm3 {
  margin-bottom: 3em;
}

#main-contents td.has-text-align-center,
#main-contents th.has-text-align-center {
  text-align: center;
}
#main-contents td.has-text-align-right,
#main-contents th.has-text-align-right {
  text-align: right;
}

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

#content h6, #content h5, #content h4, #content h3, #content h2, .page-footer .footer_flex .tel, .page-footer .footer_flex .sec_header .sec_md, .page-footer .footer_flex .sec_header h2, #subpage_header_title .subpage_title .sec_header .sec_md, #subpage_header_title .subpage_title .sec_header h2, #topsec_service .sec_col_text .sec_inner h3, #top_contents #topsec_strengths .sec_row .sec_col .sec_inner h3, #top_contents .sec_header .sec_md, #top_contents .sec_header h2, .catchcopy h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #002747;
  font-weight: 500;
  padding: 0;
  margin: 0;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
  color: #002747;
}

/* サイト全体のテキストリンク設定 */
a {
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

.sp_show {
  display: none !important;
}

.pc_show {
  display: block;
}

.center {
  text-align: center;
}

.c-underline-lr {
  position: relative;
}
.c-underline-lr::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 6px;
  background-color: #00aeec;
  transition: width 0.3s ease;
}
.c-underline-lr:hover::after {
  width: 104px;
}

.c-text-sweep {
  background: linear-gradient(to right, #00aeec 50%, #002747 50%);
  background-size: 200% 100%;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.4s ease;
}
.c-text-sweep:hover {
  background-position: 0% center;
}

.arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.arrow::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  background: url("../images/arrow_blue.png") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.arrow:hover::after {
  transform: translateX(4px);
}

/*== お問い合わせボタン */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 1;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: #00aeec;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.h_toiawase {
  text-align: center;
  padding-top: 44px;
  padding-bottom: 44px;
  width: 218px;
  font-size: 14px;
  font-size: 0.875rem;
  z-index: 3;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  border-radius: 0;
  background-color: #004389;
}

.toiawase {
  padding-top: 18px;
  padding-bottom: 21px;
  width: 100%;
  max-width: 300px;
  height: 60px;
  font-size: 16px;
  font-size: 1rem;
  z-index: 3;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  background-color: #004389;
}

.link {
  padding-left: 30px;
  padding-right: 24px;
  padding-top: 19px;
  padding-bottom: 19px;
  width: 100%;
  max-width: 256px;
  font-size: 16px;
  font-size: 1rem;
  z-index: 3;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  background-color: #004389;
}
.link .arrow {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.link .arrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url("../images/arrow_blue.png") center/contain no-repeat;
  flex-shrink: 0;
}
.link:hover .arrow::after {
  background-image: url("../images/arrow_white.png");
}

/*==================================================
横並びのための設定
===================================*/
.gnavi li a {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  width: 104px;
  display: block;
  padding: 8px 0;
  margin: 0 1em;
  text-decoration: none;
  color: #323232;
  font-weight: bold;
}

.top_slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 90vh;
  overflow: hidden;
}
.top_slide .slide-item {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: transform, opacity;
}
.top_slide .slide-item.active {
  opacity: 1;
}
.top_slide .slide-item:nth-child(1) {
  background-image: url("../images/top_main_img_1.webp");
}
.top_slide .slide-item:nth-child(2) {
  background-image: url("../images/top_main_img_2.webp");
}
.top_slide .slide-item:nth-child(3) {
  background-image: url("../images/top_main_img_3.webp");
}

.slide-img img {
  display: block;
  margin: 0 auto;
}

.catchcopy {
  position: absolute;
  bottom: 0%;
  right: 0;
  width: 50%;
  background: #fff;
  padding-left: 1em;
  padding-right: max(1em, (100vw - 1362px) / 2 + 1em);
}
.catchcopy h2 {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  color: #002747;
  letter-spacing: 0.18em;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: right;
}

#top_contents {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.4;
}
#top_contents .sec_header {
  margin-bottom: 50px;
}
#top_contents .sec_header h2 {
  font-size: 63px;
  font-size: 3.9375rem;
  font-family: "Orbitron", sans-serif;
  font-weight: normal;
  color: #004389;
  line-height: 0.9;
  padding-bottom: 24px;
}
#top_contents .sec_header .sec_md {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #004389;
}
#top_contents {
  /*稲見精密の強み*/
}
#top_contents #topsec_strengths {
  position: relative;
  z-index: 500;
}
#top_contents #topsec_strengths::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  background: url("../images/strengths_bg.jpg") center/cover no-repeat;
  z-index: 0;
}
#top_contents #topsec_strengths .sec_row {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1362px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#top_contents #topsec_strengths .sec_row .st_bg {
  background: transparent;
}
#top_contents #topsec_strengths .sec_row .sec_col {
  flex: 0 1 50%;
  min-width: 0;
}
#top_contents #topsec_strengths .sec_row .sec_col .sec_inner {
  max-width: 650px;
  padding-top: 200px;
  padding-bottom: 200px;
  padding-right: 120px;
}
#top_contents #topsec_strengths .sec_row .sec_col .sec_inner .sec_txt {
  font-size: 16px;
  font-size: 1rem;
  padding-bottom: 86px;
  line-height: 1.9;
}
#top_contents #topsec_strengths .sec_row .sec_col .sec_inner h3 {
  font-size: 30px;
  font-size: 1.875rem;
  padding-bottom: 30px;
  color: #002747;
}
#top_contents #topsec_strengths .sec_row .st_right {
  width: 100%;
  position: relative;
}
#top_contents #topsec_strengths .sec_row .st_right .st_right_inner {
  position: absolute;
  max-width: 723px;
  width: 100%;
  height: 506px;
  top: 21%;
  left: -42px;
  background-color: #004389;
  border-radius: 20px;
  overflow: visible;
}
#top_contents #topsec_strengths .sec_row .st_right .st_right_inner img {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
#top_contents #topsec_strengths .sec_row .st_right .strengths_link {
  position: absolute;
  bottom: 42px;
  right: 72px;
}
#top_contents #topsec_strengths .sec_row .st_right .strengths_link a,
#top_contents #topsec_strengths .sec_row .st_right .strengths_link .st_right_link {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
#top_contents #topsec_strengths .sec_row .st_right .strengths_link a::after,
#top_contents #topsec_strengths .sec_row .st_right .strengths_link .st_right_link::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url("../images/arrow_circle.png") center/contain no-repeat;
  flex-shrink: 0;
}
#top_contents .sp {
  display: none;
}
#top_contents {
  /*お知らせ*/
}
#top_contents .news-list__list-item {
  display: block;
  margin: 0;
  padding: 0;
}
#top_contents #topsec_news {
  padding-top: 200px;
  padding-bottom: 200px;
  margin-bottom: 200px;
  background-color: #EFEFEF;
}
#top_contents #topsec_news .sec_row {
  margin: 0 auto;
  max-width: 1362px;
  display: flex;
}
#top_contents #topsec_news .sec_row .sec_col_rt .news_box {
  width: 100%;
}

#topsec_news .sec_row .news-item,
#content .sec_row .news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
#topsec_news .sec_row .news-item .news-item__meta,
#content .sec_row .news-item .news-item__meta {
  gap: 20px;
  display: flex;
  align-items: center;
}
#topsec_news .sec_row .news-item__date,
#content .sec_row .news-item__date {
  font-size: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}
#topsec_news .sec_row .news-item__cat,
#content .sec_row .news-item__cat {
  color: #004389;
  width: 132px;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px 10px;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
}
#topsec_news .sec_row .news-item__title,
#content .sec_row .news-item__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}
#topsec_news .sec_row .news-item a,
#content .sec_row .news-item a {
  color: #004389;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
#topsec_news .sec_row .news-item .c-text-sweep,
#content .sec_row .news-item .c-text-sweep {
  background: linear-gradient(to right, #00aeec 50%, #004389 50%);
  background-size: 200% 100%;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.4s ease;
}
#topsec_news .sec_row .news-item .c-text-sweep:hover,
#content .sec_row .news-item .c-text-sweep:hover {
  background-position: 0% center;
}

#top_contents #topsec_news .sec_inner {
  max-width: 590px;
  margin: 0 0 0 auto;
}
#top_contents #topsec_news .news-tabs {
  gap: 8px;
  display: flex;
  margin-bottom: 30px;
}
#top_contents #topsec_news .news-tabs .news-tab {
  width: 33.33%;
  padding: 10px 28px;
  border: none;
  background: #c7d6e5;
  color: #004389;
  cursor: pointer;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.2s;
  line-height: 1;
}
#top_contents #topsec_news .news-tabs .news-tab + .news-tab {
  border-left: none;
}
#top_contents #topsec_news .news-tabs .news-tab.active, #top_contents #topsec_news .news-tabs .news-tab:hover {
  background: #004389;
  color: #fff;
}
#top_contents #topsec_news .sec_col_lt {
  width: 26%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}
#top_contents #topsec_news .sec_col_lt .sec_inner {
  padding: 0;
  max-width: none;
  margin: 0;
}
#top_contents #topsec_news .sec_col_lt .sec_inner a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #004389;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
#top_contents #topsec_news .sec_col_lt .sec_inner a::after {
  content: "";
  padding-left: 18px;
  display: inline-block;
  width: 14px;
  height: 10px;
  background: url("../images/arrow_blue.png") center/contain no-repeat;
  flex-shrink: 0;
}
#top_contents #topsec_news .sec_col_lt .sec_inner a:hover {
  color: #004389;
}
#top_contents #topsec_news .sec_col_rt {
  width: 74%;
}

/* 事業紹介 無限スライダー */
@keyframes service-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*事業紹介*/
#topsec_service {
  position: relative;
  z-index: 500;
  min-height: 540px;
  margin-bottom: 200px;
}
#topsec_service .service-slider {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  height: 540px;
  overflow: hidden;
}
#topsec_service .service-slider__track {
  gap: 26px;
  display: flex;
  height: 84%;
  animation: service-slide 30s linear infinite;
  will-change: transform;
}
#topsec_service .service-slider__track img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  display: block;
}
#topsec_service .sec_col_text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
}
#topsec_service .sec_col_text .sec_inner {
  width: 48%;
  height: 100%;
  background-color: #fff;
  padding: 0 80px;
}
#topsec_service .sec_col_text .sec_inner h3 {
  font-size: 30px;
  font-size: 1.875rem;
  color: #002747;
  padding-bottom: 44px;
  line-height: 1.5;
}
#topsec_service .sec_col_text .sec_inner .sec_txt {
  font-size: 16px;
  font-size: 1rem;
  padding-bottom: 20px;
  line-height: 1.9;
}
#topsec_service .sec_col_text .sec_inner .highlight {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
}
#topsec_service .sec_col_text .sec_inner .service-link {
  padding-top: 60px;
}

/* ページヘッダー */
a.skiplink {
  display: block;
  overflow: hidden;
  height: 0;
  padding: 0;
}

#main.two-column {
  max-width: 1226px;
  margin: 0 auto;
}

.page-header {
  position: relative;
}
.page-header #header-container {
  height: 108px;
  width: 100%;
}
.page-header #header-container .hd_row {
  display: flex;
  justify-content: space-between;
}
.page-header #header-container .hd_row .hd_sitename {
  margin-top: 24px;
  padding-left: 3%;
}

#gnavi {
  flex: 0 1 60%;
}
#gnavi ul {
  padding-top: 15px;
  display: flex;
  justify-content: flex-end;
}

#subpage_header_title {
  padding: 0;
  position: relative;
  background-color: #aaa;
}
#subpage_header_title .subpage_header_img img {
  max-height: 592px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#subpage_header_title .subpage_title {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 50%;
  background: #fff;
}
#subpage_header_title .subpage_title .sec_header {
  max-width: 613px;
  margin-left: auto;
  margin-right: 0;
  padding: 0 1em;
}
#subpage_header_title .subpage_title .sec_header h2 {
  font-size: 63px;
  font-size: 3.9375rem;
  font-family: "Orbitron", sans-serif;
  font-weight: normal;
  color: #004389;
  line-height: 1;
  padding-top: 60px;
  padding-bottom: 24px;
}
#subpage_header_title .subpage_title .sec_header .sec_md {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #004389;
}

/* パンクズ */
#breadcrumb {
  max-width: 1226px;
  margin: 0 auto;
  padding: 30px 1em 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #808080;
}
#breadcrumb a {
  color: #8295a5;
}
#breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
  line-height: 1.3;
}
#breadcrumb ul li {
  margin: 0;
  padding: 0 16px 0 0;
  float: left;
}
#breadcrumb ul li:last-child {
  background: none;
}

/* フッター */
.page-footer {
  background-color: #002747;
  color: #fff;
}
.page-footer .footer_flex {
  max-width: 1362px;
  font-size: 17px;
  font-size: 1.0625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  padding-top: 90px;
  padding-bottom: 80px;
  margin: 0 auto;
}
.page-footer .footer_flex .footer_box {
  width: 100%;
  max-width: 770px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.page-footer .footer_flex .footer_box::before {
  content: "";
  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 200px;
  background-color: #fff;
  pointer-events: none;
}
.page-footer .footer_flex .ft_mail_txt {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  padding-bottom: 34px;
}
.page-footer .footer_flex .ft_mail {
  width: 100%;
  max-width: 300px;
}
.page-footer .footer_flex::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("../images/contact_bg.jpg") center/cover no-repeat;
  z-index: 0;
}
.page-footer .footer_flex > * {
  position: relative;
  z-index: 1;
}
.page-footer .footer_flex {
  /**/
}
.page-footer .footer_flex .sec_header {
  margin-top: 35px;
}
.page-footer .footer_flex .sec_header h2 {
  font-size: 63px;
  font-size: 3.9375rem;
  font-family: "Orbitron", sans-serif;
  font-weight: normal;
  margin-bottom: 24px;
  line-height: 0.9;
}
.page-footer .footer_flex .sec_header .sec_md {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.page-footer .footer_flex p {
  padding-bottom: 10px;
}
.page-footer .footer_flex .tel {
  font-size: 29px;
  font-size: 1.8125rem;
}
.page-footer .footer_flex .tel span {
  font-size: 17px;
  font-size: 1.0625rem;
}
.page-footer .footer_flex .uketuke {
  margin-top: 20px;
  font-size: 15px;
  font-size: 0.9375rem;
}
.page-footer .footer_flex .uketuke2 {
  font-size: 13px;
  font-size: 0.8125rem;
}
.page-footer .footer_flex .mail {
  padding: 10px 60px 0 60px;
  border-left: 1px solid #fff;
}
.page-footer .footer_flex .mail p {
  font-size: 15px;
  font-size: 0.9375rem;
}

#footer-container {
  margin: 0 auto;
  max-width: 1362px;
  padding: 60px 0;
}
#footer-container .c-text-sweep {
  background: linear-gradient(to right, #00aeec 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.4s ease;
}
#footer-container .c-text-sweep:hover {
  background-position: 0% center;
}
#footer-container .copy_flex {
  padding-top: 3em;
}
#footer-container .copy_flex a {
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}
#footer-container .ft_row {
  width: 100%;
  /*max-width: 850px;*/
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.6;
}
#footer-container .ft_row .ft_col_lt .ft_logo {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  padding-bottom: 20px;
}
#footer-container .ft_row .ft_col_rt {
  max-width: 420px;
  width: 100%;
}
#footer-container .ft_row .banner_box {
  height: 100px;
  display: flex;
  padding: 1em;
  background-color: #fff;
}
#footer-container .ft_row .banner_box figure {
  margin: 0 1em 0 0;
}
#footer-container .ft_row .banner_box figure img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  display: block;
}
#footer-container .ft_row .ft_sitemap_block {
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: space-between;
}
#footer-container .ft_row .ft_sitemap_block .col1 {
  width: 140px;
}
#footer-container .ft_row .ft_sitemap_block .col2 {
  width: 210px;
}
#footer-container .ft_row .ft_sitemap_block .ft_st_col a {
  font-size: 15px;
  font-size: 0.9375rem;
  width: 100%;
  color: #fff;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  padding-bottom: 2em;
}
#footer-container .ft_row .ft_sitemap_block .ft_st_col a::after {
  content: "";
  padding-left: 18px;
  display: inline-block;
  width: 14px;
  height: 10px;
  background: url("../images/arrow_blue.png") center/contain no-repeat;
  flex-shrink: 0;
}
#footer-container .ft_row .ft_sitemap_block .ft_st_col a:hover {
  color: #004389;
}
#footer-container .ft_link {
  margin-top: 16px;
  font-size: 13px;
  font-size: 0.8125rem;
}
#footer-container .ft_link a {
  color: #fff;
}
#footer-container .ft_copyright {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 40px;
}
#footer-container .ft_copyright small {
  font-style: normal;
  color: #fff;
}
#footer-container .address {
  font-size: 15px;
  font-size: 0.9375rem;
}

#backtopbtn {
  position: fixed;
  z-index: 1000;
  bottom: 0px;
  right: 0px;
  width: 158px;
  height: 158px;
  background-color: #002747;
}
#backtopbtn .f_btn {
  text-align: center;
  width: 158px;
  height: 158px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  display: inline-block;
  border-radius: 0;
}
#backtopbtn .f_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url("../images/btn_pagetop_b.webp") center/auto no-repeat;
  z-index: 2;
}
#backtopbtn .f_btn:hover::after {
  background-image: url("../images/btn_pagetop_w.webp");
}

#content {
  margin: 0 auto;
  padding: 110px 1em 200px 1em;
  max-width: 1226px;
  font-size: 16px;
  font-size: 1rem;
}
#content .has-c-red-color {
  color: #e50011 !important;
}
#content .has-c-red-background-color {
  background-color: #e50011 !important;
}
#content .c-red {
  color: #e50011 !important;
}
#content .center {
  text-align: center !important;
}
#content .right {
  text-align: right !important;
}
#content .font-xs {
  font-size: 12px;
  font-size: 0.75rem;
}
#content .font-s {
  font-size: 14px;
  font-size: 0.875rem;
}
#content .font-m {
  font-size: 16px;
  font-size: 1rem;
}
#content .font-l {
  font-size: 18px;
  font-size: 1.125rem;
}
#content .font-xl {
  font-size: 20px;
  font-size: 1.25rem;
}
#content a {
  word-break: break-all;
}
#content h1 {
  font-size: 40px;
  font-size: 2.5rem;
  color: #004389;
  font-weight: bold;
  margin: 70px 0 35px;
  line-height: 1.4;
}
#content h2 {
  font-size: 39px;
  font-size: 2.4375rem;
  color: #004389;
  margin: 100px 0 30px;
  line-height: 1;
  padding: 0 0.6em; /*上下 左右の余白*/
  background: transparent;
  position: relative;
}
#content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  height: 38px;
  width: 8px;
  background-color: #004389;
}
#content h2:first-child {
  margin-top: 0;
}
#content .sub-header h2,
#content .sub-header h3,
#content .sub-header h4,
#content .sub-header h5 {
  margin-top: 0;
}
#content .page-header h2,
#content .page-header h3,
#content .page-header h4,
#content .page-header h5 {
  margin-top: 0;
}
#content h3:first-child {
  margin-top: 0;
}
#content h4:first-child {
  margin-top: 0;
}
#content h5:first-child {
  margin-top: 0;
}
#content h6:first-child {
  margin-top: 0;
}
#content h3 {
  font-size: 30px;
  font-size: 1.875rem;
  color: #004389;
  margin: 74px 0 20px;
  line-height: 1.4;
}
#content h4 {
  font-size: 26px;
  font-size: 1.625rem;
  color: #004389;
  margin: 50px 0 15px;
  line-height: 1.4;
}
#content h5 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #004389;
  margin: 30px 0 10px;
  line-height: 1.4;
}
#content h6 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #004389;
  margin: 20px 0 5px;
  line-height: 1.4;
}
#content ul {
  list-style-type: disc;
  /*
  margin: 0.5em 0 0.8em 1.5em;
  */
}
#content ol {
  margin: 0.5em 0 0.8em 1.5em;
}
#content ol li {
  line-height: 1.5;
}
#content strong {
  color: inherit;
}
#content table {
  width: 100%;
  margin: 0 auto;
}
#content table th {
  border-bottom: 1px solid #aaa;
  font-weight: bold;
  padding: 4px 4px;
  background-color: #ddd;
}
#content table td {
  border-bottom: 1px solid #aaa;
  padding: 4px 4px;
}
#content td.has-text-align-center,
#content th.has-text-align-center {
  text-align: center;
}
#content td.has-text-align-right,
#content th.has-text-align-right {
  text-align: right;
}
#content {
  /* 検索 */
}
#content .search-item {
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
#content .search-item h5 {
  margin-top: 5px;
}
#content .jumbo1 {
  color: #fff;
  padding: 1em;
  margin: 10px 0;
  border: 1px solid rgb(0, 42.0583941606, 86);
  background: #004389;
}
#content .jumbo1 a {
  color: #fff;
}
#content .biko {
  border: 1px solid #ccc;
  padding: 1em;
  margin: 10px 0;
}

/* サイトマップ */
#content ul.sitemap {
  margin-top: 1em;
  list-style-position: inside;
}
#content ul.sitemap > li {
  padding-bottom: 0.5em;
  text-indent: -1.5em;
  padding-left: 2.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #bbb;
  background: none;
}
#content ul.sitemap > li > ul.children {
  list-style-position: inside;
  margin-top: 0.5em;
  margin-left: 0;
  padding-left: 0;
}
#content ul.sitemap > li > ul.children li {
  padding-bottom: 0.5em;
  text-indent: -1.5em;
  padding-left: 2.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted #ccc;
}
#content ul.sitemap > li > ul.children li:last-child {
  border-bottom: none;
}

/* スマホメニュー PC非表示　*/
.drawer-hamburger,
.sliding-menu-content,
.js-menu-screen {
  display: none;
}

@media screen and (max-width: 1400px) {
  #topsec_strengths .sec_row,
  #topsec_news .sec_row,
  .page-footer .footer_flex,
  #footer-container {
    padding-left: 1em;
    padding-right: 1em;
  }
  #topsec_service .sec_col_text .sec_inner {
    padding: 0 1em !important;
  }
}
#utility-nav {
  margin-top: 20px;
}
#utility-nav .utility-nav-inner {
  margin: 0 auto;
  padding: 7px 2em;
  display: flex;
  justify-content: flex-end;
  gap: 3em;
}
#utility-nav .utility-nav-inner a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #002747;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
#utility-nav .utility-nav-inner a::after {
  content: "";
  padding-left: 18px;
  display: inline-block;
  width: 14px;
  height: 10px;
  background: url("../images/arrow_blue.png") center/contain no-repeat;
  flex-shrink: 0;
}
#utility-nav .utility-nav-inner a:hover {
  color: #004389;
}

/*ContactForm7カスタマイズ*/
table.CF7_table {
  width: 80%;
  margin: 0 auto;
  border: 3px solid #e5e5e5;
}

.CF7_table p {
  padding: 1em;
  margin-bottom: 0 !important;
}

table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
  display: table;
}

/*入力欄*/
.CF7_table input,
.CF7_table textarea {
  padding: 0.5em !important;
  border: 1px solid #d8d8d8;
  font-size: 1em !important;
  font-family: inherit !important;
  line-height: normal;
}

.CF7_table ::-moz-placeholder {
  color: #797979;
}

.CF7_table ::placeholder {
  color: #797979;
}

/*「必須」文字*/
.CF7_req {
  font-size: 0.7em;
  padding: 4px;
  background: #004389; /*ブルー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 0.6em;
}

/*「任意」文字*/
.CF7_unreq {
  font-size: 0.7em;
  padding: 4px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 0.6em;
}

/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 30%; /*横幅*/
    background-color: #ebedf5; /*ブルーグレー*/
    vertical-align: middle;
  }
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
  table.CF7_table {
    width: 95%;
  }
  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #ebedf5;
  }
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #004389 !important;
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
}

.CF7_btn {
  text-align: center;
  margin-top: 20px;
}

.wpcf7-spinner {
  width: 0;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .page-header #header-container .hd_row .hd_sitename {
    padding-left: 1em;
  }
  .gnavi li a {
    width: 90px;
    margin: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-underline-lr:hover::after {
    width: 90px;
  }
}/*# sourceMappingURL=design.css.map */