@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@700&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.8em;
  color: #222222;
}

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

img {
  object-fit: cover;
}

h2, h3 {
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.5;
}

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

.image_area img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.flex_box {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

#pageTitle {
  background-image: url(../img/page_title_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
#pageTitle .container {
  padding: 70px 0;
}
#pageTitle h2 {
  color: #ffffff;
  text-align: center;
  font-size: 5rem;
}
#pageTitle span {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #pageTitle .container {
    padding: 30px 0;
  }
  #pageTitle h2 {
    font-size: 3rem;
  }
  #pageTitle span {
    font-size: 1.8rem;
  }
}

#pan {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: normal;
}
#pan li {
  font-size: 1.2rem;
  display: inline-block;
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
  color: #DC000C;
}
#pan li::before {
  content: "/";
  position: absolute;
  right: 0px;
  color: #222222;
}
#pan li:last-child {
  position: static;
  padding-right: 0;
  margin-right: 0;
  color: #222222;
}
#pan li:last-child::before {
  display: none;
}
#pan a {
  text-decoration: underline;
}
#pan a:hover {
  opacity: 0.7;
}

.btn {
  border-radius: 30px;
  padding: 17px;
  text-align: center;
  line-height: 1;
  position: relative;
}
.btn_red {
  width: 172px;
  border: 1px solid #DC000C;
  padding-right: 35px;
  background-color: #DC000C;
  color: #ffffff;
  font-weight: bold;
}
.btn_red i {
  position: absolute;
  top: 18px;
  right: 25px;
}
.btn_red:hover {
  background-color: #ffffff;
  color: #DC000C;
}
.btn_gray {
  width: 250px;
  background-color: #DDDDDD;
  font-weight: 500;
}
.btn_gray p {
  position: relative;
}
.btn_gray p:before {
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #DC000C;
  position: absolute;
  top: 50%;
  left: 26%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.btn_gray:hover {
  background-color: #DC000C;
  color: #ffffff;
}
.btn_gray:hover p:before {
  background-color: #DDDDDD;
}
.btn_box {
  text-align: center;
}

.head_text {
  margin-bottom: 40px;
  color: #DC000C;
  mix-blend-mode: multiply;
  font-size: 8rem;
}
.head_text span {
  display: block;
  color: #222222;
  font-size: 3.2rem;
}
.head_text_center {
  text-align: center;
}
.head_text_white {
  mix-blend-mode: inherit;
  color: #ffffff;
}
.head_text_white span {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .head_text {
    font-size: 6rem;
  }
  .head_text span {
    font-size: 2.4rem;
  }
}

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

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
header {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
header h1 a {
  width: 240px;
}
header h1 a:hover {
  opacity: 0.7;
}
header h1 a img {
  width: 100%;
}
header nav {
  display: flex;
  column-gap: 40px;
  align-items: center;
}
header nav ul {
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
  font-weight: bold;
}
header nav ul a {
  position: relative;
}
header nav ul a:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #DDDDDD;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header nav ul a:hover {
  color: #DC000C;
}
header nav ul a:hover:before {
  transform-origin: center top;
  transform: scale(1, 1);
}
header .sp_menu {
  display: none;
  height: 60px;
}
header .sp_menu li {
  width: 60px;
  height: 100%;
}
header .sp_menu li:nth-of-type(1) a {
  background-color: #DC000C;
  color: #ffffff;
}
header .sp_menu li:nth-of-type(2) a {
  color: #DC000C;
}
header .sp_menu a {
  width: 100%;
  height: 100%;
  position: relative;
}
header .sp_menu a:hover {
  opacity: 0.7;
}
header .sp_menu i {
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .burger_btn {
  color: #DC000C;
  background-color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .burger_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
  }
  header h1 a {
    width: 140px;
    padding-left: 10px;
  }
  header .sp_menu {
    display: flex;
    align-items: center;
  }
}

.toppage_header {
  background-color: transparent;
  box-shadow: none;
}

.toppage_header + header {
  display: none;
  visibility: hidden;
}

.overlay {
  display: none;
  width: 100%;
  height: 100vh;
  padding: 60px 20px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.overlay .close_btn {
  width: 60px;
  height: 60px;
  padding: 18px 0;
  background-color: #DC000C;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.overlay .close_btn:hover {
  opacity: 0.7;
}
.overlay ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  font-weight: bold;
}
.overlay a {
  position: relative;
}
.overlay a:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #DDDDDD;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.overlay a:hover {
  color: #DC000C;
}
.overlay a:hover:before {
  transform-origin: center top;
  transform: scale(1, 1);
}

html {
  scroll-padding-top: 94.2px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

main {
  margin-top: 94.2px;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 60px;
  }
}

#contactArea {
  position: relative;
  background-image: url(../img/contact_area_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}
#contactArea a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#contactArea a:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}
#contactArea a:hover:before {
  opacity: 0.7;
}
#contactArea a:hover img {
  transform: scale(1.2);
}
#contactArea .container {
  padding: 130px 0 190px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  #contactArea .container {
    padding: 80px 0 140px;
  }
}
@media screen and (max-width: 767px) {
  #contactArea .container {
    padding: 50px 0 160px;
  }
}
#contactArea p {
  width: 70%;
  max-width: 550px;
}
@media screen and (max-width: 767px) {
  #contactArea p {
    width: 100%;
  }
}
#contactArea img {
  width: 30%;
  max-width: 289px;
  position: absolute;
  top: 130px;
  right: 0;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  #contactArea img {
    width: 35%;
    top: auto;
    bottom: 30px;
  }
}

footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
}
footer .container {
  padding: 60px 0;
}
footer .flex_box {
  justify-content: space-between;
}
footer .address_area img {
  margin-bottom: 30px;
}
footer .address_area ul {
  font-size: 1.4rem;
}
footer .footer_menu {
  margin-top: 20px;
  display: flex;
  gap: 10px 40px;
  font-weight: bold;
}
footer .footer_menu a {
  position: relative;
}
footer .footer_menu a:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #DDDDDD;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
footer .footer_menu a:hover {
  color: #DC000C;
}
footer .footer_menu a:hover:before {
  transform-origin: center top;
  transform: scale(1, 1);
}
footer .flex_box + ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 30px;
  color: #AAAAAA;
  font-size: 1.2rem;
}
footer .flex_box + ul a:hover {
  color: #DC000C;
}
@media screen and (max-width: 767px) {
  footer .container {
    padding: 30px 0;
  }
  footer .flex_box {
    justify-content: space-between;
  }
  footer .address_area img {
    width: 140px;
    margin-bottom: 20px;
  }
  footer .footer_menu {
    margin-top: 30px;
    flex-direction: column;
  }
  footer .flex_box + ul {
    margin-top: 20px;
    justify-content: flex-start;
  }
}

.top_page_content h2 + p {
  width: 100%;
  max-width: 700px;
}
.top_page_content p + .btn {
  margin-top: 40px;
}

.main_visual {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
}
.main_visual .video_box {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}
.main_visual video {
  height: auto;
  min-height: 700px;
}
.main_visual_msg {
  position: absolute;
  top: 90%;
  left: 0;
  transform: translateY(-90%);
  z-index: 1;
}
.main_visual_msg p {
  display: inline-block;
  padding: 0 45px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #DC000C;
  mix-blend-mode: multiply;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 8.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.main_visual_msg p:nth-of-type(3) {
  padding-left: 30%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  line-height: 2;
  position: relative;
}
.main_visual_msg p:nth-of-type(3):before {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #DC000C;
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .main_visual_msg p {
    padding: 3px 20px;
    font-size: 4rem;
  }
  .main_visual_msg p:nth-of-type(3) {
    padding-left: 22%;
    font-size: 2.2rem;
  }
  .main_visual_msg p:nth-of-type(3):before {
    width: 50px;
    left: 15px;
  }
}

.top_about {
  background-image: url(../img/top_about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.top_about .container {
  padding: 120px 0 230px;
}
.top_about h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 3.2rem;
}
.top_about p {
  max-width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_about .container {
    padding: 100px 0 150px;
  }
  .top_about h2 {
    font-size: 2.6rem;
  }
}
.top_about_scroll_btn {
  width: 130px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  position: relative;
  top: -65px;
  left: 90%;
}
.top_about_scroll_btn:hover {
  opacity: 0.7;
}
.top_about_scroll_btn div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.top_about_scroll_btn p {
  line-height: 1.2;
}
.top_about_scroll_btn i {
  animation: UpDown 2s infinite;
}
@keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.top_service {
  margin-bottom: -150px;
  position: relative;
  top: -150px;
}
.top_service_img {
  width: 100%;
}
.about_us {
  position: relative;
}
.about_us img {
  width: 35%;
  max-width: 328px;
  position: absolute;
  top: -130px;
  right: 10%;
}
.about_us .container {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about_us img {
    top: -80px;
  }
}

.service_list {
  display: flex;
  flex-direction: column;
  row-gap: 100px;
}
.service_content {
  width: 100%;
  max-width: 1100px;
  align-items: flex-start;
  gap: 30px 40px;
}
.service_content:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .service_content {
    align-items: center;
  }
  .service_content:nth-of-type(2n + 2) {
    flex-direction: column;
  }
}
.service .image_area {
  width: 40%;
  min-width: 310px;
}
.service .text_area {
  flex: 1;
}
.service h3 {
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 2.4rem;
  position: relative;
}
.service h3::before {
  content: "";
  width: 70px;
  height: 1px;
  border-top: 1px solid #DC000C;
  position: absolute;
  bottom: 0;
  left: 0;
}
.service h3 span {
  display: block;
  color: #DC000C;
  font-size: 1.6rem;
}
.service dl {
  margin-top: 30px;
}
.service dt {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.service dt:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #DC000C;
  position: absolute;
  top: 10px;
  left: 0;
}
.service dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service dd li {
  display: inline-block;
  padding: 10px 14px;
  background-color: #F5F5F5;
}

.company_content .head_text {
  font-size: 6rem;
}
.company_content .head_text span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .company_content .head_text {
    font-size: 4.5rem;
  }
  .company_content .head_text span {
    font-size: 2rem;
  }
}

.policy {
  text-align: center;
}
.policy p {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .policy p {
    font-size: 2rem;
  }
}

.outline dl {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.outline dt {
  width: 20%;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px;
}
.outline dd {
  width: 80%;
  border-bottom: 1px solid #DDDDDD;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .outline dl {
    flex-direction: column;
  }
  .outline dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 10px 5px;
  }
  .outline dd {
    width: 100%;
    padding: 0 10px 10px;
  }
}

.g_map_area .container {
  padding-top: 0;
}
.g_map_area iframe {
  display: block;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  margin: 0 auto;
}

.history {
  background-color: #f5f5f5;
}
.history ul {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.history li {
  padding: 20px;
  background-color: #ffffff;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .history li {
    align-items: flex-start;
  }
}
.history_date {
  padding-left: 20px;
  font-weight: bold;
  position: relative;
}
.history_date:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #DC000C;
  position: absolute;
  top: 10px;
  left: 0;
}

.form_message {
  margin-bottom: 60px;
}
.form_message p {
  margin-bottom: 20px;
}
.form_message p:has(+ a) {
  margin-bottom: 0px;
}
.form_message .telnum {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #DC000C;
}
.form_message .telnum i {
  margin-right: 10px;
}
.form_message .telnum:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .form_message .telnum {
    font-size: 3.8rem;
    text-decoration: none;
  }
}
.form_message .must {
  margin: 0 10px 0 0;
  font-weight: bold;
  font-size: 1.4rem;
}

.must {
  display: inline-block;
  background-color: #DC000C;
  font-size: 10px;
  line-height: 1.5em;
  color: #ffffff;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}

form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #F5F5F5;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
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 #image-btn {
  margin-top: 10px;
  text-align: center;
}
form #image-btn input {
  min-width: 250px;
  padding-right: 17px;
}
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 p {
  margin-bottom: 50px;
}
#privacy dt {
  border-left: 3px solid #DC000C;
  padding: 10px 15px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
}
#privacy dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
#privacy ol {
  margin-top: 10px;
  list-style-type: decimal;
  list-style-position: inside;
}

@media screen and (max-width: 767px) {
  #privacy p {
    margin-bottom: 30px;
  }
  #privacy dt {
    margin-bottom: 10px;
  }
  #privacy dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}
#sitemap ul {
  width: 50%;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
#sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
  position: relative;
}
#sitemap a i {
  font-size: 1.8rem;
  color: #DC000C;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
#sitemap a:hover {
  color: #DC000C;
}
#sitemap a:hover i {
  right: 40px;
}
@media screen and (max-width: 767px) {
  #sitemap ul {
    width: 100%;
    max-width: 500px;
  }
  #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) {
  #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 */