@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #000;
  min-width: 1080px;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #000;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 430px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.ttl {
  font: 800 4rem/1.2 "Noto Sans JP", serif;
  color: #003765;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 430px) {
  .ttl {
    font-size: 2.8rem;
  }
}
.ttl p {
  font-size: 1.9rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 430px) {
  .ttl p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.ttl::after {
  width: 25px;
  height: 6px;
  border-radius: 3rem;
  background: #E60012;
  position: absolute;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.6rem;
}
.ttl::before {
  width: 12.5px;
  height: 6px;
  border-radius: 0 3rem 3rem 0;
  background: #005CA2;
  position: absolute;
  content: "";
  left: 50%;
  bottom: -2.6rem;
  z-index: 1;
}

.footer {
  background: #F1F3F7;
  padding: 4.6rem 2rem 3rem 5%;
  margin-top: 14rem;
}
@media screen and (max-width: 430px) {
  .footer {
    margin-top: 10rem;
  }
}
.footer .footer_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 430px) {
  .footer .footer_container {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer .company {
  font: 700 1.4rem/1.2 "Noto Sans JP", serif;
  color: #005CA2;
}
.footer .company span {
  margin-left: 1rem;
}
.footer .company a:hover {
  opacity: 0.7;
}
.footer .cp {
  color: #005CA2;
  font: 500 1.3rem/1.2 "Noto Sans JP", serif;
}

.l-nav {
  display: none;
}
@media screen and (max-width: 430px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .logo {
  width: 189px;
  padding: 2.6rem 0 0 2rem;
}
@media screen and (max-width: 430px) {
  .header .logo {
    padding: 1rem 0 0 0;
    width: 170px;
  }
}
.header .logo img {
  height: 61px;
  object-fit: contain;
}
@media screen and (max-width: 430px) {
  .header .logo img {
    height: 46px;
  }
}

.testbtn {
  position: fixed;
  right: 2rem;
  top: 2rem;
  border-radius: 50%;
  background: #FFE666;
  width: 9.8611111111vw;
  height: 9.8611111111vw;
  max-width: 160px;
  max-height: 160px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  font-weight: 600;
  border: 1px solid #000;
  filter: drop-shadow(3px 3px 0 rgb(0, 0, 0));
  font: 700 1.1111111111vw "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .testbtn {
    font-size: 2vw;
    width: 16vw;
    height: 16vw;
  }
}
@media screen and (max-width: 430px) {
  .testbtn {
    font-size: 2.5vw;
    width: 22vw;
    height: 22vw;
    right: 1rem;
    top: 1rem;
  }
}
.testbtn span svg {
  width: 2.5694444444vw;
  height: 2.5694444444vw;
}
@media screen and (max-width: 768px) {
  .testbtn span svg {
    width: 5vw;
    height: 5vw;
  }
}
.testbtn:hover {
  transform: translateY(2px);
  filter: none;
}

#header .logo_b {
  display: none;
}

#header.HeightMin .logo {
  display: none;
}
#header.HeightMin .logo_b {
  display: block;
}

.kv {
  height: 52vw;
  position: relative;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .kv {
    height: 70vw;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    height: 100vh;
  }
}
.kv .kv_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(79deg, #E60012 70%, #005CA2 30%);
}
@media screen and (max-width: 430px) {
  .kv .kv_background {
    background: linear-gradient(145deg, #E60012 70%, #005CA2 30%);
  }
}
.kv .kv_subcopy {
  position: absolute;
  top: 22%;
  transform: rotate(-8deg);
  left: 8.5%;
  font: 900 2.2vw/1 "ryo-gothic-plusn", sans-serif;
  color: #fff;
}
.kv .kv_subcopy::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3.5px;
  left: 0;
  bottom: -2rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .kv .kv_subcopy::after {
    bottom: -1.4rem;
  }
}
.kv .kv_subcopy strong {
  background: #FFBF00;
  font: 900 3.1vw/1 "Noto Sans JP", serif;
  padding: 0 1rem;
  margin-right: 0.5rem;
  color: #000;
}
@media screen and (max-width: 1050px) {
  .kv .kv_subcopy {
    top: 30%;
    left: 6.5%;
  }
}
@media screen and (max-width: 768px) {
  .kv .kv_subcopy {
    top: 14%;
    left: auto;
    right: 18%;
    transform: translateY(-50%) rotate(-8deg);
  }
}
@media screen and (max-width: 430px) {
  .kv .kv_subcopy {
    top: 19%;
    font-size: 5.3vw;
    line-height: 1.5;
  }
  .kv .kv_subcopy strong {
    font-size: 6.4vw;
  }
}
.kv .kv_copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  top: 59%;
  width: 56.1805555556vw;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .kv .kv_copy {
    width: 110%;
    top: 37%;
    overflow: hidden;
  }
}
@media screen and (max-width: 430px) {
  .kv .kv_copy {
    width: 100%;
    left: 0%;
    top: 41%;
  }
  .kv .kv_copy .kv_copy_ssp {
    display: none;
  }
}
.kv .kv_copy .kv_inner_copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46.5972222222vw;
  height: 27.2222222222vw;
  left: 8%;
}
@media screen and (max-width: 768px) {
  .kv .kv_copy .kv_inner_copy {
    width: 80%;
    height: auto;
  }
}
@media screen and (max-width: 430px) {
  .kv .kv_copy .kv_inner_copy {
    width: 100%;
    position: static;
    margin-top: 88%;
  }
}
.kv .kv_image {
  position: absolute;
  right: 3%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  top: 53%;
  width: 50.9027777778vw;
  height: 35.0694444444vw;
}
@media screen and (max-width: 1050px) {
  .kv .kv_image {
    left: 40%;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .kv .kv_image {
    left: 36%;
  }
}
@media screen and (max-width: 768px) {
  .kv .kv_image {
    left: auto;
    right: auto;
    width: 80%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translateY(-50%);
    transform: translate(-50%, -50%);
    top: 75%;
    z-index: 10;
    height: auto;
  }
}
@media screen and (max-width: 430px) {
  .kv .kv_image {
    width: 98%;
  }
}
@media screen and (max-width: 390px) {
  .kv .kv_image {
    width: 90%;
    top: 80%;
  }
}
.kv .kv_info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.8rem;
}
.kv .kv_info .hukidashi {
  padding: 0rem 1.7rem;
  background: #fff;
  position: relative;
  z-index: 10;
  font: 700 1.9444444444vw "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .kv .kv_info .hukidashi {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 430px) {
  .kv .kv_info .hukidashi {
    font-size: 2rem;
  }
}
.kv .kv_info .hukidashi strong {
  font: 700 3.125vw "din 2014", sans-serif;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .kv .kv_info .hukidashi strong {
    font-size: 4rem;
  }
}
.kv .kv_info .hukidashi p {
  font: 700 0.9722222222vw "Noto Sans JP", serif;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .kv .kv_info .hukidashi p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 430px) {
  .kv .kv_info .hukidashi p {
    font-size: 1.6rem;
  }
}
.kv .kv_info .hukidashi::after {
  content: "";
  position: absolute;
  bottom: -14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-width: 14px 14px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent;
}
.kv .kv_info .hukidashi_price {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.kv .kv_movie {
  margin-top: 8px;
  position: relative;
  width: 50.9027777778vw;
  height: 408px;
  height: 28.3333333333vw;
}
@media screen and (max-width: 768px) {
  .kv .kv_movie {
    width: 100%;
    height: auto;
  }
}
.kv .kv_movie .laptop_screen {
  position: absolute;
  top: 1.7vw;
  left: 4.7vw;
  width: 40.2083333333vw;
  width: 41.3194444444vw;
  height: 345px;
  height: 23.9583333333vw;
  height: 24.6527777778vw;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .kv .kv_movie .laptop_screen {
    width: 79%;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.kv .kv_hukidashiimg {
  position: absolute;
  width: 13.2638888889vw;
  height: 22.5vw;
  top: 14%;
  right: 5%;
}
@media screen and (max-width: 768px) {
  .kv .kv_hukidashiimg {
    width: 30%;
    height: auto;
    right: 0;
  }
}
@media screen and (max-width: 390px) {
  .kv .kv_hukidashiimg {
    top: 27%;
    right: -1rem;
  }
}

.scroll-container {
  width: 100%;
  overflow: hidden;
}

/* 横スクロール版 */
.horizontal-scroll {
  display: flex;
  gap: 20px;
  padding: 20px;
  animation: scrollHorizontal 30s linear infinite;
}
@media screen and (max-width: 430px) {
  .horizontal-scroll {
    gap: 10px;
    padding: 20px 0 10px;
  }
}

.horizontal-scroll img {
  width: 27.2916666667vw;
  height: 12.5694444444vw;
  object-fit: contain;
}
@media screen and (max-width: 430px) {
  .horizontal-scroll img {
    width: 55vw;
    height: 23vw;
  }
}

@keyframes scrollHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 1セット分の幅だけマイナス方向に移動 */
    transform: translateX(-50%);
  }
}
.cta_contents {
  width: 90%;
  max-width: 1113px;
  margin: 6rem auto 0;
  background: #fff;
  filter: drop-shadow(0 2px 17px rgba(0, 0, 0, 0.1));
}
.cta_contents .cta_headttl {
  max-width: 811px;
  margin: 0 auto;
}
.cta_contents .cta_container {
  padding: 4.8rem 3.7rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .cta_contents .cta_container {
    flex-direction: column;
  }
}
@media screen and (max-width: 430px) {
  .cta_contents .cta_container {
    padding: 3.2rem 2rem;
  }
}
.cta_contents .cta_container .box_l {
  flex-basis: 45%;
}
.cta_contents .cta_container .box_l .img {
  width: 100%;
}
.cta_contents .cta_container .box_l .subtxt {
  font: 700 2.2rem/1.2 "Noto Sans JP", serif;
  color: #003765;
  margin-top: 2rem;
  text-align: center;
}
.cta_contents .cta_container .box_l .subtxt span img {
  width: 26px;
  height: 26px;
}
.cta_contents .form_input {
  flex-basis: 42%;
}
@media screen and (max-width: 768px) {
  .cta_contents .form_input {
    width: 80%;
  }
}
@media screen and (max-width: 430px) {
  .cta_contents .form_input {
    width: 100%;
  }
}
.cta_contents .form-group label {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  display: block;
}
.cta_contents .form-group label span {
  margin-left: 1.5rem;
  background: #E60012;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 8px;
  vertical-align: middle;
}
.cta_contents .form-group input {
  margin-top: 1rem;
  background: #F1F3F7;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  display: block;
  width: 100%;
}
.cta_contents .form-group input::placeholder {
  font-size: 13px;
  color: #A7A7A7;
}
@media screen and (max-width: 430px) {
  .cta_contents .form-group input::placeholder {
    font-size: 10px;
  }
}
.cta_contents .privacy-group {
  margin-top: 1.5rem;
}
.cta_contents .privacy-group label {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 1.2rem;
  width: fit-content;
}
.cta_contents .privacy-group label a {
  text-decoration: underline;
  font-size: 1.2rem;
  display: inline-block;
}
.cta_contents .privacy-group label input[type=checkbox] {
  position: relative;
  width: 19px;
  height: 19px;
  border: none;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #F1F3F7;
}
.cta_contents .privacy-group label input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 11px;
  height: 16px;
  border-right: 3px solid #005CA2;
  border-bottom: 3px solid #005CA2;
  content: "";
}
.cta_contents .submit_contents {
  width: 100%;
  background: linear-gradient(180deg, #006DC0 50%, #005CA2 50%);
  padding: 4rem 2rem;
}
@media screen and (max-width: 430px) {
  .cta_contents .submit_contents {
    padding: 3.2rem 1.6rem;
  }
}
.cta_contents .submit_contents p {
  font: 700 1.8rem/1.2 "Noto Sans JP", serif;
  color: #fff;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.cta_contents .submit_contents p::before, .cta_contents .submit_contents p::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 18.912px;
  transform: rotate(-160deg);
  flex-shrink: 0;
  right: -2rem;
  top: 3px;
  background: #fff;
}
@media screen and (max-width: 430px) {
  .cta_contents .submit_contents p::before, .cta_contents .submit_contents p::after {
    height: 36px;
  }
}
.cta_contents .submit_contents p::before {
  transform: rotate(160deg);
  right: auto;
  left: -2rem;
}
@media screen and (max-width: 430px) {
  .cta_contents .submit_contents p {
    font-size: 1.6rem;
  }
}
.cta_contents .submit_contents .submit_btn_bg {
  margin-top: 1.2rem;
  border-radius: 11px;
  background: linear-gradient(2deg, #FF9411 -16.18%, #FFE75E 73.43%);
  width: 57%;
  margin: 2rem auto 0;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 430px) {
  .cta_contents .submit_contents .submit_btn_bg {
    width: 100%;
  }
}
.cta_contents .submit_contents .submit_btn_bg:hover {
  transform: scale(0.97);
}
.cta_contents .submit_contents .submit_btn_bg .submit-btn {
  color: #003765;
  position: relative;
  font: 700 2rem/1.4 "Noto Sans JP", serif;
  padding: 2.6rem;
  width: 100%;
  display: inline-block;
  transition: 0.3s;
}
.cta_contents .submit_contents .submit_btn_bg .submit-btn .free {
  font-size: 14px;
}
.cta_contents .submit_contents .submit_btn_bg .submit-btn .icon {
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  top: 44%;
}
@media screen and (max-width: 430px) {
  .cta_contents .submit_contents .submit_btn_bg .submit-btn .icon {
    right: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  .cta_contents .submit_contents .submit_btn_bg .submit-btn {
    padding: 2rem 1.4rem;
    font-size: 1.6rem;
  }
  .cta_contents .submit_contents .submit_btn_bg .submit-btn .free {
    font-size: 1rem;
  }
}
.cta_contents .submit-btn.disabled {
  /* 無効時のスタイル */
  background: linear-gradient(2deg, #ffc37a -16.18%, #fff09b 73.43%);
  cursor: not-allowed;
  border-radius: 11px;
}

.function {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .function {
    margin-top: 12rem;
  }
}
.function .function_bg {
  background: url(../images/function_bg.png) 0/cover no-repeat;
  padding: 10rem 0 23rem;
}
@media screen and (max-width: 768px) {
  .function .function_bg {
    padding: 10rem 0 18rem;
    background-image: url(../images/function_bg_sp.png);
  }
}
.function .wrapper {
  width: 1050px;
}
@media screen and (max-width: 768px) {
  .function .wrapper {
    width: 90%;
  }
}
.function .function_contents {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .function .function_contents .function_inner_box {
    display: contents;
  }
}
.function .function_contents .fun_ttl {
  text-align: left;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .function .function_contents .fun_ttl {
    order: 0;
  }
}
@media screen and (max-width: 430px) {
  .function .function_contents .fun_ttl {
    padding: 0 1rem;
  }
}
.function .function_contents .fun_ttl .num {
  font: 600 5.2rem/1 "din 2014", sans-serif;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.2px;
  color: #E60012;
}
@media screen and (max-width: 430px) {
  .function .function_contents .fun_ttl .num {
    font-size: 4rem;
  }
}
.function .function_contents .fun_ttl .num .mark {
  margin-right: 1.4rem;
}
.function .function_contents .fun_ttl .num .mark img {
  width: 35px;
  object-fit: contain;
  height: 51px;
}
@media screen and (max-width: 430px) {
  .function .function_contents .fun_ttl .num .mark {
    margin-right: 5px;
  }
  .function .function_contents .fun_ttl .num .mark img {
    width: 30px;
    height: 40px;
  }
}
.function .function_contents .fun_ttl .txt {
  font: 700 2.8rem/1.5 "Noto Sans JP", serif;
  margin-top: 1rem;
  color: #003765;
}
@media screen and (max-width: 430px) {
  .function .function_contents .fun_ttl .txt {
    font-size: 2.4rem;
  }
}
.function .function_contents .headline {
  padding: 0 2rem;
  font: 700 1.8rem/1.5 "Noto Sans JP", serif;
  color: #003765;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .function .function_contents .headline {
    order: 2;
  }
}
@media screen and (max-width: 430px) {
  .function .function_contents .headline {
    padding: 0 1.4rem;
  }
}
.function .function_contents .innertxt {
  padding: 0 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .function .function_contents .innertxt {
    order: 3;
  }
}
@media screen and (max-width: 430px) {
  .function .function_contents .innertxt {
    padding: 0 1.4rem;
  }
}
.function .function_contents .innertxt p {
  margin-top: 1rem;
}
.function .function_contents .img {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .function .function_contents .img {
    margin-top: 4rem;
    order: 1;
  }
}
@media screen and (max-width: 430px) {
  .function .function_contents .img {
    margin-top: 2rem;
  }
}
.function .reverse {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .function .reverse {
    flex-direction: column;
  }
}
.function .reverse .movie {
  flex-basis: 55%;
  margin-top: 0;
  border: 2rem solid #fff;
  filter: drop-shadow(0 2px 17px rgba(0, 0, 0, 0.1));
}
.function .reverse .movie video {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .function .reverse .movie {
    border: 1.4rem solid #fff;
    width: 100%;
    margin-top: 4rem;
  }
  .function .reverse .movie video {
    object-fit: cover;
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 768px) and (max-width: 430px) {
  .function .reverse .movie video {
    height: 320px;
  }
}
.function .reverse .function_box {
  flex-basis: 40%;
}
@media screen and (max-width: 768px) {
  .function .reverse .function_box {
    display: contents;
  }
}
.function .around {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2rem;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .function .around {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .function .around {
    flex-direction: column;
  }
  .function .around .innertxt {
    margin-top: 61vw;
  }
}
@media screen and (max-width: 768px) and (max-width: 430px) {
  .function .around .innertxt {
    margin-top: 115vw;
  }
}
.function .around .function_box {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .function .around .function_box {
    display: contents;
  }
}
.function .around .movie {
  margin-top: 0;
  width: 27%;
  flex-basis: 27%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .function .around .movie {
    order: 1;
    height: 450px;
    width: 42%;
    margin: 16px auto;
  }
}
@media screen and (max-width: 430px) {
  .function .around .movie {
    width: 80%;
    height: 400px;
  }
}
.function .around .movie .sp_mokup_inner {
  position: absolute;
  z-index: 10;
}
.function .around .movie .sp_movie {
  width: 85%;
  position: absolute;
  top: 30px;
  left: 17px;
  z-index: 0;
}

.add_function {
  margin-top: -7rem;
}
.add_function .add_top img {
  height: 9rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_top img {
    height: 4rem;
  }
}
.add_function .add_contents {
  background: linear-gradient(180deg, #005CA2 80%, #E60012 20%);
  margin-top: -1px;
}
.add_function .add_contents .img {
  width: 45px;
  margin: 0 auto 0;
  padding-top: 3.4rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_contents .img {
    padding-top: 2rem;
  }
}
.add_function .add_contents .img img {
  height: 25px;
}
.add_function .add_contents .add_ttl {
  font: 700 4rem/1.2 "Noto Sans JP", serif;
  text-align: center;
  color: #fff;
  margin-top: 3rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_contents .add_ttl {
    font-size: 3rem;
  }
}
.add_function .add_container {
  width: 95%;
  margin: 6rem auto 0;
  max-width: 1300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1vw;
}
@media screen and (max-width: 768px) {
  .add_function .add_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }
}
@media screen and (max-width: 430px) {
  .add_function .add_container {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
  }
}
.add_function .add_container .add_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  padding-bottom: 2rem;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.25));
}
.add_function .add_container .add_box .add_inner_ttl {
  width: 100%;
  background: #FEE75E;
  color: #003765;
  font: 700 2.2rem/1.4 "Noto Sans JP", serif;
  padding: 2rem 1rem 1.4rem;
  text-align: center;
}
@media screen and (max-width: 430px) {
  .add_function .add_container .add_box .add_inner_ttl {
    padding: 1.4rem 1rem 1rem;
    font-size: 1.8rem;
  }
}
.add_function .add_container .add_box .add_img {
  width: 30%;
  margin-top: 4rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_container .add_box .add_img {
    margin-top: 2.4rem;
  }
}
.add_function .add_container .add_box .add_img img {
  height: 70px;
  object-fit: contain;
}
.add_function .add_container .add_box:nth-child(2) .add_img, .add_function .add_container .add_box:nth-child(4) .add_img {
  width: 70%;
}
.add_function .add_container .add_box .add_txt {
  padding: 0 1rem;
  text-align: center;
  font-weight: 600;
  margin-top: 4rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_container .add_box .add_txt {
    margin-top: 2.4rem;
  }
}
.add_function .add_future {
  background: #E60012;
  padding: 8rem 0 2rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_future {
    padding: 6.4rem 0 2rem;
  }
}
.add_function .add_future .add_sub {
  width: 12%;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .add_function .add_future .add_sub {
    width: 32%;
  }
}
.add_function .add_future .add_ttl_02 {
  color: #fff;
  font: 700 3.4rem/1.2 "Noto Sans JP", serif;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (max-width: 430px) {
  .add_function .add_future .add_ttl_02 {
    font-size: 2.8rem;
  }
}
.add_function .add_future .future_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 6rem;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .add_function .add_future .future_container {
    flex-direction: column;
  }
}
@media screen and (max-width: 430px) {
  .add_function .add_future .future_container {
    margin-top: 4rem;
  }
}
.add_function .add_future .future_container .future_box {
  flex-basis: 48%;
  position: relative;
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.8rem;
  padding: 4rem 2rem;
}
@media screen and (max-width: 768px) {
  .add_function .add_future .future_container .future_box {
    padding: 4rem 1rem;
    gap: 2rem;
    width: 70%;
  }
}
@media screen and (max-width: 430px) {
  .add_function .add_future .future_container .future_box {
    padding: 2.4rem 2rem;
    gap: 2.4rem;
    width: 100%;
  }
}
.add_function .add_future .future_container .future_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #005CA2 transparent transparent transparent;
}
.add_function .add_future .future_container .future_box .icon {
  padding-left: 1.6rem;
  flex-basis: 23%;
}
@media screen and (max-width: 430px) {
  .add_function .add_future .future_container .future_box .icon {
    flex-basis: 25%;
  }
  .add_function .add_future .future_container .future_box .icon img {
    height: 45px;
  }
}
.add_function .add_future .future_container .future_box .icon img {
  height: 60px;
  object-fit: contain;
}
.add_function .add_future .future_container .future_box .future_txt {
  color: #005CA2;
  font: 600 1.8rem/1.7 "Noto Sans JP", serif;
}
@media screen and (max-width: 430px) {
  .add_function .add_future .future_container .future_box .future_txt {
    font-size: 1.4rem;
    flex-basis: 75%;
  }
}
.add_function .add_down {
  margin-top: -1px;
}

.price {
  background: #005CA2;
  margin-top: 14rem;
  padding: 8rem 2rem;
}
@media screen and (max-width: 430px) {
  .price {
    margin-top: 8rem;
  }
}
.price .min_wrapper {
  width: 880px;
  min-width: 880px;
  margin: 6rem auto 0;
}
@media screen and (max-width: 768px) {
  .price .min_wrapper {
    width: 90%;
    min-width: auto;
  }
}
@media screen and (max-width: 430px) {
  .price .min_wrapper {
    margin-top: 0;
  }
}
.price .ttl {
  color: #fff;
}
.price .ttl::before {
  content: none;
}
.price .price_container {
  margin-top: 8rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .price .price_container {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.price .price_container .price_box {
  background: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  filter: drop-shadow(0px 3px 13px rgba(0, 55, 101, 0.73));
  padding: 2rem 1rem;
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  .price .price_container .price_box {
    padding: 4.2rem 1.4rem;
  }
}
.price .price_container .price_box .icon {
  width: 6.7rem;
  margin-top: -2rem;
}
@media screen and (max-width: 430px) {
  .price .price_container .price_box .icon {
    margin-top: -1rem;
    width: 5rem;
  }
}
.price .price_container .price_box .price_inner {
  color: #003765;
  font: 700 2.4rem/1 "Noto Sans JP", serif;
}
.price .price_container .price_box .price_inner strong {
  font: 700 7.6rem/1 "din 2014", sans-serif;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -2%;
}
@media screen and (max-width: 430px) {
  .price .price_container .price_box .price_inner strong {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 430px) {
  .price .price_container .price_box .price_inner {
    font-size: 1.6rem;
  }
}
.price .price_container .price_detail {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 7px;
  filter: drop-shadow(0px 3px 13px rgba(0, 55, 101, 0.73));
  flex-basis: 48%;
}
.price .price_container .price_detail .price_list {
  background: #fff;
  padding: 7.5px 2rem 7.5px 4.8rem;
  font: 700 1.6rem/1.2 "Noto Sans JP", serif;
  position: relative;
}
@media screen and (max-width: 430px) {
  .price .price_container .price_detail .price_list {
    padding: 7.5px 1rem 7.5px 3.4rem;
  }
}
.price .price_container .price_detail .price_list::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FEE75E;
  position: absolute;
  left: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 430px) {
  .price .price_container .price_detail .price_list::before {
    left: 1rem;
  }
}
.price .price_container .price_detail .price_list span {
  font-size: 1.2rem;
}
.price .price_container .price_detail .price_list strong {
  color: #E60012;
}
.price .detail_txt {
  font: 500 1.4rem/1.5 "Noto Sans JP", serif;
  color: #fff;
  margin-top: 4rem;
  text-align: center;
}
.price .detail_txt strong {
  font-weight: 700;
}

.flow {
  margin-top: 14rem;
}
@media screen and (max-width: 430px) {
  .flow {
    margin-top: 8rem;
  }
}
.flow .flow_contents {
  width: 60%;
  max-width: 74rem;
  min-width: 74rem;
  margin: 8rem auto 0;
}
@media screen and (max-width: 768px) {
  .flow .flow_contents {
    min-width: auto;
    width: 90%;
  }
}
.flow .flow_contents .flow_item {
  background: #F1F3F7;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
  padding: 3rem 2rem 1.4rem;
  position: relative;
}
@media screen and (max-width: 430px) {
  .flow .flow_contents .flow_item {
    gap: 2rem;
    padding: 2rem 1.6rem;
  }
}
.flow .flow_contents .flow_item::after {
  content: "";
  width: 45px;
  height: 14px;
  background: url(../images/flow_arrow.png) 0/contain no-repeat;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
}
.flow .flow_contents .flow_item:not(:first-child) {
  margin-top: 2.8rem;
}
.flow .flow_contents .flow_item:last-child::after {
  content: none;
}
.flow .flow_contents .flow_item .flow_img {
  flex-basis: 20%;
  margin-left: 2%;
}
@media screen and (max-width: 430px) {
  .flow .flow_contents .flow_item .flow_img {
    flex-basis: 30%;
  }
}
@media screen and (max-width: 430px) {
  .flow .flow_contents .flow_item .flow_txt {
    flex-basis: 60%;
  }
}
.flow .flow_contents .flow_item .flow_txt .num {
  color: #E60012;
  font: 600 1.2rem/1 "din 2014", sans-serif;
  font-family: din-2014, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.flow .flow_contents .flow_item .flow_txt .num strong {
  font: 700 1.6rem/1 "din 2014", sans-serif;
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 4px;
}
@media screen and (max-width: 430px) {
  .flow .flow_contents .flow_item .flow_txt .num strong {
    font-size: 1.4rem;
  }
}
.flow .flow_contents .flow_item .flow_txt .flow_ttl {
  font: 700 2rem/1.4 "Noto Sans JP", serif;
  margin-top: 4.5px;
}
@media screen and (max-width: 430px) {
  .flow .flow_contents .flow_item .flow_txt .flow_ttl {
    font-size: 1.8rem;
  }
}
.flow .flow_contents .flow_item .flow_txt .flow_inner {
  font: 500 1.6rem/1.6 "Noto Sans JP", serif;
  margin-top: 1rem;
}
@media screen and (max-width: 430px) {
  .flow .flow_contents .flow_item .flow_txt .flow_inner {
    margin-top: 0.7rem;
    font-size: 1.4rem;
  }
}
.flow .flow_contents .flow_item .flow_txt .flow_inner strong {
  color: #005CA2;
  font-weight: 700;
}

.faq {
  width: 92%;
  margin: 14rem auto 0;
  background: linear-gradient(174deg, #005CA2 60%, #E60012 40%);
  padding: 12rem 2rem;
  position: relative;
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
@media screen and (max-width: 430px) {
  .faq {
    margin-top: 8rem;
    padding: 8rem 1.4rem;
  }
}
.faq::after {
  content: "";
  width: 48rem;
  height: 58rem;
  background: url(../images/faq_logo.png) 0/contain no-repeat;
  position: absolute;
  bottom: 2%;
  right: -2%;
  z-index: 0;
}
@media screen and (max-width: 430px) {
  .faq::after {
    content: none;
  }
}
.faq .ttl {
  color: #fff;
}
.faq .ttl::before {
  content: none;
}
.faq .accordion-area {
  list-style: none;
  width: 95%;
  max-width: 750px;
  margin: 8rem auto 0;
  position: relative;
  z-index: 10;
}
.faq .accordion-area li {
  margin: 12px auto 0;
}
.faq .accordion-area section {
  background: #fff;
}
.faq .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
  transition: all 0.5s ease;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 430px) {
  .faq .title {
    padding: 1.2rem 3.4rem 1.2rem 2rem;
    font-size: 1.5rem;
    gap: 2rem;
  }
}
.faq .title span {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  height: 58px;
  font: 700 3.2rem/1 "raleway", sans-serif;
  position: relative;
  z-index: 1;
}
.faq .title span::before {
  content: "";
  background: #005CA2;
  width: 58px;
  height: 58px;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transform: translateY(-50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 430px) {
  .faq .title span::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 430px) {
  .faq .title span {
    font-size: 2.4rem;
  }
}
.faq .title::before,
.faq .title::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #000;
}
@media screen and (max-width: 430px) {
  .faq .title::before,
  .faq .title::after {
    width: 16px;
  }
}
.faq .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
  transition: 0.3s;
}
@media screen and (max-width: 430px) {
  .faq .title::before {
    right: 10px;
  }
}
.faq .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
@media screen and (max-width: 430px) {
  .faq .title::after {
    right: 10px;
  }
}
.faq .title.close::before {
  transform: rotate(-180deg);
}
.faq .title.close::after {
  transform: rotate(180deg);
}
.faq .box {
  display: none; /*はじめは非表示*/
  width: 90%;
  padding: 0 2rem 3rem;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 430px) {
  .faq .box {
    padding-bottom: 2rem;
  }
}
.faq .box p {
  font-weight: 600;
}
@media screen and (max-width: 430px) {
  .faq .box p {
    font-size: 1.4rem;
  }
}

.thanks {
  min-height: 90vh;
  padding-top: 8rem;
}
.thanks .thanks_txt {
  width: 69%;
  margin: 8rem auto;
  max-width: 677px;
}
@media screen and (max-width: 430px) {
  .thanks .thanks_txt {
    width: 90%;
  }
}
.thanks .thanks_txt p {
  margin-top: 2.4rem;
  line-height: 2;
}
.thanks .back_btn {
  border-radius: 11px;
  background: linear-gradient(2deg, #FF9411 -16.18%, #FFE75E 73.43%);
  width: 57%;
  padding: 2.4rem 3rem;
  font-weight: 600;
  margin: 2rem auto 0;
  margin-top: 10rem;
  text-align: center;
}
.thanks .back_btn:hover {
  transform: scale(0.98);
}
@media screen and (max-width: 430px) {
  .thanks .back_btn {
    width: 100%;
  }
}

.news {
  margin: 8rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .news {
    margin: 6.4rem 0;
  }
}
.news .news_ttl {
  width: 240px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news .news_ttl {
    width: 180px;
  }
}
.news .news_ttl img {
  height: 70px;
  object-fit: contain;
}
.news h3 {
  font: 800 3.8rem/1.5 "Noto Sans JP", serif;
  width: fit-content;
  margin: 0 auto;
  color: #005CA2;
}
@media screen and (max-width: 768px) {
  .news h3 {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-top: -0.6rem;
  }
}
.news h3 strong {
  color: #E60012;
  font-weight: 800;
  font-size: 3.8rem;
}
@media screen and (max-width: 768px) {
  .news h3 strong {
    font-size: 2.8rem;
  }
}
.news h3 .month {
  color: #E60012;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .news h3 .month {
    font-size: 2.4rem;
  }
}
.news .under {
  margin: -10px auto 0;
  width: fit-content;
}
.news .under svg {
  max-width: 500px;
  height: 5px;
}
@media screen and (max-width: 768px) {
  .news .under svg {
    width: 90%;
  }
}