@charset "UTF-8";
/*-------------------------------------------------------------------
リセット
/*-------------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  letter-spacing: 0em;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  width: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  background-color: #ffff99;
  color: #000000;
  text-decoration: none;
}

mark {
  background-color: #ffff99;
  color: #000000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

li {
  list-style: none;
}

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

/* change border colour to suit your needs */
hr {
  border: 0;
  border-top: 1px solid #cccccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  line-height: 1;
  vertical-align: bottom;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
  outline: none;
  padding: 0;
}

*, *:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.sp {
  display: none !important;
}

.sp_inline {
  display: none;
}

.pc_inline {
  display: inline;
}

@media screen and (min-width: 768px) {
  .imgalpha {
    cursor: pointer;
    transition: opacity 0.6s;
  }
  .imgalpha:hover {
    opacity: 0.6 !important;
  }
}
header {
  position: fixed;
  width: 100%;
  z-index: 999;
  transition: 0.3s;
  background-color: #fff;
  opacity: 0;
}
header .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 36px 15px 30px;
  position: relative;
}
header .header_wrap .logo_wrap {
  max-width: 330px;
  width: 100%;
}
header .header_wrap .logo_wrap .logo {
  max-width: 274px;
  width: 100%;
}
header .header_wrap .logo_wrap p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.67;
  padding-top: 10px;
}
header .header_wrap .nav_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  width: calc(100% - 18.33vw);
}
header .header_wrap .nav_wrap .navigation_cont .nav_menu {
  display: flex;
  justify-content: space-between;
  gap: 56px;
}
header .header_wrap .nav_wrap .navigation_cont a {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s;
}
@media only screen and (min-width: 769px) {
  header .header_wrap .nav_wrap .navigation_cont a:hover {
    color: var(--theme-color01);
  }
}
header .header_wrap .nav_wrap .navigation_cont .adj {
  display: none;
}
header .header_wrap .nav_wrap .menu_trigger {
  display: none;
}
header .header_wrap .nav_wrap .contact_btn {
  max-width: 213px;
  width: 100%;
  height: 39px;
  background-color: var(--theme-color01);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 19.5px;
}
header .header_wrap .nav_wrap .contact_btn .mailIcon {
  display: none;
}
header .header_wrap .nav_wrap .contact_btn .txt {
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (max-width: 1550px) {
  header .header_wrap .nav_wrap {
    gap: 25px;
  }
  header .header_wrap .nav_wrap .navigation_cont .nav_menu {
    gap: 30px;
  }
  header .header_wrap .nav_wrap .navigation_cont a {
    font-size: 14px;
  }
  header .header_wrap .nav_wrap .contact_btn {
    max-width: 140px;
  }
  header .header_wrap .nav_wrap .contact_btn .txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1210px) {
  header .header_wrap .nav_wrap {
    gap: 25px;
  }
  header .header_wrap .nav_wrap .navigation_cont {
    background-color: rgba(0, 74, 159, 0.5);
  }
  header .header_wrap .nav_wrap .navigation_cont .nav_menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 106px;
    left: 0;
    overflow-y: scroll;
    width: 100%;
    max-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  header .header_wrap .nav_wrap .navigation_cont .nav_menu.active {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  header .header_wrap .nav_wrap .navigation_cont a {
    font-size: 34px;
    width: 100%;
    display: block;
    padding: 30px 60px;
    background-color: #fff;
  }
  header .header_wrap .nav_wrap .navigation_cont a:not(:last-child) {
    border-bottom: 2px solid #c0d5e3;
  }
  header .header_wrap .nav_wrap .navigation_cont .adj {
    display: block;
  }
  header .header_wrap .nav_wrap .menu_trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    height: 60px;
    position: relative;
  }
  header .header_wrap .nav_wrap .menu_trigger span {
    position: absolute;
    background-color: var(--theme-color01);
    width: 60px;
    height: 3px;
    top: 1px;
    left: 0;
    transition: all 0.3s ease;
  }
  header .header_wrap .nav_wrap .menu_trigger span:nth-child(1) {
    top: 1px;
  }
  header .header_wrap .nav_wrap .menu_trigger span:nth-child(2) {
    top: 18px;
  }
  header .header_wrap .nav_wrap .menu_trigger span:nth-child(3) {
    top: 35px;
  }
  header .header_wrap .nav_wrap .menu_trigger .txt {
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-color01);
    position: absolute;
    bottom: 0;
  }
  header .header_wrap .nav_wrap .menu_trigger.active span {
    transition: all 0.3s ease;
  }
  header .header_wrap .nav_wrap .menu_trigger.active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }
  header .header_wrap .nav_wrap .menu_trigger.active span:nth-child(2) {
    opacity: 0;
  }
  header .header_wrap .nav_wrap .menu_trigger.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }
  header .header_wrap .nav_wrap .contact_btn {
    display: flex;
    flex-direction: column;
    max-width: 72px;
    height: auto;
    background-color: transparent;
    color: var(--theme-color01);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 19.5px;
  }
  header .header_wrap .nav_wrap .contact_btn .mailIcon {
    display: block;
    width: 60px;
    margin: 0 auto;
  }
  header .header_wrap .nav_wrap .contact_btn .txt {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  header .header_wrap {
    padding: 1.3333333333vw 2.1333333333vw 2.1333333333vw 2.8vw;
    align-items: flex-end;
  }
  header .header_wrap .logo_wrap {
    max-width: 50.6666666667vw;
  }
  header .header_wrap .logo_wrap .logo {
    max-width: 28.8vw;
  }
  header .header_wrap .logo_wrap p {
    font-size: 2.2vw;
    line-height: 1.54;
    padding-top: 0.9333333333vw;
    white-space: nowrap;
  }
  header .header_wrap .nav_wrap {
    gap: 3.3333333333vw;
  }
  header .header_wrap .nav_wrap .navigation_cont .nav_menu {
    justify-content: flex-start;
    gap: 0;
    top: 12.9333333333vw;
    height: 100vh;
    background-color: rgba(0, 74, 159, 0.5);
  }
}
@media only screen and (max-width: 768px) and (max-width: 500px) {
  header .header_wrap .nav_wrap .navigation_cont .nav_menu {
    top: 14.6666666667vw;
  }
}
@media only screen and (max-width: 768px) and (max-width: 410px) {
  header .header_wrap .nav_wrap .navigation_cont .nav_menu {
    top: 16.6666666667vw;
  }
}
@media only screen and (max-width: 768px) {
  header .header_wrap .nav_wrap .navigation_cont a {
    font-size: 4.5333333333vw;
    padding: 4vw 8vw;
  }
  header .header_wrap .nav_wrap .menu_trigger {
    width: 8vw;
    height: 8vw;
  }
  header .header_wrap .nav_wrap .menu_trigger span {
    width: 8vw;
    height: 3px;
    top: Vw(1);
  }
}
@media only screen and (max-width: 768px) and (max-width: 500px) {
  header .header_wrap .nav_wrap .menu_trigger span {
    height: 2px;
  }
}
@media only screen and (max-width: 768px) {
  header .header_wrap .nav_wrap .menu_trigger span:nth-child(1) {
    top: 0.1333333333vw;
  }
  header .header_wrap .nav_wrap .menu_trigger span:nth-child(2) {
    top: 2.4vw;
  }
  header .header_wrap .nav_wrap .menu_trigger span:nth-child(3) {
    top: 4.6666666667vw;
  }
  header .header_wrap .nav_wrap .menu_trigger .txt {
    font-size: 1.6vw;
    transition: all 0.3s ease;
  }
  header .header_wrap .nav_wrap .menu_trigger.active span:nth-child(1) {
    top: 2.4vw;
  }
  header .header_wrap .nav_wrap .menu_trigger.active span:nth-child(3) {
    top: 2.4vw;
  }
  header .header_wrap .nav_wrap .contact_btn {
    max-width: 9.6vw;
  }
  header .header_wrap .nav_wrap .contact_btn .mailIcon {
    width: 8vw;
  }
  header .header_wrap .nav_wrap .contact_btn .txt {
    font-size: 1.6vw;
  }
}

body:not(.top) header {
  opacity: 1;
  transform: translateY(0);
}

footer {
  /*-------------------------------------------------------------------
  footer
  /*-------------------------------------------------------------------*/
  background-color: var(--theme-color03);
  color: #fff;
  padding-top: 82px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  footer {
    padding-top: 10.6666666667vw;
    padding-bottom: 2.6666666667vw;
  }
}
footer .footer_navWrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  footer .footer_navWrap {
    justify-content: center;
  }
}
footer .footer_navWrap .footer_companyInfo h2 {
  width: 228px;
}
@media only screen and (max-width: 768px) {
  footer .footer_navWrap .footer_companyInfo h2 {
    width: 43.4666666667vw;
    margin: 0 auto;
  }
}
footer .footer_navWrap .footer_companyInfo .address {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.27;
  padding-top: 30px;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 768px) {
  footer .footer_navWrap .footer_companyInfo .address {
    text-align: center;
    font-size: 3.0666666667vw;
    line-height: 1.91;
    padding-top: 6vw;
    letter-spacing: 0;
  }
}
footer .footer_navWrap .footer_nav {
  display: flex;
  gap: 100px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.38;
  max-width: 457px;
  width: 100%;
}
footer .footer_navWrap .footer_nav .nav_left {
  max-width: 277px;
  width: 100%;
}
footer .footer_navWrap .footer_nav .nav_left .privacy {
  float: left;
}
footer .footer_navWrap .footer_nav .nav_right {
  max-width: 180px;
  width: 100%;
}
footer .footer_navWrap .footer_nav .nav_right .privacy {
  line-height: 1.3;
  padding-top: 6px;
}
footer .copyright {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: end;
  padding-top: 64px;
}
@media only screen and (max-width: 768px) {
  footer .copyright {
    font-size: 2vw;
    text-align: center;
    padding-top: 12.2666666667vw;
  }
}

/*-------------------------------------------------------------------
common
/*-------------------------------------------------------------------*/
:root {
  --theme-color01: #2f68bd;
  --theme-color02: #0a5375;
  --theme-color03: #0a4475;
}

body {
  min-width: 980px;
}

.inner {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .inner {
    max-width: 100vw;
    padding: 0 6.6666666667vw;
  }
}

img {
  height: auto;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .imgalpha:hover {
    transition: all 0.25s ease-out;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
}

.section_ttl {
  max-width: 1370px;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .section_ttl {
    max-width: 100vw;
    padding: 0 6.6666666667vw;
  }
}
.section_ttl h2 {
  font-size: 103px;
  font-weight: 800;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, rgb(0, 49, 90) 0%, rgb(41, 128, 195) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .section_ttl h2 {
    font-size: 13.7333333333vw;
  }
}
.section_ttl h2 span {
  font-size: 80px;
}
@media only screen and (max-width: 768px) {
  .section_ttl h2 span {
    font-size: 10.6666666667vw;
  }
}
.section_ttl h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 33px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .section_ttl h3 {
    font-size: 3.3333333333vw;
    padding-top: 3.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .section_ttl.news_ttl h2 {
    font-size: 12vw;
  }
  .section_ttl.news_ttl h2 span {
    font-size: 9.3333333333vw;
  }
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
  .no-scroll {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_inline {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .wrap {
    max-width: 100vw;
    overflow: hidden;
  }
}
.lowerPage_mv {
  padding-top: 280px;
  padding-bottom: 133px;
}
@media only screen and (max-width: 768px) {
  .lowerPage_mv {
    padding-top: 25.3333333333vw;
    padding-bottom: 9.3333333333vw;
  }
}

.news_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 115px;
}
@media only screen and (max-width: 768px) {
  .news_wrap {
    justify-content: flex-start;
    flex-direction: column;
    gap: 13.3333333333vw;
  }
}

.news_navi {
  max-width: 170px;
  width: 100%;
  position: sticky;
  top: 130px;
  align-self: flex-start;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .news_navi {
    max-width: 86.6666666667vw;
  }
}
.news_navi .year_wrap {
  padding-bottom: 78px;
}
@media only screen and (max-width: 768px) {
  .news_navi .year_wrap {
    padding-bottom: 10.1333333333vw;
  }
}
.news_navi .year_wrap .year_ttl {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.47;
  padding-left: 18px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .news_navi .year_wrap .year_ttl {
    font-size: 4.2666666667vw;
    line-height: 1;
    padding-left: 2.6666666667vw;
  }
}
.news_navi .year_wrap .year_ttl::before {
  position: absolute;
  content: "";
  background-color: var(--theme-color02);
  width: 4px;
  height: 20px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .news_navi .year_wrap .year_ttl::before {
    width: 0.5333333333vw;
    height: 4.6666666667vw;
    border-radius: 0.2666666667vw;
  }
}
.news_navi .year_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  .news_navi .year_wrap ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.6666666667vw 5.8666666667vw;
    padding-top: 4vw;
    padding-left: 3.2vw;
  }
}
.news_navi .year_wrap ul li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .news_navi .year_wrap ul li a {
    font-size: 3.3333333333vw;
  }
}
.news_navi .year_wrap ul li a:hover {
  color: var(--theme-color02);
}
.news_navi .year_wrap ul li a.current {
  color: var(--theme-color02);
  font-weight: 700;
}
.news_navi .category_wrap {
  padding-bottom: 78px;
}
@media only screen and (max-width: 768px) {
  .news_navi .category_wrap {
    padding-bottom: 10.1333333333vw;
  }
}
.news_navi .category_wrap .category_ttl {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.47;
  padding-left: 18px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .news_navi .category_wrap .category_ttl {
    font-size: 4.2666666667vw;
    line-height: 1;
    padding-left: 2.6666666667vw;
  }
}
.news_navi .category_wrap .category_ttl::before {
  position: absolute;
  content: "";
  background-color: var(--theme-color02);
  width: 4px;
  height: 20px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .news_navi .category_wrap .category_ttl::before {
    width: 0.5333333333vw;
    height: 4.6666666667vw;
    border-radius: 0.2666666667vw;
  }
}
.news_navi .category_wrap ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  .news_navi .category_wrap ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.6666666667vw 5.8666666667vw;
    padding-top: 4vw;
    padding-left: 3.2vw;
  }
}
.news_navi .category_wrap ul li a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .news_navi .category_wrap ul li a {
    font-size: 3.3333333333vw;
  }
}
.news_navi .category_wrap ul li a:hover {
  color: var(--theme-color02);
}
.news_navi .category_wrap ul li a.current {
  color: var(--theme-color02);
  font-weight: 700;
}
.news_navi .pickUp_wrap .pickUp_ttl {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.47;
  padding-left: 18px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .news_navi .pickUp_wrap .pickUp_ttl {
    font-size: 4.2666666667vw;
    line-height: 1;
    padding-left: 2.6666666667vw;
  }
}
.news_navi .pickUp_wrap .pickUp_ttl::before {
  position: absolute;
  content: "";
  background-color: var(--theme-color02);
  width: 4px;
  height: 20px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .news_navi .pickUp_wrap .pickUp_ttl::before {
    width: 0.5333333333vw;
    height: 4.6666666667vw;
    border-radius: 0.2666666667vw;
  }
}
.news_navi .pickUp_wrap a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 23px;
}
@media only screen and (max-width: 768px) {
  .news_navi .pickUp_wrap a {
    flex-direction: row;
    gap: 2.9333333333vw;
    padding-top: 3.3333333333vw;
  }
}
.news_navi .pickUp_wrap a .pickUp_img {
  max-width: 152px;
  width: 100%;
  height: 80px;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .news_navi .pickUp_wrap a .pickUp_img {
    max-width: 20.2666666667vw;
    height: 10.6666666667vw;
    border-radius: 1.3333333333vw;
  }
}
.news_navi .pickUp_wrap a .pickUp_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_navi .pickUp_wrap a .pickUp_attribute {
  padding-left: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .news_navi .pickUp_wrap a .pickUp_attribute {
    padding-left: 0;
    font-size: 3.3333333333vw;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 4vw;
  }
}

.top {
  /*-------------------------------------------------------------------
  mv
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  共通
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  news
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  service
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  about
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  voice
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  company
  /*-------------------------------------------------------------------*/
  /*-------------------------------------------------------------------
  contact
  /*-------------------------------------------------------------------*/
}
.top .wrap {
  overflow-x: hidden;
}
.top .mv {
  padding-top: 250px;
  position: relative;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}
@media only screen and (max-width: 768px) {
  .top .mv {
    padding-top: 23.7333333333vw;
  }
}
.top .mv > div {
  display: flex;
  gap: 72px;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
}
@media only screen and (max-width: 1200px) {
  .top .mv > div {
    gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv > div {
    flex-direction: column;
    gap: 4.2666666667vw;
    max-width: 100vw;
    padding-left: 0;
    padding-bottom: 6.6666666667vw;
  }
}
.top .mv_txtArea {
  max-width: 556px;
  width: 100%;
  margin-left: 156px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1500px) {
  .top .mv_txtArea {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv_txtArea {
    max-width: 100vw;
    padding: 0 6.6666666667vw;
    margin-left: 0;
  }
}
.top .mv_txtArea h1 {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.1875;
}
@media only screen and (max-width: 1200px) {
  .top .mv_txtArea h1 {
    font-size: 3.08vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv_txtArea h1 {
    font-size: 4.9333333333vw;
  }
}
.top .mv_txtArea h1 span {
  font-size: 80px;
  color: var(--theme-color01);
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 1200px) {
  .top .mv_txtArea h1 span {
    font-size: 6.67vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv_txtArea h1 span {
    font-size: 10.6666666667vw;
  }
}
.top .mv_txtArea h2 {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.82758621;
  padding-top: 40px;
}
@media only screen and (max-width: 1200px) {
  .top .mv_txtArea h2 {
    font-size: 2.42vw;
    padding-top: 3.33vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv_txtArea h2 {
    font-size: 3.8666666667vw;
    padding-top: 5.6vw;
  }
}
.top .mv_txtArea p {
  font-size: 19px;
  font-weight: 700;
  line-height: 2.21052632;
  letter-spacing: 0.06em;
  padding-top: 103px;
}
@media only screen and (max-width: 1200px) {
  .top .mv_txtArea p {
    font-size: 1.58vw;
    padding-top: 8.58vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv_txtArea p {
    font-size: 3.3333333333vw;
    line-height: 1.84;
    letter-spacing: -0.03em;
    padding-top: 11.6vw;
  }
}
.top .mv_img {
  max-width: 904px;
  width: 100%;
  margin-top: -61px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1500px) {
  .top .mv_img {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv_img {
    max-width: 93.8666666667vw;
    margin: 0 auto;
  }
}
.top .mv_img::before {
  position: absolute;
  content: "";
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background-color: #d4eafd;
  filter: blur(100px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .top .mv_img::before {
    width: 80vw;
    height: 80vw;
  }
}
.top .mv .news_pick {
  width: 580px;
  height: 74px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: absolute;
  right: 90px;
  bottom: 0;
}
@media only screen and (max-width: 1500px) {
  .top .mv .news_pick {
    right: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .top .mv .news_pick {
    width: 48.33vw;
    bottom: -74px;
  }
}
@media only screen and (max-width: 768px) {
  .top .mv .news_pick {
    width: 77.3333333333vw;
    height: 9.8666666667vw;
    gap: 2.6666666667vw;
    bottom: -0.6666666667vw;
  }
}
.top .mv .news_pick a {
  display: block;
  padding: 22px 35px;
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 10px 0px 80px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 768px) {
  .top .mv .news_pick a {
    padding: 2.9333333333vw 4.5333333333vw;
    border-radius: 1.3333333333vw;
    box-shadow: 1.3333333333vw 0px 10.6666666667vw 0px rgba(0, 0, 0, 0.1);
  }
}
.top .mv .news_pick a p {
  padding-left: 31px;
  font-size: clamp(11px, 1.25vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top .mv .news_pick a p {
    padding-left: 4.1333333333vw;
    font-size: 2.6666666667vw;
  }
}
.top .mv .news_pick a p time {
  color: #999;
  padding-right: 19px;
}
@media only screen and (max-width: 768px) {
  .top .mv .news_pick a p time {
    orphans: 2.6666666667vw;
  }
}
.top .mv .news_pick a p::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 30px;
  border-radius: 3px;
  background: var(--theme-color02);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .top .mv .news_pick a p::before {
    width: 0.8vw;
    height: 4vw;
    border-radius: 0.4vw;
  }
}
.top .mv .js_fadeInit {
  opacity: 0;
  transform: translateY(20px);
}
.top .mv .news_pick.js_fadeInit {
  transform: translateX(200px);
}
.top .section_ttl {
  max-width: 1370px;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .top .section_ttl {
    max-width: 100vw;
    padding: 0 6.6666666667vw;
  }
}
.top .section_ttl h2 {
  font-size: 103px;
  font-weight: 800;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, rgb(0, 49, 90) 0%, rgb(41, 128, 195) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .top .section_ttl h2 {
    font-size: 13.7333333333vw;
  }
}
.top .section_ttl h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding-top: 33px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .top .section_ttl h3 {
    font-size: 3.3333333333vw;
    padding-top: 3.2vw;
  }
}
.top .news {
  margin-top: 50px;
  padding-top: 125px;
}
@media only screen and (max-width: 768px) {
  .top .news {
    margin-top: 5.3333333333vw;
    padding-top: 18.6666666667vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .news .section_ttl h2 {
    font-size: 12vw;
  }
}
.top .news .inner {
  max-width: 1090px;
  position: relative;
}
.top .news .news_list {
  margin-bottom: 10px;
  width: 363px;
  text-align: center;
  position: absolute;
  right: 20px;
  top: -130px;
}
@media only screen and (max-width: 1200px) {
  .top .news .news_list {
    width: 23.6%;
  }
}
@media only screen and (max-width: 768px) {
  .top .news .news_list {
    width: 31.4666666667vw;
    right: 6.6666666667vw;
    top: -12vw;
  }
}
.top .news .news_list a {
  display: block;
  width: 100%;
  background-color: var(--theme-color01);
  border-radius: 23px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .top .news .news_list a {
    border-radius: 4vw;
    font-size: 3.4666666667vw;
    padding-top: 0.9333333333vw;
    padding-bottom: 1.0666666667vw;
  }
}
.top .news .swiper {
  margin-top: 73px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top .news .swiper {
    margin-top: 9.3333333333vw;
  }
}
.top .news .swiper-wrapper {
  justify-content: flex-start;
}
.top .news .swiper-wrapper .swiper-slide {
  max-width: 310px;
  width: 100%;
}
@media only screen and (max-width: 1090px) {
  .top .news .swiper-wrapper .swiper-slide {
    max-width: 28.4%;
  }
}
@media only screen and (max-width: 768px) {
  .top .news .swiper-wrapper .swiper-slide {
    max-width: 86.6666666667vw;
  }
}
.top .news .swiper-wrapper .swiper-slide:not(:last-child) {
  margin-right: 60px;
}
@media only screen and (max-width: 1090px) {
  .top .news .swiper-wrapper .swiper-slide:not(:last-child) {
    margin-right: 5.5%;
  }
}
@media only screen and (max-width: 768px) {
  .top .news .swiper-wrapper .swiper-slide:not(:last-child) {
    margin-right: 0;
  }
}
.top .news .swiper-wrapper .swiper-slide > div {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .top .news .swiper-wrapper .swiper-slide > div {
    margin: 0 16.6666666667vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .news .swiper-button-prev,
  .top .news .swiper-button-next {
    margin-top: 0;
    background-image: url(../img/top/icon_arrow.png);
    background-size: contain;
    width: 3.6vw;
    height: 5.6vw;
    top: 25vw;
  }
  .top .news .swiper-button-prev {
    transform: rotate(180deg);
    left: 4vw;
  }
  .top .news .swiper-button-next {
    right: 4vw;
  }
}
.top .news .news_attribute {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 16px;
}
@media only screen and (max-width: 768px) {
  .top .news .news_attribute {
    gap: 1.7333333333vw;
    padding-top: 3.8666666667vw;
  }
}
.top .news .news_attribute time {
  font-size: 18px;
  font-weight: 700;
  color: #999;
}
@media only screen and (max-width: 768px) {
  .top .news .news_attribute time {
    font-size: 4vw;
  }
}
.top .news .news_attribute .category {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--theme-color02);
  padding: 4px 0px 5px;
  min-width: 125px;
  text-align: center;
  border-radius: 14px;
}
@media only screen and (max-width: 768px) {
  .top .news .news_attribute .category {
    font-size: 2.8vw;
    padding: 1.2vw 3vw 1.0666666667vw;
    min-width: 23.6vw;
    border-radius: 2.4vw;
  }
}
.top .news h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  .top .news h4 {
    font-size: 4vw;
    line-height: 1.53;
    padding-top: 2.1333333333vw;
  }
}
.top .service {
  margin-top: 90px;
  padding-top: 130px;
}
@media only screen and (max-width: 768px) {
  .top .service {
    margin-top: 5.3333333333vw;
    padding-top: 18.9333333333vw;
  }
}
.top .service_list {
  padding-top: 134px;
  padding-bottom: 142px;
  border-bottom: 1px solid #c0d5e3;
}
@media only screen and (max-width: 768px) {
  .top .service_list {
    padding-top: 16.2666666667vw;
    padding-bottom: 36vw;
    border-bottom: none;
  }
}
.top .service_list .information {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information {
    flex-direction: column;
  }
}
.top .service_list .information_txtArea {
  max-width: 705px;
  width: 100%;
  min-width: 400px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_txtArea {
    max-width: 86.6666666667vw;
    min-width: auto;
  }
}
.top .service_list .information_txtArea h2 {
  color: var(--theme-color02);
  font-size: clamp(39px, 3.56vw, 64px);
  font-weight: 400;
  line-height: 1.25;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_txtArea h2 {
    font-size: 7.3333333333vw;
    line-height: 1.55;
  }
}
.top .service_list .information_txtArea .information_txt {
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_txtArea .information_txt {
    padding-top: 63.4666666667vw;
  }
}
.top .service_list .information_txtArea .information_txt h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.79;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_txtArea .information_txt h3 {
    font-size: 4.8vw;
    line-height: 1.39;
    padding-bottom: 3.4666666667vw;
  }
}
.top .service_list .information_txtArea .information_txt p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.79;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_txtArea .information_txt p {
    font-size: 3.3333333333vw;
    line-height: 1.76;
  }
}
.top .service_list .information_txtArea .information_txt p:not(:last-child) {
  padding-bottom: 34px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_txtArea .information_txt p:not(:last-child) {
    padding-bottom: 5.7333333333vw;
  }
}
.top .service_list .information_img {
  max-width: 368px;
  width: 100%;
}
@media only screen and (max-width: 1230px) {
  .top .service_list .information_img {
    max-width: 29.91869919%;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_img {
    max-width: 86.6666666667vw;
    position: absolute;
    top: -13.6vw;
    right: 0;
    z-index: -1;
  }
}
.top .service_list .information_img .img_service01 {
  max-width: 368px;
  width: 100%;
  padding-top: 17px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_img .img_service01 {
    max-width: 42.4vw;
    padding-top: 0;
    margin-right: 0;
    margin-left: auto;
  }
}
.top .service_list .information_img .img_human {
  max-width: 248px;
  width: 100%;
  margin-top: -43px;
  margin-left: 64px;
}
@media only screen and (max-width: 1230px) {
  .top .service_list .information_img .img_human {
    max-width: 67.39130435%;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list .information_img .img_human {
    max-width: 32.8vw;
    margin-top: 2.6666666667vw;
    margin-left: 0;
    margin-inline: auto;
  }
}
.top .service_list .fee {
  background-color: #f4f4f4;
  position: relative;
  margin-top: 114px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee {
    margin-top: 13.0666666667vw;
  }
}
.top .service_list .fee h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee h3 {
    font-size: 5.6vw;
    top: -2.2666666667vw;
  }
}
.top .service_list .fee_intro {
  padding-top: 53px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.76;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_intro {
    padding-top: 9.3333333333vw;
    font-size: 3.3333333333vw;
    line-height: 1.6;
  }
}
.top .service_list .fee_info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1050px;
  width: 100%;
  margin-top: 54px;
  margin-inline: auto;
  padding: 0 25px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info {
    flex-direction: column;
    gap: 7.4666666667vw;
    max-width: 86.6666666667vw;
    margin-top: 9.3333333333vw;
    padding: 0 4.5333333333vw;
  }
}
.top .service_list .fee_info .fee_list {
  max-width: 460px;
  width: 100%;
  padding-bottom: 63px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info .fee_list {
    max-width: 77.3333333333vw;
    margin: 0 auto;
    padding-bottom: 6.6666666667vw;
  }
}
.top .service_list .fee_info .fee_list:not(:last-child) {
  padding-bottom: 43px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info .fee_list:not(:last-child) {
    padding-bottom: 0;
  }
}
.top .service_list .fee_info .fee_list .fee_ttl {
  border-bottom: 2px solid var(--theme-color02);
  padding-bottom: 4px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info .fee_list .fee_ttl {
    padding-bottom: 3.3333333333vw;
  }
}
.top .service_list .fee_info .fee_list .fee_ttl dl {
  display: flex;
  gap: 20px;
  color: var(--theme-color02);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info .fee_list .fee_ttl dl {
    font-size: 3.6vw;
  }
}
.top .service_list .fee_info .fee_list p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.76;
  padding-top: 12px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info .fee_list p {
    font-size: 3.3333333333vw;
    line-height: 1.6;
    padding-top: 2.6666666667vw;
  }
}
.top .service_list .fee_info .fee_listWrap {
  max-width: 460px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee_info .fee_listWrap {
    display: contents;
  }
}
.top .service_list .fee small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 63px 0 17px 24px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .fee small {
    font-size: 2.6666666667vw;
    padding: 7.3333333333vw 0vw 1.7333333333vw 2vw;
  }
}
.top .service_list .advantage {
  padding-top: 90px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage {
    padding-top: 10vw;
  }
}
.top .service_list .advantage_ttl {
  position: relative;
}
.top .service_list .advantage_ttl h3 {
  opacity: 0.5;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #d3e4f3;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage_ttl h3 {
    font-size: 14.6666666667vw;
  }
}
.top .service_list .advantage_ttl h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: 0.06em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage_ttl h2 {
    font-size: 4.8vw;
    width: 86.6666666667vw;
    text-align: center;
    bottom: -0.5333333333vw;
  }
}
.top .service_list .advantage ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 65px 20px 0;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul {
    flex-direction: column;
    gap: 0;
    padding: 15.7333333333vw 0 0;
  }
}
.top .service_list .advantage ul li {
  max-width: 320px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul li {
    max-width: 86.6666666667vw;
  }
}
.top .service_list .advantage ul li h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.56;
  padding-top: 34px;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul li h4 {
    font-size: 4.2666666667vw;
    font-weight: 700;
    padding-top: 0;
  }
}
.top .service_list .advantage ul li p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.73;
  padding-top: 5px;
  text-align: justify;
}
.top .service_list .advantage ul li p span {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul li p {
    font-size: 3.3333333333vw;
    line-height: 1.6;
    padding-top: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul li .advantage_img {
    position: absolute;
    right: 0;
    width: 40.5333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul li:first-child {
    padding-bottom: 16vw;
  }
}
.top .service_list .advantage ul li:first-child .advantage_img {
  top: -7.0666666667vw;
}
@media only screen and (max-width: 768px) {
  .top .service_list .advantage ul li:nth-child(2) {
    padding-bottom: 22.4vw;
  }
}
.top .service_list .advantage ul li:nth-child(2) .advantage_img {
  top: -7.8666666667vw;
}
.top .service_list .advantage ul li:nth-child(3) .advantage_img {
  top: -12.6666666667vw;
}
.top .service_list._01 .fee_list:first-child {
  padding-top: 34px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._01 .fee_list:first-child {
    padding-top: 0;
  }
}
.top .service_list._02 {
  padding-top: 120px;
  padding-bottom: 0;
  border-bottom: none;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 {
    padding-top: 0;
  }
}
.top .service_list._02 .middle {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .top .service_list._02 .middle {
    display: block;
  }
}
.top .service_list._02 .middle2 {
  display: block;
}
@media only screen and (max-width: 1110px) {
  .top .service_list._02 .middle2 {
    display: none;
  }
}
.top .service_list._02 .information_txtArea {
  max-width: 1200px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt {
    padding-top: 14vw;
  }
}
@media only screen and (min-width: 1081px) {
  .top .service_list._02 .information_txtArea .information_txt .middle {
    display: none;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
@media only screen and (max-width: 1041px) {
  .top .service_list._02 .information_txtArea .information_txt > div {
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 8.9333333333vw;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div div:first-child {
  max-width: 480px;
  padding-bottom: 102px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div div:first-child {
    max-width: 86.6666666667vw;
    padding-bottom: 0;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div .information_example {
  max-width: 654px;
  width: 100%;
  border: 1px solid var(--theme-color02);
  padding: 51px 20px 54px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div .information_example {
    max-width: 86.6666666667vw;
    padding: 5.6vw 4.8vw 5.0666666667vw;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div .information_example ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div .information_example ul {
    justify-content: flex-start;
    gap: 0.2666666667vw 2.4vw;
    max-width: 86.6666666667vw;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div .information_example ul li {
  width: 220px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div .information_example ul li {
    width: 36.8vw;
    font-size: 3.3333333333vw;
    line-height: 1.84;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div .information_example p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div .information_example p {
    font-size: 3.0666666667vw;
    line-height: 1.61;
  }
}
.top .service_list._02 .information_txtArea .information_txt > div .information_example p:first-of-type {
  font-weight: 700;
  font-size: 18px;
  padding-top: 28px;
  padding-bottom: 23px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_txtArea .information_txt > div .information_example p:first-of-type {
    font-size: 3.0666666667vw;
    padding-top: 3.3333333333vw;
    padding-bottom: 1.4666666667vw;
  }
}
.top .service_list._02 .information_img {
  max-width: 370px;
  position: absolute;
  top: 11px;
  right: 0;
}
@media only screen and (max-width: 1230px) {
  .top .service_list._02 .information_img {
    max-width: 30.08130081%;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_img {
    max-width: 42.6666666667vw;
    right: 0vw;
  }
}
.top .service_list._02 .information_img .img_service02 {
  max-width: 370px;
}
@media only screen and (max-width: 1042px) {
  .top .service_list._02 .information_img .img_service02 {
    max-width: 310px;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .information_img .img_service02 {
    max-width: 42.4vw;
    margin-top: -11.7333333333vw;
  }
}
.top .service_list._02 .fee {
  margin-top: 163px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .fee {
    margin-top: 13.0666666667vw;
  }
}
.top .service_list._02 .fee .fee_list {
  max-width: 480px;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .fee .fee_list {
    max-width: 77.3333333333vw;
    margin: 0 auto;
  }
}
.top .service_list._02 .fee .menu {
  font-weight: 700;
}
.top .service_list._02 .fee .menu:first-of-type {
  padding-top: 14px;
}
.top .service_list._02 .fee .menu:nth-of-type(2) {
  padding-top: 0;
}
.top .service_list._02 .advantage_ttl h2 {
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .advantage_ttl h2 {
    line-height: 1.28;
    bottom: -6.6666666667vw;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .advantage ul {
    padding-top: 24.5333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .advantage ul li:first-child {
    padding-bottom: 12.5333333333vw;
  }
}
.top .service_list._02 .advantage ul li:first-child .advantage_img {
  top: -10.4vw;
}
@media only screen and (max-width: 768px) {
  .top .service_list._02 .advantage ul li:nth-child(2) {
    padding-bottom: 15.6vw;
  }
}
.top .service_list._02 .advantage ul li:nth-child(2) .advantage_img {
  top: -9.3333333333vw;
}
.top .service_list._02 .advantage ul li:nth-child(3) .advantage_img {
  top: -10.6666666667vw;
}
.top .about {
  margin-top: 100px;
  padding-top: 104px;
}
@media only screen and (max-width: 768px) {
  .top .about {
    margin-top: 18.6666666667vw;
    padding-top: 8vw;
  }
}
.top .about .middle {
  display: none;
}
@media only screen and (max-width: 1050px) {
  .top .about .middle {
    display: block;
  }
}
.top .about .middle2 {
  display: block;
}
@media only screen and (max-width: 1130px) {
  .top .about .middle2 {
    display: none;
  }
}
.top .about .bg {
  background-color: var(--theme-color03);
  padding-top: 75px;
  padding-bottom: 135px;
}
@media only screen and (max-width: 768px) {
  .top .about .bg {
    padding-top: 10.6666666667vw;
    padding-bottom: 14.8vw;
  }
}
.top .about .section_ttl h2 {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(41, 128, 195) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top .about .section_ttl h3 {
  color: #fff;
}
.top .about_info {
  color: #fff;
}
.top .about_info .info_lead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_lead {
    padding-top: 6.9333333333vw;
  }
}
.top .about_info .info_lead h2 {
  font-size: 37px;
  font-weight: 400;
  line-height: 1.81;
  padding-top: 49px;
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_lead h2 {
    width: 44.5333333333vw;
    font-size: 4.9333333333vw;
    padding-top: 9.3333333333vw;
  }
}
.top .about_info .info_lead .lead_img {
  margin-right: 57px;
}
@media only screen and (max-width: 1060px) {
  .top .about_info .info_lead .lead_img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_lead .lead_img {
    width: 38.9333333333vw;
    margin-right: 0;
  }
}
.top .about_info .info_txt {
  max-width: 702px;
  width: 100%;
  margin-top: -107px;
}
@media only screen and (max-width: 1130px) {
  .top .about_info .info_txt {
    max-width: 62%;
    margin-top: -100px;
  }
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_txt {
    max-width: 86.6666666667vw;
    margin-top: 8.1333333333vw;
  }
}
.top .about_info .info_txt h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 2.25;
  padding-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_txt h3 {
    font-size: 4vw;
    line-height: 1.8;
    padding-bottom: 2.8vw;
  }
}
.top .about_info .info_txt p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.79;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_txt p {
    font-size: 3.3333333333vw;
    line-height: 1.6;
  }
}
.top .about_info .info_txt p:not(:last-child) {
  padding-bottom: 33px;
}
@media only screen and (max-width: 768px) {
  .top .about_info .info_txt p:not(:last-child) {
    padding-bottom: 3.3333333333vw;
  }
}
.top .about_reason {
  margin-top: -55px;
  padding-top: 130px;
}
@media only screen and (max-width: 768px) {
  .top .about_reason {
    margin-top: 12.5333333333vw;
    padding-top: 0;
    margin-left: -2.5333333333vw;
    margin-right: -2.5333333333vw;
  }
}
.top .about_reason .reason_inner {
  background-color: #fff;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 47px 75px 63px;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .reason_inner {
    max-width: 91.4666666667vw;
    padding: 7.7333333333vw 5.3333333333vw 4.4vw;
  }
}
.top .about_reason h3 {
  font-size: 45px;
  font-weight: 400;
  color: var(--theme-color03);
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top .about_reason h3 {
    font-size: 5.7333333333vw;
    line-height: 1.47;
  }
}
.top .about_reason h3 .middle {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .top .about_reason h3 .middle {
    display: block;
  }
}
.top .about_reason h3::before {
  position: absolute;
  content: "";
  background-image: url(../img/top/about_reason_img01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 232px;
  height: 398px;
  bottom: 28px;
  right: 35px;
}
@media only screen and (max-width: 1090px) {
  .top .about_reason h3::before {
    width: 25%;
    height: 32vw;
    bottom: 0;
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .top .about_reason h3::before {
    width: 28vw;
    height: 48vw;
    bottom: -18.4vw;
    right: 4vw;
  }
}
.top .about_reason .proverb {
  background: #eaf2f9;
  border-left: 2px solid var(--theme-color02);
  padding: 23px 28px 30px;
  margin-top: 13px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 857px) {
  .top .about_reason .proverb .middle {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .top .about_reason .proverb {
    padding: 6.1333333333vw 4.5333333333vw 6.4vw;
    margin-top: 8.5333333333vw;
  }
}
.top .about_reason .proverb h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color03);
  line-height: 2.05;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .proverb h4 {
    font-size: 4vw;
    line-height: 1.67;
  }
}
.top .about_reason .proverb p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .proverb p {
    font-size: 3.3333333333vw;
  }
}
.top .about_reason .reason_item {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 46px;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .reason_item {
    flex-direction: column;
    gap: 7.0666666667vw;
    padding-top: 5.0666666667vw;
  }
}
.top .about_reason .reason_item > div {
  max-width: 500px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .reason_item > div {
    max-width: 80.8vw;
  }
}
.top .about_reason .reason_item > div h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.54;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .reason_item > div h4 {
    font-size: 4.2666666667vw;
    line-height: 1.44;
  }
}
.top .about_reason .reason_item > div p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  padding-top: 10px;
  text-align: justify;
}
@media only screen and (max-width: 768px) {
  .top .about_reason .reason_item > div p {
    font-size: 3.3333333333vw;
    line-height: 1.6;
    padding-top: 1.4666666667vw;
    text-align: justify;
  }
}
.top .voice {
  margin-top: -50px;
  padding-top: 126px;
  padding-bottom: 115px;
}
@media only screen and (max-width: 768px) {
  .top .voice {
    margin-top: -6.6666666667vw;
    padding-top: 17.3333333333vw;
    padding-bottom: 0;
  }
}
.top .voice .inner {
  max-width: 1090px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .top .voice .inner {
    max-width: 100vw;
    padding: 0 6.6666666667vw;
  }
}
.top .voice ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 90px 10px;
  padding-top: 47px;
}
@media only screen and (max-width: 768px) {
  .top .voice ol {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4vw;
    padding-top: 8.8vw;
  }
}
.top .voice ol li {
  width: calc(50% - 5px);
  position: relative;
  padding-top: 93px;
}
@media only screen and (max-width: 768px) {
  .top .voice ol li {
    width: 86.6666666667vw;
    padding-top: 12.6666666667vw;
  }
}
.top .voice ol li:nth-child(odd) {
  padding-left: 70px;
}
@media only screen and (max-width: 1000px) {
  .top .voice ol li:nth-child(odd) {
    padding-left: 0;
  }
}
.top .voice ol li .num {
  font-size: 171px;
  font-weight: 500;
  color: #d3e4f3;
  line-height: 1;
  position: absolute;
  top: -64px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .top .voice ol li .num {
    font-size: 24vw;
    top: -7.4vw;
  }
}
.top .voice ol li h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .top .voice ol li h4 {
    font-size: 4vw;
    line-height: 1.5;
  }
}
.top .voice ol li p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  padding-top: 20px;
}
@media only screen and (max-width: 768px) {
  .top .voice ol li p {
    font-size: 3.3333333333vw;
    line-height: 1.6;
    padding-top: 2.6666666667vw;
  }
}
.top .company {
  margin-top: -84px;
  padding-top: 84px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .top .company {
    margin-top: 11.2vw;
    padding-top: 5.3333333333vw;
  }
}
.top .company .bg {
  background-color: #edf6fe;
  padding-top: 80px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .top .company .bg {
    padding-top: 11.3333333333vw;
    padding-bottom: 7.7333333333vw;
  }
}
.top .company .inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 1400px) {
  .top .company .inner {
    margin: initial;
  }
}
@media only screen and (max-width: 768px) {
  .top .company .inner {
    flex-direction: column;
    gap: 10.6666666667vw;
    margin: 0 auto;
  }
}
.top .company .section_ttl {
  max-width: 516px;
  padding: 0;
  margin: initial;
  margin-left: -70px;
}
@media only screen and (max-width: 1400px) {
  .top .company .section_ttl {
    margin-left: 0;
  }
}
.top .company .section_ttl h2 {
  letter-spacing: 0.04em;
}
.top .company .section_ttl .ttl_img {
  max-width: 270px;
  width: 100%;
  margin: 0 auto;
  padding-top: 75px;
}
.top .company .campany_data {
  max-width: 630px;
  width: 100%;
  padding-right: 28px;
}
@media only screen and (max-width: 768px) {
  .top .company .campany_data {
    max-width: 86.6666666667vw;
    padding-right: 0;
  }
}
.top .company .campany_data dl {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.31;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1020px) {
  .top .company .campany_data dl {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .top .company .campany_data dl {
    flex-direction: row;
    font-size: 3.3333333333vw;
    line-height: 1.76;
    padding-top: 2.6666666667vw;
    padding-bottom: 3.2vw;
  }
}
.top .company .campany_data dl:not(:last-child) {
  border-bottom: 1px solid rgba(10, 83, 117, 0.2);
}
.top .company .campany_data dl dt {
  max-width: 258px;
  width: 100%;
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .top .company .campany_data dl dt {
    max-width: 29.3333333333vw;
    padding-right: 2.6666666667vw;
  }
}
.top .company .campany_data dl dd {
  max-width: 344px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .top .company .campany_data dl dd {
    max-width: 57.3333333333vw;
  }
}
.top .contact {
  margin-top: -40px;
  padding-top: 120px;
  padding-bottom: 67px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top .contact {
    margin-top: -8vw;
    padding-top: 18.6666666667vw;
    padding-bottom: 18.6666666667vw;
  }
}
.top .contact::before {
  position: absolute;
  content: "";
  background-image: url(../img/top/contact_bg_img.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 952px;
  height: 690px;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .top .contact::before {
    display: none;
  }
}
.top .contact .inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 1400px) {
  .top .contact .inner {
    margin: initial;
  }
}
@media only screen and (max-width: 1100px) {
  .top .contact .inner {
    flex-direction: column;
    gap: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .top .contact .inner {
    gap: 8vw;
    margin: 0 auto;
  }
}
.top .contact .section_ttl {
  max-width: 516px;
  padding: 0;
  margin: initial;
  margin-left: -70px;
}
@media only screen and (max-width: 1400px) {
  .top .contact .section_ttl {
    margin-left: 0;
  }
}
.top .contact .section_ttl h2 {
  letter-spacing: 0.08em;
}
.top .contact .form_wrap {
  max-width: 630px;
  width: 100%;
  padding-top: 20px;
}
@media only screen and (max-width: 1100px) {
  .top .contact .form_wrap {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .top .contact .form_wrap {
    max-width: 86.6666666667vw;
  }
}
.top .contact .contact_form {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_form {
    max-width: 100%;
  }
}
.top .contact .contact_form input[type=text],
.top .contact .contact_form input[type=tel],
.top .contact .contact_form input[type=email],
.top .contact .contact_form select,
.top .contact .contact_form textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 6px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  line-height: 1.5556;
  font-family: inherit;
  font-size: 18px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_form input[type=text],
  .top .contact .contact_form input[type=tel],
  .top .contact .contact_form input[type=email],
  .top .contact .contact_form select,
  .top .contact .contact_form textarea {
    padding: 1.0666666667vw 2.4vw;
    border: 0.1333333333vw solid #ccc;
    border-radius: 5px;
    font-size: 3.3333333333vw;
  }
}
.top .contact .contact_form input[type=text]::-moz-placeholder, .top .contact .contact_form input[type=tel]::-moz-placeholder, .top .contact .contact_form input[type=email]::-moz-placeholder, .top .contact .contact_form select::-moz-placeholder, .top .contact .contact_form textarea::-moz-placeholder {
  color: #999;
}
.top .contact .contact_form input[type=text]::placeholder,
.top .contact .contact_form input[type=tel]::placeholder,
.top .contact .contact_form input[type=email]::placeholder,
.top .contact .contact_form select::placeholder,
.top .contact .contact_form textarea::placeholder {
  color: #999;
}
.top .contact .contact_form input[type=text]::-ms-input-placeholder,
.top .contact .contact_form input[type=tel]::-ms-input-placeholder,
.top .contact .contact_form input[type=email]::-ms-input-placeholder,
.top .contact .contact_form select::-ms-input-placeholder,
.top .contact .contact_form textarea::-ms-input-placeholder {
  color: #999;
}
.top .contact .contact_form select {
  min-height: initial;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_form select {
    background-size: 9.3333333333vw;
  }
}
.top .contact .contact_form select:invalid {
  color: #999;
}
.top .contact .contact_form select option:first-child {
  color: #999;
}
.top .contact .contact_form select option:not(:first-child) {
  color: #000;
}
.top .contact .contact_form textarea {
  min-height: 132px;
  max-width: 420px;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_form textarea {
    min-height: 17.6vw;
    max-width: 86.6666666667vw;
  }
}
.top .contact .group {
  display: flex;
}
@media screen and (max-width: 768px) {
  .top .contact .group {
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.top .contact .group + .group {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top .contact .group + .group {
    margin-top: 5.6vw;
  }
}
.top .contact .group > dt {
  width: 206px;
}
@media screen and (max-width: 768px) {
  .top .contact .group > dt {
    width: 100%;
  }
}
.top .contact .group > dd {
  width: calc(100% - 210px);
  line-height: 1.5556;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top .contact .group > dd {
    width: 100%;
    font-size: 4.6666666667vw;
  }
}
.top .contact .confirm_box .group > dt {
  width: 275px;
}
@media screen and (max-width: 768px) {
  .top .contact .confirm_box .group > dt {
    width: 100%;
  }
}
.top .contact .confirm_box .group > dd {
  width: calc(100% - 275px);
}
@media screen and (max-width: 768px) {
  .top .contact .confirm_box .group > dd {
    width: 100%;
  }
}
.top .contact label:not(.agree_txt):not(.wpcf7-list-item label) {
  display: flex;
  width: 100%;
  padding-top: 5px;
  padding-right: 5px;
  font-size: 16px;
  font-weight: 500;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .contact label:not(.agree_txt):not(.wpcf7-list-item label) {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    font-size: 3.3333333333vw;
    justify-content: flex-start;
  }
}
.top .contact .required {
  display: flex;
  color: #ff6666;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top .contact .required {
    font-size: 3.3333333333vw;
  }
}
.top .contact .other-type-field {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .top .contact .other-type-field {
    margin-top: 1.3333333333vw;
  }
}
.top .contact .error_txt {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #f00;
  font-size: 14px;
  font-weight: fw(bold);
}
@media screen and (max-width: 768px) {
  .top .contact .error_txt {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}
.top .contact .terms_box {
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .top .contact .terms_box {
    margin-top: 14.6666666667vw;
    padding-top: 6.6666666667vw;
    border-top: 0.2666666667vw solid #ccc;
  }
}
.top .contact .terms_box > dt {
  margin-bottom: 27px;
  line-height: 1.4445;
  font-size: 18px;
  font-weight: fw(regular);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .contact .terms_box > dt {
    margin-bottom: 6.6666666667vw;
    line-height: 1.5;
    font-size: 4.2666666667vw;
    text-align: left;
  }
}
.top .contact .terms_box > dd {
  border-radius: 7px;
  line-height: 1.71428571;
  font-size: 14px;
  font-weight: fw(regular);
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .top .contact .terms_box > dd {
    border-radius: 1.8666666667vw;
    line-height: 1.5;
    font-size: 3.2vw;
  }
}
.top .contact .terms_box > dd p,
.top .contact .terms_box > dd dl {
  max-width: 780px;
  width: 100%;
  margin: 23px auto 0;
}
@media screen and (max-width: 768px) {
  .top .contact .terms_box > dd p,
  .top .contact .terms_box > dd dl {
    max-width: 100%;
    margin-top: 4.6666666667vw;
  }
}
.top .contact .terms_box > dd p:first-child {
  margin-top: 0;
}
.top .contact .terms_box > dd li {
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.top .contact .terms_box .scroll {
  overflow-y: auto;
  height: 300px;
  padding: 34px 20px;
}
@media screen and (max-width: 768px) {
  .top .contact .terms_box .scroll {
    height: 80vw;
    padding: 4vw 5.3333333333vw;
  }
}
.top .contact .agreement_area {
  padding-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .contact .agreement_area {
    padding-top: 11.0666666667vw;
  }
}
.top .contact .agreement_area .agree_txt {
  line-height: 1;
  font-size: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .top .contact .agreement_area .agree_txt {
    font-size: 4.8vw;
  }
}
.top .contact .agreement_area input[type=checkbox] {
  width: 18px;
  height: 18px;
  position: relative;
  top: -0.1em;
  margin-right: 14px;
  padding: 0;
  border: 3px solid #ccc;
  border-radius: 1px;
  outline: none;
  background-color: #ccc;
  transition: all 0.25s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  .top .contact .agreement_area input[type=checkbox] {
    width: 4.9333333333vw;
    height: 4.9333333333vw;
    top: -0.6666666667vw;
    margin-right: 2.4vw;
    border: 0.1333333333vw solid #ccc;
    border-radius: 0.1333333333vw;
  }
}
.top .contact .agreement_area input[type=checkbox]::before {
  content: "";
  width: 16px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  background-image: url(/assets/img/common/icon_check.svg);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .top .contact .agreement_area input[type=checkbox]::before {
    width: 4.2666666667vw;
    height: 2.6666666667vw;
  }
}
.top .contact .agreement_area input[type=checkbox]:checked {
  border: 3px solid var(--theme-color01);
  background-color: var(--theme-color01);
}
@media screen and (max-width: 768px) {
  .top .contact .agreement_area input[type=checkbox]:checked {
    border: 3px solid var(--theme-color01);
    background-color: var(--theme-color01);
  }
}
.top .contact .agreement_area input[type=checkbox]:checked::before {
  opacity: 1;
}
.top .contact .agreement_area .required {
  display: inline-block;
}
.top .contact .privacyPage {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .top .contact .privacyPage {
    font-size: 3.3333333333vw;
    line-height: 1.8;
  }
}
.top .contact .privacyPage a {
  color: var(--theme-color01);
  border-bottom: 1px solid var(--theme-color01);
}
@media only screen and (min-width: 769px) {
  .top .contact .privacyPage a:hover {
    border-bottom: 1px solid transparent;
  }
}
.top .contact .btn_wrap {
  display: flex;
  margin-top: 23px;
  align-items: center;
  justify-content: center;
  gap: 42px;
}
@media screen and (max-width: 768px) {
  .top .contact .btn_wrap {
    margin-top: 4.6666666667vw;
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}
.top .contact .contact_confirm .group > dt {
  display: flex;
  padding-right: 20px;
  font-size: 18px;
  font-weight: 600;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_confirm .group > dt {
    padding-right: 0;
    font-size: 4.2666666667vw;
  }
}
.top .contact .contact_confirm .btn_wrap {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_confirm .btn_wrap {
    flex-direction: column-reverse;
    margin-top: 10vw;
    padding-top: 10.6666666667vw;
    border-top: 0.2666666667vw solid #ccc;
  }
}
.top .contact .contact_confirm .btn_wrap .btn:has(.back_button):hover input {
  color: #999;
  background-color: #fff;
  border: 2px solid #999;
}
.top .contact .contact_thanks {
  padding-top: 50px;
  padding-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_thanks {
    padding-top: 5.3333333333vw;
    padding-bottom: 8.6666666667vw;
    text-align: left;
  }
}
.top .contact .contact_thanks .thanks_ttl {
  margin-bottom: 34px;
  line-height: 1.76923077;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_thanks .thanks_ttl {
    margin-bottom: 7.2vw;
    font-size: 4vw;
  }
}
.top .contact .contact_thanks .thanks_txt {
  line-height: 1.5556;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_thanks .thanks_txt {
    line-height: 1.5;
    font-size: 3.4666666667vw;
    padding-bottom: 4vw;
  }
}
.top .contact .contact_thanks .btn {
  margin: 56px auto 0;
  padding: 10px 20px;
  border-radius: 23px;
  background-color: var(--theme-color01);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .top .contact .contact_thanks .btn {
    margin-top: 8.6666666667vw;
    padding: 1.3333333333vw 2.6666666667vw;
    border-radius: 4vw;
    font-size: 3.7333333333vw;
  }
}
.top .contact .wpcf7-spinner {
  display: none;
}
@media screen and (min-width: 768px) {
  .top .contact .btn_wrap .btn:hover input {
    color: var(--theme-color01);
    letter-spacing: 0.1em;
  }
}
.top .contact .btn_wrap .btn:not(button) {
  padding: 0;
}
.top .contact .btn_wrap .btn input {
  width: 290px;
  margin: 0;
  padding: 9px 5px;
  border: 2px solid transparent;
  border-radius: 23px;
  outline: none;
  color: #fff;
  line-height: 1.5;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--theme-color01);
  cursor: pointer;
  transition: all 0.25s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (min-width: 768px) {
  .top .contact .btn_wrap .btn input:hover {
    background: #fff;
    border: 2px solid var(--theme-color01);
  }
}
@media screen and (max-width: 768px) {
  .top .contact .btn_wrap .btn input {
    width: 72vw;
    padding: 1.3333333333vw 0.6666666667vw;
    border-width: 0.5333333333vw;
    border-radius: 4.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .top .contact .btn_wrap .btn.col_off:hover input {
    color: var(--theme-color01);
  }
}
.top .contact .btn_wrap .btn.col_off input {
  color: #fff;
  background-color: #999;
}
.top .contact .default_box .btn_wrap .btn.col_off {
  pointer-events: none;
}
.top .contact .wpcf7-not-valid-tip {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #f00;
  font-size: 14px;
  font-weight: fw(bold);
}
@media screen and (max-width: 768px) {
  .top .contact .wpcf7-not-valid-tip {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}
.top .contact .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
  display: none;
}
.top .contact .wpcf7-list-item {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top .contact .wpcf7-list-item {
    font-size: 3.3333333333vw;
  }
}
.top .contact .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.top .contact .wpcf7 form .wpcf7-response-output {
  display: none;
}

.page_news .news_items {
  max-width: 900px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items {
    max-width: 86.6666666667vw;
  }
}
.page_news .news_items ul {
  margin-top: -40px;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul {
    margin-top: 0;
  }
}
.page_news .news_items ul .item_wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(10, 83, 117, 0.2);
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  .page_news .news_items ul .item_wrap:first-child {
    border-top: 1px solid rgba(10, 83, 117, 0.2);
  }
}
.page_news .news_items ul .item_wrap > a {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap > a {
    gap: 5.3333333333vw;
  }
}
.page_news .news_items ul .item_wrap .item_img {
  max-width: 310px;
  width: 100%;
  max-height: 166px;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_img {
    max-width: 36vw;
    max-height: 19.2vw;
    border-radius: 1.3333333333vw;
  }
}
.page_news .news_items ul .item_wrap .item_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_news .news_items ul .item_wrap .item_txt {
  max-width: 550px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_txt {
    max-width: 45.3333333333vw;
  }
}
.page_news .news_items ul .item_wrap .item_txt .news_attribute {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_txt .news_attribute {
    gap: 1.6vw;
  }
}
.page_news .news_items ul .item_wrap .item_txt .news_attribute time {
  font-size: 20px;
  font-weight: 700;
  color: #999;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_txt .news_attribute time {
    font-size: 4vw;
  }
}
.page_news .news_items ul .item_wrap .item_txt .news_attribute .item_category {
  display: contents;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_txt .news_attribute .item_category {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8vw 1.6vw;
  }
}
.page_news .news_items ul .item_wrap .item_txt .news_attribute .category {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--theme-color02);
  padding: 7px 15px 8px;
  border-radius: 15px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_txt .news_attribute .category {
    font-size: 2.8vw;
    padding: 0.9333333333vw 2vw 1.0666666667vw;
    border-radius: 2.4vw;
  }
}
.page_news .news_items ul .item_wrap .item_txt .news_ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  padding-top: 9px;
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .page_news .news_items ul .item_wrap .item_txt .news_ttl {
    font-size: 4vw;
    line-height: 1.53;
    padding-top: 3.0666666667vw;
    padding-right: 0;
  }
}
.page_news .news_items .wp-pagenavi {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 75px;
}
@media screen and (max-width: 768px) {
  .page_news .news_items .wp-pagenavi {
    gap: 1.3333333333vw;
    padding-top: 14.9333333333vw;
  }
}
.page_news .news_items .wp-pagenavi a, .page_news .news_items .wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  line-height: 1;
  color: #999999;
  font-size: 21px;
  font-weight: 700;
  background-color: #fff;
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 768px) {
  .page_news .news_items .wp-pagenavi a, .page_news .news_items .wp-pagenavi span {
    width: 9.8666666667vw;
    height: 9.8666666667vw;
    border-width: 0.2666666667vw;
    font-size: 4vw;
  }
}
.page_news .news_items .wp-pagenavi .current {
  color: var(--theme-color02);
}
.page_news .news_items .wp-pagenavi a.previouspostslink, .page_news .news_items .wp-pagenavi a.nextpostslink, .page_news .news_items .wp-pagenavi span.previouspostslink, .page_news .news_items .wp-pagenavi span.nextpostslink {
  font-size: 0;
}
.page_news .news_items .wp-pagenavi a.previouspostslink::before, .page_news .news_items .wp-pagenavi a.nextpostslink::before, .page_news .news_items .wp-pagenavi span.previouspostslink::before, .page_news .news_items .wp-pagenavi span.nextpostslink::before {
  content: "";
  display: block;
  background-image: url(/assets/img/news/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 10px;
  transform: rotate(180deg);
  transition: all 0.25s ease-out;
}
@media screen and (max-width: 768px) {
  .page_news .news_items .wp-pagenavi a.previouspostslink::before, .page_news .news_items .wp-pagenavi a.nextpostslink::before, .page_news .news_items .wp-pagenavi span.previouspostslink::before, .page_news .news_items .wp-pagenavi span.nextpostslink::before {
    border-width: 1.3333333333vw 1.6vw 1.3333333333vw 0px;
  }
}
.page_news .news_items .wp-pagenavi a.nextpostslink::before, .page_news .news_items .wp-pagenavi span.nextpostslink::before {
  transform: rotate(0);
}
@media screen and (min-width: 768px) {
  .page_news .news_items .wp-pagenavi a:hover {
    color: var(--theme-color02);
  }
}
.page_news .news_items .wp-pagenavi .nextpostslink::before {
  transform: rotate(180deg);
}
.page_news .news_items .wp-pagenavi .extend {
  width: 36px;
  height: auto;
  border: none;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .page_news .news_items .wp-pagenavi .extend {
    width: 6.6666666667vw;
  }
}

.page_newsPost .news_article {
  max-width: 900px;
  width: 100%;
}
.page_newsPost .news_article .news_attribute {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .news_attribute {
    gap: 1.6vw;
    padding-bottom: 1.8666666667vw;
  }
}
.page_newsPost .news_article .news_attribute time {
  font-size: 20px;
  font-weight: 700;
  color: #999;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .news_attribute time {
    font-size: 4vw;
  }
}
.page_newsPost .news_article .news_attribute .category {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--theme-color02);
  padding: 7px 15px 8px;
  border-radius: 15px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .news_attribute .category {
    font-size: 2.8vw;
    padding: 0.9333333333vw 2vw 1.0666666667vw;
    border-radius: 2.4vw;
  }
}
.page_newsPost .news_article .post_ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.47;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_ttl {
    font-size: 4.8vw;
    line-height: 1.55555556;
    padding-bottom: 6.6666666667vw;
  }
}
.page_newsPost .news_article .post_eyeCatching {
  max-width: 900px;
  width: 100%;
  height: 484px;
  margin-bottom: 65px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_eyeCatching {
    max-width: 86.6666666667vw;
    max-height: 46.6666666667vw;
    margin-bottom: 9.0666666667vw;
  }
}
.page_newsPost .news_article .post_eyeCatching img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_newsPost .news_article .post_cont h2 {
  font-size: 46px;
  font-weight: 400;
  line-height: 1.09;
  color: var(--theme-color02);
  padding-bottom: 59px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont h2 {
    font-size: 6.4vw;
    line-height: 1.25;
    padding-bottom: 5.7333333333vw;
  }
}
.page_newsPost .news_article .post_cont h3 {
  font-size: 22px;
  font-weight: 700;
  padding-left: 15px;
  position: relative;
  margin-bottom: 18px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont h3 {
    font-size: 4.2666666667vw;
    line-height: 1.88;
    padding-left: 3.3333333333vw;
    margin-bottom: 2.4vw;
  }
}
.page_newsPost .news_article .post_cont h3::before {
  position: absolute;
  content: "";
  background: var(--theme-color02);
  width: 4px;
  height: 25px;
  border-radius: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont h3::before {
    width: 0.5333333333vw;
    height: 4.6666666667vw;
    border-radius: 0.2666666667vw;
  }
}
.page_newsPost .news_article .post_cont > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont > p {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
}
.page_newsPost .news_article .post_cont > p:not(:last-of-type) {
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont > p:not(:last-of-type) {
    padding-bottom: 6.2666666667vw;
  }
}
.page_newsPost .news_article .post_cont > p:last-of-type {
  padding-bottom: 55px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont > p:last-of-type {
    padding-bottom: 9.3333333333vw;
  }
}
.page_newsPost .news_article .post_cont > div {
  background-color: rgba(204, 204, 204, 0.2);
  padding: 52px 50px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont > div {
    padding: 6.1333333333vw 6.6666666667vw 7.7333333333vw;
    margin-left: -6.6666666667vw;
    margin-right: -6.6666666667vw;
  }
}
.page_newsPost .news_article .post_cont > div p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .post_cont > div p {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
}
.page_newsPost .news_article .postPager {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 70px;
  padding-bottom: 150px;
  border-bottom: 1px solid rgba(10, 83, 117, 0.2);
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .postPager {
    margin-top: 10.2666666667vw;
    padding-bottom: 11.0666666667vw;
    gap: 8.6666666667vw;
  }
}
.page_newsPost .news_article .postPager .postPager_link {
  max-width: 340px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .postPager .postPager_link {
    max-width: 38.9333333333vw;
  }
}
.page_newsPost .news_article .postPager .postPager_link a {
  display: block;
  width: 100%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.59;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .postPager .postPager_link a {
    font-size: 3.3333333333vw;
    line-height: 1.6;
  }
}
.page_newsPost .news_article .postPager .postPager_link a::before {
  position: absolute;
  content: "";
  background-image: url(/assets/img/news/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 10px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .postPager .postPager_link a::before {
    background-image: url(/assets/img/news/arrow03.png);
    width: 3.7333333333vw;
    height: 5.8666666667vw;
  }
}
.page_newsPost .news_article .postPager .postPager_link.previous a {
  padding-left: 36px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .postPager .postPager_link.previous a {
    padding-left: 8.5333333333vw;
  }
}
.page_newsPost .news_article .postPager .postPager_link.previous a::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.page_newsPost .news_article .postPager .postPager_link.next a {
  padding-right: 36px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .postPager .postPager_link.next a {
    padding-right: 8.5333333333vw;
  }
}
.page_newsPost .news_article .postPager .postPager_link.next a::before {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page_newsPost .news_article .other_news {
  padding-top: 50px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(10, 83, 117, 0.2);
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news {
    padding-top: 0;
    padding-bottom: 2.6666666667vw;
    border-bottom: none;
  }
}
.page_newsPost .news_article .other_news_ttl {
  max-width: 730px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_ttl {
    padding-top: 6.6666666667vw;
    padding-bottom: 2.6666666667vw;
    max-width: 86.6666666667vw;
  }
}
.page_newsPost .news_article .other_news_ttl p {
  font-size: 20px;
  font-weight: 700;
  padding-left: 15px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_ttl p {
    font-size: 4.2666666667vw;
    padding-left: 3.3333333333vw;
  }
}
.page_newsPost .news_article .other_news_ttl p::before {
  position: absolute;
  content: "";
  background: var(--theme-color02);
  width: 4px;
  height: 25px;
  border-radius: 2px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_ttl p::before {
    width: 0.5333333333vw;
    height: 4.6666666667vw;
    border-radius: 0.2666666667vw;
  }
}
.page_newsPost .news_article .other_news_list {
  display: flex;
  justify-content: center;
  gap: 115px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list {
    flex-direction: column;
    gap: 0;
  }
  .page_newsPost .news_article .other_news_list a {
    display: flex;
    gap: 5.2vw;
    padding-top: 8vw;
    padding-bottom: 10.6666666667vw;
    border-bottom: 1px solid rgba(10, 83, 117, 0.2);
  }
}
.page_newsPost .news_article .other_news_list > div {
  max-width: 310px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list > div {
    max-width: 86.6666666667vw;
  }
}
.page_newsPost .news_article .other_news_list .news_thumbnail {
  padding-bottom: 15px;
  height: 166px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list .news_thumbnail {
    padding-bottom: 0;
    max-width: 36vw;
    height: 19.2vw;
    width: 100%;
  }
}
.page_newsPost .news_article .other_news_list .news_thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.page_newsPost .news_article .other_news_list .news_attribute {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list .news_attribute {
    gap: 1.7333333333vw;
    padding-bottom: 1.4666666667vw;
  }
}
.page_newsPost .news_article .other_news_list .news_attribute time {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list .news_attribute time {
    font-size: 4vw;
  }
}
.page_newsPost .news_article .other_news_list .news_attribute .item_category {
  display: contents;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list .news_attribute .item_category {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8vw 1.6vw;
  }
}
.page_newsPost .news_article .other_news_list .news_attribute .category {
  font-size: 12px;
  padding: 4px 11px 4px;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list .news_attribute .category {
    font-size: 2.8vw;
    padding: 0.9333333333vw 2vw 1.0666666667vw;
  }
}
.page_newsPost .news_article .other_news_list h4 {
  font-size: 17px;
  line-height: 1.65;
}
@media only screen and (max-width: 768px) {
  .page_newsPost .news_article .other_news_list h4 {
    font-size: 3.3333333333vw;
    line-height: 1.6;
  }
}

.page_privacy .cont_wrap .section_ttl {
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .section_ttl {
    padding-bottom: 14.2666666667vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .section_ttl h2 {
    font-size: 10.1333333333vw;
    line-height: 1.06;
  }
}
.page_privacy .cont_wrap .inner {
  max-width: 940px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .inner {
    max-width: 100vw;
    padding: 0 6.6666666667vw;
  }
}
.page_privacy .cont_wrap .intro p {
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .intro p {
    letter-spacing: -0.02em;
  }
}
.page_privacy .cont_wrap .intro p:not(:last-child) {
  padding-bottom: 42px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .intro p:not(:last-child) {
    padding-bottom: 9.6vw;
  }
}
.page_privacy .cont_wrap .intro p:last-child {
  padding-bottom: 74px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .intro p:last-child {
    padding-bottom: 13.0666666667vw;
  }
}
.page_privacy .cont_wrap .article:not(:last-child) {
  padding-bottom: 87px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .article:not(:last-child) {
    padding-bottom: 13.7333333333vw;
  }
}
.page_privacy .cont_wrap .article_txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .article_txt {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
}
.page_privacy .cont_wrap .article_ttl {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.39;
  color: var(--theme-color02);
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cont_wrap .article_ttl {
    font-size: 5.6vw;
    line-height: 1.43;
    padding-bottom: 5.0666666667vw;
  }
}
.page_privacy .privacy_policy {
  padding-bottom: 162px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy {
    padding-bottom: 28.5333333333vw;
  }
}
.page_privacy .privacy_policy .article._03 .article_txt, .page_privacy .privacy_policy .article._04 .article_txt, .page_privacy .privacy_policy .article._07 .article_txt, .page_privacy .privacy_policy .article._08 .article_txt, .page_privacy .privacy_policy .article._09 .article_txt {
  line-height: 1.69;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._03 .article_txt, .page_privacy .privacy_policy .article._04 .article_txt, .page_privacy .privacy_policy .article._07 .article_txt, .page_privacy .privacy_policy .article._08 .article_txt, .page_privacy .privacy_policy .article._09 .article_txt {
    line-height: 1.79;
    padding-bottom: 1.0666666667vw;
  }
}
.page_privacy .privacy_policy .article._03 ol, .page_privacy .privacy_policy .article._04 ol, .page_privacy .privacy_policy .article._07 ol, .page_privacy .privacy_policy .article._08 ol, .page_privacy .privacy_policy .article._09 ol {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._03 ol, .page_privacy .privacy_policy .article._04 ol, .page_privacy .privacy_policy .article._07 ol, .page_privacy .privacy_policy .article._08 ol, .page_privacy .privacy_policy .article._09 ol {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
}
.page_privacy .privacy_policy .article._03 ol li, .page_privacy .privacy_policy .article._04 ol li, .page_privacy .privacy_policy .article._07 ol li, .page_privacy .privacy_policy .article._08 ol li, .page_privacy .privacy_policy .article._09 ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.page_privacy .privacy_policy .article._03 ol li:not(:last-child), .page_privacy .privacy_policy .article._04 ol li:not(:last-child), .page_privacy .privacy_policy .article._07 ol li:not(:last-child), .page_privacy .privacy_policy .article._08 ol li:not(:last-child), .page_privacy .privacy_policy .article._09 ol li:not(:last-child) {
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._03 ol li:not(:last-child), .page_privacy .privacy_policy .article._04 ol li:not(:last-child), .page_privacy .privacy_policy .article._07 ol li:not(:last-child), .page_privacy .privacy_policy .article._08 ol li:not(:last-child), .page_privacy .privacy_policy .article._09 ol li:not(:last-child) {
    padding-bottom: 1.0666666667vw;
  }
}
.page_privacy .privacy_policy .article._05 ol, .page_privacy .privacy_policy .article._06 ol {
  font-size: 16px;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._05 ol, .page_privacy .privacy_policy .article._06 ol {
    font-size: 3.7333333333vw;
  }
}
.page_privacy .privacy_policy .article._05 ol > li:not(:last-child), .page_privacy .privacy_policy .article._06 ol > li:not(:last-child) {
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._05 ol > li:not(:last-child), .page_privacy .privacy_policy .article._06 ol > li:not(:last-child) {
    padding-bottom: 9.3333333333vw;
  }
}
.page_privacy .privacy_policy .article._05 ol .list_ttl, .page_privacy .privacy_policy .article._06 ol .list_ttl {
  padding-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._05 ol .list_ttl, .page_privacy .privacy_policy .article._06 ol .list_ttl {
    padding-bottom: 1.8666666667vw;
  }
}
.page_privacy .privacy_policy .article._05 ol .tier2, .page_privacy .privacy_policy .article._06 ol .tier2 {
  padding-left: 45px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._05 ol .tier2, .page_privacy .privacy_policy .article._06 ol .tier2 {
    padding-left: 3.6vw;
  }
}
.page_privacy .privacy_policy .article._05 ol .tier2 li, .page_privacy .privacy_policy .article._06 ol .tier2 li {
  padding-left: 1em;
  text-indent: -1em;
}
.page_privacy .privacy_policy .article._05 ol .tier2 li:not(:last-child), .page_privacy .privacy_policy .article._06 ol .tier2 li:not(:last-child) {
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._05 ol .tier2 li:not(:last-child), .page_privacy .privacy_policy .article._06 ol .tier2 li:not(:last-child) {
    padding-bottom: 1.8666666667vw;
  }
}
.page_privacy .privacy_policy .article._05 ol .tier3, .page_privacy .privacy_policy .article._06 ol .tier3 {
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .privacy_policy .article._05 ol .tier3, .page_privacy .privacy_policy .article._06 ol .tier3 {
    padding-top: 2vw;
  }
}
.page_privacy .site_policy {
  padding-bottom: 177px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy {
    padding-bottom: 28.6666666667vw;
  }
}
.page_privacy .site_policy .article ol li:not(:last-child) {
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article ol li:not(:last-child) {
    padding-bottom: 10.6666666667vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article._annotation .list_ttl._content {
    line-height: 1.56;
  }
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article._annotation .list_ttl._content::before {
    height: 11.2vw;
  }
}
.page_privacy .site_policy .article .list_ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 2.27;
  padding-left: 15px;
  padding-bottom: 10px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article .list_ttl {
    font-size: 4.2666666667vw;
    line-height: 1.875;
    padding-left: 4.4vw;
    padding-bottom: 2.4vw;
  }
}
.page_privacy .site_policy .article .list_ttl::before {
  position: absolute;
  content: "";
  background-color: var(--theme-color02);
  width: 4px;
  height: 25px;
  border-radius: 2px;
  left: 0;
  top: 13px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article .list_ttl::before {
    width: 0.5333333333vw;
    height: 4.6666666667vw;
    border-radius: 0.2666666667vw;
    left: 0.1333333333vw;
    top: 1.7333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article .list_txt {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
}
.page_privacy .site_policy .article._link .article_txt._01 {
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article._link .article_txt._01 {
    padding-bottom: 6.9333333333vw;
  }
}
.page_privacy .site_policy .article._link .article_txt._02 {
  padding-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article._link .article_txt._02 {
    padding-bottom: 6.6666666667vw;
  }
}
.page_privacy .site_policy .article._link .link_annotation {
  margin-top: 35px;
  margin-bottom: 30px;
  background-color: rgba(204, 204, 204, 0.2);
  padding: 52px 50px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article._link .link_annotation {
    margin: 9.3333333333vw -6.6666666667vw 8vw;
    padding: 5.4666666667vw 6.6666666667vw 6.2666666667vw;
  }
}
.page_privacy .site_policy .article._link .link_annotation ul li {
  line-height: 1.88;
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 768px) {
  .page_privacy .site_policy .article._link .link_annotation ul li {
    font-size: 3.7333333333vw;
    line-height: 1.79;
  }
}
.page_privacy .cookie_policy {
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .page_privacy .cookie_policy {
    padding-bottom: 5.3333333333vw;
  }
}
@media only screen and (max-width: 768px) {
  .page_privacy .cookie_policy .section_ttl h2 {
    letter-spacing: 0.08em;
  }
}/*# sourceMappingURL=style.css.map */