@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
ul {
  padding: 0;
}

a {
  transition: all 0.4s ease-in-out;
}

body {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  counter-reset: number 0;
  background-color: #fff;
  position: relative;
}
body *:not(br) {
  line-height: 1.8;
}

br {
  line-height: 1.2;
}

/* list-styleがいらない場合はこれも */
ul {
  list-style: none;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: #1C1C1C;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  vertical-align: middle;
}

hr {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

b {
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.pc {
  display: block;
}
@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
}

.pc_m {
  display: block;
}
@media screen and (max-width: 834px) {
  .pc_m {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 834px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
}

.cta_btn {
  max-width: 578px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #0068B6;
  color: #fff;
  box-shadow: 3px 6px 0px #00508D;
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
  position: relative;
}
.cta_btn::before {
  content: "";
  display: block;
  width: 35px;
  height: 71px;
  background-image: url(../images/ico_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 10px;
}
@media screen and (max-width: 834px) {
  .cta_btn::before {
    width: 25px;
    height: 37px;
    margin-right: 10px;
  }
}
.cta_btn::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url(../images/ico_btnarw.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .cta_btn::after {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}
.cta_btn > span {
  display: inline-block;
  font-size: clamp(26px, 6.8421052632vw, 39px);
  font-weight: 600;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
.cta_btn > span > span {
  display: block;
  font-size: clamp(12px, 3.1578947368vw, 18px);
  font-weight: 400;
  line-height: 1.2;
}
.cta_btn > span > span small {
  font-size: clamp(10px, 2.6315789474vw, 14px);
  font-weight: 400;
  line-height: 1.2;
}
.cta_btn.-mail {
  background-color: #FEA805;
  box-shadow: 3px 6px 0px #BF7E02;
}
.cta_btn.-mail::before {
  width: 61px;
  height: 48px;
  background-image: url(../images/ico_mail.png);
}
@media screen and (max-width: 834px) {
  .cta_btn.-mail::before {
    width: 32px;
    height: 31px;
    margin-right: 10px;
  }
}
.cta_btn.-mail::after {
  background-image: url(../images/ico_btnarw02.png);
}
.cta_btn.-mail > span {
  font-size: clamp(20px, 5.2631578947vw, 29px);
}
@media (hover: hover) {
  .cta_btn:hover {
    opacity: 1;
    box-shadow: 0px 0px 0px #00508D;
    transform: translateY(6px);
  }
}

.c_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 284px;
  height: 70px;
  border-radius: 50px;
  background-color: #0693E3;
  border: 2px solid #0693E3;
  color: #fff;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .c_btn {
    max-width: 272px;
    height: 64px;
    font-size: 16px;
  }
}
@media (hover: hover) {
  .c_btn:hover {
    background-color: #fff;
    color: #0693E3;
    opacity: 1;
  }
}
.c_btn.-tel {
  background-color: #0068B6;
  border: 2px solid #0068B6;
}
.c_btn.-tel::before {
  content: "";
  display: block;
  width: 24px;
  height: 30px;
  background-image: url(../images/ico_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.c_btn.-mail {
  background-color: #FEA805;
  border: 2px solid #FEA805;
}
.c_btn.-mail::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/ico_mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
.c_btn.-corp::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  background-image: url(../images/ico_link.png);
}
@media (hover: hover) {
  .c_btn.-corp:hover::after {
    background-image: url(../images/ico_link_on.png);
  }
}
.c_btn.-submit {
  justify-content: space-between;
  padding: 0 20px;
}
.c_btn.-submit::after {
  content: "";
  display: block;
  width: 26px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  background-image: url(../images/ico_submit.png);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .c_btn.-submit:hover::after {
    background-image: url(../images/ico_submit_on.png);
    transform: translateX(5px);
  }
}

.sec_ttl {
  font-size: clamp(25px, 6.5789473684vw, 32px);
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 24px;
}
.sec_ttl span {
  display: block;
  color: #7BAAC0;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 4.2105263158vw, 17px);
}

.page_ttl {
  padding: 175px 0 50px;
  background-color: #003E6C;
  text-align: center;
  font-size: clamp(25px, 6.5789473684vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .page_ttl {
    padding: 30px 0;
  }
}

input[type=text],
input[type=email],
input[type=tel] {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #CECECE;
  background-color: #F5F5F5;
  font-size: clamp(16px, 4.2105263158vw, 16px);
  font-weight: 400;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  outline: none;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder {
  color: #a7a7a7;
}

textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #CECECE;
  background-color: #F5F5F5;
  font-size: clamp(16px, 4.2105263158vw, 16px);
  font-weight: 400;
}
textarea:focus {
  outline: none;
}
textarea::placeholder {
  color: #a7a7a7;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
  background-color: #F5F5F5;
  border: 1px solid #CECECE;
  width: 20px;
  height: 20px;
}

.contact label {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}
.contact label a {
  color: #0693E3;
}

.header {
  max-width: 1480px;
  width: 90%;
  height: 90px;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #fff;
  padding: 0 62px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 1280px) {
  .header {
    padding: 0 23px;
  }
}
@media screen and (max-width: 834px) {
  .header {
    width: 100%;
    max-width: none;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
    padding: 0 16px;
    height: 64px;
    box-shadow: none;
    position: sticky;
  }
}
.header-in {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-in h1 {
  max-width: 402px;
  width: 27%;
}
@media screen and (max-width: 834px) {
  .header-in h1 {
    width: 68%;
    max-width: 284px;
  }
}
.header-in h1 a {
  display: block;
}
.header-in h1 a img {
  width: 100%;
  height: auto;
}
.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .header-nav {
    display: none;
  }
}
.header-nav a {
  display: inline-block;
  font-size: 1vw;
  color: #333333;
  text-align: center;
}
.header-nav a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid transparent;
  border-bottom-color: #0693E3;
  border-right-color: #0693E3;
  transform: rotate(45deg);
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1920px) {
  .header-nav a {
    font-size: 16px;
  }
}
.header-nav a:hover {
  color: #0693E3;
}
.header-nav a:hover::after {
  transform: rotate(45deg) translate(3px, 3px);
}

.footer {
  background-color: #003E6C;
  padding: 40px 0;
}
.footer_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer_logo {
  display: block;
  width: 100%;
  max-width: 595px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 834px) {
  .footer_logo {
    max-width: 395px;
    width: 90%;
    margin: 0 auto 20px;
  }
}
.footer p {
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .footer p span {
    display: none;
  }
}
.footer_telfax {
  text-align: center;
  margin-bottom: 20px;
}
.footer_telfax .time {
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}
.footer_telfax .tel {
  font-size: clamp(25px, 6.5789473684vw, 25px);
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-right: 20px;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 834px) {
  .footer_telfax .tel {
    font-size: 32px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.footer_telfax .fax {
  font-size: clamp(20px, 5.2631578947vw, 25px);
  font-weight: 600;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}
.footer .c_btn {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .footer .c_btn {
    margin-bottom: 20px;
  }
}
.footer small {
  display: block;
  font-size: clamp(12px, 3.1578947368vw, 14px);
  text-align: center;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
}

#topBtn {
  position: fixed;
  right: 20px;
  display: block;
  z-index: 900;
  background-image: url(../images/ico_totop.png);
  background-size: contain;
  width: 70px;
  height: 70px;
  transition: none;
}
@media screen and (max-width: 834px) {
  #topBtn {
    width: 45px;
    height: 45px;
    right: 10px;
  }
}

.main {
  width: 100%;
}

.hamburger-menu {
  display: none;
}
@media screen and (max-width: 834px) {
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu .menu-btn {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    height: 64px;
    width: 64px;
    justify-content: center;
    align-items: center;
    z-index: 1300;
    background-color: transparent;
    background-image: url(../images/btn_hm.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .hamburger-menu .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 1200;
    background-color: #fff;
    transition: all 0.5s;
    overflow: scroll;
  }
  .hamburger-menu #menu-btn-check {
    display: none;
  }
  .hamburger-menu #menu-btn-check:checked ~ .menu-btn {
    background-image: url(../images/btn_hm_close.png);
  }
  .hamburger-menu #menu-btn-check:checked ~ .menu-content {
    left: 0;
  }
  .hamburger-menu .menu-content__inner {
    width: 100%;
    height: 100%;
  }
  .hamburger-menu .menu-content__inner .logo_box {
    width: 100%;
    background-color: #fff;
    width: 100%;
    height: 60px;
    padding: 10px 0;
    margin-bottom: 35px;
  }
  .hamburger-menu .menu-content__inner .menu-logo {
    width: 68%;
    max-width: 284px;
    margin-left: 16px;
  }
  .hamburger-menu .menu-content__inner .menu-logo img {
    width: 100%;
    height: 100%;
  }
  .hamburger-menu .menu-content__inner .sp_navi {
    display: block;
    z-index: 1;
    width: 100%;
    margin-bottom: 4rem;
  }
  .hamburger-menu .menu-content__inner .sp_navi div {
    width: 60%;
    max-width: 284px;
    margin: 0 auto 20px;
  }
  .hamburger-menu .menu-content__inner .sp_navi div:last-child {
    margin-bottom: 0;
  }
  .hamburger-menu .menu-content__inner .sp_navi a {
    display: inline-block;
    text-align: left;
    font-size: 18px;
  }
  .hamburger-menu .menu-content__inner .sp_navi a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1px solid transparent;
    border-bottom-color: #0693E3;
    border-right-color: #0693E3;
    transform: rotate(-45deg);
    margin: 0 0 0 20px;
  }
  .hamburger-menu .menu-content__inner .c_btn.-tel {
    margin-bottom: 20px;
  }
}

.text {
  font-size: clamp(16px, 4.2105263158vw, 18px);
}
.text.-ct {
  text-align: center;
}
.text.-lft {
  text-align: left;
}
.text.-rgt {
  text-align: right;
}
.text span {
  font-size: clamp(14px, 3.6842105263vw, 16px);
}

._note {
  font-size: clamp(14px, 3.6842105263vw, 14px);
}
._note.-ct {
  text-align: center;
}

.mg20 {
  margin-bottom: 20px !important;
}

.mg30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 480px) {
  .mg30 {
    margin-bottom: 20px !important;
  }
}

.mg40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 480px) {
  .mg40 {
    margin-bottom: 30px !important;
  }
}

.mg0 {
  margin-bottom: 0 !important;
}

.col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}
@media screen and (max-width: 834px) {
  .col_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.col_3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr) 22%;
  column-gap: 20px;
}
@media screen and (max-width: 480px) {
  .col_3 {
    display: block;
  }
}

.flex_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2%;
}
@media screen and (max-width: 834px) {
  .flex_box {
    display: block;
  }
}
.flex_box_text {
  width: 55%;
}
@media screen and (max-width: 834px) {
  .flex_box_text {
    width: 100%;
  }
}
.flex_box_img {
  width: 43%;
}
@media screen and (max-width: 834px) {
  .flex_box_img {
    width: 100%;
  }
}
.flex_box_img img {
  width: 100%;
  height: auto;
}

.not_found {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.not_found_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.not_found_ttl {
  font-size: clamp(25px, 6.5789473684vw, 40px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .not_found_ttl {
    margin-bottom: 20px;
  }
}
.not_found P {
  margin-bottom: 80px;
}
@media screen and (max-width: 834px) {
  .not_found P {
    margin-bottom: 40px;
  }
}

.mv {
  width: 100%;
  z-index: 1;
}

.cta {
  width: 100%;
  padding: 50px 0;
  background-color: #003E6C;
}
@media screen and (max-width: 834px) {
  .cta {
    padding: 30px 0;
  }
}
.cta_ttl {
  font-size: clamp(24px, 6.3157894737vw, 50px);
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}
.cta_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
@media screen and (max-width: 1090px) {
  .cta_inner {
    max-width: 578px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
@media screen and (max-width: 834px) {
  .cta_inner {
    width: 80%;
  }
}

.check {
  background-color: #fff;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .check {
    padding: 70px 0;
  }
}
@media screen and (max-width: 834px) {
  .check {
    padding: 60px 0;
  }
}
.check::before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background-color: rgba(6, 146, 227, 0.2);
  position: absolute;
  top: 0;
  left: -20%;
  transform: skewX(-20deg);
  z-index: 0;
}
@media screen and (max-width: 834px) {
  .check::before {
    left: -60%;
    width: 110%;
    transform: skewX(-25deg);
  }
}
.check::after {
  content: "";
  display: block;
  width: 40%;
  height: 0;
  padding-top: 10%;
  position: absolute;
  right: 14vw;
  bottom: -1px;
  background-image: url(../images/bg_txt.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 0;
}
@media screen and (max-width: 1480px) {
  .check::after {
    right: 6vw;
  }
}
@media screen and (max-width: 1280px) {
  .check::after {
    right: 5%;
  }
}
@media screen and (max-width: 834px) {
  .check::after {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .check .tab {
    width: 100%;
    margin: 0 auto;
  }
}
.check_inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: 53% 52%;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .check_inner {
    grid-template-columns: 1fr;
    height: auto;
    margin: 0 auto;
  }
}
.check_inner img {
  order: 1;
}
@media screen and (max-width: 834px) {
  .check_inner img {
    order: 2;
  }
}
.check_content {
  order: 2;
}
@media screen and (max-width: 834px) {
  .check_content {
    order: 1;
  }
}
.check_content {
  margin: 0 0 0 -5%;
  background-color: #0068B6;
  padding: 40px;
}
@media screen and (max-width: 1280px) {
  .check_content {
    padding: 30px;
  }
}
@media screen and (max-width: 834px) {
  .check_content {
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 20px;
  }
}
.check_content_ttl {
  font-size: clamp(22px, 5.7894736842vw, 40px);
  margin-bottom: 40px;
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .check_content_ttl {
    font-size: 3vw;
  }
}
@media screen and (max-width: 834px) {
  .check_content_ttl {
    margin-bottom: 20px;
    font-size: clamp(22px, 5.7894736842vw, 40px);
  }
}
.check_content_list {
  width: 100%;
}
.check_content_list li {
  font-size: clamp(16px, 4.2105263158vw, 22px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  border-bottom: 1px solid #0693E3;
  padding-bottom: 20px;
  padding-left: calc(15px + 1em);
  text-indent: calc(30px - 1.28em);
  position: relative;
}
@media screen and (max-width: 1280px) {
  .check_content_list li {
    font-size: 1.7vw;
    padding-left: calc(15px + 1em);
    text-indent: calc(25px - 1.4em);
  }
}
@media screen and (max-width: 834px) {
  .check_content_list li {
    font-size: clamp(16px, 4.2105263158vw, 22px);
    padding-left: calc(10px + 1em);
    text-indent: calc(20px - 1em);
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.check_content_list li::before {
  content: "";
  display: block;
  width: 30px;
  height: 26px;
  background-image: url(../images/ico_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 834px) {
  .check_content_list li::before {
    width: 21px;
    height: 18px;
    top: 3px;
  }
}

.irm {
  padding: 80px 0;
  background-color: #0693E3;
}
@media screen and (max-width: 834px) {
  .irm {
    padding: 40px 0;
  }
}
.irm_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.irm_ttl {
  font-size: clamp(23px, 6.0526315789vw, 50px);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .irm_ttl {
    margin-bottom: 30px;
  }
}
.irm_ttl span {
  color: #FFEA2F;
}
.irm_ttl br {
  display: none;
}
@media screen and (max-width: 1280px) {
  .irm_ttl br {
    display: block;
  }
}
.irm .flex_box {
  margin-bottom: 70px;
}
@media screen and (max-width: 834px) {
  .irm .flex_box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 834px) {
  .irm .flex_box .flex_box_text img {
    margin-bottom: 20px;
  }
}
.irm .flex_box h3 {
  width: 100%;
  font-size: clamp(17px, 4.4736842105vw, 32px);
  background-color: #fff;
  color: #0693E3;
  padding: 16px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .irm .flex_box h3 {
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 834px) {
  .irm .flex_box h3 {
    font-size: clamp(17px, 4.4736842105vw, 25px);
    margin-bottom: 20px;
    letter-spacing: -1px;
    padding: 8px;
    letter-spacing: -1.3px;
  }
}
.irm .flex_box p {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  color: #fff;
  font-weight: 400;
  margin-bottom: 16px;
}
.irm .flex_box p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 834px) {
  .irm .flex_box p {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 834px) {
  .irm .flex_box .flex_box_img {
    display: none;
  }
}
.irm_col {
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 834px) {
  .irm_col {
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 30px;
  }
}
.irm_col_inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1090px) {
  .irm_col_inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 834px) {
  .irm_col_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.irm_col img {
  margin-bottom: 16px;
}
.irm_col p {
  font-size: clamp(15px, 3.9473684211vw, 16px);
}

.case {
  padding: 80px 0;
  background-color: #0068B6;
}
@media screen and (max-width: 834px) {
  .case {
    padding: 40px 0;
  }
}
.case_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .case_inner {
    width: 80%;
  }
}
.case_ttl {
  font-size: clamp(24px, 6.3157894737vw, 50px);
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-bottom: 45px;
}
.case_content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 834px) {
  .case_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.case_content li {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  position: relative;
}
.case_content .mark {
  color: #0068B6;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  border-radius: 100%;
  background-color: #FFEA2F;
  padding: 10px;
  width: 98px;
  height: 98px;
  position: absolute;
  top: -20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .case_content .mark {
    top: -15px;
    left: 15px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 834px) {
  .case_content .mark {
    top: -10px;
    left: 5px;
    width: 62px;
    height: 62px;
  }
}
.case_content .mark span {
  display: block;
  text-align: center;
  line-height: 1;
}
.case_content .mark span:nth-child(1) {
  font-size: clamp(12px, 3.1578947368vw, 22px);
}
@media screen and (max-width: 1280px) {
  .case_content .mark span:nth-child(1) {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 480px) {
  .case_content .mark span:nth-child(1) {
    font-size: clamp(12px, 3.1578947368vw, 22px);
  }
}
.case_content .mark span:nth-child(2) {
  font-size: clamp(22px, 5.7894736842vw, 35px);
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .case_content .mark span:nth-child(2) {
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .case_content .mark span:nth-child(2) {
    font-size: clamp(22px, 5.7894736842vw, 35px);
  }
}
.case_content h3 {
  font-size: clamp(17px, 4.4736842105vw, 25px);
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .case_content h3 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 1280px) {
  .case_content h3.second {
    padding-left: 30px;
  }
}
@media screen and (max-width: 834px) {
  .case_content h3.second {
    padding-left: 40px;
    font-size: clamp(17px, 4.4736842105vw, 25px);
  }
}
@media screen and (max-width: 834px) {
  .case_content h3 {
    margin-bottom: 10px;
    font-size: clamp(17px, 4.4736842105vw, 25px);
  }
}
.case_content div {
  display: flex;
  gap: 17px;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .case_content div {
    flex-direction: column;
    justify-content: unset;
  }
}
.case_content div figure {
  width: 30%;
}
@media screen and (max-width: 834px) {
  .case_content div figure {
    width: 100%;
  }
}
.case_content div img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .case_content div img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
  }
}
.case_content div p {
  width: 65%;
  font-size: clamp(15px, 3.9473684211vw, 16px);
}
@media screen and (max-width: 834px) {
  .case_content div p {
    width: 100%;
  }
}

.verify {
  padding: 80px 0;
  background-color: #0693E3;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .verify {
    padding: 40px 0;
  }
}
.verify::before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.13);
  position: absolute;
  top: 0;
  right: -25%;
  z-index: 0;
  transform: skewX(-20deg);
}
@media screen and (max-width: 834px) {
  .verify::before {
    width: 150%;
    right: -100%;
  }
}
.verify_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.verify_ttl {
  font-size: clamp(24px, 6.3157894737vw, 40px);
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
.verify_text {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  color: #fff;
  text-align: center;
  font-weight: 400;
  margin-bottom: 40px;
}
.verify .col_2_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  padding: 40px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 834px) {
  .verify .col_2_item {
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1607843137);
    padding: 20px;
  }
}
.verify .col_2_item h3 {
  font-size: clamp(20px, 5.2631578947vw, 25px);
  font-weight: 500;
  margin-bottom: 20px;
}
.verify .col_2_item p {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1.4em;
}
@media screen and (max-width: 834px) {
  .verify .col_2_item p {
    margin-left: 0.6em;
    text-indent: -1.6em;
  }
}
.verify .col_2_item p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #0693E3;
  border-radius: 100%;
  margin-right: 10px;
}
.verify .col_2_item img {
  width: 100%;
  margin-top: 20px;
}

.compare {
  padding: 120px 0;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .compare {
    padding: 60px 0;
  }
}
.compare_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.compare .sec_ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .compare .sec_ttl {
    margin-bottom: 20px;
  }
}
.compare .scroll_box {
  width: 100%;
  height: 100%;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  margin-bottom: 15px;
}
.compare .scroll_box table {
  width: 1200px;
  border-collapse: separate;
  border-spacing: 1px;
  background-color: #E6E6E6;
}
.compare .scroll_box table th, .compare .scroll_box table td {
  background-color: #fff;
  text-align: center;
  padding: 12px 0;
  white-space: nowrap;
}
.compare .scroll_box table th {
  font-size: clamp(20px, 5.2631578947vw, 25px);
  font-weight: 500;
  color: #fff;
  background-color: #0068B6;
}
.compare .scroll_box table th.tokubo {
  background-color: #003E6C;
}

.works {
  padding: 40px 0;
  background-color: #003E6C;
}
@media screen and (max-width: 834px) {
  .works {
    padding: 60px 0;
  }
}
.works_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.works .sec_ttl {
  color: #fff;
  font-weight: 400;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .works .sec_ttl {
    margin-bottom: 20px;
  }
}
.works_content {
  width: 100%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 55% 40%;
  align-items: end;
  gap: 5%;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .works_content {
    padding: 20px 0;
    grid-template-columns: 100%;
  }
}
.works_content_text * {
  color: #fff;
}
@media screen and (max-width: 834px) {
  .works_content_text img {
    margin-bottom: 16px;
  }
}
.works_content h3 {
  font-size: clamp(22px, 5.7894736842vw, 32px);
  font-weight: 500;
  margin-bottom: 20px;
}
.works_content h3 span {
  display: inline-block;
  font-size: clamp(12px, 3.1578947368vw, 14px);
  font-weight: 400;
  vertical-align: middle;
  margin-right: 10px;
  border: 1px solid #fff;
  padding: 2px 4px;
  border-radius: 3px;
}
@media screen and (max-width: 834px) {
  .works_content h3 span {
    display: block;
    width: 5em;
  }
}
.works_content dl {
  font-size: clamp(15px, 3.9473684211vw, 16px);
}
@media screen and (max-width: 834px) {
  .works_content dl {
    margin-bottom: 16px;
  }
}
.works_content dl div {
  display: flex;
  margin-bottom: 12px;
}
.works_content dl dt {
  display: inline-block;
  white-space: nowrap;
}
.works_content dl dt span {
  color: #0693E3;
}
.works_content dl dd {
  display: inline-block;
}
.works_detail {
  background-color: #0068B6;
  padding: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 834px) {
  .works_detail {
    padding: 15px;
  }
}
.works_detail h4 {
  font-size: clamp(17px, 4.4736842105vw, 20px);
  font-weight: 500;
  margin-bottom: 10px;
}
.works_detail ul {
  padding-left: 1.5em;
  font-size: clamp(15px, 3.9473684211vw, 16px);
}
.works_detail ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.works_others {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 834px) {
  .works_others {
    display: block;
    text-align: center;
  }
}
.works_others h3 {
  font-size: clamp(22px, 5.7894736842vw, 32px);
  font-weight: 500;
  color: #fff;
  display: inline-block;
}
@media screen and (max-width: 834px) {
  .works_others h3 {
    display: block;
    text-align: center;
  }
}
.works_others p {
  display: inline-block;
  font-size: clamp(15px, 3.9473684211vw, 16px);
  color: #fff;
}
@media screen and (max-width: 834px) {
  .works_others p {
    display: block;
  }
}

.flow {
  padding: 156px 0 100px;
  background-image: url(../images/bg_flow.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .flow {
    padding: 60px 0;
    background-image: url(../images/bg_flow_sp.png);
  }
}
.flow_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.flow .sec_ttl {
  display: inline-block;
  margin-bottom: 40px;
}
.flow .flow_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media screen and (max-width: 834px) {
  .flow .flow_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.flow .flow_list div {
  background-color: #fff;
  position: relative;
}
.flow .flow_list div::after {
  content: "";
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #0693E3;
  border-right: 1px solid #0693E3;
  position: absolute;
  bottom: 50%;
  right: -30px;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (max-width: 834px) {
  .flow .flow_list div::after {
    width: 20px;
    height: 20px;
    right: -20px;
  }
}
.flow .flow_list div .mark {
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  border-radius: 100%;
  background-color: #0693E3;
  padding: 10px;
  width: 62px;
  height: 62px;
  position: absolute;
  top: -10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .flow .flow_list div .mark {
    top: -15px;
    left: 3px;
    width: 52px;
    height: 52px;
  }
}
.flow .flow_list div .mark span {
  display: block;
  text-align: center;
  line-height: 1;
}
.flow .flow_list div .mark span:nth-child(1) {
  font-size: clamp(12px, 3.1578947368vw, 14px);
  font-weight: 400;
}
.flow .flow_list div .mark span:nth-child(2) {
  font-size: clamp(18px, 4.7368421053vw, 24px);
  font-weight: 700;
}
.flow .flow_list div:nth-of-type(3)::after, .flow .flow_list div:nth-of-type(7)::after, .flow .flow_list div:nth-of-type(11)::after {
  display: none;
}
@media screen and (max-width: 834px) {
  .flow .flow_list div:nth-of-type(3)::after, .flow .flow_list div:nth-of-type(7)::after, .flow .flow_list div:nth-of-type(11)::after {
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .flow .flow_list div:nth-of-type(2n)::after, .flow .flow_list div:nth-of-type(11)::after {
    display: none;
  }
}
.flow .flow_list p {
  padding: 40px 0;
  text-align: center;
  font-size: clamp(14px, 3.6842105263vw, 16px);
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .flow .flow_list p {
    padding: 20px 0;
  }
}

.faq {
  padding: 160px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .faq {
    padding: 80px 0 0;
  }
}
.faq_inner {
  width: 80%;
  max-width: 845px;
  margin: 0 auto;
}
.faq .sec_ttl {
  font-weight: 400;
  margin-bottom: 40px;
}
.faq_list {
  width: 100%;
}
.faq_item {
  width: 100%;
  margin-bottom: 26px;
}
.faq_item dt {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  background-color: #0693E3;
  padding: 20px 35px;
  color: #fff;
  border-radius: 10px 10px 0px 0px;
  position: relative;
}
@media screen and (max-width: 834px) {
  .faq_item dt {
    padding: 16px 30px 16px 20px;
  }
}
.faq_item dt::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  background: #FFEA2F;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .faq_item dt::after {
    right: 15px;
  }
}
.faq_item dt.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq_item dt p {
  padding-left: 1em;
  text-indent: -1em;
}
.faq_item dt span {
  color: #FFEA2F;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}
.faq_item dd {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  margin-top: 6px;
  background-color: rgba(6, 146, 227, 0.1);
  padding: 20px 35px;
  border-radius: 0px 0px 10px 10px;
}
@media screen and (max-width: 834px) {
  .faq_item dd {
    padding: 16px 20px;
  }
}
.faq_item dd p {
  padding-left: 1em;
  text-indent: -1em;
}
.faq_item dd span {
  color: #0068B6;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.about {
  padding: 215px 0 53px;
  background-color: #fff;
  background-image: url(../images/bg_about.png);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .about {
    padding: 91px 0 30px;
    background-image: url(../images/bg_about_sp.png);
    background-size: cover;
  }
}
.about .message_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 87px;
}
@media screen and (max-width: 834px) {
  .about .message_inner {
    display: block;
    margin-bottom: 79px;
  }
}
.about .message_inner .message_text {
  width: 60%;
}
@media screen and (max-width: 834px) {
  .about .message_inner .message_text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.about .message_inner .message_text .en {
  font-size: clamp(25px, 6.5789473684vw, 42px);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #0068B6;
  line-height: 1;
  margin-bottom: 24px;
}
.about .message_inner .message_text .message_ttl {
  font-size: clamp(18px, 4.7368421053vw, 32px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
}
@media screen and (max-width: 834px) {
  .about .message_inner .message_text .message_ttl {
    margin-bottom: 20px;
  }
}
.about .message_inner .message_text .message_ttl span {
  display: inline-block;
  background-color: #003E6C;
  padding: 12px 30px;
  margin-bottom: 12px;
}
@media screen and (max-width: 834px) {
  .about .message_inner .message_text .message_ttl span {
    padding: 8px 15px;
  }
}
.about .message_inner .message_text p {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  color: #fff;
}
.about .message_inner .message_img {
  width: 30%;
}
@media screen and (max-width: 834px) {
  .about .message_inner .message_img {
    width: 80%;
    margin: 0 auto;
  }
}
.about .message_inner .message_img img {
  border-radius: 20px;
  margin-bottom: 20px;
}
.about .message_inner .message_img figcaption p {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  color: #fff;
  text-align: center;
}
.about .message_inner .message_img figcaption p span {
  display: block;
}
.about .message_inner .message_img figcaption img {
  display: inline-block;
  width: 147px;
  vertical-align: middle;
  margin-top: 10px;
  margin-left: 10px;
}
.about_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.about .sec_ttl {
  color: #fff;
  margin-bottom: 40px;
}
.about table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1px;
  background-color: #f7f6f6;
}
.about table th, .about table td {
  background-color: #fff;
  padding: 18px 14px;
  vertical-align: top;
  font-size: clamp(15px, 3.9473684211vw, 16px);
}
.about table th {
  white-space: nowrap;
  background-color: #E6E6E6;
}
.about .col_2 {
  margin-bottom: 32px;
  align-items: stretch;
}
@media screen and (max-width: 1090px) {
  .about .col_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
  }
}
.about .col_2 img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about_works {
  width: 100%;
  background-color: #D9EFFB;
  padding: 32px 54px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1607843137);
}
@media screen and (max-width: 834px) {
  .about_works {
    padding: 15px;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1607843137);
  }
}
.about_works h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .about_works h3 {
    flex-direction: column;
    gap: 10px;
  }
}
.about_works h3 span:nth-of-type(1) {
  display: inline-block;
  padding: 8px 20px;
  background-color: #0068B6;
  color: #fff;
  font-size: clamp(20px, 5.2631578947vw, 25px);
  font-weight: 500;
  line-height: 1;
  border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .about_works h3 span:nth-of-type(1) {
    padding: 8px 15px;
    border-radius: 10px;
  }
}
.about_works h3 span:nth-of-type(2) {
  color: #0068B6;
  font-size: clamp(20px, 5.2631578947vw, 25px);
  font-weight: 500;
  line-height: 1;
}
.about_works_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 834px) {
  .about_works_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about_works_list p {
  font-size: clamp(15px, 3.9473684211vw, 16px);
  font-weight: 400;
  padding-left: 1em;
  text-indent: -1em;
}
.about_works_list p span {
  color: #0693E3;
}

.contact {
  padding: 120px 0;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .contact {
    padding: 60px 0;
  }
}
.contact_inner {
  width: 80%;
  max-width: 752px;
  margin: 0 auto;
}
.contact .sec_ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .contact .sec_ttl {
    margin-bottom: 24px;
  }
}
.contact_ttl {
  font-size: clamp(20px, 5.2631578947vw, 25px);
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  color: #FEA805;
}
@media screen and (max-width: 834px) {
  .contact_ttl {
    margin-bottom: 24px;
  }
}
.contact_text {
  font-size: clamp(16px, 4.2105263158vw, 16px);
  font-weight: 400;
  margin-bottom: 64px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .contact_text {
    margin-bottom: 40px;
  }
}
.contact_list {
  width: 100%;
}
.contact_item {
  width: 100%;
  border-top: 1px solid #E6E6E6;
  padding: 20px 0;
}
.contact_item dt {
  font-size: clamp(16px, 4.2105263158vw, 16px);
  margin-bottom: 18px;
}
.contact_item dt span {
  display: inline-block;
  font-size: clamp(12px, 3.1578947368vw, 13px);
  background-color: #D6D2D2;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  margin-left: 50px;
  line-height: 1;
}
.contact_item dt.required span {
  background-color: #BE254A;
}
.contact_agree {
  width: 100%;
  margin-top: 66px;
  margin-bottom: 66px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .contact_agree {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.contact_btn {
  width: 100%;
  text-align: center;
}
.contact_btn .c_btn {
  width: 100%;
  min-width: 300px;
  margin: 0 auto;
}
.contact ._note {
  font-size: clamp(14px, 3.6842105263vw, 15px);
  color: #A7A7A7;
  margin-top: 10px;
}

.privacy {
  padding: 120px 0;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .privacy {
    padding: 60px 0;
  }
}
.privacy_inner {
  width: 90%;
  max-width: 845px;
  margin: 0 auto;
}
.privacy_lead {
  font-size: clamp(16px, 4.2105263158vw, 16px);
  margin-bottom: 120px;
}
@media screen and (max-width: 834px) {
  .privacy_lead {
    margin-bottom: 40px;
  }
}
.privacy_ttl {
  font-size: clamp(22px, 5.7894736842vw, 25px);
  margin-bottom: 20px;
}
.privacy_ttl span {
  color: #0693E3;
}
.privacy_text {
  font-size: clamp(16px, 4.2105263158vw, 16px);
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .privacy_text {
    margin-bottom: 40px;
  }
}
.privacy_list {
  width: 100%;
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .privacy_list {
    margin-bottom: 40px;
  }
}
.privacy_list li {
  font-size: clamp(16px, 4.2105263158vw, 16px);
  margin-bottom: 10px;
}
.privacy_signature {
  width: 234px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 834px) {
  .privacy_signature {
    margin: 0 auto;
  }
}
.privacy_signature img {
  display: inline-block;
  width: 100%;
  max-width: 147px;
}
/*# sourceMappingURL=map/style.css.map */
