@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #222222;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  object-fit: cover;
}

#articleArea img {
  display: inline-block !important;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  font-weight: 500;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1080px;
  padding: 100px 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 60px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.header {
  width: 100%;
  padding: 30px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.header_white_box nav ul .dl-nav-list {
  position: relative;
  transition: all 0.3s;
}
.header_white_box nav ul .dl-nav-list .dropdown-box {
  visibility: hidden;
  opacity: 0;
  width: auto;
  height: auto;
  position: absolute;
  top: 39px;
  left: 83%;
  transform: translateX(-60%);
  transition: all 0.3s;
  display: flex;
  gap: 50px;
  background-color: #E5F7FF;
  padding: 15px 0 10px;
  z-index: 3;
}
.header_white_box nav ul .dl-nav-list .dropdown-box_list {
  gap: 10px;
  display: flex;
  font-size: 1.5rem;
}
.header_white_box nav ul .dl-nav-list .dropdown-box_list_item {
  width: 180px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 20px;
  border-bottom: 1px solid #00A0E9;
}
.header_white_box nav ul .dl-nav-list .dropdown-box_list_item:last-of-type {
  border-bottom: none;
}
.header_white_box nav ul .dl-nav-list .dropdown-box_list_item a:hover {
  color: #00A0E9;
}
.header_white_box nav ul .dl-nav-list:hover .dropdown-box {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s;
}
.header_white_box {
  flex: 1;
  border-radius: 30px;
  padding: 7px 30px;
  background-color: #ffffff;
  justify-content: space-between;
  align-items: center;
}
.header_white_box nav {
  flex: 1;
}
.header_white_box nav ul {
  justify-content: flex-end;
  align-items: center;
  gap: 10px 40px;
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0px 0px 5px #fff;
}
.header_white_box nav a:hover {
  color: #00A0E9;
}
.header_logo:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 200px;
}
.header_menu_icon {
  gap: 20px;
}
.header_menu_icon li {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 13px;
  background-color: #FF9800;
  color: #ffffff;
  text-align: center;
  text-shadow: none;
}
.header_menu_icon a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_menu_icon a:link,
.header_menu_icon a:visited {
  color:  #ffffff;
}
.header_menu_icon li:nth-of-type(1) {
  display: none;
}
.header_menu_icon a i {
  font-size: 2.4rem;
}
@media screen and (max-width: 1603px) {
  .header {
    padding: 20px;
  }
}
@media screen and (max-width: 1089px) {
  .header {
    padding: 15px;
  }
  .header_white_box {
    width: 220px;
    flex: none;
  }
  .header nav {
    display: none;
  }
  .header .header_menu_icon {
    display: none;
  }
}

.burger_btn {
  display: none;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 8px;
  background-color: #FF9800;
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1089px) {
  .burger_btn {
    display: block;
  }
}

.overlay {
  display: none;
  width: 98%;
  height: 100%;
  overflow-y: scroll;
  overflow-y: scroll;
  padding: 70px 20px 50px;
  background-color: #ffffff;
  text-align: left;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translateX(-105%);
  transition: 0.5s ease;
}
.overlay.show {
  transform: translateX(0);
}
.overlay .close_btn {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 8px;
  background-color: #FF9800;
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.overlay a:has(+ ul) {
  display: block;
  margin-bottom: 20px;
  font-size: 1.6rem;
  text-decoration: underline;
  color: #00A0E9;
}
.overlay ul:not(.inner_menu) {
  padding-bottom: 20px;
}
.overlay ul:not(.inner_menu) li {
  padding-bottom: 10px;
  border-bottom: 1px solid #00A0E9;
}
.overlay ul.inner_menu {
  padding: 0 0 0 20px;
}
.overlay ul.column {
  margin-bottom: 30px;
  gap: 10px;
  font-weight: 700;
}
.overlay ul.column a:hover {
  color: #00A0E9;
}
.overlay ul.wrap {
  padding-left: 20px;
  flex-direction: row;
  gap: 50px;
}
.overlay ul.header_menu_icon {
  display: flex;
}
.overlay ul.header_menu_icon {
  display: flex;
  gap: 10px;
  padding: 0;
}
.overlay ul.header_menu_icon li {
  border-bottom: none;
  width: calc((100vw - 50px) / 2);
  aspect-ratio: auto;
  border-radius: 5px;
  padding-top: 10px;
  background-color: #FF9800;
  color: #ffffff;
  text-align: center;
  text-shadow: none;
}
.overlay ul.header_menu_icon li .tel_num {
  text-decoration: none;
}
.overlay ul.header_menu_icon li i {
  font-size: 1.6rem;
  padding-left: 7px;
}
.overlay ul.header_menu_icon li:nth-of-type(1) {
  display: block;
}
.overlay ul.header_menu_icon li:nth-of-type(1) {
  display: block;
}
@media screen and (max-width: 1669px) {
  .overlay {
    display: block;
  }
}
footer {
  padding: 0;
  background-color: transparent;
  color: #222222;
  text-align: left;
  font-size: 1.6rem;
}
.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  background-image: url(../../img/footer_bg.png);
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.footer .container {
  padding-bottom: 60px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 30px;
  position: relative;
}
.footer_address_area {
  width: 40%;
  width: 400px;
}
.footer_address_area p {
  margin-bottom: 20px;
}
.footer_address_area p + img {
  width: auto;
  padding: 10px;
  background-color: #ffffff;
}
.footer_address_area img:has(+ p) {
  width: 280px;
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}
.footer_menu_area div.flex_box {
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 10px 70px;
}
.footer_menu_area ul.column {
  gap: 20px;
}
.footer_menu_area ul.wrap {
  flex-direction: row;
  justify-content: flex-end;
  gap: 40px;
  font-size: 1.4rem;
}
.footer_menu_area ul a:hover {
  color: #00A0E9;
}
@media screen and (max-width: 767px) {
  .footer {
    background-position: left bottom;
  }
  .footer .container {
    padding-bottom: 30px;
  }
  .footer_address_area {
    width: 100%;
  }
  .footer_menu_area {
    width: 100%;
  }
  .footer_menu_area div.flex_box {
    margin-bottom: 20px;
  }
  .footer_menu_area ul.column {
    gap: 10px;
  }
  .footer_menu_area ul.wrap {
    justify-content: flex-start;
  }
}
#articleTitle {
  border: none;
}