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

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

.page_title {
  height: 250px;
  background-image: url(../img/page_title_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.page_title .head_text {
  width: 90%;
  max-width: 480px;
  border-radius: 0 20px 0 0;
  padding: 20px 40px;
  margin-bottom: 0;
  background-color: #ffffff;
  color: #00A0E9;
  font-size: 2.8rem;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: 0;
}
.page_title .head_text span {
  display: inline-block;
  margin-left: 20px;
  color: #222222;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .page_title .head_text {
    padding: 10px 20px;
    font-size: 2.2rem;
  }
  .page_title .head_text span {
    display: block;
    margin-left: 0;
  }
}

.pan_box {
  width: 100%;
  float: left;
}

#pan {
  width: 90%;
  max-width: 1200px;
  margin: 10px auto 0;
  font-weight: 500;
  color: #222222;
}
#pan li {
  font-size: 1.2rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
#pan li::before {
  font-family: FontAwesome;
  content: "\f105";
  position: absolute;
  right: 0px;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
}
#pan li:last-child::before {
  display: none;
}
#pan a {
  text-decoration: underline;
}
#pan a:hover {
  color: #00A0E9;
}
@media screen and (max-width: 767px) {
  #pan {
    margin-left: 20px;
  }
}

.btn {
  width: 250px;
  border-radius: 30px;
  border: 2px solid #00A0E9;
  padding: 15px;
  text-align: center;
  box-shadow: 4px 4px 10px #D9D9D9;
  font-weight: 500;
  line-height: 1;
}
.btn:hover {
  opacity: 0.7;
}
.btn_box {
  text-align: center;
}
.head_text {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 500;
}
.head_text span {
  display: block;
  color: #00A0E9;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
}
.head_text_center {
  text-align: center;
}
.text_main {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}

.tel_num {
  text-decoration: underline;
}
.tel_num:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
    text-decoration: none;
  }
}

.fixed_search_link {
  border-radius: 10px 0 0 10px;
  padding: 25px 15px;
  background-color: #00A0E9;
  color: #ffffff;
  position: fixed;
  top: 30%;
  right: 0;
  writing-mode: vertical-rl;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fixed_search_link {
    width: 100%;
    border-radius: 0;
    padding: 20px;
    writing-mode: horizontal-tb;
    font-size: 1.6rem;
    top: auto;
    bottom: 0;
    text-align: center;
  }
}

.scroll_top {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  padding-top: 8px;
  background-color: #00A0E9;
  color: #ffffff;
  box-shadow: 0 0 10px #ffffff;
  text-align: center;
  font-size: 3rem;
  line-height: 1;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
.scroll_top:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .scroll_top {
    bottom: 70px;
  }
}

@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 {
  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 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 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;
  height: 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 li:nth-of-type(1) {
  display: none;
}
.header_menu_icon li:nth-of-type(2) a {
  pointer-events: all;
}
.header_menu_icon a {
  display: block;
  width: 100%;
  height: 100%;
}
.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;
    position: fixed;
    right: 20px;
  }
}

.overlay {
  display: none;
  width: 100%;
  height: 100%;
  padding: 70px 20px 50px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  transform: translateY(-105%);
  transition: 0.5s ease;
  overflow-y: scroll;
}
.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 {
  gap: 10px;
  font-weight: 500;
}
.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;
  gap: 10px;
  padding: 0;
}
.overlay ul.header_menu_icon li {
  border-bottom: none;
  width: calc((100vw - 50px) / 2);
  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;
}
@media screen and (max-width: 1669px) {
  .overlay {
    display: block;
  }
}

.contact_area {
  background-color: #F5F5F5;
}
.contact_area .text_main {
  margin-bottom: 20px;
  text-align: center;
}
.contact_area .text_main + p {
  margin-bottom: 10px;
  color: #00A0E9;
  text-align: center;
  font-size: 2rem;
}
.contact_area ul {
  margin-bottom: 50px;
  justify-content: center;
  gap: 30px 40px;
}
.contact_area ul + a {
  width: 100%;
  border-radius: 20px;
  padding: 30px 40px;
  text-align: left;
}
.contact_area ul + a h3 {
  margin-bottom: 10px;
}
.contact_area ul + a .icon_area i {
  color: #FF9800;
}
.contact_area li {
  width: 240px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.contact_area a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px 30px 20px;
  overflow: hidden;
  background-color: #ffffff;
  color: #00A0E9;
  text-align: center;
  box-shadow: 10px 10px 10px #D9D9D9;
  position: relative;
}
.contact_area a:hover {
  opacity: 0.7;
}
.contact_area a:hover i {
  transform: rotate(-135deg) translateX(10px);
}
.contact_area a .icon_area {
  background-color: #00A0E9;
}
.contact_area a .icon_area i {
  color: #ffffff;
}
.contact_area .recruit-btn {
  aspect-ratio: auto;
  background-color: #00A0E9;
  color: #ffffff;
}
.contact_area .recruit-btn .icon_area {
  background-color: #fff;
}
.contact_area .recruit-btn .icon_area i {
  color: #FF9800;
}
.contact_area h3 {
  font-size: 2rem;
}
.contact_area img {
  height: 135px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .contact_area ul {
    margin-bottom: 30px;
    align-items: center;
  }
  .contact_area ul + a {
    padding: 30px 20px;
  }
  .contact_area li {
    width: 310px;
    aspect-ratio: auto;
  }
  .contact_area a {
    padding: 30px 20px 30px;
  }
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  background-image: url(../img/footer_bg.webp);
  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 {
  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: 100px;
  }
  .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;
  }
}

.first_view {
  width: 100%;
  height: 90vh;
  max-height: 950px;
  position: relative;
}
.first_view_slider {
  width: 100%;
  height: 100%;
  background-image: url(../img/fv_slide01.webp), url(../img/fv_slide02.webp), url(../img/fv_slide03.webp), url(../img/fv_slide04.webp), url(../img/fv_slide05.webp), url(../img/fv_slide06.webp), url(../img/fv_slide07.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  animation: slide 25s infinite;
}
@keyframes slide {
  0% {
    background-image: url(../img/fv_slide01.webp);
  }
  14.28% {
    background-image: url(../img/fv_slide02.webp);
  }
  28.56% {
    background-image: url(../img/fv_slide03.webp);
  }
  42.84% {
    background-image: url(../img/fv_slide04.webp);
  }
  57.12% {
    background-image: url(../img/fv_slide05.webp);
  }
  71.4% {
    background-image: url(../img/fv_slide06.webp);
  }
  85.68% {
    background-image: url(../img/fv_slide07.webp);
  }
  100% {
    background-image: url(../img/fv_slide01.webp);
  }
}
.first_view_message {
  width: 90%;
  max-width: 1000px;
  border-radius: 0 30px 0 0;
  padding: 30px 50px 10px;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.first_view_message_main {
  margin-bottom: 10px;
  font-size: 6.4rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.5;
}
.first_view_message_sub {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 1539px) {
  .first_view {
    max-height: 700px;
  }
  .first_view_message {
    padding: 20px 30px;
  }
  .first_view_message_main {
    font-size: 4.8rem;
  }
  .first_view_message_sub {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .first_view {
    max-height: 550px;
  }
  .first_view_slider {
    background-image: url(../img/sp_fv_slide01.webp), url(../img/sp_fv_slide02.webp), url(../img/sp_fv_slide03.webp), url(../img/sp_fv_slide04.webp), url(../img/sp_fv_slide05.webp), url(../img/sp_fv_slide06.webp), url(../img/sp_fv_slide07.webp);
  }
  @keyframes slide {
    0% {
      background-image: url(../img/sp_fv_slide01.webp);
    }
    14.28% {
      background-image: url(../img/sp_fv_slide02.webp);
    }
    28.56% {
      background-image: url(../img/sp_fv_slide03.webp);
    }
    42.84% {
      background-image: url(../img/sp_fv_slide04.webp);
    }
    57.12% {
      background-image: url(../img/sp_fv_slide05.webp);
    }
    71.4% {
      background-image: url(../img/sp_fv_slide06.webp);
    }
    85.68% {
      background-image: url(../img/sp_fv_slide07.webp);
    }
    100% {
      background-image: url(../img/sp_fv_slide01.webp);
    }
  }
  .first_view_message {
    padding: 15px 20px 10px;
  }
  .first_view_message_main {
    font-size: 2.8rem;
  }
  .first_view_message_sub {
    font-size: 1.6rem;
  }
}

.top_belief {
  background-image: url(../img/top_about_bg.webp);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
.top_belief .container {
  padding-bottom: 0;
}
.top_belief img {
  max-width: 416px;
  width: 100%;
  margin: 0 auto 60px;
  height: auto;
}
.top_belief p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_belief p {
    text-align: left;
  }
}
.top_about {
  background-image: url(../img/top_about_bg.webp);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
.top_about .flex_box {
  margin-bottom: 40px;
  align-items: flex-start;
  gap: 40px 10%;
}
.top_about .text_area {
  flex: 1;
}
.top_about img {
  width: 40%;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .top_about img {
    width: 100%;
  }
}
.top_about_section {
  background: none;
}
.top_service {
  background-color: #E5F7FF;
  background-image: url(../img/top_service_bg.webp);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.top_service h2 + p {
  padding: 0 30px;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.top_service ul {
  gap: 45px;
}
.top_service li {
  width: 330px;
}
.top_service li i {
  color: #FF9800;
}
.top_service_item {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.top_service_item:hover {
  opacity: 0.7;
}
.top_service_item:hover i {
  transform: rotate(-135deg) translateX(10px);
}
.top_service_item_title {
  display: inline-block;
  border-radius: 0 20px 20px 0;
  padding: 7px 20px;
  background-color: #FF9800;
  color: #fff;
  font-weight: 500;
  position: absolute;
  top: 30px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_service h2 + p {
    padding: 0;
  }
  .top_service ul {
    align-items: center;
  }
}
.top_feature ul {
  margin-bottom: 40px;
  justify-content: center;
  gap: 35px 25px;
}
.top_feature li {
  width: 250px;
  position: relative;
}
.top_feature li span {
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: 0;
  left: 0;
}
.top_feature li img {
  margin: 0 auto 10px;
}
.top_feature li h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 2rem;
}
.top_feature li p {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .top_feature ul {
    align-items: center;
  }
  .top_feature li {
    max-width: 300px;
    width: 100%;
  }
  .top_feature li img {
    width: 200px;
  }
  .top_feature li h3 {
    font-size: 1.8rem;
  }
}

.icon_area {
  width: 150px;
  height: 75px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #ffffff;
  color: #00A0E9;
  font-size: 2.4rem;
  text-align: center;
  position: absolute;
  bottom: -20px;
  right: -50px;
  transform: rotate(135deg);
}
.icon_area i {
  margin-top: 35px;
  transform: rotate(-135deg);
  transition: 0.3s ease;
}

.news li {
  border-bottom: 1px solid #D9D9D9;
}
.news a {
  display: block;
}
.news a:hover {
  color: #FF9800;
}
.news dl {
  font-weight: 500;
  align-items: center;
}
.news dt,
.news dd {
  padding: 20px 50px;
}
.news dt {
  width: 20%;
  color: #FF9800;
}
.news dd {
  width: 80%;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  max-lines: 1;
  block-ellipsis: auto;
  continue: -webkit-legacy;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news dl {
    align-items: flex-start;
  }
  .news dt,
  .news dd {
    width: 100%;
  }
  .news dt {
    padding: 15px 10px 7px;
  }
  .news dd {
    padding: 0 10px 15px;
  }
}

.about_intro .container {
  padding-bottom: 0;
}
.about_intro .reverse {
  flex-direction: row-reverse;
}
.about_intro .reverse p span {
  font-weight: 900;
  color: #00AFF5;
}
@media screen and (max-width: 767px) {
  .about_intro .reverse {
    flex-direction: column;
  }
}
.about_feature .container {
  padding-top: 0;
}
.about_flow {
  background-color: #E5F7FF;
  font-weight: 500;
}
.about_flow ul {
  margin-top: 50px;
  gap: 50px;
}
.about_flow li {
  border-radius: 20px;
  padding: 40px 40px 50px;
  background-color: #ffffff;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px 20px;
}
.about_flow li h3 {
  width: 180px;
}
.about_flow li p {
  flex: 1;
  max-width: 650px;
  font-weight: 400;
}
.about_flow li span {
  color: #FF9800;
  font-family: "Inter", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: -40px;
  left: 10px;
}
@media screen and (max-width: 767px) {
  .about_flow li {
    padding: 30px;
  }
  .about_flow li span {
    font-size: 3.6rem;
    top: -30px;
  }
  .about_flow li h3 {
    width: 100%;
  }
}
.about_merit_list {
  margin-top: 40px;
  justify-content: center;
  gap: 40px;
}
.about_merit_item {
  width: 50%;
  max-width: 480px;
  border: 2px solid #00AFF5;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 10px 10px 10px #D9D9D9;
}
.about_merit_item ul {
  margin-top: 10px;
  gap: 5px;
}
.about_merit_item li {
  position: relative;
  padding-left: 25px;
}
.about_merit_item li:before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url(../img/about_check_icon.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}
.about_merit_img {
  margin: 60px auto 0;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.about_merit_img li {
  text-align: center;
  aspect-ratio: 1/1;
  color: #ffffff;
  font-size: 2rem;
}
.about_merit_img li:not(:last-child) {
  position: relative;
}
.about_merit_img li:not(:last-child):after {
  content: "▶";
  color: #E5F7FF;
  position: absolute;
  top: 50%;
  right: -33px;
  transform: translateY(-50%);
}
.about_merit_img li:nth-of-type(1) {
  width: 150px;
  border-radius: 50%;
  padding-top: 55px;
  background-color: #00AFF5;
}
.about_merit_img li:nth-of-type(1):before {
  content: "";
  width: 105%;
  height: 105%;
  border-radius: 50%;
  border: 1px solid #00AFF5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about_merit_img li:nth-of-type(5) {
  width: 150px;
  padding-top: 55px;
  background-color: #00AFF5;
}
.about_merit_img li.step {
  width: 120px;
  padding-top: 25px;
  border-radius: 50%;
  background-color: #FF9800;
}
.about_merit_img li.step span {
  font-size: 1.8rem;
}
@media screen and (max-width: 910px) {
  .about_merit_img {
    margin: 40px auto 0;
    flex-direction: column;
  }
  .about_merit_img li {
    aspect-ratio: auto;
    font-size: 1.8rem;
  }
  .about_merit_img li:not(:last-child):after {
    content: "▼";
    top: auto;
    right: auto;
    bottom: -37px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .about_merit_img li:nth-of-type(1) {
    width: 270px;
    border-radius: 10px;
    padding: 20px;
  }
  .about_merit_img li:nth-of-type(1):before {
    height: 115%;
    border-radius: 10px;
  }
  .about_merit_img li:nth-of-type(5) {
    width: 270px;
    border-radius: 10px;
    padding: 20px;
  }
  .about_merit_img li.step {
    width: 240px;
    border-radius: 10px;
    padding: 20px;
  }
  .about_merit_img li.step span {
    font-size: 1.6rem;
  }
  .about_merit_img li.step p {
    display: inline-block;
    padding-left: 30px;
  }
}
.about_merit h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}
.about_merit h3 span {
  background: linear-gradient(transparent 50%, rgba(255, 152, 0, 0.3) 50%);
}
.about_merit img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about_merit_list {
    align-items: center;
  }
  .about_merit_item {
    width: 100%;
    max-width: 350px;
    padding: 30px 20px;
  }
  .about_merit h3 {
    line-height: 1.5;
  }
}
.about_category {
  background: none;
}
.about_category .container {
  padding-top: 0;
}
.about_category a:not(.btn) {
  border-radius: 0;
}
.about_category img {
  aspect-ratio: 5/3;
  border-radius: 20px;
  margin-bottom: 10px;
}
.about_category .top_service_item_title {
  background-color: #FF9800;
  color: #ffffff;
}
.about_category .btn_box {
  margin-top: 10px;
}
.about_area {
  background-image: url(../img/about_area_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-weight: 500;
}
.about_area_box {
  width: 100%;
  max-width: 830px;
  margin: 40px auto 0;
}
.about_area_list {
  margin: 30px 0 40px;
  justify-content: center;
  gap: 40px;
}
.about_area_list + p {
  text-align: center;
}
.about_area_item {
  width: 100%;
  max-width: 750px;
  position: relative;
  padding: 60px 40px 70px;
  background-color: #ffffff;
  position: relative;
}
.about_area_item h3 {
  display: inline-block;
  border-radius: 30px;
  padding: 5px 25px;
  background-color: #00AFF5;
  color: #ffffff;
  font-size: 2rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.about_area_item p {
  font-size: 1.8rem;
  text-align: center;
}
.about_area_item img {
  margin: 30px auto 0;
}
.about_area_item span {
  display: block;
  text-align: right;
  font-size: 1.2rem;
  position: absolute;
  bottom: 20px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .about_area_list {
    align-items: center;
  }
}
.about_faq ul {
  gap: 50px;
}
.about_faq li {
  border-radius: 20px;
  padding: 20px 40px;
  background-color: #F5F5F5;
}
.about_faq div.flex_box {
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}
.about_faq div.flex_box p {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
}
.about_faq div.flex_box p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.about_faq_icon {
  display: inline-block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 7px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}
.about_faq_question {
  position: relative;
  cursor: pointer;
  transition: 0.3s ease;
}
.about_faq_question .about_faq_icon {
  background-color: #00AFF5;
  color: #ffffff;
}
.about_faq_question i {
  color: #9E9E9E;
  font-size: 2.5rem;
  position: absolute;
  top: 10px;
  right: 0;
}
.about_faq_question:hover {
  opacity: 0.7;
}
.about_faq_question.opened i {
  transform: rotate(180deg);
}
.about_faq_answer {
  display: none;
  border-top: 1px solid #9E9E9E;
  padding-top: 15px;
  margin-top: 15px;
}
.about_faq_answer .about_faq_icon {
  background-color: #ffffff;
  color: #00AFF5;
}
@media screen and (max-width: 767px) {
  .about_faq li {
    padding: 20px;
  }
  .about_faq div.flex_box {
    gap: 10px;
  }
  .about_faq div.flex_box p {
    font-size: 1.6rem;
  }
  .about_faq_icon {
    width: 30px;
    padding-top: 0;
    font-size: 1.6rem;
  }
  .about_faq_question i {
    top: -10px;
    right: -10px;
    font-size: 2rem;
  }
}
.about_difference {
  background-color: #E5F7FF;
}
.about_difference_box {
  width: 100%;
  max-width: 950px;
  margin: 40px auto 0;
  padding: 30px 40px;
  background-color: #ffffff;
}
.about_difference img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about_difference_box {
    padding: 30px 20px;
    margin: 20px auto 0;
  }
}
.about_support .container {
  padding-top: 0;
}
.about_support h2 {
  font-size: 2.8rem;
}
.about_support h2 span {
  background: linear-gradient(transparent 50%, rgba(0, 175, 245, 0.3) 50%);
}
.about_support p {
  text-align: center;
}
.about_support .about_merit_list {
  margin-bottom: 50px;
  align-items: center;
}
.about_support .about_merit_item {
  width: 100%;
  max-width: 850px;
}
.about_support .about_merit_item h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.about_support .about_merit_item h3 span {
  background: linear-gradient(transparent 50%, rgba(0, 175, 245, 0.3) 50%);
  font-weight: 700;
}
.about_support .about_merit_item ul {
  gap: 10px;
  align-items: flex-start;
  flex-direction: row;
}
.about_support .about_merit_item li {
  display: inline-block;
  border-radius: 10px;
  padding: 5px 20px;
  background-color: #E5F7FF;
  font-size: 1.4rem;
  font-weight: 500;
}
.about_support .about_merit_item li:before {
  display: none;
}
.about_support .about_merit_item li.disable {
  background-color: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .about_support .container {
    padding-top: 30px;
  }
  .about_support h2 {
    font-size: 2.4rem;
  }
  .about_support p {
    text-align: left;
  }
}
.about_achevement {
  background-image: url(../img/top_service_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about_achevement h2 + p {
  text-align: center;
}
.about_achevement dl {
  width: 100%;
  max-width: 850px;
  margin: 40px auto 0;
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
}
.about_achevement dt,
.about_achevement dd {
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px;
  background-color: #ffffff;
}
.about_achevement dt:nth-of-type(2n + 2),
.about_achevement dd:nth-of-type(2n + 2) {
  background-color: #E5F7FF;
}
.about_achevement dt {
  width: 25%;
}
.about_achevement dd {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .about_achevement h2 + p {
    text-align: left;
  }
  .about_achevement dt,
  .about_achevement dd {
    width: 100%;
  }
  .about_achevement dt {
    border-bottom: none;
    padding: 10px 20px 0;
  }
  .about_achevement dd {
    padding: 5px 20px 10px;
  }
}
.about_case ul {
  margin-bottom: 50px;
}
.about_case ul + p {
  text-align: center;
}
.about_case li {
  gap: 20px 40px;
  font-weight: 400;
}
.about_case li span {
  font-size: 4rem;
  top: -40px;
}
.about_case_detail {
  flex: 1;
}
.about_case img,
.about_case .no_image {
  width: 40%;
  max-width: 350px;
  aspect-ratio: 4/3;
  background-color: #D9D9D9;
}
.about_case h3 {
  width: auto !important;
  margin-bottom: 20px;
  font-size: 2rem;
}
.about_case .text_main {
  color: #00AFF5;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .about_case ul {
    margin-bottom: 30px;
  }
  .about_case ul + p {
    text-align: left;
  }
  .about_case li span {
    font-size: 2.8rem;
    top: -30px;
  }
  .about_case img,
  .about_case .no_image {
    width: 100%;
    max-width: 310px;
  }
}
.about_task {
  background-color: #E5F7FF;
  position: relative;
}
.about_task:before {
  content: "";
  max-width: 100%;
  height: 0;
  border-style: solid;
  border-width: 90px 49vw 0 49vw;
  border-color: #E5F7FF #ffffff transparent #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
}
.about_task .container {
  padding-bottom: 0px;
}
.about_task ul {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.about_task li {
  padding: 20px;
  font-size: 1.8rem;
}
.about_task li:not(:first-child) {
  border-top: 1px solid #D9D9D9;
}
.about_task li span {
  font-weight: 500;
}
.about_task + .top_feature {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .about_task li {
    padding: 20px 0;
    font-size: 1.6rem;
  }
}

.search ul {
  gap: 100px;
}
.search li {
  align-items: flex-start;
  gap: 30px 50px;
}
.search_category_title {
  width: 350px;
  aspect-ratio: 1/1;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  position: relative;
}
.search_category_title h3 {
  text-align: center;
  white-space: nowrap;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search_category_title h3 span {
  display: block;
  font-size: 3.2rem;
  margin-bottom: 5px;
}
.search .text_area {
  flex: 1;
  margin-top: 40px;
}
.search .btn {
  margin-top: 30px;
}
.search .btn i {
  margin-left: 5px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .search ul {
    gap: 70px;
  }
  .search li {
    align-items: center;
  }
  .search_category_title {
    width: 250px;
    aspect-ratio: 2/1;
  }
  .search_category_title h3 {
    font-size: 1.8rem;
  }
  .search_category_title h3 span {
    font-size: 2.6rem;
  }
  .search .text_area {
    margin-top: 0;
  }
}

.feature.top_about ul {
  gap: 80px;
}
.feature.top_about li.flex_box {
  margin-bottom: 0;
  align-items: center;
  gap: 20px 70px;
}
.feature.top_about li.flex_box:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.feature .text_area {
  flex: 1;
}
.feature .text_area h3 {
  margin-bottom: 20px;
}
.feature .text_area span {
  display: inline-block;
  padding-right: 20px;
  color: #00A0E9;
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
}
.feature .no_image {
  width: 40%;
  max-width: 480px;
  aspect-ratio: 4/3;
  background-color: #e0e0e0;
  box-shadow: 10px 10px 10px #D9D9D9;
}
.feature_message {
  background-color: #E5F7FF;
  text-align: center;
}
.feature_message .container {
  padding: 40px 0;
}
.feature_message .text_main {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .feature.top_about li.flex_box:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .feature .text_area {
    flex: 1;
  }
  .feature .text_area span {
    padding-right: 10px;
    font-size: 2.4rem;
  }
  .feature .no_image {
    width: 100%;
    max-width: 350px;
  }
  .feature_message {
    text-align: left;
  }
  .feature_message .container {
    padding: 50px 0;
  }
}

.company_greeting div.flex_box {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 30px 7%;
}
.company_greeting_message {
  flex: 1;
  max-width: 650px;
}
.company_greeting_message_main {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
.company_greeting_img {
  width: 40%;
  max-width: 300px;
}
.company_greeting_img img {
  margin-bottom: 30px;
  width: 80%;
}
.company_greeting .sign {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .company_greeting div.flex_box {
    align-items: center;
    padding: 50px 20px;
  }
  .company_greeting_img {
    width: 100%;
    max-width: 400px;
  }
  .company_greeting_img img {
    margin: 0 auto 30px;
  }
}
.company_profile .container {
  position: relative;
}
.company_profile .text_main {
  font-size: 2.4rem;
}
.company_profile .text_main span {
  display: inline-block;
  padding-left: 10px;
  font-size: 1.6rem;
}
.company_profile dl {
  margin: 50px 0 0;
}
.company_profile dt {
  display: inline-block;
  border-radius: 6px;
  padding: 3px 20px;
  margin-bottom: 10px;
  background-color: #E5F7FF;
  font-size: 1.8rem;
  font-weight: 500;
}
.company_profile dd:not(:last-child) {
  margin-bottom: 30px;
}
.company_profile img {
  width: 30%;
  min-width: 250px;
  position: absolute;
  top: 30%;
  right: 0;
}
@media screen and (max-width: 1159px) {
  .company_profile img {
    width: 20%;
    top: 37%;
  }
}
@media screen and (max-width: 820px) {
  .company_profile img {
    position: inherit;
    width: auto;
    margin: 30px auto;
  }
  .company_profile img.only_sp {
    display: block;
  }
  .company_profile img.only_pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .company_profile .text_main {
    font-size: 2rem;
  }
  .company_profile dl {
    margin: 30px 0;
  }
  .company_profile dt {
    font-size: 1.6rem;
  }
}
.company_policy {
  background-color: #E5F7FF;
  text-align: center;
}
.company_policy img {
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .company_policy {
    text-align: left;
  }
  .company_policy img {
    width: 80px;
  }
}
.company_outline dl {
  width: 100%;
  max-width: 850px;
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
  margin: 0 auto;
}
.company_outline dt,
.company_outline dd {
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #d9d9d9;
  padding: 20px;
}
.company_outline dt:nth-of-type(2n + 2),
.company_outline dd:nth-of-type(2n + 2) {
  background-color: #E5F7FF;
}
.company_outline dt {
  width: 25%;
}
.company_outline dd {
  width: 75%;
}
.company_outline .g_map {
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16/9;
  margin: 50px auto 0;
}
.company_outline .g_map iframe {
  width: 100%;
  height: 100%;
}
.company_outline a {
  text-decoration: underline;
  color: #0088CA;
}
.company_outline a:hover {
  opacity: 0.7;
}
.company_outline_slider li:nth-of-type(2), .company_outline_slider li:nth-of-type(7) {
  margin-top: 70px;
}
.company_outline_slider li:nth-of-type(3), .company_outline_slider li:nth-of-type(8) {
  margin-top: 130px;
}
.company_outline_slider li:nth-of-type(4), .company_outline_slider li:nth-of-type(9) {
  margin-top: 25px;
}
.company_outline_slider li:nth-of-type(5), .company_outline_slider li:nth-of-type(10) {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .company_outline dt,
  .company_outline dd {
    width: 100%;
  }
  .company_outline dt {
    padding: 10px 15px 0;
    border-bottom: none;
  }
  .company_outline dd {
    padding: 5px 15px 10px;
  }
  .company_outline .g_map {
    aspect-ratio: 1/1.2;
    margin: 30px auto 0;
  }
}
.company_csr .container {
  max-width: 850px;
}
.company_csr img {
  margin: 40px auto 0;
}

.flow_tag_list {
  margin-bottom: 60px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.flow_tag_item.selected a {
  background-color: #00A0E9;
  color: #ffffff;
}
.flow_tag_item a {
  width: 300px;
  border-radius: 6px;
}
.flow_tag_item a:hover {
  background-color: #00A0E9;
  color: #ffffff;
}
.flow_list {
  background-color: #ffffff;
}
.flow_list h3:has(+ ul) {
  width: 80%;
  border-radius: 0 30px 30px 0;
  padding: 10px 30px;
  margin-bottom: 40px;
  background-color: #00A0E9;
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 500;
}
.flow_content li {
  background-color: #E5F7FF;
}
.flow_content:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .flow_list h3:has(+ ul) {
    padding: 10px;
    font-size: 2rem;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #53A75E;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #E5F7FF;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #D9D9D9;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #D9D9D9;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  background-color: #FFFFFF;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  display: inline-block;
  background-color: red;
  font-size: 10px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFFFFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.privacy_intro .container, .privacy_about .container {
  max-width: 850px;
}
.privacy_intro p, .privacy_about p {
  margin-bottom: 50px;
}
.privacy_intro dt {
  width: 100%;
  max-width: 400px;
  border-radius: 0 20px 20px 0;
  padding: 5px 20px;
  margin-bottom: 10px;
  background-color: #00A0E9;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 500;
}
.privacy_intro dd:not(:last-child) {
  margin-bottom: 40px;
}
.privacy_about dt {
  margin-bottom: 10px;
  color: #00A0E9;
  font-size: 2rem;
  font-weight: 500;
}
.privacy_about dd {
  padding-left: 20px;
}
.privacy_about dd:not(:last-child) {
  margin-bottom: 40px;
}
.privacy_about ul {
  padding-left: 20px;
  list-style: disc;
  list-style-position: outside;
}
.privacy_about .p_mark img {
  margin: 10px 0;
}
.privacy_about .p_mark a.link_text {
  display: inline-block;
  margin-bottom: 20px;
  color: #0088CA;
  text-decoration: underline;
}
.privacy_about .p_mark a.link_text:hover {
  opacity: 0.7;
}
.privacy_about dl.flex_box {
  margin: 30px auto 0;
  border-top: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
}
.privacy_about dl.flex_box dt,
.privacy_about dl.flex_box dd {
  border-right: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 20px;
}
.privacy_about dl.flex_box dt:nth-of-type(2n + 2),
.privacy_about dl.flex_box dd:nth-of-type(2n + 2) {
  background-color: #E5F7FF;
}
.privacy_about dl.flex_box dt {
  width: 30%;
  margin-bottom: 0;
  color: #222222;
  font-size: 1.6rem;
}
.privacy_about dl.flex_box dd {
  width: 70%;
}
.privacy_about dl.flex_box dd:not(:last-of-type) {
  margin-bottom: 0;
}
.privacy_date {
  margin-top: 20px;
  text-align: right;
}
.privacy_address {
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  padding: 40px;
  background-color: #E5F7FF;
}
.privacy_address b {
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .privacy_intro p, .privacy_about p {
    margin-bottom: 30px;
  }
  .privacy_about dt {
    font-size: 1.8rem;
  }
  .privacy_about dd {
    padding-left: 10px;
  }
  .privacy_about ul {
    padding-left: 20px;
    list-style: disc;
    list-style-position: outside;
  }
  .privacy_about dl.flex_box dt,
  .privacy_about dl.flex_box dd {
    width: 100%;
  }
  .privacy_about dl.flex_box dt {
    padding: 20px 20px 5px;
    border-bottom: none;
  }
  .privacy_about dl.flex_box dd {
    padding: 0 20px 20px;
  }
  .privacy_address {
    padding: 40px 20px;
  }
}

.sitemap .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0 50px;
}
.sitemap ul:not(.sitemap_sub_menu) {
  width: 48%;
  max-width: 450px;
  border-bottom: 1px solid #D9D9D9;
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid #D9D9D9;
  padding: 20px;
  position: relative;
}
.sitemap a i {
  color: #0071BC;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #0071BC;
}
.sitemap a:hover i {
  right: 40px;
}
.sitemap_sub_menu {
  width: 90%;
  border-bottom: none;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .sitemap .container {
    flex-direction: column;
    align-items: center;
  }
  .sitemap ul:not(.sitemap_sub_menu) {
    width: 100%;
    max-width: 500px;
  }
  .sitemap ul:not(.sitemap_sub_menu):nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 10px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
}

.rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.rule dt {
  width: 30%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule dd {
  width: 70%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule .caution {
  color: #ff0000;
}
.rule .cancel_price {
  margin-top: 10px;
}
.rule .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 890px) {
  .rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  .rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}

.term p {
  margin-bottom: 50px;
}
.term dl + p {
  margin-bottom: 0;
  text-align: right;
}
.term dt {
  display: inline-block;
  border-bottom: 2px solid #53A75E;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.term dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.term ol {
  list-style-type: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.term ol ol {
  padding-left: 20px;
  margin-top: 10px;
  row-gap: 0;
}
.term .cancel_price {
  margin-top: 20px;
}
.term .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .term p {
    margin-bottom: 30px;
  }
  .term dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .term dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */