@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: 450px;
  margin-left: auto;
  margin-right: auto;
  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: #000;
  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;
}

/*ハンバーガーメニュー：トグルボタン*/
.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;
}

footer {
  width: 100%;
  height: 77px;
  background-color: #CD3945;
}

.footer p {
  font-size: 16px;
  line-height: 77px;
  color: #fff;
  text-align: center;
}

@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;
  }
}

@media (max-width: 767px){
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
  .pc_flex {
    display: none;
  }
  .sp_flex {
    display: flex;
  }
  .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;
  }
}

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