@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

html,
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  overflow-y: scroll;
}

body {
  font-size: 1.6rem;
  line-height: 1.6875;
}

body.no-scroll {
  overflow-y: hidden;
  height: 100vh;
}

.center_box {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.pc_block {
  display: block;
}

.sp_block {
  display: none;
}

.pc_flex {
  display: flex;
}

.sp_flex {
  display: none;
}

.disp_usual {
  opacity: 1;
}
.disp_usual:hover {
  opacity: 0;
}

.disp_hover {
  opacity: 0;
}
.disp_hover:hover {
  opacity: 1;
}

:where(body, button, input, textarea, select) {
  color: #383A3A;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

a {
  color: #0065bb;
}
a:hover {
  text-decoration: none;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
header {
  width: 100%;
  height: 116px;
}

.header_inner {
  width: calc(100% - 200px);
  height: 100%;
  margin-left: 100px;
  margin-right: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company_name {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 155px;
  height: 47px;
}
.company_name img {
  width: 100%;
  height: auto;
}

.header_info_block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.tel_info {
  color: #1851B6;
  font-size: 14px;
  font-weight: bold;
  background-color: #F9F9F9;
  border: solid 1px #F9F9F9;
  width: 168px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
  line-height: 30px;
}

.nav_menu {
  display: flex;
  justify-content: center;
  gap: 52px;
}
.nav_menu a.nav_item {
  display: inline-block;
  position: relative;
  padding-inline: 2px;
}
.nav_menu a.nav_item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #1851B6;
  transition: width 0.3s ease, left 0.3s ease;
}
.nav_menu a.nav_item:hover::after {
  width: 100%;
  left: 0;
}

.nav_item {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #383A3A;
}

.nav_contact_link {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #1851B6;
  border: solid 1px #1851B6;
  width: 168px;
  height: 32px;
  border-radius: 16px;
  text-align: center;
  line-height: 30px;
  transition: 0.3s;
}
.nav_contact_link:hover {
  color: #1851B6;
  background-color: #fff;
}

/*ハンバーガーメニュー：トグルボタン*/
.hamburger_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 24px;
  position: absolute;
  top: 28px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
}

.hamburger_menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: 0.3s;
}

.hamburger_menu span:first-of-type { /* ハンバーガーメニューの1番目の線 非アクティブ */
  top: 0;
}

.hamburger_menu span:nth-of-type(2) { /* ハンバーガーメニューの2番目の線 非アクティブ */
  top: 50%;
}

.hamburger_menu span:last-of-type { /* ハンバーガーメニューの3番目の線 非アクティブ */
  top: 100%;
}

.hamburger_menu.active span:first-of-type { /* ハンバーガーメニューの1番目の線 アクティブ */
  top: 50%;
  transform: rotate(225deg);
}

.hamburger_menu.active span:nth-of-type(2) { /* ハンバーガーメニューの2番目の線 アクティブ */
  opacity: 0; /* 透明にする */
}

.hamburger_menu.active span:last-of-type { /* ハンバーガーメニューの3番目の線 アクティブ */
  top: 50%;
  transform: rotate(-225deg);
}

#bar_color span {
  background-color: #1851B6;
}

/* スライドメニューのスタイル */
.slide_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
}

.slide_menu_header {
  width: fit-content;
  height: 86px;
  display: flex;
  justify-content: left;
  align-items: center;
  padding-left: 20px;
}

.slide_menu ul {
  list-style: none;
  padding: 40px 0 20px;
  margin-top: 10px;
}

.slide_menu li {
  text-align: center;
  padding: 24px 0;
  border-bottom: solid 1px;
  transition: all 0.3s;
  line-height: 1.1;
}

#slide_menu li:last-of-type {
  padding-bottom: 0;
}

.slide_menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.slide_menu li:hover {
  background-color: #c7c5c5;
}

.slide_menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.2);
}

a.tel_info_h {
  display: block;
  color: #1851B6;
  font-size: 16px;
  font-weight: bold;
  background-color: #eee;
  border: solid 1px #eee;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  text-align: center;
  line-height: 52px;
  margin-left: auto;
  margin-right: auto;
}

a.nav_menu_h {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background-color: #1851B6;
  border: solid 1px #1851B6;
  width: 240px;
  height: 56px;
  border-radius: 28px;
  text-align: center;
  line-height: 52px;
  transition: 0.3s;
  margin-left: auto;
  margin-right: auto;
}
a.nav_menu_h:hover {
  color: #1851B6;
  background-color: #fff;
}

/*タイトル（点線下線）*/
.dotted_title {
  font-size: 32px;
  font-weight: bold;
  border-bottom: dotted 3px #1851B6;
  width: fit-content;
}

/*下層ページ共通ヘッダー（ファーストビュー）*/
.lower_header {
  background-color: #FFFCF1;
  width: 100%;
  height: 302px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.lower_header .lower_header_bg01 {
  position: absolute;
  width: 287px;
  height: auto;
  top: -20px;
  left: -20px;
  z-index: 1;
}
.lower_header .lower_header_bg02 {
  position: absolute;
  width: 256px;
  height: auto;
  bottom: -8px;
  right: -26px;
  z-index: 1;
}
.lower_header .lower_header_title {
  font-size: 40px;
  font-weight: bold;
  color: #383A3A;
  padding: 4px 12px;
  background-color: rgba(255, 255, 255, 0.7);
  width: fit-content;
  height: auto;
  z-index: 2;
}

/*パンくずナビ*/
.breadcrumb {
  max-width: 1500px;
  height: 20px;
  padding: 0 100px;
  margin-top: 23px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  line-height: 1.3;
}
.breadcrumb .bread_top:hover {
  border-bottom: solid 1px #0065bb;
}
.breadcrumb .bread_page {
  position: relative;
}
.breadcrumb .bread_page_arrow {
  position: absolute;
  display: inline-block;
  width: 3.8px;
  height: 6.7px;
  left: -10px;
  top: calc(50% - 3.3px);
}
.breadcrumb .bread_page_arrow::before,
.breadcrumb .bread_page_arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 5px;
  height: 1px;
  border-radius: 9999px;
  background-color: #707070;
  transform-origin: calc(100% - 0.5px) 50%;
}
.breadcrumb .bread_page_arrow::before {
  transform: rotate(45deg);
}
.breadcrumb .bread_page_arrow::after {
  transform: rotate(-45deg);
}

.kari {
  height: 800px;
}

.news_section.no_news {
  padding: 60px 0;
  text-align: center;
}

/*-------------------------
      コンタクトボックス
---------------------------*/
.contact_link_box {
  width: 100%;
  padding: 0 16px;
}

.contact_link_box_inner {
  position: relative;
  width: 100%;
  max-width: 920px;
  padding: 60px 16px 45px;
  margin-left: auto;
  margin-right: auto;
  background-color: #F9F9F9;
  border-radius: 24px;
}
.contact_link_box_inner p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

#contact_item01 {
  position: absolute;
  width: 120px;
  height: auto;
  bottom: -28px;
  left: -12px;
}

#contact_item02 {
  position: absolute;
  width: 160px;
  height: auto;
  top: -25px;
  right: -34px;
}

.contact_link_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  position: relative;
}

.telman {
  width: 58px;
  height: auto;
}

.radio_waves {
  position: absolute;
  width: 45px;
  height: auto;
  top: -18px;
  left: -20px;
}

.contact_tel {
  color: #1851B6;
  font-size: 22px;
  font-weight: bold;
}

.nav_contact_link_outer {
  border-left: 1px solid transparent; /* サイズ1pxで透明なボーダーを設定 */
  border-image: repeating-linear-gradient(to bottom, #1851B6 0, #1851B6 2px, transparent 2px, transparent 4px);
  border-image-slice: 1; /* ボーダーをスライスして適用 */
}
.nav_contact_link_outer .nav_contact_link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  width: 223px;
  height: 46px;
  line-height: 43px;
  border-radius: 23px;
  margin-left: 20px;
}

/*----------------------
        フッター
------------------------*/
footer {
  width: 100%;
  background-color: #FFFCF1;
}

.footer_inner {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 100px 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-image: url(../images/footer_item01.png);
  background-repeat: no-repeat;
  background-position: right bottom -20px;
  background-size: 283px 296px;
}
.footer_inner * {
  color: #333;
  font-weight: 400;
}
.footer_inner .nav_contact_link {
  color: #fff;
}
.footer_inner .nav_contact_link:hover {
  color: #1851B6;
}

.footer_block p, .footer_block a {
  font-size: 16px;
}

.footer_contact_block {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
}

.contact_icon {
  color: #fff;
  background-color: #1851B6;
  width: 56px;
  height: 20px;
  border-radius: 10px;
  text-align: center;
  line-height: 20px;
  font-size: 13px;
}

small {
  font-size: 13px;
}

.pagetop {
  position: absolute;
  bottom: 40px;
  right: 100px;
  width: 57px;
  height: 57px;
  transition: 0.3s;
}

@media (min-width: 740px){
  #hamburger_area * {
    display: none;
  }
}

@media (max-width: 960px){
  body {
    font-size: 1.4rem;
    text-align: justify;
  }
  .mb30 {
    margin-bottom: 25px;
  }
  .mb35 {
    margin-bottom: 30px;
  }
  .mb40 {
    margin-bottom: 30px;
  }
  .mb45 {
    margin-bottom: 40px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb65 {
    margin-bottom: 30px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .mb75 {
    margin-bottom: 35px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb85 {
    margin-bottom: 40px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .mb95 {
    margin-bottom: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb110 {
    margin-bottom: 55px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb125 {
    margin-bottom: 65px;
  }
  .mb130 {
    margin-bottom: 60px;
  }
  .mb140 {
    margin-bottom: 60px;
  }
  .mb150 {
    margin-bottom: 60px;
  }
  .mb160 {
    margin-bottom: 70px;
  }
  .mb170 {
    margin-bottom: 70px;
  }
  .mb180 {
    margin-bottom: 70px;
  }
  .mb190 {
    margin-bottom: 70px;
  }
  .mb200 {
    margin-bottom: 70px;
  }
  .header_inner {
    width: calc(100% - 100px);
    margin-left: 50px;
    margin-right: 50px;
  }
  .nav_menu {
    gap: 32px;
  }
  .footer_inner {
    padding: 50px 50px 40px;
  }
  .pagetop {
    right: 50px;
  }
}

@media (max-width: 740px){
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .pc_flex {
    display: none;
  }
  .sp_flex {
    display: flex;
  }
  header {
    height: 86px;
  }
  .header_inner {
    margin-left: 20px;
  }
  .company_name img {
    width: 88%;
    height: auto;
  }
  .tel_info {
    display: none;
  }
  .nav_menu {
    display: none;
  }
  .dotted_title {
    font-size: 22px;
    margin-left: auto;
    margin-right: auto;
  }
  .lower_header {
    height: 240px;
  }
  .lower_header .lower_header_bg01 {
    width: 200px;
  }
  .lower_header .lower_header_bg02 {
    width: 185px;
  }
  .lower_header .lower_header_title {
    font-size: 32px;
  }
  .breadcrumb {
    padding: 0 20px;
  }
  .contact_link_box_inner {
    padding: 80px 16px 80px;
  }
  .contact_link_box_inner p {
    font-size: 16px;
  }
  .contact_link_flex {
    flex-direction: column;
  }
  .contact_flex {
    padding-right: 0;
  }
  .telman {
    width: 48px;
  }
  .nav_contact_link_outer {
    border-left: none;
    border-top: 1px solid transparent; /* サイズ1pxで透明なボーダーを設定 */
    border-image: repeating-linear-gradient(to right, #1851B6 0, #1851B6 2px, transparent 2px, transparent 4px);
    border-image-slice: 1;
  }
  .nav_contact_link_outer .nav_contact_link {
    margin-left: 0;
    margin-top: 10px;
  }
  .footer_inner {
    background-size: 213px 223px;
    background-position: right -65px bottom -5px;
  }
  .pagetop {
    right: 18px;
    bottom: auto;
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}