*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-size: 16px;
  color: #121212;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  body {
    font-size: clamp(14px, 32 / 750 * 100dvw, 32px);
  }
}

.wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 150px 0;
}
@media screen and (max-width: 1200px) {
  .wrap {
    padding: min(100 / 750 * 100dvw, 100px) 0;
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: 80%;
    max-width: min(690 / 750 * 100dvw, 690px);
  }
}

.pc_view {
  display: block;
}

.sp_view {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp_view {
    display: block;
  }
  .pc_view {
    display: none;
  }
}
.pc_view {
  display: block;
}

@media screen and (max-width: 750px) {
  .pc_view {
    display: none;
  }
}
.breadCrumb {
  background-color: #F7F7F7;
}
@media screen and (max-width: 750px) {
  .breadCrumb {
    display: flex;
    height: 40px;
    align-items: center;
  }
}
.breadCrumb .wrap {
  display: flex;
  align-items: center;
  gap: min(10 / 750 * 100dvw, 10px);
  height: min(40 / 750 * 100dvw, 40px);
  padding: 0;
  font-size: 14px;
  color: #707070;
}
.breadCrumb .wrap a {
  font-size: 16px;
  color: #C60309;
}
.breadCrumb .wrap .arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #707070;
  border-right: 1px solid #707070;
  transform: rotate(45deg);
}

.pageTtl.wrap {
  padding: 0;
}

.pageTtl {
  background: #FBFBFB url(../img/bg.webp) no-repeat top left/cover;
}
.pageTtl h1 {
  font-size: 18px;
  color: #121212;
  line-height: 1;
  padding-top: 150px;
  padding-bottom: 180px;
}
@media screen and (max-width: 750px) {
  .pageTtl h1 {
    font-size: clamp(14px, 36 / 750 * 100dvw, 36px);
  }
}
.pageTtl h1 span {
  font-family: "Jost", sans-serif;
  font-size: 96px;
  font-weight: 500;
  color: #C60309;
}
@media screen and (max-width: 750px) {
  .pageTtl h1 {
    padding-top: 40px;
    padding-bottom: 110px;
  }
  .pageTtl h1 span {
    font-size: clamp(14px, 96 / 750 * 100dvw, 96px);
  }
}

h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: min(50 / 750 * 100dvw, 50px);
}
h2 .en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #C60309;
}
@media screen and (max-width: 750px) {
  h2 .en {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
h2 .ja {
  font-weight: 700;
  font-size: 24px;
  color: #121212;
}
@media screen and (max-width: 750px) {
  h2 .ja {
    font-size: clamp(14px, 36 / 750 * 100dvw, 36px);
    line-height: 1;
  }
}

p {
  line-height: 2;
}
p span {
  display: inline-block;
}

h2.tl_mid {
  font-size: 24px;
  margin-bottom: 30px;
}

.sub_title {
  font-size: 16px;
  margin-bottom: 6px;
  color: #C60309;
  font-family: Jost, sans-serif;
}

.table_explanation {
  width: 100%;
  font-size: 20px;
}
.table_explanation tr:not(:last-child) {
  border-bottom: #f0f0f0 1px solid;
}
.table_explanation th {
  position: relative;
  width: 22%;
  padding: 30px 0px;
  text-align: center;
  background-color: #C60309;
  color: #fff;
}
.table_explanation th > span {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .table_explanation th {
    width: 33.33%;
    font-size: 14px;
  }
  .table_explanation th > span {
    top: 20px;
  }
}
.table_explanation td {
  width: 78%;
  padding: 30px 80px;
  font-size: 18px;
  font-weight: 500;
  background-color: #F7F7F7;
}
@media screen and (max-width: 750px) {
  .table_explanation td {
    width: 66.66%;
  }
}
.table_explanation td .Ttr_explain {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .table_explanation td .Ttr_explain {
    font-size: 18px;
  }
}
.table_explanation td ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
}
.table_explanation td p {
  line-height: 1.5em;
}
@media screen and (max-width: 750px) {
  .table_explanation td p {
    margin-top: 16px;
  }
}
@media screen and (max-width: 750px) {
  .table_explanation td {
    font-size: 14px;
    padding: 20px;
  }
}

.contact_area {
  background-color: #F7F7F7;
}
.contact_area .wrap {
  padding-top: 130px;
  padding-bottom: 160px;
}
@media screen and (max-width: 750px) {
  .contact_area .wrap {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}
.contact_area .wrap .contact_line {
  display: grid;
  gap: min(30 / 750 * 100dvw, 30px);
  text-align: center;
}
.contact_area .wrap .contact_line h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  color: #C60309;
}
.contact_area .wrap .contact_line h3 span {
  display: block;
}
@media screen and (max-width: 750px) {
  .contact_area .wrap .contact_line h3 {
    font-size: clamp(14px, 36 / 750 * 100dvw, 36px);
  }
}
.contact_area .wrap .contact_line p {
  font-size: 18px;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .contact_area .wrap .contact_line p {
    font-size: 18px;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .contact_area .wrap .contact_line p {
    font-size: clamp(14px, 36 / 750 * 100dvw, 36px);
  }
}
.contact_area .wrap .contact_line .content_btns {
  display: flex;
  justify-content: center;
  gap: min(30 / 750 * 100dvw, 30px);
}
@media screen and (max-width: 750px) {
  .contact_area .wrap .contact_line .content_btns {
    flex-direction: column;
    align-items: center;
  }
}
.contact_area .wrap .contact_line .content_btns .btn_line {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: min(20 / 750 * 100dvw, 20px);
  width: min(100%, 370px);
  height: min(100 / 750 * 100dvw, 100px);
  background-color: #121212;
  color: #fff;
}
.contact_area .wrap .contact_line .content_btns .btn_line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #06C755;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
.contact_area .wrap .contact_line .content_btns .btn_line span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-out;
}
.contact_area .wrap .contact_line .content_btns .btn_line:hover::before {
  transform: scaleX(1);
}
.contact_area .wrap .contact_line .content_btns .btn_line:hover span {
  color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  .contact_area .wrap .contact_line .content_btns .btn_line {
    width: 100%;
    height: 64px;
  }
}
.contact_area .wrap .contact_line .content_btns .btn_line img {
  width: min(41 / 750 * 100dvw, 41px);
  min-width: 30px;
  height: auto;
  position: relative;
  z-index: 1;
}
.contact_area .wrap .contact_line .content_btns .btn_line span {
  position: relative;
  z-index: 1;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .contact_area .wrap .contact_line .content_btns .btn_line span {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .contact_area .wrap .contact_line .content_btns .btn_line span {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}

.emb_privacy_policy {
  border: #8B8B8B 1px solid;
  overflow-y: scroll;
  scrollbar-color: #C60309 #F7F7F7;
  scrollbar-width: thin;
}
.emb_privacy_policy.wrap {
  padding: 0;
  height: 300px;
  background-color: #fff;
}
.emb_privacy_policy .privacy_policy_inner {
  padding: 30px;
  height: 240px;
}
@media screen and (max-width: 750px) {
  .emb_privacy_policy {
    height: 38vh;
  }
  .emb_privacy_policy .privacy_policy_inner {
    font-size: 14px;
  }
}
.emb_privacy_policy ul {
  list-style-type: none;
}
.emb_privacy_policy ul li {
  margin-top: 1em;
}

.header {
  position: relative;
  width: 100%;
  height: 80px;
  z-index: 30;
}
@media screen and (max-width: 750px) {
  .header {
    height: 72px;
  }
}

.head_menu {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background-color: #FFFFFF;
}
.head_menu .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  padding: 0;
  z-index: 30;
}
@media screen and (max-width: 750px) {
  .head_menu .wrap {
    height: 72px;
  }
}
.head_menu .wrap .logo {
  height: 40px;
  width: auto;
}
.head_menu .wrap .nav_menu.pc_view {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .head_menu .wrap .nav_menu.pc_view {
    display: none;
  }
}
.head_menu .wrap .nav_menu.pc_view ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 3.5vw;
       column-gap: 3.5vw;
  margin-right: 70px;
}
.head_menu .wrap .nav_menu.pc_view ul li {
  position: relative;
  text-align: center;
  line-height: 2;
}
.head_menu .wrap .nav_menu.pc_view ul li.is_active a {
  border-bottom: 1px solid #C60309;
  color: #C60309;
}
.head_menu .wrap .nav_menu.pc_view ul li a {
  display: inline-block;
  border-bottom: 1px solid #FFFFFF;
  color: #121212;
}
.head_menu .wrap .nav_menu.pc_view ul li a:hover {
  color: #C60309;
}

.head_hamburger {
  position: fixed;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  background-color: #121212;
  z-index: 20;
  cursor: pointer;
}
.head_hamburger .hamburger_icon {
  position: relative;
  width: 24px;
  height: 50px;
}
.head_hamburger .hamburger_icon span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #FFFFFF;
  border-radius: 4px;
  transition: all 0.5s;
  box-sizing: border-box;
}
.head_hamburger .hamburger_icon span:nth-of-type(1) {
  top: 0;
  animation: anima-bar01 0.75s forwards;
}
.head_hamburger .hamburger_icon span:nth-of-type(2) {
  top: 12px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.head_hamburger .hamburger_icon span:nth-of-type(3) {
  top: 24px;
  animation: anima-bar03 0.75s forwards;
}
.head_hamburger .hamburger_icon p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20%;
  font-size: 20px;
  color: #FFFFFF;
}

.head_hamburger.active .hamburger_icon span:nth-of-type(1) {
  animation: active-anima-bar01 0.75s forwards;
}
.head_hamburger.active .hamburger_icon span:nth-of-type(2) {
  top: 25%;
  transition: all 0.25s 0.25s;
  opacity: 0;
}
.head_hamburger.active .hamburger_icon span:nth-of-type(3) {
  top: 50%;
  animation: active-anima-bar03 0.75s forwards;
}

.sp_view.nav_menu {
  display: block;
  position: fixed;
  top: 0;
  background-color: #FFFFFF;
  width: 100%;
  height: 100dvh;
  padding: 72px 0 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.sp_view.nav_menu ul {
  display: grid;
  grid-template-rows: repeat(6, auto, 1fr);
  width: min(600 / 750 * 100dvw, 600px);
  height: 100%;
  margin: auto;
}
.sp_view.nav_menu ul li {
  position: relative;
  width: 100%;
  border-bottom: min(2 / 750 * 100dvw, 2px) solid #F7F7F7;
}
.sp_view.nav_menu ul li:first-of-type {
  border-top: min(2 / 750 * 100dvw, 2px) solid #F7F7F7;
}
.sp_view.nav_menu ul li:hover {
  border-bottom: min(2 / 750 * 100dvw, 2px) solid #C60309;
}
.sp_view.nav_menu ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #121212;
  font-size: 18px;
  font-weight: 700;
}
.sp_view.nav_menu ul li a:hover {
  color: #C60309;
}
.sp_view.nav_menu ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  width: min(20 / 750 * 100dvw, 20px);
  height: min(20 / 750 * 100dvw, 20px);
  border-top: 3px solid #C60309;
  border-right: 3px solid #C60309;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.sp_view.nav_menu ul .nav_btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(20 / 750 * 100dvw, 20px);
}
.sp_view.nav_menu ul .nav_btns .btn_line {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: min(20 / 750 * 100dvw, 20px);
  width: min(100%, 370px);
  height: min(100 / 750 * 100dvw, 100px);
  background-color: #121212;
  color: #fff;
}
.sp_view.nav_menu ul .nav_btns .btn_line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #06C755;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
.sp_view.nav_menu ul .nav_btns .btn_line span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-out;
}
.sp_view.nav_menu ul .nav_btns .btn_line:hover::before {
  transform: scaleX(1);
}
.sp_view.nav_menu ul .nav_btns .btn_line:hover span {
  color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  .sp_view.nav_menu ul .nav_btns .btn_line {
    width: 100%;
    height: 64px;
  }
}
.sp_view.nav_menu ul .nav_btns .btn_line::after {
  display: none;
}
.sp_view.nav_menu ul .nav_btns .btn_line img {
  width: min(41 / 750 * 100dvw, 41px);
  min-width: 30px;
  height: auto;
  position: relative;
  z-index: 1;
}
.sp_view.nav_menu ul .nav_btns .btn_line span {
  position: relative;
  z-index: 1;
  line-height: 2;
}

.sp_view.nav_menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.head_btn {
  position: fixed;
  right: 0;
  z-index: 30;
}
@media screen and (max-width: 750px) {
  .head_btn {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .head_btn .head_btn_nav {
    width: 100%;
  }
}
.head_btn .head_btn_nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(5 / 750 * 100dvw, 5px);
  width: min(96 / 750 * 100dvw, 96px);
  height: min(96 / 750 * 100dvw, 96px);
  padding: min(10 / 750 * 100dvw, 10px);
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .head_btn .head_btn_nav a {
    flex-direction: row;
    width: 100%;
    height: 48px;
  }
}
.head_btn .head_btn_nav a:hover {
  transform: scale(1.25);
  transition: transform 0.3s ease;
}
.head_btn .head_btn_nav a img {
  width: 26px;
}
@media screen and (max-width: 750px) {
  .head_btn .head_btn_nav a img {
    width: min(50 / 750 * 100dvw, 50px);
  }
}
.head_btn .head_btn_nav a p {
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
}
@media screen and (max-width: 750px) {
  .head_btn .head_btn_nav a p {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .head_btn .head_btn_nav a p {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
.head_btn .head_btn_nav a p span {
  display: inline-block;
}
.head_btn .head_btn_nav:nth-of-type(1) {
  background-color: #D4011D;
}
.head_btn .head_btn_nav:nth-of-type(2) {
  background-color: #C60309;
}
.head_btn .head_btn_nav:nth-of-type(3) {
  background-color: #9B161B;
}
@keyframes anima-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes anima-bar03 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-anima-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-anima-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-13px) rotate(0);
  }
  100% {
    transform: translateY(-13px) rotate(-45deg);
  }
}
.contact_common {
  width: 100%;
  padding: min(60 / 750 * 100dvw, 60px) 0 min(100 / 750 * 100dvw, 100px);
  border-radius: 60px 60px 0 0;
  background-color: #C60309;
}
@media screen and (max-width: 750px) {
  .contact_common {
    padding: min(100 / 750 * 100dvw, 100px) 0;
  }
}
.contact_common .wrap {
  padding: 0;
}
.contact_common .wrap h2 {
  font-weight: 700;
  font-size: 24px;
  color: #121212;
  margin-bottom: min(60 / 750 * 100dvw, 60px);
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .contact_common .wrap h2 {
    font-size: clamp(14px, 36 / 750 * 100dvw, 36px);
    line-height: 1;
  }
}
.contact_common .wrap .contact_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(32 / 750 * 100dvw, 32px);
}
.contact_common .wrap .contact_links .links_top,
.contact_common .wrap .contact_links .links_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(32 / 750 * 100dvw, 32px);
  width: 100%;
}
.contact_common .wrap .contact_links .links_top .contact_btn,
.contact_common .wrap .contact_links .links_bottom .contact_btn {
  position: relative;
  overflow: hidden;
  gap: min(10 / 750 * 100dvw, 10px);
  width: min(360 / 750 * 100dvw, 360px);
  background-color: #9B161B;
}
.contact_common .wrap .contact_links .links_top .contact_btn::before, .contact_common .wrap .contact_links .links_top .contact_btn::after,
.contact_common .wrap .contact_links .links_bottom .contact_btn::before,
.contact_common .wrap .contact_links .links_bottom .contact_btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}
.contact_common .wrap .contact_links .links_top .contact_btn::before,
.contact_common .wrap .contact_links .links_bottom .contact_btn::before {
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
}
.contact_common .wrap .contact_links .links_top .contact_btn::after,
.contact_common .wrap .contact_links .links_bottom .contact_btn::after {
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner {
  position: relative;
  width: 100%;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner::before, .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner::after,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner::before,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: #FFFFFF;
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner::before,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner::before {
  left: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner::after,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner::after {
  right: 0;
  transform: scaleY(0);
  transform-origin: top;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a {
  display: block;
  width: 100%;
  padding: min(20 / 750 * 100dvw, 20px) 0;
  text-align: center;
  color: #FFFFFF;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a p,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a p,
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a p {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
@media screen and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a p,
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a p {
    line-height: 1.25;
  }
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a .element,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a .element img,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element img {
  width: 40px;
  margin-right: 0.5em;
}
@media screen and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a .element img,
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element img {
    width: min(60 / 750 * 100dvw, 60px);
    margin-right: 0;
  }
}
.contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a .element .tel,
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element .tel {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 32px;
}
@media screen and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a .element .tel,
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element .tel {
    font-weight: 500;
    font-size: clamp(14px, 48 / 750 * 100dvw, 48px);
  }
}
.contact_common .wrap .contact_links .links_top .contact_btn:hover::before, .contact_common .wrap .contact_links .links_top .contact_btn:hover::after,
.contact_common .wrap .contact_links .links_bottom .contact_btn:hover::before,
.contact_common .wrap .contact_links .links_bottom .contact_btn:hover::after {
  transform: scaleX(1);
}
.contact_common .wrap .contact_links .links_top .contact_btn:hover .btn_inner::before,
.contact_common .wrap .contact_links .links_top .contact_btn:hover .btn_inner::after,
.contact_common .wrap .contact_links .links_bottom .contact_btn:hover .btn_inner::before,
.contact_common .wrap .contact_links .links_bottom .contact_btn:hover .btn_inner::after {
  transform: scaleY(1);
}
@media screen and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_top {
    flex-direction: column;
  }
  .contact_common .wrap .contact_links .links_top .contact_btn {
    width: 100%;
  }
  .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a p {
    font-size: 14px;
    font-weight: 500;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_top .contact_btn .btn_inner a p {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
.contact_common .wrap .contact_links .links_bottom .contact_btn {
  height: 130px;
}
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(90 / 750 * 100dvw, 90px);
}
.contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element p {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_bottom {
    gap: min(20 / 750 * 100dvw, 20px);
  }
  .contact_common .wrap .contact_links .links_bottom .contact_btn {
    height: min(200 / 750 * 100dvw, 200px);
  }
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element {
    flex-direction: column;
    height: min(160 / 750 * 100dvw, 160px);
  }
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element p {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .contact_common .wrap .contact_links .links_bottom .contact_btn .btn_inner a .element p {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}

footer {
  position: relative;
  width: 100%;
  background-color: #121212;
  color: #FFFFFF;
}
footer .wrap {
  padding: min(50 / 750 * 100dvw, 50px) 0 120px;
}
footer .wrap .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 64px;
  margin-bottom: min(30 / 750 * 100dvw, 30px);
  background-color: #FFFFFF;
}
footer .wrap .logo img {
  width: 100px;
}
footer .wrap .content {
  display: grid;
  grid-template-columns: min(650 / 750 * 100dvw, 650px) 1fr;
  align-items: flex-end;
  row-gap: min(50 / 750 * 100dvw, 50px);
  width: 100%;
}
@media screen and (max-width: 1200px) {
  footer .wrap .content {
    grid-template-columns: auto;
    grid-row: auto auto;
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .content {
    grid-template-columns: 1fr;
    grid-row: auto auto auto;
  }
}
footer .wrap .content .links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
footer .wrap .content .links .content_menu {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #FFFFFF;
}
footer .wrap .content .links .content_menu a {
  padding: 1em;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .wrap .content .links .content_menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #969696;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
footer .wrap .content .links .content_menu a span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-out;
}
footer .wrap .content .links .content_menu a:hover::before {
  transform: scaleX(1);
}
footer .wrap .content .links .content_menu a:hover span {
  color: #FFFFFF;
}
@media screen and (max-width: 750px) {
  footer .wrap .content .links .content_menu {
    flex-direction: column;
    justify-content: flex-start;
  }
  footer .wrap .content .links .content_menu a {
    justify-content: flex-start;
    padding-left: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  footer .wrap .content .links .content_menu a {
    font-size: clamp(14px, 32 / 750 * 100dvw, 32px);
  }
}
footer .wrap .content .links .content_map {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: min(40 / 750 * 100dvw, 40px);
  color: #FFFFFF;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  footer .wrap .content .links .content_map {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
footer .wrap .content .links .content_map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 90%;
  background-color: #FFFFFF;
}
footer .wrap .content .links .content_map .content_address {
  width: 44%;
  display: flex;
  flex-direction: column;
}
footer .wrap .content .links .content_map .content_address .content_flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer .wrap .content .links .content_map .content_address .content_flex a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 2;
  width: min(90 / 750 * 100dvw, 90px);
  text-align: center;
  color: #FFFFFF;
  border: solid 1px #FFFFFF;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .wrap .content .links .content_map .content_address .content_flex a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #969696;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
  z-index: 0;
}
footer .wrap .content .links .content_map .content_address .content_flex a span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-out;
}
footer .wrap .content .links .content_map .content_address .content_flex a:hover::before {
  transform: scaleX(1);
}
footer .wrap .content .links .content_map .content_address .content_flex a:hover span {
  color: #FFFFFF;
}
footer .wrap .content .links .content_map .content_address .tel, footer .wrap .content .links .content_map .content_address .fax {
  font-family: "Jost", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 750px) {
  footer .wrap .content .links .content_map {
    flex-direction: column;
  }
  footer .wrap .content .links .content_map::after {
    display: none;
  }
  footer .wrap .content .links .content_map .content_address {
    width: 100%;
    padding-bottom: min(40 / 750 * 100dvw, 40px);
  }
  footer .wrap .content .links .content_map .content_address:first-of-type {
    margin-bottom: min(40 / 750 * 100dvw, 40px);
    border-bottom: 1px solid #F7F7F7;
  }
  footer .wrap .content .links .content_map .content_address .content_flex h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  footer .wrap .content .links .content_map .content_address .content_flex h3 {
    font-size: clamp(14px, 32 / 750 * 100dvw, 32px);
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .content .links .content_map .content_address .content_flex a {
    display: inline-block;
    width: min(140 / 750 * 100dvw, 140px);
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  footer .wrap .content .links .content_map .content_address .content_flex a {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .content .links .content_map .content_address .content_flex a span {
    padding: 0 1em;
  }
}
footer .wrap .content .policy {
  font-size: 14px;
  color: #FFFFFF;
  text-align: right;
}
@media screen and (max-width: 750px) {
  footer .wrap .content .policy {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
footer .wrap .content .policy a small, footer .wrap .content .policy p small {
  font-size: 14px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 750px) {
  footer .wrap .content .policy a small, footer .wrap .content .policy p small {
    font-size: clamp(14px, 28 / 750 * 100dvw, 28px);
  }
}
@media screen and (max-width: 750px) {
  footer .wrap .content .policy {
    text-align: center;
  }
}

.back_to_top {
  position: absolute;
  top: 0;
  right: 5%;
  width: 54px;
  height: 54px;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .back_to_top {
    right: 1%;
    width: 48px;
    height: 48px;
  }
}
.back_to_top img {
  height: auto;
  -o-object-fit: fill;
     object-fit: fill;
  transform: translate(-50%, -50%);
}
.back_to_top:hover {
  cursor: pointer;
  opacity: 0.8;
}/*# sourceMappingURL=base.css.map */