@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@700&family=Prompt:wght@400;600&family=Shippori+Mincho:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
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,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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: "";
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
* {
  box-sizing: border-box;
}

body {
  position: relative;
  width: 100%;
  line-height: 1.8;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: calc(1.3333333333 * var(--vw));
  word-break: break-word;
  color: #222;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: calc(3.4666666667 * var(--vw));
  }
}

.mainSection {
  margin-top: calc(7.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .mainSection {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .mainSection {
    margin-top: calc(13.3333333333 * var(--vw));
  }
}

.container {
  overflow: hidden;
}

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

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

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(18.3333333333 * var(--vw));
  height: calc(4.5833333333 * var(--vw));
  margin: calc(3.3333333333 * var(--vw)) auto 0;
  border: 1px solid #333;
  background-color: #333;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  outline: none;
  transition: all 0.3s;
}
@media only screen and (min-width: 1200px) {
  .btn {
    width: 220px;
    height: 55px;
    margin: 40px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 70%;
    height: calc(14.6666666667 * var(--vw));
    margin: calc(8 * var(--vw)) auto 0;
  }
}
.btn:after {
  content: "";
  display: inline-block;
  width: calc(0.5833333333 * var(--vw));
  height: calc(0.5833333333 * var(--vw));
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 20px;
  position: absolute;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) {
  .btn:after {
    width: 7px;
    height: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .btn:after {
    width: calc(1.8666666667 * var(--vw));
    height: calc(1.8666666667 * var(--vw));
  }
}
.btn:hover {
  background-color: #fff;
  border-color: #333;
  color: #333;
}
.btn:hover:after {
  right: calc(1.6666666667 * var(--vw));
  border-color: #333;
}
@media only screen and (min-width: 1200px) {
  .btn:hover:after {
    right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .btn:hover:after {
    right: calc(2.6666666667 * var(--vw));
  }
}

a img {
  transition: 0.3s;
}
a img:hover {
  opacity: 0.6;
}

section.sec {
  margin-bottom: calc(8.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  section.sec {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 768px) {
  section.sec {
    margin-bottom: calc(16 * var(--vw));
  }
}
section.sec.sec-bg {
  padding: calc(8.3333333333 * var(--vw)) 0;
}
@media only screen and (min-width: 1200px) {
  section.sec.sec-bg {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 768px) {
  section.sec.sec-bg {
    padding: getvwc(120) 0;
  }
}

.sec-in {
  max-width: calc(1100px + 2.5 * var(--vw) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .sec-in {
    max-width: 1160px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-in {
    width: 100%;
    padding: 0 calc(5.3333333333 * var(--vw));
  }
}

footer {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #505050;
  padding: calc(1.5833333333 * var(--vw)) calc(1.1666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  footer {
    padding: 19px 14px;
  }
}
@media only screen and (max-width: 768px) {
  footer {
    padding: calc(5.0666666667 * var(--vw)) calc(3.7333333333 * var(--vw));
  }
}

.footer1 {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  border-top: solid 1px #000;
}
.footer1 .foot-box {
  width: 100%;
  max-width: 1160px;
  display: flex;
  justify-content: space-between;
  gap: calc(23.6666666667 * var(--vw));
  margin-top: calc(4 * var(--vw));
  margin-bottom: calc(4 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-box {
    margin-top: 48px;
    margin-bottom: 48px;
    gap: 284px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: calc(6.6666666667 * var(--vw));
    margin-bottom: calc(6.6666666667 * var(--vw));
    gap: calc(12 * var(--vw));
  }
}
.footer1 .foot-box .company-banner {
  width: calc(26 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-box .company-banner {
    width: 312px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-box .company-banner {
    width: calc(83.2 * var(--vw));
  }
}
.footer1 .foot-cobox {
  display: flex;
  justify-content: space-between;
  width: calc(47 * var(--vw));
  gap: calc(6.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-cobox {
    width: 564px;
    gap: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-cobox {
    width: 95%;
    justify-content: center;
    gap: 0;
  }
}
.footer1 .foot-cobox .company-add {
  width: calc(20.1666666667 * var(--vw));
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-cobox .company-add {
    width: 50%;
  }
}
.footer1 .foot-cobox .company-add .fttl-86 {
  width: calc(7.1666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-cobox .company-add .fttl-86 {
    width: 86px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-cobox .company-add .fttl-86 {
    width: calc(22.9333333333 * var(--vw));
  }
}
.footer1 .foot-cobox .company-add .fttl-102 {
  width: calc(8.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-cobox .company-add .fttl-102 {
    width: 102px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-cobox .company-add .fttl-102 {
    width: calc(27.2 * var(--vw));
  }
}
.footer1 .foot-cobox .company-add .f-txt {
  font-size: calc(1.1666666667 * var(--vw));
  margin-top: calc(0.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-cobox .company-add .f-txt {
    font-size: 14px;
    margin-top: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-cobox .company-add .f-txt {
    font-size: calc(2.9333333333 * var(--vw));
    margin-top: calc(2.1333333333 * var(--vw));
  }
}
.footer1 .foot-cobox .company-pos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: calc(1.3333333333 * var(--vw));
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .footer1 .foot-cobox .company-pos {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .footer1 .foot-cobox .company-pos {
    font-size: 16px;
  }
}

.footer2 {
  position: relative;
  width: 100%;
  max-width: 1099px;
  margin: 0 auto;
  display: flex;
  color: #fff;
  justify-content: space-between;
  font-size: calc(1.1666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .footer2 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .footer2 {
    flex-direction: column;
    align-items: center;
    font-size: calc(3.7333333333 * var(--vw));
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .footer2 a {
    padding-bottom: calc(3.7333333333 * var(--vw));
  }
}
.footer2 h5 {
  font-weight: 300;
}

.topic-path {
  display: flex;
  margin: calc(2.5 * var(--vw)) auto;
  max-width: calc(1100px + 2.5 * var(--vw) * 2);
}
@media only screen and (min-width: 1200px) {
  .topic-path {
    max-width: 1160px;
    margin: 30px auto;
  }
}
@media only screen and (max-width: 768px) {
  .topic-path {
    max-width: inherit;
  }
}
.topic-path li {
  margin-right: calc(0.8333333333 * var(--vw));
  font-size: 1.2rem;
  padding-left: calc(1.25 * var(--vw));
  box-sizing: border-box;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .topic-path li {
    margin-right: 10px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .topic-path li {
    max-width: inherit;
    margin-right: calc(0.8333333333 * var(--vw));
    font-size: 1.1rem;
    padding-left: calc(1.25 * var(--vw));
  }
}
.topic-path li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
}
.topic-path li:first-child {
  padding-left: 0;
}
.topic-path li:first-child:before {
  display: none;
}
.topic-path li a {
  display: block;
}
.topic-path li a:hover {
  text-decoration: underline;
}

.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
  animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list {
  opacity: 0;
  position: relative;
}
.inview-group .inview-list.animate {
  -webkit-animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes inview_slide_up {
  0% {
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

@media (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.txt-c {
  text-align: center !important;
}

.txt-r {
  text-align: right !important;
}

.txt-l {
  text-align: left !important;
}

.txt-w {
  color: #fff;
}

.txt-b {
  color: #000;
}

.f-serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}

.t-mark {
  width: calc(1.1666666667 * var(--vw));
  margin-right: calc(0.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .t-mark {
    width: 14px;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .t-mark {
    width: calc(3.7333333333 * var(--vw));
    margin-right: calc(2.6666666667 * var(--vw));
  }
}

.mt-16-10lh {
  margin-top: calc(0.9166666667 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-16-10lh {
    margin-top: 11px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-16-10lh {
    margin-top: calc(1.8666666667 * var(--vw)) !important;
  }
}

.mt-40-0 {
  margin-top: calc(3.3333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-40-0 {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-40-0 {
    margin-top: 0 !important;
  }
}

.mt-45-20 {
  margin-top: calc(3.75 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-45-20 {
    margin-top: 45px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-45-20 {
    margin-top: calc(5.3333333333 * var(--vw)) !important;
  }
}

.mt-56-40 {
  margin-top: calc(4.6666666667 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-56-40 {
    margin-top: 56px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-56-40 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-65-25 {
  margin-top: calc(5.4166666667 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-65-25 {
    margin-top: 65px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-65-25 {
    margin-top: calc(6.6666666667 * var(--vw)) !important;
  }
}

.mt-65-34 {
  margin-top: calc(5.4166666667 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-65-34 {
    margin-top: 65px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-65-34 {
    margin-top: calc(9.0666666667 * var(--vw)) !important;
  }
}

.mt-70-40 {
  margin-top: calc(5.8333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-70-40 {
    margin-top: 70px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-70-40 {
    margin-top: calc(10.6666666667 * var(--vw)) !important;
  }
}

.mt-75-60 {
  margin-top: calc(6.25 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-75-60 {
    margin-top: 75px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-75-60 {
    margin-top: calc(16 * var(--vw)) !important;
  }
}

.mt-90-45 {
  margin-top: calc(7.5 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-90-45 {
    margin-top: 90px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-90-45 {
    margin-top: calc(12 * var(--vw)) !important;
  }
}

.mt-100-90 {
  margin-top: calc(8.3333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-100-90 {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-100-90 {
    margin-top: calc(24 * var(--vw)) !important;
  }
}

.mt-100-92 {
  margin-top: calc(8.3333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-100-92 {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-100-92 {
    margin-top: calc(24.5333333333 * var(--vw)) !important;
  }
}

.mt-110-45 {
  margin-top: calc(9.1666666667 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-110-45 {
    margin-top: 110px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-110-45 {
    margin-top: calc(12 * var(--vw)) !important;
  }
}

.mt-120-45 {
  margin-top: calc(10 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-120-45 {
    margin-top: 120px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-120-45 {
    margin-top: calc(12 * var(--vw)) !important;
  }
}

.mt-130-60 {
  margin-top: calc(10.8333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mt-130-60 {
    margin-top: 130px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mt-130-60 {
    margin-top: calc(16 * var(--vw)) !important;
  }
}

.mb-130-60 {
  margin-bottom: calc(10.8333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .mb-130-60 {
    margin-bottom: 130px !important;
  }
}
@media only screen and (max-width: 768px) {
  .mb-130-60 {
    margin-bottom: calc(16 * var(--vw)) !important;
  }
}

.pt-30-15 {
  padding-top: calc(2.5 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .pt-30-15 {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pt-30-15 {
    padding-top: calc(4 * var(--vw)) !important;
  }
}

.pt-45-20 {
  padding-top: calc(3.75 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .pt-45-20 {
    padding-top: 45px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pt-45-20 {
    padding-top: calc(5.3333333333 * var(--vw)) !important;
  }
}

.pb-130-60 {
  padding-bottom: calc(10.8333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .pb-130-60 {
    padding-bottom: 130px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pb-130-60 {
    padding-bottom: calc(16 * var(--vw)) !important;
  }
}

.pb-130-330 {
  padding-bottom: calc(10.8333333333 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  .pb-130-330 {
    padding-bottom: 130px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pb-130-330 {
    padding-bottom: calc(88 * var(--vw)) !important;
  }
}

.header-grp {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.site-header {
  max-width: 1440px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  height: calc(7.5 * var(--vw));
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  .site-header {
    height: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .site-header {
    position: fixed;
    height: calc(14.9333333333 * var(--vw));
  }
}

@media only screen and (min-width: 769px) {
  .logo-header-img {
    width: calc(27.4166666667 * var(--vw));
    margin: auto 0;
    margin-left: calc(2.0833333333 * var(--vw));
  }
}
@media only screen and (min-width: 1200px) {
  .logo-header-img {
    width: 329px;
    margin-left: 25px;
  }
}
.logo-header-img {
  /*@include media(sp){
      width: 65%;
      position: fixed;
      top: 10px;
      z-index: 310;
  }*/
}

.logo-header-lnk {
  /*@include media(pc-l){
    width: 329px;
    margin-left: 25px;
  } */
}
@media only screen and (max-width: 768px) {
  .logo-header-lnk {
    width: 65%;
    position: fixed;
    top: 10px;
    z-index: 310;
  }
}

.gtrans {
  width: calc(9 * var(--vw));
  vertical-align: initial;
  margin-top: calc(0.4166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .gtrans {
    width: 108px;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .gtrans {
    width: 80%;
  }
}

.menu-pc {
  font-size: calc(1.3333333333 * var(--vw));
  font-weight: 600;
  color: #202020;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  gap: calc(3.3333333333 * var(--vw));
  margin-right: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .menu-pc {
    font-size: 16px;
    gap: 40px;
    margin-right: 40px;
  }
}

.mail-box {
  width: calc(15.9166666667 * var(--vw));
  height: calc(4 * var(--vw));
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #0D63A9;
  border-radius: calc(0.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .mail-box {
    width: 191px;
    height: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .mail-box {
    display: flex !important;
    justify-content: center;
    color: #fff !important;
    width: calc(85.3333333333 * var(--vw));
    height: calc(12.8 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
.mail-box::before {
  content: "";
  display: inline-block;
  width: calc(2.6666666667 * var(--vw));
  height: calc(1.3333333333 * var(--vw));
  background-image: url("/assets/img/common/mail-icon.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) {
  .mail-box::before {
    width: 32px;
    height: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .mail-box::before {
    width: calc(8.5333333333 * var(--vw));
    height: calc(4.2666666667 * var(--vw));
    position: absolute;
    left: calc(13.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  .mail-box:hover {
    background-color: #fff;
    border: 1px solid #0D63A9;
    color: #0D63A9;
  }
  .mail-box:hover::before {
    background-image: url("/assets/img/common/mail-icon-blue.svg");
  }
}
@media only screen and (max-width: 768px) {
  .mail-box .mail-txt {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
  }
}

.container-nav {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .container-nav {
    width: 100% !important;
    position: absolute;
    top: 0;
  }
}

.container-nav.active {
  height: 100vh;
  background-color: #fff;
}

.ham-box {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0D63A9;
  padding: calc(3.2 * var(--vw));
}

.hamburger-menu {
  width: calc(8.5333333333 * var(--vw));
  height: calc(8.5333333333 * var(--vw));
  cursor: pointer;
  z-index: 300;
}
.hamburger-menu .line {
  display: block;
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.hamburger-menu .line:nth-of-type(1) {
  top: 24%;
}
.hamburger-menu .line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu .line:nth-of-type(3) {
  bottom: 24%;
}

.hamburger-menu.active > .line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active > .line:nth-of-type(2) {
  display: none;
}

.hamburger-menu.active > .line:nth-of-type(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.nav-menu {
  display: none;
}
.nav-menu a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 5px;
  margin: 5px;
  margin-bottom: calc(5.3333333333 * var(--vw));
}
.nav-menu.active {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 8px;
  width: 75%;
  position: absolute;
  top: 30% !important;
  left: 40%;
  transform: translate(-50%, -50%);
  animation: fadeIn 0.5s forwards;
}
.nav-menu .nav1 {
  width: calc(22.9333333333 * var(--vw));
}
.nav-menu .nav2 {
  width: calc(22.9333333333 * var(--vw));
}
.nav-menu .nav3 {
  width: calc(28.5333333333 * var(--vw));
}
.nav-menu .nav4 {
  width: calc(85.3333333333 * var(--vw));
}
.nav-menu .nav-mark {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav-menu .nav-mark {
    font-size: calc(4.2666666667 * var(--vw));
    font-weight: 600;
  }
}
@media only screen and (max-width: 768px) {
  .nav-menu .nav-mark img {
    width: calc(2.6666666667 * var(--vw));
    margin-right: calc(2.6666666667 * var(--vw));
  }
}

@keyframes fadeIn {
  0% {
    top: 45%;
    opacity: 0;
  }
  100% {
    top: 50%;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1; /* 開始時：不透明 */
  }
  to {
    opacity: 0; /* 終了時：透明 */
  }
}
.kv {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.kv .dummy-img {
  width: 100%;
  position: relative;
  z-index: 10;
}

.mainvisual {
  position: absolute;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
  top: 0;
  max-width: 1440px;
}
@media only screen and (min-width: 769px) {
  .mainvisual .background {
    animation: mv-bg ease normal forwards 8s 3s 1;
  }
}
@media only screen and (max-width: 768px) {
  .mainvisual .background {
    animation: mv-bg-sp ease normal forwards 8s 3s 1;
  }
}
.mainvisual .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  animation: mv-fadein linear reverse forwards 4s 3s 1;
}
.mainvisual .text1 {
  position: absolute;
  left: calc(8.3333333333 * var(--vw));
  top: calc(11.6666666667 * var(--vw));
  animation: mv-fadein linear normal forwards 3s 6s 1;
  opacity: 0;
  z-index: 100;
}
@media only screen and (min-width: 769px) {
  .mainvisual .text1 {
    font-size: calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 1200px) {
  .mainvisual .text1 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .mainvisual .text1 {
    width: 100%;
    text-align: center;
    left: initial !important;
    top: calc(37.8666666667 * var(--vw));
    margin: 0 auto;
    font-size: calc(5.3333333333 * var(--vw));
  }
}
.mainvisual .text1 {
  font-weight: 600;
}
.mainvisual .text2 {
  position: absolute;
  left: calc(8.3333333333 * var(--vw));
  top: calc(15.8333333333 * var(--vw));
  animation: mv-fadein linear normal forwards 3s 7.5s 1;
  opacity: 0;
  z-index: 100;
}
@media only screen and (min-width: 769px) {
  .mainvisual .text2 {
    font-size: calc(2.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 1200px) {
  .mainvisual .text2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .mainvisual .text2 {
    width: 100%;
    text-align: center;
    left: initial !important;
    top: calc(50.1333333333 * var(--vw));
    margin: 0 auto;
    font-size: calc(5.3333333333 * var(--vw));
  }
}
.mainvisual .text2 {
  font-weight: 600;
}
.mainvisual .person {
  position: absolute;
  left: 0;
  top: 0;
  animation: mv-fadein linear normal forwards 3s 8.5s 1;
  opacity: 0;
}

@keyframes mv-bg {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8) translateX(-120px);
    opacity: 0.5;
  }
}
@keyframes mv-bg-sp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
@keyframes mv-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#TOP .mainSection-top {
  width: 100%;
}
#TOP .h2_title {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  font-size: calc(2.6666666667 * var(--vw));
  font-weight: 600;
  color: #222222;
  padding-top: calc(7.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .h2_title {
    font-size: 32px;
    padding-top: 90px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .h2_title {
    width: 92%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    padding-top: calc(16 * var(--vw));
  }
}
#TOP .h2_title img {
  width: calc(21.5 * var(--vw));
}
@media only screen and (max-width: 768px) {
  #TOP .h2_title img {
    width: calc(53.3333333333 * var(--vw));
  }
}
#TOP .value-box {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(3.3333333333 * var(--vw));
  margin-top: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .value-box {
    gap: 40px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-box {
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
#TOP .value-cobox {
  width: 30.9%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(2.6666666667 * var(--vw));
  background-color: #DFECEC;
  border-radius: calc(0.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .value-cobox {
    padding: 32px;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-cobox {
    padding: calc(5.3333333333 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
    width: 90%;
  }
}
#TOP .value-cobox .v-img1 {
  width: calc(21 * var(--vw));
  height: calc(9 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .value-cobox .v-img1 {
    width: 252px;
    height: 108px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-cobox .v-img1 {
    width: calc(67.2 * var(--vw));
    height: calc(28.8 * var(--vw));
  }
}
#TOP .value-cobox .v-img2 {
  width: calc(22.0833333333 * var(--vw));
  height: calc(9 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .value-cobox .v-img2 {
    width: 265px;
    height: 108px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-cobox .v-img2 {
    width: calc(70.6666666667 * var(--vw));
    height: calc(28.8 * var(--vw));
  }
}
#TOP .value-cobox .v-img3 {
  width: calc(24.6666666667 * var(--vw));
  height: calc(9 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .value-cobox .v-img3 {
    width: 296px;
    height: 108px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-cobox .v-img3 {
    width: calc(78.9333333333 * var(--vw));
    height: calc(28.8 * var(--vw));
  }
}
#TOP .value-cobox .v-title {
  font-size: calc(1.75 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
  margin-top: calc(0.5833333333 * var(--vw));
  margin-bottom: calc(2 * var(--vw));
  width: 100%;
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  #TOP .value-cobox .v-title {
    font-size: 21px;
    line-height: 28px;
    margin-top: 7px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-cobox .v-title {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    margin-top: calc(1.8666666667 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
  }
}
#TOP .value-cobox .txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .value-cobox .txt {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .value-cobox .txt {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(6.4 * var(--vw));
  }
}
#TOP .t_value-box {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(3.3333333333 * var(--vw));
  margin-top: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .t_value-box {
    gap: 40px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .t_value-box {
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
#TOP .t_value-cobox {
  width: 22.3%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  #TOP .t_value-cobox {
    width: 90%;
  }
}
#TOP .t_value-cobox .t_title {
  font-size: calc(1.75 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
  margin-top: calc(2 * var(--vw));
  margin-bottom: calc(2 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .t_value-cobox .t_title {
    font-size: 21px;
    line-height: 28px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .t_value-cobox .t_title {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
    margin-bottom: calc(6.4 * var(--vw));
    width: 100%;
  }
}
#TOP .t_value-cobox .t_photo {
  width: 100%;
}
#TOP .t_value-cobox .t_text {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .t_value-cobox .t_text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .t_value-cobox .t_text {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
  }
}
#TOP .company-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#TOP .company-box img {
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .company-box img {
    width: 125px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .company-box img {
    width: calc(19.7333333333 * var(--vw));
  }
}
#TOP .company-box .cb-title {
  font-size: calc(2.6666666667 * var(--vw));
  font-weight: 600;
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  #TOP .company-box .cb-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .company-box .cb-title {
    font-size: calc(6.4 * var(--vw));
  }
}
#TOP .company-box .cb-text {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.4166666667 * var(--vw));
  color: #fff;
  margin-top: calc(2.75 * var(--vw));
  margin-bottom: calc(3.5833333333 * var(--vw));
  width: calc(58.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .company-box .cb-text {
    font-size: 16px;
    line-height: 29px;
    margin-top: 33px;
    margin-bottom: 43px;
    width: 699px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .company-box .cb-text {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    margin-top: calc(8.8 * var(--vw));
    margin-bottom: calc(11.4666666667 * var(--vw));
    width: 100%;
  }
}
#TOP .news {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
#TOP .news-left {
  width: 31%;
}
@media only screen and (max-width: 768px) {
  #TOP .news-left {
    width: 90%;
  }
}
#TOP .news-left .img-ttl {
  width: calc(6.75 * var(--vw));
  padding-left: calc(1 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .news-left .img-ttl {
    width: 81px;
    padding-left: 12px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-left .img-ttl {
    width: calc(12.8 * var(--vw));
    padding-left: 0;
  }
}
#TOP .news-left .n-title {
  font-size: calc(2.6666666667 * var(--vw));
  line-height: calc(3.75 * var(--vw));
  font-weight: 600;
  margin-top: calc(0.9166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .news-left .n-title {
    font-size: 24px;
    line-height: 45px;
    padding-left: 12px;
    margin-top: 11px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-left .n-title {
    width: 100%;
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    padding-left: 0;
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#TOP .news-right {
  width: 68%;
  height: calc(20 * var(--vw));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #325FAC #E6E6E6;
}
@media only screen and (min-width: 1200px) {
  #TOP .news-right {
    height: 240px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-right {
    width: 90%;
    height: calc(46.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  #TOP .news-right ul {
    margin-top: calc(1.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 1200px) {
  #TOP .news-right ul {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-right ul {
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#TOP .news-right dl {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: calc(2 * var(--vw)) 0;
  border-bottom: solid 1px #d4d4d4;
}
@media only screen and (min-width: 1200px) {
  #TOP .news-right dl {
    padding: 24px 0;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-right dl {
    flex-wrap: wrap;
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#TOP .news-right dl dt {
  width: calc(10.4166666667 * var(--vw));
  padding-top: calc(0.1666666667 * var(--vw));
  color: #0D63A9;
  font-size: calc(1.1666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .news-right dl dt {
    width: 125px;
    padding-top: 2px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-right dl dt {
    width: 100%;
    text-align: left;
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#TOP .news-right dl dd {
  color: #000;
  box-sizing: border-box;
  word-wrap: break-word;
  width: calc(100% - 125px);
  padding-right: calc(1.6666666667 * var(--vw));
  font-size: calc(1.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .news-right dl dd {
    width: calc(100% - 125px);
    padding-right: 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .news-right dl dd {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
  }
}
#TOP .news-right dl dd a {
  color: #000;
  display: block;
  transition: 0.3s;
  background: url(/assets/img/top/icon_arrow.svg) right center no-repeat;
}
#TOP .pickup {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: calc(4 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .pickup {
    gap: 48px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .pickup {
    gap: calc(8 * var(--vw));
  }
}
#TOP .pickup-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 62.9%;
  padding: calc(2.6666666667 * var(--vw)) calc(1.6666666667 * var(--vw));
  background-color: #eeeeee;
  border-radius: calc(0.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .pickup-left {
    padding: 32px 20px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-left {
    width: 90%;
    padding: calc(5.3333333333 * var(--vw)) calc(5.3333333333 * var(--vw));
    border-radius: calc(2.6666666667 * var(--vw));
  }
}
#TOP .pickup-left .img-ttl {
  width: calc(8.75 * var(--vw));
  padding-left: calc(1 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .pickup-left .img-ttl {
    width: 105px;
    padding-left: 12px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-left .img-ttl {
    width: calc(16.5333333333 * var(--vw));
    padding-left: 0;
  }
}
#TOP .pickup-left .pu-title {
  font-size: calc(2 * var(--vw));
  line-height: calc(2.6666666667 * var(--vw));
  font-weight: 600;
  padding-left: calc(1 * var(--vw));
  margin-top: calc(2.3333333333 * var(--vw));
  margin-bottom: calc(2.3333333333 * var(--vw));
  width: 85%;
}
@media only screen and (min-width: 1200px) {
  #TOP .pickup-left .pu-title {
    font-size: 24px;
    line-height: 32px;
    padding-left: 12px;
    margin-top: 28px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-left .pu-title {
    width: 100%;
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    padding-left: 0;
    margin-top: calc(3.2 * var(--vw));
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#TOP .pickup-left .picup-cobox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .pickup-left .picup-cobox {
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-left .picup-cobox {
    gap: calc(8 * var(--vw));
  }
}
#TOP .pickup-left .picup-cobox .pu-text {
  width: 45.5%;
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TOP .pickup-left .picup-cobox .pu-text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-left .picup-cobox .pu-text {
    width: 100%;
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    order: 2;
  }
}
#TOP .pickup-left .picup-cobox .img-pic {
  width: 49.4%;
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-left .picup-cobox .img-pic {
    width: 100%;
    order: 1;
  }
}
#TOP .pickup-right {
  width: 32.9%;
}
@media only screen and (max-width: 768px) {
  #TOP .pickup-right {
    width: 90%;
  }
}

.banner {
  width: 100%;
  text-align: center;
}
.banner .b_title {
  padding-top: calc(5.8333333333 * var(--vw));
  line-height: calc(3.75 * var(--vw));
  font-family: "Josefin Sans", sans-serif;
  font-size: calc(3 * var(--vw));
  color: #0D63A9;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) {
  .banner .b_title {
    padding-top: 70px;
    font-size: 36px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .banner .b_title {
    padding-top: calc(18.6666666667 * var(--vw));
    font-size: calc(4.8 * var(--vw));
    line-height: calc(12 * var(--vw));
  }
}
.banner .b_icon {
  width: calc(92 * var(--vw));
  display: block;
  margin: 0 auto;
  margin-top: calc(4.5833333333 * var(--vw));
  padding-bottom: calc(5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .banner .b_icon {
    margin-top: 55px;
    padding-bottom: 60px;
    width: 1104px;
  }
}
@media only screen and (max-width: 768px) {
  .banner .b_icon {
    margin-top: calc(5.3333333333 * var(--vw));
    padding-bottom: calc(12 * var(--vw));
    width: calc(87.7333333333 * var(--vw));
  }
}

.cont-main {
  position: relative;
  display: block;
  padding-top: calc(8.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .cont-main {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 768px) {
  .cont-main {
    padding-top: calc(10.6666666667 * var(--vw));
  }
}

#CONTENTS .kv {
  max-width: 1440px;
  width: 100%;
  aspect-ratio: 1440/287;
  background-image: url(/assets/img/common/co-kv.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media only screen and (max-width: 768px) {
  #CONTENTS .kv {
    background-image: url(/assets/img/common/co-kv-sp.svg);
    aspect-ratio: 390/221;
    width: 100%;
  }
}
#CONTENTS .kv_title {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  font-size: calc(3.3333333333 * var(--vw));
  font-weight: 600;
  color: #222222;
  padding-top: calc(6.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #CONTENTS .kv_title {
    font-size: 40px;
    padding-top: 75px;
  }
}
@media only screen and (max-width: 768px) {
  #CONTENTS .kv_title {
    width: 92%;
    margin: 0 auto;
    font-size: calc(5.8666666667 * var(--vw));
    line-height: calc(12 * var(--vw));
    padding-top: calc(13.8666666667 * var(--vw));
  }
}
#CONTENTS .kv_title .img-company {
  width: calc(10.4166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #CONTENTS .kv_title .img-company {
    width: 125px;
  }
}
@media only screen and (max-width: 768px) {
  #CONTENTS .kv_title .img-company {
    width: calc(19.7333333333 * var(--vw));
  }
}
#CONTENTS .kv_title .img-contact {
  width: calc(9 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #CONTENTS .kv_title .img-contact {
    width: 108px;
  }
}
@media only screen and (max-width: 768px) {
  #CONTENTS .kv_title .img-contact {
    width: calc(17.0666666667 * var(--vw));
  }
}
#CONTENTS .kv_title .img-true-value {
  width: calc(15.9166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #CONTENTS .kv_title .img-true-value {
    width: 191px;
  }
}
@media only screen and (max-width: 768px) {
  #CONTENTS .kv_title .img-true-value {
    width: calc(29.8666666667 * var(--vw));
  }
}

#COMPANY .h2_title {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  font-size: calc(2.6666666667 * var(--vw));
  font-weight: 600;
  color: #222222;
  padding-top: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .h2_title {
    font-size: 32px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .h2_title {
    width: 92%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    padding-top: initial;
  }
}
#COMPANY .h2_title .img-company {
  width: calc(9.75 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .h2_title .img-company {
    width: 117px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .h2_title .img-company {
    width: calc(18.1333333333 * var(--vw));
  }
}
#COMPANY .greeting-box {
  margin: 0 auto;
  margin-top: calc(5.8333333333 * var(--vw));
  max-width: 1162px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: calc(4 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .greeting-box {
    gap: 48px;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box {
    gap: calc(12.8 * var(--vw));
    margin-top: calc(9.3333333333 * var(--vw));
    justify-content: center;
  }
}
#COMPANY .greeting-box .left {
  width: 71.6%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box .left {
    width: 92%;
  }
}
#COMPANY .greeting-box .left .intro {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .greeting-box .left .intro {
    font-size: 16px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box .left .intro {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
  }
}
#COMPANY .greeting-box .left .president {
  font-size: calc(2.6666666667 * var(--vw));
  width: 100%;
  text-align: right;
  font-weight: 600;
  font-family: "Shippori Mincho", serif !important;
}
@media only screen and (min-width: 1200px) {
  #COMPANY .greeting-box .left .president {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box .left .president {
    font-size: calc(8.5333333333 * var(--vw));
  }
}
#COMPANY .greeting-box .left .president .pos {
  font-size: calc(1.3333333333 * var(--vw));
  font-weight: 400 !important;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (min-width: 1200px) {
  #COMPANY .greeting-box .left .president .pos {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box .left .president .pos {
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#COMPANY .greeting-box .right {
  width: 24%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box .right {
    width: 92%;
    text-align: center;
  }
}
#COMPANY .greeting-box .right .img-photo {
  width: calc(16.75 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .greeting-box .right .img-photo {
    width: 201px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .greeting-box .right .img-photo {
    width: calc(46.6666666667 * var(--vw));
  }
}
#COMPANY .video-block {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#COMPANY .video-block .video-company {
  width: calc(51.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .video-block .video-company {
    width: 615px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .video-block .video-company {
    width: 92%;
  }
}
#COMPANY .info-list-s {
  border-top: solid 1px #d4d4d4;
  border-bottom: solid 1px #d4d4d4;
}
#COMPANY .info-list {
  border-bottom: solid 1px #d4d4d4;
}
#COMPANY .info-list-s, #COMPANY .info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(2.3333333333 * var(--vw));
  padding: calc(2.25 * var(--vw)) calc(2 * var(--vw));
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  font-size: calc(1.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #COMPANY .info-list-s, #COMPANY .info-list {
    gap: 28px;
    padding: 27px 24px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #COMPANY .info-list-s, #COMPANY .info-list {
    width: 92%;
    gap: calc(2.6666666667 * var(--vw));
    padding: calc(2.9333333333 * var(--vw)) calc(4.2666666667 * var(--vw));
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#COMPANY .info-left {
  width: 16.6%;
}
@media only screen and (max-width: 768px) {
  #COMPANY .info-left {
    width: 100%;
  }
}
#COMPANY .info-right {
  width: 68.5%;
}
@media only screen and (max-width: 768px) {
  #COMPANY .info-right {
    width: 100%;
  }
}

#TRUEVALUE .h2_title {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  font-size: calc(2.6666666667 * var(--vw));
  font-weight: 600;
  color: #222222;
  padding-top: calc(2.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .h2_title {
    font-size: 32px;
    padding-top: 30px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .h2_title {
    width: 92%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    padding-top: initial;
  }
}
#TRUEVALUE .h2_title .img-true-value {
  width: calc(29.9166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .h2_title .img-true-value {
    width: 359px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .h2_title .img-true-value {
    width: calc(56 * var(--vw));
  }
}
#TRUEVALUE .h2_title2 {
  width: 100%;
  max-width: 1162px;
  margin: 0 auto;
  font-size: calc(2.6666666667 * var(--vw));
  font-weight: 600;
  color: #222222;
  padding-top: calc(6.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .h2_title2 {
    font-size: 32px;
    padding-top: 75px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .h2_title2 {
    width: 92%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    padding-top: calc(9.3333333333 * var(--vw));
  }
}
#TRUEVALUE .h2_title2 .img-true-value {
  width: calc(12.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .h2_title2 .img-true-value {
    width: 150px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .h2_title2 .img-true-value {
    width: calc(23.4666666667 * var(--vw));
  }
}
#TRUEVALUE .t-value-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: calc(4 * var(--vw));
  max-width: 1162px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .t-value-box {
    gap: 48px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .t-value-box {
    width: 92%;
    gap: calc(2.6666666667 * var(--vw));
  }
}
#TRUEVALUE .t-value-box .img-photo {
  width: calc(30 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .t-value-box .img-photo {
    width: 360px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .t-value-box .img-photo {
    width: 100%;
  }
}
#TRUEVALUE .t-value-cobox {
  width: calc(62.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .t-value-cobox {
    width: 754px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .t-value-cobox {
    width: 100%;
  }
}
#TRUEVALUE .t-value-cobox h3 {
  font-size: calc(1.75 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .t-value-cobox h3 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .t-value-cobox h3 {
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#TRUEVALUE .t-value-cobox p {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  margin-top: calc(2 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .t-value-cobox p {
    font-size: 21px;
    line-height: 28px;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .t-value-cobox p {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(7.4666666667 * var(--vw));
    margin-top: calc(6.4 * var(--vw));
  }
}
#TRUEVALUE .process-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-top: calc(5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box {
    width: 92%;
    margin-top: calc(16 * var(--vw));
  }
}
#TRUEVALUE .process-box .left,
#TRUEVALUE .process-box .right {
  width: calc(38.3333333333 * var(--vw));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .left,
  #TRUEVALUE .process-box .right {
    width: 460px;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .left,
  #TRUEVALUE .process-box .right {
    width: 46%;
    gap: calc(14.6666666667 * var(--vw));
  }
}
#TRUEVALUE .process-box .left {
  background-image: url(/assets/img/true-value/process-bg-left.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .left {
    background-image: url(/assets/img/true-value/process-bg-left-sp.svg);
    background-size: calc(26.1333333333 * var(--vw));
    background-position: top left;
  }
}
#TRUEVALUE .process-box .left .cobox {
  position: relative;
  width: 100%;
  height: calc(12.3333333333 * var(--vw));
  padding: calc(2 * var(--vw)) calc(2 * var(--vw));
  background-color: #EDF7FF;
}
#TRUEVALUE .process-box .left .cobox:nth-of-type(even) {
  background-color: #D7EAFA;
}
#TRUEVALUE .process-box .left .cobox {
  border-radius: calc(0.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .left .cobox {
    height: 148px;
    padding: 24px 24px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .left .cobox {
    height: calc(28.8 * var(--vw));
    padding: calc(1.3333333333 * var(--vw)) calc(1.3333333333 * var(--vw));
    border-radius: calc(2.1333333333 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .left .cobox::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw));
    border-color: transparent transparent transparent #EDF7FF;
    translate: 100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .left .cobox::after {
    border-width: 20px 0 20px 37px;
  }
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .left .cobox:nth-of-type(even)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw));
    border-color: transparent transparent transparent #D7EAFA;
    translate: 100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .left .cobox:nth-of-type(even)::after {
    border-width: 20px 0 20px 37px;
  }
}
#TRUEVALUE .process-box .left .cobox .ttl {
  font-size: calc(1.5 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .left .cobox .ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .left .cobox .ttl {
    font-size: calc(3.2 * var(--vw));
    text-align: center;
  }
}
#TRUEVALUE .process-box .left .cobox .txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  margin-top: calc(0.8333333333 * var(--vw));
  letter-spacing: -1px;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .left .cobox .txt {
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .left .cobox .txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(4.2666666667 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
    letter-spacing: initial;
    height: calc(17.3333333333 * var(--vw));
  }
}
#TRUEVALUE .process-box .right {
  background-image: url(/assets/img/true-value/process-bg-right.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .right {
    background-image: url(/assets/img/true-value/process-bg-right-sp.svg);
    background-size: calc(26.1333333333 * var(--vw));
    background-position: top right;
  }
}
#TRUEVALUE .process-box .right .cobox {
  position: relative;
  width: 100%;
  padding: calc(2 * var(--vw)) calc(2 * var(--vw));
  background-color: #EDF7FF;
}
#TRUEVALUE .process-box .right .cobox:nth-of-type(even) {
  background-color: #D7EAFA;
}
#TRUEVALUE .process-box .right .cobox {
  border-radius: calc(0.6666666667 * var(--vw));
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .right .cobox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw)) calc(1.6666666667 * var(--vw)) 0;
    border-color: transparent #EDF7FF transparent transparent;
    translate: -100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .right .cobox::after {
    border-width: 20px 37px 20px 0;
  }
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .right .cobox:nth-of-type(even)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw)) calc(1.6666666667 * var(--vw)) 0;
    border-color: transparent #D7EAFA transparent transparent;
    translate: -100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .right .cobox:nth-of-type(even)::after {
    border-width: 20px 37px 20px 0;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .right .cobox {
    border-radius: 8px;
    padding: 24px 24px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .right .cobox {
    border-radius: calc(2.1333333333 * var(--vw));
    padding: calc(1.3333333333 * var(--vw)) calc(1.3333333333 * var(--vw));
  }
}
#TRUEVALUE .process-box .right .cobox .ttl {
  font-size: calc(1.5 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .right .cobox .ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .right .cobox .ttl {
    font-size: calc(3.2 * var(--vw));
    text-align: center;
  }
}
#TRUEVALUE .process-box .right .cobox .txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  margin-top: calc(0.8333333333 * var(--vw));
  letter-spacing: -1px;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .right .cobox .txt {
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .right .cobox .txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(4.2666666667 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
    letter-spacing: initial;
    height: calc(17.3333333333 * var(--vw));
  }
}
#TRUEVALUE .process-box .t-left,
#TRUEVALUE .process-box .t-right {
  width: calc(38.3333333333 * var(--vw));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left,
  #TRUEVALUE .process-box .t-right {
    width: 460px;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left,
  #TRUEVALUE .process-box .t-right {
    width: 46%;
    gap: calc(14.6666666667 * var(--vw));
  }
}
#TRUEVALUE .process-box .t-left .title,
#TRUEVALUE .process-box .t-right .title {
  position: absolute;
  top: calc(3.3333333333 * var(--vw));
  left: 30%;
  width: 60%;
  text-align: center;
  font-size: calc(2 * var(--vw));
  line-height: calc(2 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left .title,
  #TRUEVALUE .process-box .t-right .title {
    font-size: 24px;
    line-height: 24px;
    top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left .title,
  #TRUEVALUE .process-box .t-right .title {
    font-size: calc(3.7333333333 * var(--vw));
    line-height: calc(3.7333333333 * var(--vw));
    top: calc(16 * var(--vw));
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left .title {
    text-align: left;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-right .title {
    text-align: right;
    left: initial;
    right: 0;
  }
}
#TRUEVALUE .process-box .t-left {
  position: relative;
  background-image: url(/assets/img/true-value/process-bg-left2.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left {
    background-image: url(/assets/img/true-value/process-bg-left-sp2.svg);
    background-size: calc(12.2666666667 * var(--vw));
    background-position: top left;
  }
}
#TRUEVALUE .process-box .t-left .cobox {
  position: relative;
  width: 100%;
  height: calc(12.3333333333 * var(--vw));
  padding: calc(2 * var(--vw)) calc(2 * var(--vw));
  background-color: #D7EAFA;
}
#TRUEVALUE .process-box .t-left .cobox:nth-of-type(even) {
  background-color: #EDF7FF;
}
#TRUEVALUE .process-box .t-left .cobox {
  border-radius: calc(0.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left .cobox {
    height: 148px;
    padding: 24px 24px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left .cobox {
    height: calc(28.8 * var(--vw));
    padding: calc(1.3333333333 * var(--vw)) calc(1.3333333333 * var(--vw));
    border-radius: calc(2.1333333333 * var(--vw));
  }
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .t-left .cobox::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw));
    border-color: transparent transparent transparent #D7EAFA;
    translate: 100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left .cobox::after {
    border-width: 20px 0 20px 37px;
  }
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .t-left .cobox:nth-of-type(even)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) 0 calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw));
    border-color: transparent transparent transparent #EDF7FF;
    translate: 100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left .cobox:nth-of-type(even)::after {
    border-width: 20px 0 20px 37px;
  }
}
#TRUEVALUE .process-box .t-left .cobox .ttl {
  font-size: calc(1.5 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left .cobox .ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left .cobox .ttl {
    font-size: calc(3.2 * var(--vw));
    text-align: center;
  }
}
#TRUEVALUE .process-box .t-left .cobox .txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  margin-top: calc(0.8333333333 * var(--vw));
  letter-spacing: -1px;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-left .cobox .txt {
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-left .cobox .txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(4.2666666667 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
    letter-spacing: initial;
    height: calc(17.3333333333 * var(--vw));
  }
}
#TRUEVALUE .process-box .t-right {
  position: relative;
  background-image: url(/assets/img/true-value/process-bg-right2.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-right {
    background-image: url(/assets/img/true-value/process-bg-right-sp2.svg);
    background-size: calc(12.2666666667 * var(--vw));
    background-position: top right;
  }
}
#TRUEVALUE .process-box .t-right .cobox {
  position: relative;
  width: 100%;
  padding: calc(2 * var(--vw)) calc(2 * var(--vw));
  background-color: #D7EAFA;
}
#TRUEVALUE .process-box .t-right .cobox:nth-of-type(even) {
  background-color: #EDF7FF;
}
#TRUEVALUE .process-box .t-right .cobox {
  border-radius: calc(0.6666666667 * var(--vw));
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .t-right .cobox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw)) calc(1.6666666667 * var(--vw)) 0;
    border-color: transparent #D7EAFA transparent transparent;
    translate: -100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-right .cobox::after {
    border-width: 20px 37px 20px 0;
  }
}
@media only screen and (min-width: 769px) {
  #TRUEVALUE .process-box .t-right .cobox:nth-of-type(even)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: calc(1.6666666667 * var(--vw)) calc(3.0833333333 * var(--vw)) calc(1.6666666667 * var(--vw)) 0;
    border-color: transparent #EDF7FF transparent transparent;
    translate: -100% -50%;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-right .cobox:nth-of-type(even)::after {
    border-width: 20px 37px 20px 0;
  }
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-right .cobox {
    border-radius: 8px;
    padding: 24px 24px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-right .cobox {
    border-radius: calc(2.1333333333 * var(--vw));
    padding: calc(1.3333333333 * var(--vw)) calc(1.3333333333 * var(--vw));
  }
}
#TRUEVALUE .process-box .t-right .cobox .ttl {
  font-size: calc(1.5 * var(--vw));
  font-weight: 600;
  color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-right .cobox .ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-right .cobox .ttl {
    font-size: calc(3.2 * var(--vw));
    text-align: center;
  }
}
#TRUEVALUE .process-box .t-right .cobox .txt {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2.3333333333 * var(--vw));
  margin-top: calc(0.8333333333 * var(--vw));
  letter-spacing: -1px;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .process-box .t-right .cobox .txt {
    font-size: 18px;
    line-height: 28px;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .process-box .t-right .cobox .txt {
    font-size: calc(3.2 * var(--vw));
    line-height: calc(4.2666666667 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
    letter-spacing: initial;
    height: calc(17.3333333333 * var(--vw));
  }
}
#TRUEVALUE .flow-003 {
  position: relative;
  overflow: hidden;
  max-width: 1162px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(7.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .flow-003 {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003 {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    z-index: 10;
    top: calc(0.8 * var(--vw));
  }
}
#TRUEVALUE .flow-003::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(2.6666666667 * var(--vw) + 4.1666666667 * var(--vw));
  left: 50%;
  width: calc(0.3333333333 * var(--vw));
  height: calc(100% - 20.8333333333 * var(--vw));
  background-color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .flow-003::after {
    top: 82px;
    width: 4px;
    height: calc(100% - 250px);
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003::after {
    top: calc(12.8 * var(--vw));
    width: calc(0.5333333333 * var(--vw));
    height: calc(100% - 48.2 * var(--vw));
  }
}
#TRUEVALUE .flow-003__item {
  padding: calc(2.6666666667 * var(--vw));
  display: flex;
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .flow-003__item {
    padding: 32px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003__item {
    padding: calc(10.6666666667 * var(--vw)) calc(4.2666666667 * var(--vw));
  }
}
#TRUEVALUE .flow-003__item:nth-child(odd) .flow-003__number {
  background-color: #0D63A9;
  border: 1px solid #0D63A9;
}
#TRUEVALUE .flow-003__number {
  width: calc(10 * var(--vw));
  height: calc(10 * var(--vw));
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: #fff;
  background-color: #037BDD;
  border: 1px solid #037BDD;
  padding: calc(1.25 * var(--vw)) calc(0.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .flow-003__number {
    width: 120px;
    height: 120px;
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003__number {
    width: calc(21.3333333333 * var(--vw));
    height: calc(21.3333333333 * var(--vw));
    padding: calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#TRUEVALUE .flow-003__number .txt {
  font-family: "Josefin Sans", sans-serif;
  font-size: calc(2 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .flow-003__number .txt {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003__number .txt {
    font-size: calc(4.2666666667 * var(--vw));
  }
}
#TRUEVALUE .flow-003__number .title {
  font-size: calc(1.6666666667 * var(--vw));
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -1px;
  padding-top: calc(0.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .flow-003__number .title {
    font-size: 20px;
    letter-spacing: -1px;
    padding-top: 10px;
  }
}
#TRUEVALUE .flow-003__number .title {
  display: block;
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003__number .title {
    font-size: calc(3.7333333333 * var(--vw));
    letter-spacing: -1px;
  }
}
#TRUEVALUE .flow-003__ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .flow-003__ttl {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .arrow {
    padding-bottom: calc(5.3333333333 * var(--vw)) !important;
  }
}
#TRUEVALUE .arrow:before,
#TRUEVALUE .arrow:after {
  content: "";
  display: block;
  width: calc(2.3333333333 * var(--vw));
  height: calc(0.3333333333 * var(--vw));
  background-color: #0D63A9;
  position: absolute;
  top: calc(-2.5 * var(--vw));
  margin: 0 auto;
  border-radius: calc(0.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .arrow:before,
  #TRUEVALUE .arrow:after {
    top: -30px;
    width: 28px;
    height: 4px;
    border-radius: 8px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .arrow:before,
  #TRUEVALUE .arrow:after {
    width: calc(2.6666666667 * var(--vw));
    height: calc(0.5333333333 * var(--vw));
    top: calc(-5.0666666667 * var(--vw));
    border-radius: calc(2.1333333333 * var(--vw));
  }
}
#TRUEVALUE .arrow:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: calc(3 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .arrow:before {
    left: 36px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .arrow:before {
    left: calc(8.2666666667 * var(--vw));
  }
}
#TRUEVALUE .arrow:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: calc(2.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #TRUEVALUE .arrow:after {
    right: 34px;
  }
}
@media only screen and (max-width: 768px) {
  #TRUEVALUE .arrow:after {
    right: calc(7.7333333333 * var(--vw));
  }
}

.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  margin-top: calc(7.5 * var(--vw));
  border-radius: calc(0.8333333333 * var(--vw));
  background-image: url(/assets/img/common/btnbox-bg.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: calc(2 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .contact-box {
    border-radius: 10px;
    padding: 24px;
    margin-top: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-box {
    width: 90%;
    padding: calc(5.0666666667 * var(--vw)) calc(5.3333333333 * var(--vw)) calc(6.4 * var(--vw));
    border-radius: calc(2.6666666667 * var(--vw));
    background-image: url(/assets/img/common/btnbox-bg-sp.svg);
    background-size: 100%;
    margin-top: calc(12 * var(--vw));
  }
}
.contact-box .ttl {
  font-size: calc(2.6666666667 * var(--vw));
  color: #FFCE2B;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .contact-box .ttl {
    font-size: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-box .ttl {
    font-size: calc(4.8 * var(--vw));
  }
}
.contact-box .dtl {
  margin-top: calc(1 * var(--vw));
  margin-bottom: calc(1.6666666667 * var(--vw));
  font-size: calc(1.1666666667 * var(--vw));
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .contact-box .dtl {
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-box .dtl {
    width: 100%;
    font-size: calc(3.2 * var(--vw));
    margin-top: calc(2.6666666667 * var(--vw));
    margin-bottom: calc(8 * var(--vw));
  }
}
.contact-box .btnbox {
  display: flex;
  justify-content: center;
  gap: calc(3.3333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .contact-box .btnbox {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-box .btnbox {
    width: 100%;
    flex-direction: column;
    gap: calc(4 * var(--vw));
  }
}

.btnbox1 {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .btnbox1 {
    width: 80%;
  }
}

.btnbox2 {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .btnbox2 {
    width: 90%;
    margin: 0 auto;
  }
}

.btn-001 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 1.3;
  align-items: center;
  width: calc(30 * var(--vw));
  padding: calc(0.8333333333 * var(--vw)) calc(2 * var(--vw));
  background-color: #fff;
  border: 1px solid #0D63A9;
  border-radius: calc(0.3333333333 * var(--vw));
  color: #0D63A9;
  font-weight: 500;
  font-size: calc(2 * var(--vw));
}
.btn-001:before {
  position: absolute;
  left: 17%;
  content: ""; /*何も入れない*/
  display: inline-block;
  width: calc(1.4166666667 * var(--vw)); /*画像の幅*/
  height: calc(1.4166666667 * var(--vw)); /*画像の高さ*/
  background-image: url(/assets/img/common/tel_icons.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  .btn-001:before {
    width: 17px; /*画像の幅*/
    height: 17px; /*画像の高さ*/
  }
}
@media only screen and (max-width: 768px) {
  .btn-001:before {
    left: 10%;
    width: calc(4.5333333333 * var(--vw)); /*画像の幅*/
    height: calc(4.5333333333 * var(--vw)); /*画像の高さ*/
  }
}
@media only screen and (min-width: 1200px) {
  .btn-001 {
    width: 360px;
    font-size: 24px;
    padding: 10px 24px;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .btn-001 {
    width: 100%;
    margin: 0 auto;
    font-size: calc(6.4 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) calc(6.4 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}

.icon-arrow-001 {
  position: relative;
}
.icon-arrow-001::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.6666666667 * var(--vw));
  height: calc(0.6666666667 * var(--vw));
  top: calc(50% - 4px);
  right: calc(2.6666666667 * var(--vw));
  border-top: calc(0.25 * var(--vw)) solid #0D63A9;
  border-right: calc(0.25 * var(--vw)) solid #0D63A9;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  .icon-arrow-001::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    right: 32px;
    border-top: 3px solid #0D63A9;
    border-right: 3px solid #0D63A9;
  }
}
@media only screen and (max-width: 768px) {
  .icon-arrow-001::after {
    width: calc(2.1333333333 * var(--vw));
    height: calc(2.1333333333 * var(--vw));
    top: calc(50% - 4px);
    right: calc(8.5333333333 * var(--vw));
    border-top: calc(0.8 * var(--vw)) solid #0D63A9;
    border-right: calc(0.8 * var(--vw)) solid #0D63A9;
  }
}

.btn-002 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  align-items: center;
  width: calc(21.3333333333 * var(--vw));
  padding: calc(0.8333333333 * var(--vw)) calc(2 * var(--vw));
  background-color: #FFCE2B;
  border: 1px solid #FFCE2B;
  border-radius: calc(0.3333333333 * var(--vw));
  color: #0D63A9;
  font-weight: bold;
  font-size: calc(1.5 * var(--vw));
}
.btn-002:hover {
  background-color: #fff;
  border: 1px solid #0D63A9;
  color: #0D63A9;
}
.btn-002:hover::after {
  border-color: #0D63A9;
}
.btn-002:hover:before {
  position: absolute;
  left: 17%;
  content: ""; /*何も入れない*/
  display: inline-block;
  width: calc(1.5 * var(--vw)); /*画像の幅*/
  height: calc(1.1666666667 * var(--vw)); /*画像の高さ*/
  background-image: url(/assets/img/common/mail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  .btn-002:hover:before {
    width: 18px; /*画像の幅*/
    height: 14px; /*画像の高さ*/
  }
}
@media only screen and (max-width: 768px) {
  .btn-002:hover:before {
    left: 10%;
    width: calc(4.8 * var(--vw)); /*画像の幅*/
    height: calc(3.7333333333 * var(--vw)); /*画像の高さ*/
  }
}
@media only screen and (min-width: 1200px) {
  .btn-002 {
    width: 360px;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .btn-002 {
    width: 100%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) calc(6.4 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}
.btn-002:before {
  position: absolute;
  left: 17%;
  content: ""; /*何も入れない*/
  display: inline-block;
  width: calc(1.5 * var(--vw)); /*画像の幅*/
  height: calc(1.1666666667 * var(--vw)); /*画像の高さ*/
  background-image: url(/assets/img/common/mail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  .btn-002:before {
    width: 18px; /*画像の幅*/
    height: 14px; /*画像の高さ*/
  }
}
@media only screen and (max-width: 768px) {
  .btn-002:before {
    left: 10%;
    width: calc(4.8 * var(--vw)); /*画像の幅*/
    height: calc(3.7333333333 * var(--vw)); /*画像の高さ*/
  }
}

.icon-arrow-002 {
  position: relative;
}
.icon-arrow-002::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.6666666667 * var(--vw));
  height: calc(0.6666666667 * var(--vw));
  top: calc(50% - 4px);
  right: calc(2.6666666667 * var(--vw));
  border-top: calc(0.25 * var(--vw)) solid #0D63A9;
  border-right: calc(0.25 * var(--vw)) solid #0D63A9;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  .icon-arrow-002::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    right: 32px;
    border-top: 3px solid #0D63A9;
    border-right: 3px solid #0D63A9;
  }
}
@media only screen and (max-width: 768px) {
  .icon-arrow-002::after {
    width: calc(2.1333333333 * var(--vw));
    height: calc(2.1333333333 * var(--vw));
    top: calc(50% - 4px);
    right: calc(8.5333333333 * var(--vw));
    border-top: calc(0.8 * var(--vw)) solid #0D63A9;
    border-right: calc(0.8 * var(--vw)) solid #0D63A9;
  }
}

.btn-003 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  align-items: center;
  width: calc(21.3333333333 * var(--vw));
  padding: calc(0.8333333333 * var(--vw)) calc(2 * var(--vw));
  background-color: #FFCE2B;
  border: 1px solid #FFCE2B;
  border-radius: calc(0.3333333333 * var(--vw));
  color: #0D63A9;
  font-weight: bold;
  font-size: calc(1.5 * var(--vw));
}
.btn-003:hover {
  background-color: #fff;
  border: 1px solid #0D63A9;
  color: #0D63A9;
}
.btn-003:hover::after {
  border-color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  .btn-003 {
    width: 360px;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .btn-003 {
    width: 100%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) calc(6.4 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}

.icon-arrow-003 {
  position: relative;
}
.icon-arrow-003::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.6666666667 * var(--vw));
  height: calc(0.6666666667 * var(--vw));
  top: calc(50% - 4px);
  right: calc(2.6666666667 * var(--vw));
  border-top: calc(0.25 * var(--vw)) solid #0D63A9;
  border-right: calc(0.25 * var(--vw)) solid #0D63A9;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  .icon-arrow-003::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    right: 32px;
    border-top: 3px solid #0D63A9;
    border-right: 3px solid #0D63A9;
  }
}
@media only screen and (max-width: 768px) {
  .icon-arrow-003::after {
    width: calc(2.1333333333 * var(--vw));
    height: calc(2.1333333333 * var(--vw));
    top: calc(50% - 4px);
    right: calc(8.5333333333 * var(--vw));
    border-top: calc(0.8 * var(--vw)) solid #0D63A9;
    border-right: calc(0.8 * var(--vw)) solid #0D63A9;
  }
}

.btn-004 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  align-items: center;
  width: calc(21.3333333333 * var(--vw));
  padding: calc(0.8333333333 * var(--vw)) calc(2 * var(--vw));
  background-color: #FFCE2B;
  border: 1px solid #FFCE2B;
  border-radius: calc(0.3333333333 * var(--vw));
  color: #0D63A9;
  font-weight: bold;
  font-size: calc(1.5 * var(--vw));
}
.btn-004:hover {
  background-color: #fff;
  border: 1px solid #0D63A9;
  color: #0D63A9;
}
.btn-004:hover::after {
  border-color: #0D63A9;
}
@media only screen and (min-width: 1200px) {
  .btn-004 {
    width: 360px;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .btn-004 {
    width: 100%;
    margin: 0 auto;
    font-size: calc(4.8 * var(--vw));
    padding: calc(2.6666666667 * var(--vw)) calc(6.4 * var(--vw));
    border-radius: calc(1.0666666667 * var(--vw));
  }
}

.icon-arrow-004 {
  position: relative;
}
.icon-arrow-004::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.6666666667 * var(--vw));
  height: calc(0.6666666667 * var(--vw));
  top: calc(50% - 4px);
  right: calc(2.6666666667 * var(--vw));
  border-top: calc(0.25 * var(--vw)) solid #0D63A9;
  border-right: calc(0.25 * var(--vw)) solid #0D63A9;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1200px) {
  .icon-arrow-004::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
    right: 32px;
    border-top: 3px solid #0D63A9;
    border-right: 3px solid #0D63A9;
  }
}
@media only screen and (max-width: 768px) {
  .icon-arrow-004::after {
    width: calc(2.1333333333 * var(--vw));
    height: calc(2.1333333333 * var(--vw));
    top: calc(50% - 4px);
    right: calc(8.5333333333 * var(--vw));
    border-top: calc(0.8 * var(--vw)) solid #0D63A9;
    border-right: calc(0.8 * var(--vw)) solid #0D63A9;
  }
}

.mid-block {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url("/assets/img/top/sec2-bg-top.jpg"), url("/assets/img/top/sec2-bg-bottom.jpg");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  background-position: center top, center bottom;
  background-color: #EDF7FF;
}
@media only screen and (max-width: 768px) {
  .mid-block {
    background-image: url("/assets/img/top/sec2-bg-top-sp.jpg"), url("/assets/img/top/sec2-bg-bottom-sp.jpg");
  }
}
.mid-block .pop-img {
  position: absolute;
  top: calc(-1.8333333333 * var(--vw));
  right: calc(16.6666666667 * var(--vw));
  width: calc(32.4166666667 * var(--vw));
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  .mid-block .pop-img {
    width: 389px;
    right: 200px;
    top: -22px;
  }
}

.mid-block2 {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(3.9166666667 * var(--vw)) calc(11.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .mid-block2 {
    padding: 47px 140px;
  }
}
.mid-block2 {
  background-image: url("/assets/img/top/company-info.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media only screen and (max-width: 768px) {
  .mid-block2 {
    background-image: url("/assets/img/top/company-info-sp.jpg");
    padding: calc(8 * var(--vw)) calc(4 * var(--vw));
    background-size: cover;
  }
}

.mid-block3 {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.mid-block4 {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.mid-block5 {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url("/assets/img/common/icon-block.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  background-color: #EDF7FF;
}
@media only screen and (max-width: 768px) {
  .mid-block5 {
    background-image: url("/assets/img/common/icon-block-sp.jpg");
    background-size: cover;
  }
}
@media only screen and (max-width: 768px) {
  .mid-block5 {
    margin-bottom: calc(24 * var(--vw));
  }
}

.slide-section {
  max-width: 1162px !important;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .slide-section {
    width: 100%;
  }
}
.slide-section .slider-cont {
  width: 100%;
  border-radius: calc(0.6666666667 * var(--vw));
  padding: calc(3.75 * var(--vw)) calc(3.75 * var(--vw)) calc(3.0833333333 * var(--vw)) calc(4.1666666667 * var(--vw));
  background-color: #fff;
  box-shadow: 0px calc(0.8333333333 * var(--vw)) calc(0.5 * var(--vw)) calc(0.0833333333 * var(--vw)) rgba(0, 0, 0, 0.2);
  margin: calc(1.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont {
    border-radius: 8px;
    padding: 45px 45px 37px 50px;
    box-shadow: 0px 10px 6px 1px rgba(0, 0, 0, 0.2);
    margin: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .slide-section .slider-cont {
    border-radius: calc(2.1333333333 * var(--vw));
    padding: calc(5.0666666667 * var(--vw)) calc(5.0666666667 * var(--vw)) calc(5.0666666667 * var(--vw)) calc(5.0666666667 * var(--vw));
  }
}
.slide-section .slider-cont .sbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: calc(1.5 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont .sbox {
    gap: 18px;
  }
}
.slide-section .slider-cont .sbox .img-catch {
  width: calc(34.5833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont .sbox .img-catch {
    width: 415px;
  }
}
@media only screen and (max-width: 768px) {
  .slide-section .slider-cont .sbox .img-catch {
    width: calc(85.3333333333 * var(--vw));
  }
}
.slide-section .slider-cont .sbox .stext {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: calc(1.6666666667 * var(--vw));
  width: calc(50 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont .sbox .stext {
    width: 600px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .slide-section .slider-cont .sbox .stext {
    width: 90%;
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
.slide-section .slider-cont .sbox .stext h4 {
  font-size: calc(2 * var(--vw));
  line-height: calc(2 * var(--vw));
  color: #0D63A9;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont .sbox .stext h4 {
    font-size: 24px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .slide-section .slider-cont .sbox .stext h4 {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
  }
}
.slide-section .slider-cont .sbox .stext h5 {
  font-size: calc(1.5 * var(--vw));
  line-height: calc(1.5 * var(--vw));
  color: #000;
  font-weight: 600;
  margin-top: calc(1.6666666667 * var(--vw));
  margin-bottom: calc(0.4166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont .sbox .stext h5 {
    font-size: 18px;
    line-height: 18px;
    margin-top: 20px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .slide-section .slider-cont .sbox .stext h5 {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    margin-top: calc(5.3333333333 * var(--vw));
    margin-bottom: calc(1.3333333333 * var(--vw));
  }
}
.slide-section .slider-cont .sbox .stext p {
  font-size: calc(1.3333333333 * var(--vw));
  line-height: calc(2 * var(--vw));
  color: #000;
  margin-top: calc(0.75 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .slide-section .slider-cont .sbox .stext p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .slide-section .slider-cont .sbox .stext p {
    font-size: calc(4.2666666667 * var(--vw));
    line-height: calc(6.4 * var(--vw));
    margin-top: calc(2.4 * var(--vw));
  }
}

@media only screen and (max-width: 768px) {
  .co-slider {
    overflow: hidden;
    width: 100%;
    padding-left: calc(5.3333333333 * var(--vw));
    padding-right: calc(5.3333333333 * var(--vw));
  }
}
.co-slider .slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: calc(-1.5 * var(--vw));
  width: calc(4 * var(--vw));
  z-index: 20;
}
@media only screen and (min-width: 1200px) {
  .co-slider .slide-arrow {
    width: 48px;
    top: -18px;
  }
}
@media only screen and (max-width: 768px) {
  .co-slider .slide-arrow {
    width: calc(10.6666666667 * var(--vw));
    top: calc(40 * var(--vw));
    bottom: initial;
  }
}
.co-slider .prev-arrow {
  left: calc(-1.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .co-slider .prev-arrow {
    left: -15px;
  }
}
@media only screen and (max-width: 768px) {
  .co-slider .prev-arrow {
    left: calc(0.5333333333 * var(--vw));
  }
}
.co-slider .next-arrow {
  right: calc(-1.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .co-slider .next-arrow {
    right: -15px;
  }
}
@media only screen and (max-width: 768px) {
  .co-slider .next-arrow {
    right: calc(0.5333333333 * var(--vw));
  }
}
.co-slider-img img {
  height: auto;
  width: 100%;
}

/* デフォルトのドットを非表示にする */
.custom-dots-list {
  display: flex;
  justify-content: center;
  list-style: none;
}
.custom-dots-list li {
  margin: 0 calc(0.8333333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .custom-dots-list li {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .custom-dots-list li {
    margin: 0 calc(2.1333333333 * var(--vw));
  }
}
.custom-dots-list .slick-active .dot-number {
  color: #fff;
  font-weight: 600;
  background-color: #ec0000;
}
.custom-dots-list .num1 {
  padding: calc(0.8333333333 * var(--vw)) calc(1.4583333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .custom-dots-list .num1 {
    padding: 10px 17.5px !important;
  }
}
@media only screen and (max-width: 768px) {
  .custom-dots-list .num1 {
    padding: calc(2.6666666667 * var(--vw)) calc(4.5333333333 * var(--vw));
  }
}

.dot-number {
  font-size: calc(2 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .dot-number {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .dot-number {
    font-size: calc(5.3333333333 * var(--vw));
  }
}
.dot-number {
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
  cursor: pointer;
  background-color: #b6b6b6;
  border: solid 1px;
  padding: calc(0.8333333333 * var(--vw)) calc(1.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  .dot-number {
    padding: 10px 15px;
  }
}
@media only screen and (max-width: 768px) {
  .dot-number {
    padding: calc(2.6666666667 * var(--vw)) calc(4 * var(--vw));
  }
}
.dot-number {
  border-radius: 32px;
  font-weight: 600;
}

.marker-yellow {
  background-image: linear-gradient(180deg, transparent 0.6em, #ffce2b 0.8em, #ffce2b 1.15em, transparent 1.15em);
}

:root {
  --primary-color: #333;
}

* {
  box-sizing: border-box;
}

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

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

#CONTACT {
  line-height: 1.8;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT {
    font-size: 12px;
  }
}
#CONTACT .empty-fields-count {
  background-color: #f2f2f2;
  position: fixed;
  right: 20px;
  top: 100px;
  line-height: 1.4;
  padding: 16px;
  display: none;
  z-index: 3;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #CONTACT .empty-fields-count {
    top: auto;
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }
}
#CONTACT .empty-fields-count::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #f2f2f2 transparent;
  border-width: 0px 0px 24px 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .empty-fields-count::before {
    left: -18px;
    border-style: solid;
    border-color: transparent #f2f2f2 transparent transparent;
    border-width: 0px 18px 18px 0px;
  }
}
#CONTACT .empty-fields-count__number {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #CONTACT .empty-fields-count__number {
    font-size: 18px;
  }
}
#CONTACT .tel-area {
  background-color: #0D63A9;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .tel-area {
    padding: 10px 32px;
    margin-bottom: 32px;
  }
}
#CONTACT .tel-area p {
  font-size: 19px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .tel-area p {
    font-size: 14px;
  }
}
#CONTACT .tel-area__num {
  position: relative;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .tel-area__num {
    font-size: 24px;
    margin-top: 8px;
  }
}
#CONTACT .tel-area__num::before {
  content: "";
  display: inline-block;
  height: 1cap;
  width: 1cap;
  background-size: contain;
  background-image: url("/assets/img/contact/icon_phone.svg");
  background-repeat: no-repeat;
  margin: 0 40px 0 0;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  #CONTACT .tel-area__num::before {
    margin: 0 20px 0 0;
  }
}
#CONTACT .info-text {
  text-align: center;
}
#CONTACT .notes {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .notes {
    font-size: 12px;
  }
}
#CONTACT .notes::before {
  content: "※";
  position: absolute;
  left: 0;
}
#CONTACT .progress-bar {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
#CONTACT .progress-bar__item {
  position: relative;
  text-align: center;
  width: 24%;
  color: #999;
  font-weight: bold;
  counter-increment: steps;
}
@media only screen and (max-width: 768px) {
  #CONTACT .progress-bar__item {
    width: 33.33333%;
  }
}
#CONTACT .progress-bar__item:before {
  content: "";
  width: 40px;
  height: 40px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  background-color: #f5f5f5;
  content: counter(steps);
  display: grid;
  place-content: center;
}
#CONTACT .progress-bar__item:not(:first-child):after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #f5f5f5;
}
#CONTACT .progress-bar__item.current {
  color: #0D63A9;
}
#CONTACT .progress-bar__item.current::before, #CONTACT .progress-bar__item.current::after {
  background-color: #0D63A9;
  color: #fff;
}
#CONTACT .form-sec .sec-in {
  max-width: 948px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec .sec-in {
    width: 100%;
  }
}
#CONTACT .form-sec__box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}
#CONTACT .form-sec__item {
  font-weight: bold;
  position: relative;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__item {
    padding-top: 0;
  }
}
#CONTACT .form-sec__item .icon-required {
  position: absolute;
  right: 0;
  top: 15px;
  display: inline-block;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  font-weight: normal;
  padding: 0 5px;
  color: #fff;
  background-color: #df0000;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__item .icon-required {
    position: static;
    margin-left: 8px;
    font-size: 10px;
  }
}
#CONTACT .form-sec fieldset legend {
  width: 220px;
  float: left;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec fieldset legend {
    width: 100%;
  }
}
#CONTACT .form-sec__field--zip {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 16px;
}
#CONTACT .form-sec__field--zip input[type=number] {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__field--zip input[type=number] {
    width: calc(50% - 8px);
  }
}
#CONTACT .form-sec__field--zip .btn-zip {
  width: 148px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  align-items: center;
  padding: 0 24px;
  min-height: 50px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-weight: bold;
  position: relative;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__field--zip .btn-zip {
    width: calc(50% - 8px);
  }
}
#CONTACT .form-sec__field--zip .btn-zip::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: -2px 6px 0 0;
  transition: 0.3s;
  background-image: url("/assets/img/contact/icon_search.svg");
}
#CONTACT .form-sec .w-75 {
  width: 75%;
}
#CONTACT .form-sec .w-50 {
  width: 50%;
}
#CONTACT .form-sec .w-25 {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec .w-75,
  #CONTACT .form-sec .w-50,
  #CONTACT .form-sec .w-25 {
    width: 100%;
  }
}
#CONTACT input[type=text], #CONTACT input[type=email], #CONTACT input[type=tel], #CONTACT input[type=number], #CONTACT input[type=zip], #CONTACT input[type=url], #CONTACT input[type=date] {
  width: 100%;
  height: 50px;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0 15px;
  outline: none;
  position: relative;
}
#CONTACT input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#CONTACT textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #888;
  border-radius: 4px;
  line-height: 1.4;
  padding: 16px;
  outline: none;
  resize: none;
}
#CONTACT input,
#CONTACT textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input,
  #CONTACT textarea {
    font-size: 12px;
  }
}
#CONTACT input::placeholder,
#CONTACT textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #bbb;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input::placeholder,
  #CONTACT textarea::placeholder {
    font-size: 13px;
  }
}
#CONTACT input:focus,
#CONTACT textarea:focus {
  border: 2px #005fcc solid;
}
#CONTACT input.error,
#CONTACT textarea.error {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .select-box {
  overflow: hidden;
  position: relative;
  border: 1px solid #888;
  border-radius: 4px;
}
#CONTACT .select-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 24px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translateY(-50%) rotate(135deg);
}
#CONTACT .select-box select {
  font-size: 16px;
  height: 50px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 0 32px 0 15px;
  color: var(--primary-color);
}
#CONTACT .select-box select.error {
  background: #fbe9e8;
  border: 1px solid red;
}
@media only screen and (max-width: 768px) {
  #CONTACT .select-box select {
    font-size: 13px;
  }
}
#CONTACT .select-box select::-ms-expand {
  display: none;
}
#CONTACT .select-box select:focus {
  border: 2px #005fcc solid;
}
#CONTACT .radio:not(:last-of-type) {
  margin-bottom: 8px;
}
#CONTACT .radio label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 32px;
}
#CONTACT .radio label::before, #CONTACT .radio label::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 15px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #CONTACT .radio label::before, #CONTACT .radio label::after {
    top: 13px;
  }
}
#CONTACT .radio label::before {
  background-color: #fff;
  border: 1px solid #888;
  width: 20px;
  height: 20px;
}
#CONTACT .radio label:has(.error)::before {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .radio label::after {
  background-color: var(--primary-color);
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px;
}
#CONTACT .radio label:has(input:checked)::after {
  opacity: 1;
}
#CONTACT .radio__input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
#CONTACT .check-box:not(:last-of-type) {
  margin-bottom: 8px;
}
#CONTACT .check-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}
#CONTACT .check-box__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
#CONTACT .check-box__input.error + .check-box__border {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .check-box__input:checked + .check-box__border {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}
#CONTACT .check-box__input:checked + .check-box__border::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url("/assets/img/contact/icon_check.svg") no-repeat center;
}
#CONTACT .check-box__border {
  position: absolute;
  top: 5px;
  left: 0;
  border: 1px solid #888;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .check-box__border {
    top: 2px;
  }
}
#CONTACT input[type=file] {
  display: block;
  margin-top: 8px;
  padding-right: 8px;
}
#CONTACT input[type=file]:not(:last-of-type) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input[type=file] {
    margin-top: 0;
    width: 100%;
  }
}
#CONTACT .file-btn::file-selector-button {
  font-weight: bold;
  background-color: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  margin-right: 16px;
  transition: 0.3s;
}
#CONTACT .file-btn::file-selector-button:hover {
  opacity: 0.6;
}
#CONTACT span.error {
  color: red;
  margin-top: 4px;
  display: block;
  width: 100%;
}
#CONTACT .remarks {
  font-weight: normal;
  font-size: 14px;
}
#CONTACT .agree-check {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#CONTACT .agree-check + .error {
  text-align: center;
}
#CONTACT .agree-check a {
  text-decoration: underline;
  color: #1558d6;
}
#CONTACT .agree-check a:hover {
  text-decoration: none;
}
#CONTACT .privacy {
  background-color: #f6f6f6;
  margin: 65px 0 40px;
}
#CONTACT .privacy__in {
  border: 40px solid #f6f6f6;
  overflow-y: scroll;
  height: 300px;
  padding-right: 40px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .privacy__in {
    border: 24px solid #f6f6f6;
    padding-right: 24px;
  }
}
#CONTACT .privacy__in::-webkit-scrollbar {
  width: 3px;
}
#CONTACT .privacy__in::-webkit-scrollbar-track {
  background-color: #ccc;
}
#CONTACT .privacy__in::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 50px;
}
#CONTACT .privacy__ttl {
  font-size: 22px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .privacy__ttl {
    font-size: 18px;
  }
}
#CONTACT .privacy__sub-ttl {
  font-weight: bold;
  margin: 32px 0 16px;
}
#CONTACT .privacy__sub-txt {
  margin-top: 0.5em;
}
#CONTACT .privacy__enactment {
  text-align: right;
  margin-top: 40px;
}
#CONTACT .btn {
  cursor: pointer;
  line-height: 1.3;
  width: 256px;
  height: 50px;
  line-height: 49px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  position: relative;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  display: grid;
  place-content: center;
  margin: 32px auto 0;
}
#CONTACT .btn::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#CONTACT .btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}
#CONTACT .btn:hover::after {
  border-color: var(--primary-color);
}
#CONTACT .btn--back {
  background-color: #fff;
  color: var(--primary-color);
}
#CONTACT .btn--back::after {
  right: auto;
  left: 16px;
  transform: rotate(-135deg);
  border-color: var(--primary-color);
}
#CONTACT .btn--back:hover {
  background-color: var(--primary-color);
  color: #fff;
}
#CONTACT .btn--back:hover::after {
  border-color: #fff;
}
#CONTACT .icon-arrow {
  position: relative;
  display: flex;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}
#CONTACT .icon-arrow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#CONTACT .icon-arrow:has(.btn) {
  margin-top: 40px;
}
#CONTACT .icon-arrow:has(.btn):hover::after {
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}
#CONTACT .icon-arrow .btn {
  margin: 0;
}
#CONTACT .icon-arrow.no-link {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 1024px) {
  #CONTACT a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
#CONTACT input[type=number]::-webkit-outer-spin-button,
#CONTACT input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#CONTACT input[type=number] {
  -moz-appearance: textfield;
}
#CONTACT input[type=submit] {
  -webkit-appearance: none;
}
#CONTACT textarea {
  resize: none;
}
#CONTACT.confirm .form-sec__item {
  padding-top: 0;
}
#CONTACT.confirm .form-sec__item .icon-required {
  top: 4px;
}
#CONTACT.confirm .form-sec .btn-column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
#CONTACT.confirm .form-sec .btn-column .icon-arrow {
  margin: 0;
}
#CONTACT.confirm .form-sec .btn-column .btn {
  margin: 0;
}
#CONTACT .thanks {
  text-align: center;
}
#CONTACT .thanks .thanks-ttl {
  font-size: 26px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .thanks .thanks-ttl {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */