@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

html {
  scroll-padding-top: 140px;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

body.fixed {
  position: fixed;
  top: var(--scroll-y);
  left: 0;
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

html:has(body.fixed) {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

/* bg */
.bg_red_to_pink {
  background: -webkit-gradient(linear, left top, right top, from(#C7081D), to(#FF485B));
  background: -webkit-linear-gradient(left, #C7081D, #FF485B);
  background: linear-gradient(to right, #C7081D, #FF485B);
}

/* height */
.h-330 {
  height: clamp(200px, 24.15vw, 500px);
}

.h-280 {
  height: clamp(180px, 20.5vw, 350px);
}

/* width */
.w-400 {
  width: clamp(240px, 29.29vw, 640px);
}

.w-90 {
  width: clamp(60px, 6.64vw, 100px);
}

.w-45 {
  width: clamp(30px, 3.29vw, 80px);
}

.w-615 {
  width: clamp(320px, 45.03vw, 800px);
}

.w-435 {
  width: clamp(280px, 31.84vw, 600px);
}

/* padding */
.pg-50 {
  padding: clamp(20px, 3.66vw, 100px);
}

.pd-40 {
  padding: clamp(20px, 2.93vw, 64px);
}

.pd-20 {
  padding: clamp(12px, 1.46vw, 40px);
}

.pd_tb-20 {
  padding-block: clamp(12px, 1.46vw, 40px);
}

.pd_tb-10 {
  padding-block: clamp(6px, 0.73vw, 16px);
}

.pd_rl-270 {
  padding-left: clamp(100px, 19.76vw, 400px);
  padding-right: clamp(100px, 19.76vw, 400px);
}
@media only screen and (max-width: 767px) {
  .pd_rl-270 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.pd_rl-200 {
  padding-inline: clamp(20px, 11vw, 200px);
}

.pd_rl-50 {
  padding-inline: clamp(20px, 3.66vw, 100px);
}

.pd_rl-30 {
  padding-inline: clamp(16px, 2.2vw, 48px);
}

.pd_l-20 {
  padding-left: clamp(12px, 1.46vw, 40px);
}

.pd_r-20 {
  padding-right: clamp(12px, 1.46vw, 40px);
}

.pd_t-100 {
  padding-top: clamp(40px, 7.32vw, 160px);
}

.pd_t-80 {
  padding-top: clamp(32px, 5.86vw, 120px);
}

.pd_t-50 {
  padding-top: clamp(30px, 3.66vw, 80px);
}

.pd_t-20 {
  padding-top: clamp(12px, 1.46vw, 40px);
}

.pd_b-100 {
  padding-bottom: clamp(40px, 7.32vw, 160px);
}

.pd_b-80 {
  padding-bottom: clamp(32px, 5.86vw, 120px);
}

.pd_b-50 {
  padding-bottom: clamp(30px, 3.66vw, 80px);
}

.pd_b-30 {
  padding-bottom: clamp(16px, 2.2vw, 48px);
}

.pd_b-20 {
  padding-bottom: clamp(12px, 1.46vw, 40px);
}

/* margin */
.mg_t-100 {
  margin-top: clamp(40px, 7.32vw, 160px);
}

.mg_t-80 {
  margin-top: clamp(32px, 5.86vw, 120px);
}

.mg_t-50 {
  margin-top: clamp(30px, 3.66vw, 80px);
}

.mg_b-200 {
  margin-bottom: clamp(80px, 14.65vw, 300px);
}

.mg_b-100 {
  margin-bottom: clamp(40px, 7.32vw, 160px);
}

.mg_b-80 {
  margin-bottom: clamp(32px, 5.86vw, 120px);
}

.mg_b-75 {
  margin-bottom: clamp(32px, 5.49vw, 112px);
}

.mg_b-50 {
  margin-bottom: clamp(30px, 3.66vw, 80px);
}

.mg_b-30 {
  margin-bottom: clamp(16px, 2.2vw, 48px);
}

.mg_b-20 {
  margin-bottom: clamp(12px, 1.46vw, 40px);
}

/* font */
.f-50 {
  font-size: clamp(24px, 3.66vw, 72px);
}

.f-30 {
  font-size: clamp(18px, 2.2vw, 48px);
}

.f-28 {
  font-size: clamp(18px, 2.05vw, 40px);
}

.f-24 {
  font-size: clamp(16px, 1.76vw, 32px);
}

.f-18 {
  font-size: clamp(14px, 1.32vw, 24px);
}

.f-15 {
  font-size: clamp(12px, 1.05vw, 20px);
}

.f-14 {
  font-size: clamp(12px, 1.025vw, 20px);
}

.f-blue {
  color: #0C45AD;
}

.f-right_blue {
  color: #83CFFF;
}

.f-red {
  color: #FF2B41;
}

.f-orange {
  color: #F07319;
}

.f-green {
  color: #37AD0C;
}

.f-black {
  color: black;
}

.f-white {
  color: white;
}

.lh_200 {
  line-height: 200%;
}

.lh_100 {
  line-height: 100%;
}

.t_center {
  text-align: center;
}

.t_right {
  text-align: right;
}

.f_w-900 {
  font-weight: 900;
}

.f_w-700 {
  font-weight: 700;
}

.f-bold {
  font-weight: bold;
}

/* gap */
.gap-15 {
  gap: clamp(10px, 1.1vw, 20px);
}

.gap-25 {
  gap: clamp(12px, 1.83vw, 48px);
}

.gap-30 {
  gap: clamp(16px, 2.2vw, 48px);
}

/* flex */
.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .flex-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-j_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .flex-j_center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.flex-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}

.align-start {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* position */
.p-a {
  position: absolute;
}

.p-r {
  position: relative;
}

/* boder */
.bd_r-10 {
  border-radius: 10px;
}

.bd_r-100 {
  border-radius: 100px 100px 100px 100px;
}
@media (max-width: 767px) {
  .bd_r-100 {
    border-radius: 50px;
  }
}

.bd-gray {
  border-bottom: 1px solid #C7CCD0;
}

img {
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 1130px) {
  .pc_only2 {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* title */
.red_line_title {
  font-size: 28px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .red_line_title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.red_line_title .line {
  display: inline-block;
  width: 4px;
  height: 40px;
  background: #e60012;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .red_line_title .line {
    width: 2px;
    height: 30px;
  }
}
.red_line_title.green {
  color: #37AD0C;
}
.red_line_title.green .line {
  background: #37AD0C;
}
.red_line_title.blue {
  color: #0C45AD;
}
.red_line_title.blue .line {
  background: #0C45AD;
}
.red_line_title.right_blue {
  color: #83CFFF;
}
.red_line_title.right_blue .line {
  background: #83CFFF;
}
.red_line_title.orange {
  color: #F07319;
}
.red_line_title.orange .line {
  background: #F07319;
}
.red_line_title.red {
  color: #e60012;
}
.red_line_title.red .line {
  background: #e60012;
}

header {
  height: 150px;
}

main {
  padding-top: 150px;
}

@media (max-width: 1400px) {
  header {
    height: 140px;
  }
  main {
    padding-top: 140px;
  }
}
@media (max-width: 1200px) {
  header {
    height: 110px;
  }
  main {
    padding-top: 110px;
  }
}
@media (max-width: 1000px) {
  header {
    height: 100px;
  }
  main {
    padding-top: 100px;
  }
}
@media (max-width: 860px) {
  header {
    height: 126px;
  }
  main {
    padding-top: 126px;
  }
}
@media (max-width: 767px) {
  header {
    height: 61px;
  }
  main {
    padding-top: 61px;
  }
}
/* header */
.header {
  background-color: #fff;
  padding: clamp(12px, 1.317vw, 100%) clamp(40px, 7.32vw, 100%);
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 1200px) {
  .header {
    padding: clamp(12px, 1.317vw, 100%) 15px;
  }
}
@media only screen and (max-width: 900px) {
  .header {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 0 15px;
  }
}
.header .overlay {
  bottom: 0;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  width: 100%;
  z-index: 2000;
}
.header .overlay.active {
  visibility: visible;
}

.header_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  .header_top {
    height: 100%;
  }
}

.header_top_left {
  max-width: 580px;
}
@media only screen and (max-width: 1360px) {
  .header_top_left {
    max-width: 460px;
  }
}
@media only screen and (max-width: 1120px) {
  .header_top_left {
    max-width: 300px;
  }
}
@media only screen and (max-width: 900px) {
  .header_top_left {
    max-width: 300px;
  }
}
@media only screen and (max-width: 850px) {
  .header_top_left {
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .header_top_left {
    width: calc(100% - 50px);
    padding-top: 0;
  }
}

h1.header_logo_set {
  line-height: 1;
}

.header_logo_set {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: clamp(300px, 33.38vw, 100%);
  height: 100%;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .header_logo_set {
    width: 100%;
    line-height: 1;
  }
}
.header_logo_set .header_logo01 {
  width: 43.4%;
  height: auto;
  line-height: 1;
}
.header_logo_set .header_logo02 {
  width: 53.7%;
  height: auto;
  line-height: 1;
  padding-bottom: 14px;
}

.header_logo {
  width: clamp(300px, 33.38vw, 100%);
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  .header_logo {
    display: none;
  }
}

.header_logo_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header_logo_sp {
    width: 164px;
    height: auto;
    display: block;
  }
}

.header_group_text {
  font-size: 12px;
  color: #666;
}

.header_service_text {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.header_top_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 850px) {
  .header_top_right {
    gap: 10px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header_top_right {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .hambuger {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hambuger {
    display: block;
    position: relative;
    width: 30px;
    height: 15px;
    z-index: 5000;
  }
  .hambuger span {
    position: absolute;
    background: #F9232F;
    width: 100%;
    height: 2px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .hambuger span:first-child {
    top: 0;
  }
  .hambuger span:nth-child(2) {
    top: 5px;
  }
  .hambuger span:last-child {
    top: 10px;
  }
  .hambuger.active span {
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
  .hambuger.active span:first-child {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    top: 8px;
  }
  .hambuger.active span:nth-child(2), .hambuger.active span:last-child {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: 8px;
  }
}

.header_link {
  font-size: clamp(10px, 0.88vw, 12px);
  color: #666;
  text-decoration: none;
}
.header_link.out_link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 18px;
  padding-left: 0;
}
.header_link.out_link::after {
  content: "";
  background-image: url("../img/common/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header_button {
  background: -webkit-gradient(linear, left top, right top, from(#c7081d), to(#ff485b));
  background: -webkit-linear-gradient(left, #c7081d, #ff485b);
  background: linear-gradient(to right, #c7081d, #ff485b);
  color: #fff;
  width: clamp(160px, 14.64vw, 200px);
  height: clamp(36px, 3.22vw, 44px);
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  .header_button {
    font-size: 12px;
  }
}

.header_nav {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .header_nav {
    position: absolute;
    height: auto;
    left: auto;
    right: -140%;
    top: 0;
    background: #fff;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    z-index: 11;
    overflow: scroll;
    width: 70%;
    height: 100vh;
    max-width: svw(250);
    border-radius: 0 0 0 svw(20);
    padding-top: 50px;
  }
  .header_nav.active {
    right: 0;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
  }
}
@media (max-width: 560px) {
  .header_nav {
    width: 100%;
  }
}

.nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .nav_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    height: auto;
    padding: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.nav_list > li {
  position: relative;
}
.nav_list > li.sp_menu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .nav_list > li.sp_menu {
    display: block;
  }
}

.nav_list li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: clamp(12px, 1.025vw, 18px);
}

.nav_list li a:hover {
  color: #ff2b41;
}

.nav_item_with_dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 180px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .nav_item_with_dropdown .dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    height: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    position: static;
  }
}

.dropdown {
  border-radius: 10px;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.nav_item_with_dropdown .dropdown li a {
  display: block;
  text-decoration: none;
  text-align: left;
  padding-left: 10px;
}

.dropdown li:first-child a {
  padding-top: 20px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .dropdown li:first-child a {
    padding-top: 15px;
    padding-bottom: 0;
  }
}

.dropdown li:last-child a {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .dropdown li:last-child a {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.nav_item_with_dropdown .dropdown li a:hover {
  color: #ff2b41;
}

.nav_item_with_dropdown:hover .dropdown {
  display: block;
}

/* title */
.main_title {
  font-size: clamp(24px, 3.37vw, 60px);
  color: white;
}

.subtitle {
  color: #ff2b41;
  font-weight: 800;
  display: block;
  font-size: clamp(18px, 2.05vw, 36px);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
}

.breadcrumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 45px;
  font-size: 14px;
  color: #111;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.breadcrumb li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin: 0 8px;
  color: #333;
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
  color: #111;
  white-space: nowrap;
}

/* Contact */
.contact_wrapper {
  background: url("../img/common/cta_bg.jpg") no-repeat center top/cover;
  border-radius: 100px;
}
@media only screen and (max-width: 767px) {
  .contact_wrapper {
    border-radius: 50px;
  }
}

.contact_section {
  padding: clamp(32px, 5.86vw, 150px) clamp(40px, 7.32vw, 200px);
  border-radius: 30px;
  color: #000000;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact_section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contact_label {
  color: red;
  font-weight: bold;
  font-size: clamp(18px, 2.05vw, 36px);
  font-family: "Montserrat", sans-serif;
}

.contact_title {
  font-size: clamp(28px, 3.367vw, 46px);
  font-weight: bold;
  margin: 10px 0 30px;
}

.contact_sub {
  font-size: clamp(14px, 1.3168vw, 18px);
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: bold;
}

.contact_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 40px auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact_buttons {
    gap: 20px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact_btn {
  background: -webkit-gradient(linear, left top, right top, from(#c7081d), to(#ff485b));
  background: -webkit-linear-gradient(left, #c7081d, #ff485b);
  background: linear-gradient(to right, #c7081d, #ff485b);
  color: white;
  font-size: clamp(18px, 1.903vw, 26px);
  width: calc((100% - 40px) / 2);
  height: clamp(80px, 9.15vw, 125px);
  border-radius: 100px;
  font-weight: bold;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .contact_btn {
    width: 100%;
    max-width: 400px;
  }
}

.icon {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_info p {
  font-size: clamp(14px, 1.317vw, 18px);
  margin: 5px 0;
  font-weight: bold;
}

/* footer */
.footer {
  background-color: #e5f2ff;
  padding-top: clamp(16px, 12.45vw, 265px);
  padding-left: clamp(16px, 12.45vw, 265px);
  padding-right: clamp(16px, 12.45vw, 265px);
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer_company img {
  width: clamp(200px, 20.5vw, 320px);
}

.footer_company p {
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
  font-weight: 500;
}

.footer_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .footer_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_company {
  max-width: 500px;
}

.link_blank {
  position: relative;
  padding-right: 1.2em;
  font-size: 14px;
  display: inline-block;
}
.link_blank:after {
  content: "";
  background-image: url("../img/common/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.link_blank.f-14 {
  font-size: clamp(12px, 1.025vw, 20px);
}
.link_blank.f-14:after {
  content: "";
  background-image: url("../img/common/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer_company .group {
  font-size: 0.9rem;
  color: #444;
}

.company_name {
  font-size: clamp(15px, 1.61vw, 32px);
  margin: 8px 0;
  font-weight: bold;
}

.custom_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom_list_item {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
}

.custom_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background-color: #ff2e4e;
  border-radius: 50%;
}

.footer_nav {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 100px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer_nav {
    gap: 14px 10px;
  }
}

.footer_links {
  border-top: 1px solid #868686;
}

.footer_links ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 52px;
  padding: 20px 0 30px;
  margin: 0;
  list-style: none;
  font-size: 14px;
  color: #868686;
}

.footer_links li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 18px;
  padding-left: 0;
}

.footer_links li::after {
  content: "";
  background-image: url("../img/common/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer_copy {
  font-size: 10px;
  color: #868686;
}

.link_underline {
  text-decoration: underline;
}
.link_underline:hover {
  text-decoration: none;
}

.fw500 {
  font-weight: 500;
}

.pagetop {
  position: fixed;
  z-index: 100;
  width: 62px;
  height: 62px;
  background: #F9232F;
  bottom: 3.513909224%;
  right: 3.513909224%;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  border-radius: 50%;
  opacity: 0;
}
.pagetop:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
          transform: translate(-50%, -20%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}/*# sourceMappingURL=common.css.map */