@charset "UTF-8";
/* Scss Document */
/* 全体の70%の色 */
/* 全体の25%の色 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
.red {
  color: #DE0000;
}

/*----メディアクエリ(案件によって使い分け)----*/
/*----------PC・スマホのみ----------*/
/*----------end-PC・スマホのみ----------*/
/*----------PC・タブレット・スマホ----------*/
/*----------end-PC・タブレット・スマホ----------*/
/*--------br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .msBr {
    display: block;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .msBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .msBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mmBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mmBr {
    display: block;
  }
}
@media (min-width: 961px) {
  .mmBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mlBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mlBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .mlBr {
    display: block;
  }
}

/*--------end-br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .spOnly {
    display: block;
  }
}
@media (min-width: 561px) {
  .spOnly {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .pcOnly {
    display: none;
  }
}
@media (min-width: 561px) {
  .pcOnly {
    display: block;
  }
}

/* Scss Document */
.bold {
  font-weight: 700;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* 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.6; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 62.5%;
  color: #333333;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 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) */
/* ============================================ */
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] {
  -webkit-text-decoration: underline dotted;
          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 */
  -moz-appearance: none;
       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;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-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;
}

table {
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* Scss Document */
/* 全体の70%の色 */
/* 全体の25%の色 */
.red {
  color: #DE0000;
}

/*----メディアクエリ(案件によって使い分け)----*/
/*----------PC・スマホのみ----------*/
/*----------end-PC・スマホのみ----------*/
/*----------PC・タブレット・スマホ----------*/
/*----------end-PC・タブレット・スマホ----------*/
/*--------br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .msBr {
    display: block;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .msBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .msBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mmBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mmBr {
    display: block;
  }
}
@media (min-width: 961px) {
  .mmBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mlBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mlBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .mlBr {
    display: block;
  }
}

/*--------end-br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .spOnly {
    display: block;
  }
}
@media (min-width: 561px) {
  .spOnly {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .pcOnly {
    display: none;
  }
}
@media (min-width: 561px) {
  .pcOnly {
    display: block;
  }
}

/* Scss Document */
.bold {
  font-weight: 700;
}

body.fixed {
  overflow: hidden;
}

.header {
  min-width: 100%;
  z-index: 9000;
  position: relative;
}
.header h1 {
  color: #fff;
  position: absolute;
  top: 0;
  left: 9.5%;
  padding-top: 1.5%;
  font-weight: 600;
  z-index: 2;
}
@media (min-width: 0px) and (max-width: 768px) {
  .header h1 {
    left: 5.4vw;
    padding-top: 2.5%;
    font-size: 1.2rem;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .header h1 {
    padding-top: 2%;
  }
}
.header .h-nav {
  padding: 15px 5.4vw;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #0C1153;
  display: none;
}
.header .h-nav .h-logo .h-logo_link {
  width: 140px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .h-nav .h-logo .h-logo_link img {
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}
.header .h-nav .openbtn {
  width: 22px;
  height: 18px;
  cursor: pointer;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header .h-nav .openbtn span {
  display: block;
  background-color: #FEC12F;
  width: 22px;
  height: 2px;
  border-radius: 5px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .header .h-nav .h-right {
    display: none;
  }
}
.header .h-nav .h-right .h-right_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .h-nav .h-right .h-right_content .h-list {
  margin-bottom: 30px;
}
.header .h-nav .h-right .h-right_content .h-list:last-of-type {
  margin-bottom: 0;
}
.header .h-nav .h-right .h-right_content .h-list .h-list_link {
  font-size: 3.6rem;
  color: #0C1153;
}
.header .h-nav .h-right .h-right_content .h-list .h-list_link .small {
  font-size: 2.4rem;
}

@media (min-width: 0px) and (max-width: 560px) {
  .header.fixed {
    position: fixed;
  }
  .header.fixed h1 {
    left: auto;
    right: 17%;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 0;
    font-size: 1rem;
  }
  .header.fixed .h-nav {
    display: flex;
  }
}

.h-nav.panelactive {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  background-color: #FEC12F;
  z-index: 1111;
}
.h-nav.panelactive .h-logo {
  display: none;
}
.h-nav.panelactive .h-right {
  display: block;
}

.h-nav .openbtn.active {
  width: 40px;
  height: 40px;
  transition: all 0.4s;
  position: absolute;
  top: 20px;
  right: 15px;
}
.h-nav .openbtn.active::after {
  content: "CLOSE";
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
  color: #0C1153;
  font-weight: 400;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.h-nav .openbtn.active span {
  background-color: #0C1153;
}
.h-nav .openbtn.active .op-btn01 {
  width: 50px;
  transform: rotate(-45deg);
  transition: all 0.4s;
  position: absolute;
  top: 20px;
  right: -5px;
}
.h-nav .openbtn.active .op-btn02 {
  opacity: 0;
}
.h-nav .openbtn.active .op-btn03 {
  width: 50px;
  transform: rotate(45deg);
  transition: all 0.4s;
  position: absolute;
  top: 20px;
  right: -5px;
}

/* Scss Document */
/* 全体の70%の色 */
/* 全体の25%の色 */
.red {
  color: #DE0000;
}

/*----メディアクエリ(案件によって使い分け)----*/
/*----------PC・スマホのみ----------*/
/*----------end-PC・スマホのみ----------*/
/*----------PC・タブレット・スマホ----------*/
/*----------end-PC・タブレット・スマホ----------*/
/*--------br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .msBr {
    display: block;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .msBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .msBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mmBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mmBr {
    display: block;
  }
}
@media (min-width: 961px) {
  .mmBr {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .mlBr {
    display: none;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .mlBr {
    display: none;
  }
}
@media (min-width: 961px) {
  .mlBr {
    display: block;
  }
}

/*--------end-br管理--------*/
@media (min-width: 0px) and (max-width: 560px) {
  .spOnly {
    display: block;
  }
}
@media (min-width: 561px) {
  .spOnly {
    display: none;
  }
}

@media (min-width: 0px) and (max-width: 560px) {
  .pcOnly {
    display: none;
  }
}
@media (min-width: 561px) {
  .pcOnly {
    display: block;
  }
}

.footer {
  background-color: #4791DF;
  padding: 100px 0 0;
}
.footer h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .footer h2 {
    font-size: 1.4rem;
  }
}
.footer .f-logo {
  text-align: center;
  padding-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .footer .f-logo {
    padding-bottom: 60px;
  }
  .footer .f-logo img {
    width: 60%;
  }
}
.footer .list {
  max-width: 550px;
  margin-bottom: 90px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .footer .list {
    margin-bottom: 60px;
  }
}
.footer .list .item:last-of-type dl {
  margin-bottom: 0;
}
.footer .list .item dl {
  display: flex;
  flex-direction: row;
  margin-bottom: 35px;
}
.footer .list .item dl dt, .footer .list .item dl dd {
  color: #fff;
}
@media (min-width: 0px) and (max-width: 560px) {
  .footer .list .item dl dt, .footer .list .item dl dd {
    font-size: 1.4rem;
  }
}
.footer .list .item dl dt {
  width: 124px;
  padding-right: 40px;
  font-weight: 700;
}
@media (min-width: 0px) and (max-width: 768px) {
  .footer .list .item dl dt {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
.footer .copyright {
  color: #fff;
  font-size: 1rem;
  padding-bottom: 20px;
  text-align: center;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 961px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 561px) and (max-width: 960px) {
  .container {
    padding-right: 3.4vw;
    padding-left: 3.4vw;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .container {
    padding-right: 5.4vw;
    padding-left: 5.4vw;
  }
}

.content {
  overflow: hidden;
}

.mainvisual {
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .mainvisual {
    margin-bottom: 60px;
  }
}
.mainvisual .mv-logo {
  width: 290px;
  position: absolute;
  top: 8%;
  left: 9%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .mv-logo {
    width: 152px;
    top: 4%;
    left: 5.4vw;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .mainvisual .mv-logo {
    top: 5%;
  }
}
.mainvisual .mv-logo img {
  width: 100%;
}
.mainvisual .mv-pic img {
  width: 100%;
  height: auto;
}
.mainvisual .mv-link {
  position: absolute;
  right: 9%;
  bottom: 20%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .mainvisual .mv-link {
    right: 5.4vw;
    bottom: 11%;
  }
}
.mainvisual .mv-link a {
  width: 330px;
  height: 98px;
  padding: 10px;
  background-color: #fff;
  border: 2px solid #DE0000;
  box-sizing: border-box;
  border-radius: 9px;
  box-shadow: 10px 10px 0 #DE0000;
  display: flex;
  flex-direction: row;
  align-items: center;
  transition: 0.4s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .mainvisual .mv-link a {
    width: 235px;
    height: 77px;
    box-shadow: 5px 5px 0 #DE0000;
  }
}
@media (any-hover: hover) {
  .mainvisual .mv-link a:hover {
    background-color: #DE0000;
    box-shadow: none;
    transition: 0.4s;
  }
  .mainvisual .mv-link a:hover .left {
    background-color: #fff;
    color: #DE0000;
    transition: 0.2s;
  }
  .mainvisual .mv-link a:hover .right {
    color: #fff;
    transition: 0.2s;
  }
}
.mainvisual .mv-link a .left {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 78px;
  height: 78px;
  padding-bottom: 3px;
  border-radius: 50px;
  background-color: #DE0000;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.3;
  margin-right: 10px;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .mainvisual .mv-link a .left {
    font-size: 1rem;
    width: 57px;
    height: 57px;
    margin-right: 8px;
  }
}
.mainvisual .mv-link a .right {
  font-size: 2rem;
  color: #DE0000;
  line-height: 1.2;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .mainvisual .mv-link a .right {
    font-size: 1.4rem;
  }
}

.top-link {
  display: none;
}

#top-link.fixed {
  display: block;
}

.top-link {
  position: relative;
  z-index: 999;
}
.top-link a {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: #fff;
  border-radius: 9px;
  border: 2px solid #DE0000;
  box-sizing: border-box;
  box-shadow: 10px 10px 0 #DE0000;
  transition: 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .top-link a {
    right: 15px;
    bottom: 15px;
    box-shadow: 5px 5px 0 #DE0000;
  }
}
@media (any-hover: hover) {
  .top-link a:hover {
    box-shadow: none;
    border: 5px solid #DE0000;
    transition: 0.2s;
  }
}
.top-link a .kigaru {
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  padding-bottom: 8px;
  background-color: #DE0000;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translate(-50%);
}
@media (min-width: 0px) and (max-width: 560px) {
  .top-link a .kigaru {
    display: none;
  }
}
.top-link a .kotira-box {
  width: 230px;
  height: 116px;
  padding-left: 20px;
  background-image: url(../images/top-link-bg.png);
  background-position: right bottom 8px;
  background-size: 117.5px 86px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .top-link a .kotira-box {
    width: 220px;
    height: 55px;
    padding-left: 10px;
    background-size: 65px 48px;
    background-position: right bottom 2px;
  }
}
.top-link a .kotira-box .kotira {
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (min-width: 0px) and (max-width: 560px) {
  .top-link a .kotira-box .kotira {
    font-size: 1.4rem;
  }
}

.trouble {
  margin-bottom: 24px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble {
    margin-bottom: 100px;
  }
}
.trouble .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 55px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .trouble .title {
    margin: 0 5.4vw 30px 5.4vw;
  }
}
.trouble .title .small {
  color: #FEC12F;
  font-size: 2.2rem;
  background-color: #0C1153;
  border-radius: 10px;
  padding: 8px 40px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .trouble .title .small {
    font-size: 1.6rem;
    padding: 8px 0;
    margin-bottom: 3px;
    width: 100%;
    max-width: 334px;
    text-align: center;
  }
}
.trouble .title .text {
  font-size: 3.6rem;
  color: #0C1153;
}
@media (min-width: 0px) and (max-width: 560px) {
  .trouble .title .text {
    font-size: 2.4rem;
  }
}
.trouble .pic-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box {
    flex-direction: column;
  }
}
.trouble .pic-box::after {
  content: "";
  display: block;
  width: 36px;
  height: 122px;
  background-image: url(../images/trouble-illust.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
@media (min-width: 0px) and (max-width: 560px) {
  .trouble .pic-box::after {
    width: 29.5px;
    height: 100px;
    bottom: -90px;
  }
}
.trouble .pic-box .left-box {
  width: 33.8%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .left-box {
    width: 100%;
  }
}
.trouble .pic-box .left-box img:first-of-type {
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .left-box img:first-of-type {
    width: 58%;
    margin-left: auto;
    margin-top: -10%;
    margin-bottom: 0;
    order: 2;
  }
}
.trouble .pic-box .left-box img:nth-child(2) {
  transform: rotate(-8deg);
  width: 90%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .left-box img:nth-child(2) {
    width: 57%;
    margin-right: auto;
    margin-bottom: 20px;
    order: 1;
  }
}
.trouble .pic-box .center-box {
  width: 26.2%;
  margin-right: 2%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .center-box {
    width: 41%;
    margin-bottom: 24px;
  }
}
.trouble .pic-box .right-box {
  width: 34.7%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .right-box {
    width: 100%;
  }
}
.trouble .pic-box .right-box img:first-of-type {
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .right-box img:first-of-type {
    width: 60%;
    margin-right: auto;
    margin-bottom: 20px;
  }
}
.trouble .pic-box .right-box img:nth-child(2) {
  transform: rotate(6deg);
}
@media (min-width: 0px) and (max-width: 768px) {
  .trouble .pic-box .right-box img:nth-child(2) {
    width: 61%;
    margin-left: auto;
    margin-top: -5%;
  }
}

.solution {
  background-color: #4791DF;
  padding-top: 314px;
  padding-bottom: 224px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution {
    padding-top: 86px;
    padding-bottom: 230px;
  }
}
.solution::before, .solution::after {
  content: "";
  position: absolute;
}
.solution::before {
  top: 0;
  left: 0;
  border-top: 314px solid #fff;
  border-left: 100vw solid transparent;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution::before {
    border-top: 86px solid #fff;
  }
}
.solution::after {
  bottom: 0;
  left: 0;
  border-bottom: 378px solid #fff;
  border-left: 100vw solid transparent;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution::after {
    border-bottom: 86px solid #fff;
  }
}
.solution .solution-01 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: -40px;
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution .solution-01 {
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    flex-direction: column;
  }
}
.solution .solution-01 .left {
  width: 62%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution .solution-01 .left {
    width: 100%;
  }
}
.solution .solution-01 .left .copy {
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
  background-color: #fff;
  border-radius: 80px;
  padding: 17px 0 15px;
  box-shadow: 10px 12px 0 #0051A7;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .copy {
    padding: 14px 0 11px;
    margin-bottom: 40px;
  }
}
.solution .solution-01 .left .copy::before, .solution .solution-01 .left .copy::after {
  content: "";
  display: block;
  width: 5px;
  height: 80px;
  background-color: #FEC12F;
  border-radius: 5px;
  position: absolute;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .copy::before, .solution .solution-01 .left .copy::after {
    width: 3px;
    height: 48px;
  }
}
.solution .solution-01 .left .copy::before {
  top: 50%;
  left: 19%;
  transform: translateY(-50%) rotate(-20deg);
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .copy::before {
    left: 10%;
  }
}
.solution .solution-01 .left .copy::after {
  top: 50%;
  right: 19%;
  transform: translateY(-50%) rotate(20deg);
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .copy::after {
    right: 10%;
  }
}
.solution .solution-01 .left .copy .small {
  color: #0C1153;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 3px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .copy .small {
    font-size: 1.8rem;
  }
}
.solution .solution-01 .left .copy .text {
  font-size: 3rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .copy .text {
    font-size: 2.4rem;
  }
}
.solution .solution-01 .left .copy .text .red-white {
  margin-right: -3px;
  color: #fff;
  text-shadow: 1px 1px 0 #DE0000, -1px -1px 0 #DE0000, -1px 1px 0 #DE0000, 1px -1px 0 #DE0000, 0px 1px 0 #DE0000, 0 -1px 0 #DE0000, -1px 0 0 #DE0000, 1px 0 0 #DE0000;
}
.solution .solution-01 .left .title {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .title {
    font-size: 2.4rem;
    margin-bottom: 34px;
  }
}
.solution .solution-01 .left .device {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .device {
    flex-direction: column;
  }
}
.solution .solution-01 .left .device .device-pc {
  width: 69%;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .device .device-pc {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 3%;
  }
}
.solution .solution-01 .left .device .device-sp {
  width: 26%;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .left .device .device-sp {
    width: 70%;
    margin-left: 23%;
  }
}
.solution .solution-01 .right {
  width: 23%;
  height: auto;
  margin-top: -70px;
  z-index: 99;
  background-image: url(../images/solution-illust01.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution .solution-01 .right {
    width: 20.7%;
    padding-top: 58.5%;
    margin-top: 0;
    position: absolute;
    top: -62%;
    left: 0;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-01 .right {
    top: -25%;
  }
}
.solution .solution-02 {
  position: relative;
}
.solution .solution-02 .text {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 50px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-02 .text {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
.solution .solution-02 .img-box {
  width: 52%;
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution .solution-02 .img-box {
    width: 100%;
  }
}
.solution .solution-02 .img-dx {
  width: 50%;
  position: absolute;
  right: -9%;
  bottom: -105%;
  z-index: 99;
}
@media (max-width: 1079px) {
  .solution .solution-02 .img-dx {
    bottom: -200px;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .solution .solution-02 .img-dx {
    width: 81%;
    max-width: 420px;
    right: 0;
    bottom: -365px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .solution .solution-02 .img-dx {
    bottom: -100%;
    right: -5.4vw;
  }
}

.recommend {
  margin-top: -70px;
  margin-bottom: 85px;
  z-index: 90;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .recommend {
    margin-top: 0;
    padding-top: 80px;
  }
}
.recommend .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title {
    margin-bottom: 40px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title .sub {
    font-size: 1.4rem;
  }
}
.recommend .title .text {
  font-size: 3.6rem;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title .text {
    font-size: 3rem;
  }
}
.recommend .title .text::before, .recommend .title .text::after {
  content: "";
  display: block;
  width: 15px;
  height: 83px;
  background-image: url(../images/recommend-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title .text::before, .recommend .title .text::after {
    width: 15px;
    height: 61px;
  }
}
.recommend .title .text::before {
  left: -67px;
  bottom: 0;
  transform: rotate(-20deg);
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title .text::before {
    left: -55px;
    bottom: 5px;
  }
}
.recommend .title .text::after {
  right: -67px;
  bottom: 0;
  transform: rotate(20deg);
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title .text::after {
    right: -55px;
    bottom: 5px;
  }
}
.recommend .title .text .small {
  font-size: 2.4rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .title .text .small {
    font-size: 2rem;
  }
}
.recommend .recommend-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recommend .recommend-box .item {
  width: 47%;
  margin-bottom: 23px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 768px) {
  .recommend .recommend-box .item {
    width: 100%;
  }
}
.recommend .recommend-box .item.point02 .text-box img {
  padding-bottom: 10px;
}
.recommend .recommend-box .item.point03 .text-box img {
  padding-bottom: 15px;
}
.recommend .recommend-box .item.point04 .text-box img {
  padding-bottom: 10px;
}
.recommend .recommend-box .item .point-box {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  margin-right: 30px;
  color: #fff;
  text-shadow: 1px 1px 0 #4791DF, -1px -1px 0 #4791DF, -1px 1px 0 #4791DF, 1px -1px 0 #4791DF, 0px 1px 0 #4791DF, 0 -1px 0 #4791DF, -1px 0 0 #4791DF, 1px 0 0 #4791DF;
}
.recommend .recommend-box .item .point-box .p-text {
  font-size: 3rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .point-box .p-text {
    font-size: 2rem;
  }
}
.recommend .recommend-box .item .point-box .num {
  font-size: 8rem;
  line-height: 1;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .point-box .num {
    font-size: 6rem;
  }
}
.recommend .recommend-box .item .text-box {
  border: 3px solid #4791DF;
  border-radius: 12px;
  box-shadow: 10px 10px 0 #4791DF;
  padding: 0 26px 23px;
  margin-top: -13px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .text-box {
    margin-top: -9px;
  }
}
.recommend .recommend-box .item .text-box .sub-title-box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 115px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .text-box .sub-title-box {
    height: 100px;
  }
}
.recommend .recommend-box .item .text-box .sub-title-box img {
  width: 120px;
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .text-box .sub-title-box img {
    width: 100px;
  }
}
.recommend .recommend-box .item .text-box .sub-title-box .sub-title {
  font-size: 2.4rem;
  color: #4791DF;
  line-height: 1.4;
  padding-left: 145px;
  padding-right: 10px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .text-box .sub-title-box .sub-title {
    padding-right: 0;
    padding-left: 125px;
    font-size: 2rem;
  }
}
.recommend .recommend-box .item .text-box .text {
  font-size: 1.8rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .recommend .recommend-box .item .text-box .text {
    font-size: 1.4rem;
  }
}

.function {
  padding-top: 60px;
  padding-bottom: 150px;
  background-color: #E5F1F8;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function {
    padding-top: 60px;
    padding-bottom: 90px;
    z-index: -3;
    position: relative;
  }
}
.function .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .title {
    position: relative;
    z-index: -1;
  }
}
.function .title .sub {
  font-size: 2.4rem;
  padding: 10px 13px;
  margin-bottom: 30px;
  background-image: url(../images/function-title-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .title .sub {
    font-size: 1.8rem;
    padding: 15px 10px;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: center;
  }
}
.function .title .sub::before, .function .title .sub::after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.function .title .sub::before {
  width: 168px;
  height: 371px;
  background-image: url(../images/function-illust01.png);
  top: -90px;
  left: -184px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .function .title .sub::before {
    width: 100px;
    height: 220px;
    top: 80px;
    left: -86px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .title .sub::before {
    width: 85px;
    height: 187px;
    top: -121px;
    left: -43px;
    z-index: -1;
  }
}
.function .title .sub::after {
  width: 110px;
  height: 356px;
  background-image: url(../images/function-illust02.png);
  top: -75px;
  right: -132px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .function .title .sub::after {
    width: 67px;
    height: 216px;
    top: 82px;
    right: -63px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .title .sub::after {
    width: 57px;
    height: 184px;
    top: -118px;
    right: -27px;
    z-index: -1;
  }
}
.function .title .sub02 {
  font-size: 4rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .title .sub02 {
    font-size: 2.8rem;
  }
}
.function .title .sub02 .red-white {
  margin-right: -5px;
  color: #E5F1F8;
  text-shadow: 1px 1px 0 #DE0000, -1px -1px 0 #DE0000, -1px 1px 0 #DE0000, 1px -1px 0 #DE0000, 0px 1px 0 #DE0000, 0 -1px 0 #DE0000, -1px 0 0 #DE0000, 1px 0 0 #DE0000;
}
.function .title .sub02 .red .circle {
  position: relative;
}
.function .title .sub02 .red .circle::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #FEC12F;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .title .sub02 .red .circle::before {
    width: 8px;
    height: 8px;
    top: -6px;
  }
}
.function .func-text {
  text-align: center;
  line-height: 1.8;
  font-size: 1.8rem;
  padding-bottom: 90px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .func-text {
    font-size: 1.4rem;
    padding-bottom: 50px;
  }
}
.function .function-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .function-box {
    flex-direction: column;
  }
}
.function .function-box .item {
  width: 47%;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .function-box .item {
    width: 100%;
    margin-bottom: 60px;
  }
}
.function .function-box .item img {
  filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.2));
  margin-bottom: 25px;
}
.function .function-box .item .sub-title {
  font-size: 1.8rem;
  color: #fff;
  background-color: #4791DF;
  border-radius: 50px;
  padding: 3px 24px;
  display: inline-block;
  margin-bottom: 15px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .function-box .item .sub-title {
    font-size: 1.6rem;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .function .function-box .item .text {
    font-size: 1.4rem;
  }
}

.faq {
  padding: 80px 0 170px;
  background-color: #4791DF;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq {
    padding: 80px 0 120px;
  }
}
.faq .faq-loop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -116px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faq-loop {
    top: -83px;
  }
}
.faq .faq-loop .loop-item {
  flex: 0 0 auto;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  font-size: 14rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #4791DF;
  animation: loop 8s linear infinite;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faq-loop .loop-item {
    font-size: 10rem;
  }
}
@keyframes loop {
  0% {
    transform: translate(0, 0px);
  }
  to {
    transform: translate(-279px, 0);
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  @keyframes loop {
    0% {
      transform: translate(0, 0px);
    }
    to {
      transform: translate(-199px, 0);
    }
  }
}
.faq .title {
  text-align: center;
  color: #fff;
  font-size: 3.6rem;
  padding-bottom: 75px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .faq .title {
    font-size: 2.8rem;
    padding-bottom: 55px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .title {
    font-size: 2.4rem;
    padding-bottom: 100px;
  }
}
.faq .title .title-in {
  position: relative;
}
.faq .title .title-in::before, .faq .title .title-in::after {
  content: "";
  display: block;
  width: 44px;
  height: 74.5px;
  background-image: url(../images/faq-kakko.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .title .title-in::before, .faq .title .title-in::after {
    width: 32px;
    height: 52px;
  }
}
.faq .title .title-in::before {
  left: -66px;
  transform: translateY(-50%);
}
@media (min-width: 0px) and (max-width: 768px) {
  .faq .title .title-in::before {
    left: -50px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .title .title-in::before {
    left: -40px;
  }
}
.faq .title .title-in::after {
  right: -66px;
  transform: scale(-1, 1) translateY(-50%);
}
@media (min-width: 0px) and (max-width: 768px) {
  .faq .title .title-in::after {
    right: -50px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .title .title-in::after {
    right: -40px;
  }
}
.faq .faq-list {
  position: relative;
}
.faq .faq-list::before, .faq .faq-list::after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.faq .faq-list::before {
  width: 258px;
  height: 276px;
  background-image: url(../images/faq-illust01.png);
  top: -276px;
  left: 0px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .faq .faq-list::before {
    width: 160px;
    height: 171px;
    top: -171px;
    left: 5px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faq-list::before {
    width: 85px;
    height: 91px;
    top: -91px;
    left: 10px;
  }
}
.faq .faq-list::after {
  width: 263px;
  height: 274.5px;
  background-image: url(../images/faq-illust02.png);
  top: -274.5px;
  right: 0px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .faq .faq-list::after {
    width: 163px;
    height: 170px;
    top: -170px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faq-list::after {
    width: 88px;
    height: 91px;
    top: -91px;
  }
}
.faq .faq-item {
  margin-bottom: 30px;
}
.faq .faq-item:last-child {
  margin-bottom: 0;
}
.faq .faqInnItem {
  cursor: pointer;
  display: block;
  display: flex;
  flex-direction: column;
  position: relative;
  transition-duration: 0.1s;
  border-bottom: 1px solid #DDDDDD;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
}
.faq .faqInnItem .q, .faq .faqInnItem .a {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.faq .faqInnItem .q .icon, .faq .faqInnItem .a .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .q .icon, .faq .faqInnItem .a .icon {
    width: 45px;
    height: 45px;
    font-size: 2.5rem;
  }
}
.faq .faqInnItem .q {
  position: relative;
  margin: 0 34px 0 30px;
  padding: 40px 0;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .q {
    padding: 20px 0;
    margin: 0 20px;
  }
}
.faq .faqInnItem .q:before, .faq .faqInnItem .q:after {
  content: "";
  display: block;
  background-color: #4791DF;
  border-radius: 5px;
  transform: translateY(-50%);
  transition: all 0.2s;
  position: absolute;
}
.faq .faqInnItem .q:before {
  width: 5px;
  height: 30px;
  top: 50%;
  right: 12px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .q:before {
    width: 3px;
    height: 20px;
    right: 8px;
  }
}
.faq .faqInnItem .q:after {
  width: 30px;
  height: 5px;
  top: 50%;
  right: 0;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .q:after {
    width: 20px;
    height: 3px;
    right: 0;
  }
}
.faq .faqInnItem .q .icon {
  background-color: #4791DF;
  margin-right: 30px;
  color: #fff;
  transition: all 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .q .icon {
    margin-right: 15px;
  }
}
.faq .faqInnItem .q .faqTxt {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 60px;
  transition: all 0.6s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .q .faqTxt {
    font-size: 1.4rem;
    margin-right: 35px;
  }
}
.faq .faqInnItem .a {
  padding-top: 0;
  margin-bottom: 0;
  opacity: 0;
  max-height: 0px;
  padding-right: 34px;
  padding-left: 30px;
  overflow: hidden;
  align-items: flex-start;
  transition-duration: 0.4s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .a {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.faq .faqInnItem .a .icon {
  color: #4791DF;
  border: 1px solid #4791DF;
  margin-right: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .a .icon {
    margin-right: 15px;
  }
}
.faq .faqInnItem .a .faqTxt {
  font-size: 1.8rem;
  text-align: justify;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem .a .faqTxt {
    font-size: 1.4rem;
  }
}
.faq .faqInnItem.active {
  border-bottom: transparent;
}
.faq .faqInnItem.active .a {
  opacity: 1;
  max-height: 200px;
  transition-duration: 0.6s;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .faq .faqInnItem.active .a {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.faq .faqInnItem.active .q {
  background-image: linear-gradient(to right, rgb(204, 204, 204), rgb(204, 204, 204) 8px, transparent 8px, transparent 16px);
  background-size: 16px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.faq .faqInnItem.active .q:before {
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: top;
  transition: all 0.2s;
}

.plan {
  padding-top: 80px;
  padding-bottom: 120px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan {
    padding-top: 60px;
    padding-bottom: 0;
  }
}
.plan::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: url(../images/plan-icon.png);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan::before {
    width: 80px;
    height: 80px;
  }
}
.plan .title {
  position: relative;
  color: #4791DF;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .title {
    font-size: 1.6rem;
  }
}
.plan .title::after {
  content: attr(data-title);
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0 36px;
  margin-top: 10px;
  margin-bottom: 35px;
  border-top: 2px solid #4791DF;
  border-bottom: 2px solid #4791DF;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .title::after {
    font-size: 5rem;
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
@media (min-width: 561px) {
  .plan .title::after {
    font-size: 10rem;
  }
}
.plan .price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan .price-box .price-text {
  font-size: 2.4rem;
  margin-bottom: 5px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .price-box .price-text {
    font-size: 1.8rem;
  }
}
.plan .price-box .price {
  background-color: #4791DF;
  font-size: 3rem;
  color: #fff;
  padding: 10px 30px 13px 30px;
  margin-bottom: 90px;
  border-radius: 50px;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .price-box .price {
    font-size: 2.2rem;
    padding: 10px 20px 13px 20px;
    margin-bottom: 60px;
  }
}
.plan .price-box .price .small {
  font-weight: 500;
  font-size: 1.6rem;
  margin-right: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .price-box .price .small {
    font-size: 1.4rem;
    margin-right: 20px;
  }
}
.plan .plan-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .plan .plan-box {
    flex-direction: column;
  }
}
.plan .plan-box::before, .plan .plan-box::after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.plan .plan-box::before {
  width: 225px;
  height: 497px;
  background-image: url(../images/plan-illust01.png);
  top: -540px;
  left: 30px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .plan .plan-box::before {
    width: 145px;
    height: 320px;
    top: -410px;
    left: 0;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box::before {
    width: 80px;
    height: 173px;
    top: -320px;
  }
}
.plan .plan-box::after {
  width: 185px;
  height: 474px;
  background-image: url(../images/plan-illust02.png);
  top: -515px;
  right: 20px;
}
@media (min-width: 0px) and (max-width: 768px) {
  .plan .plan-box::after {
    width: 120px;
    height: 308px;
    top: -397px;
    right: 0;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box::after {
    width: 64px;
    height: 165px;
    top: -312px;
  }
}
.plan .plan-box .item {
  width: 47%;
  overflow: hidden;
}
@media (min-width: 0px) and (max-width: 768px) {
  .plan .plan-box .item {
    width: 100%;
    max-width: 470px;
    margin: 0 auto 80px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item {
    margin: 0 auto 60px;
  }
}
.plan .plan-box .item .sub-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 30px 0;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .sub-title {
    font-size: 2.5rem;
    padding: 25px 0;
  }
}
.plan .plan-box .item .sub-title::before {
  content: attr(data-title);
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 10px 25px;
  background-color: #fff;
  border-radius: 50px;
  margin-bottom: 5px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .sub-title::before {
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding: 8px 20px;
    margin-bottom: 3px;
  }
}
@media (min-width: 961px) {
  .plan .plan-box .item .sub-title::before {
    font-size: 2.4rem;
  }
}
.plan .plan-box .item .plan-content {
  background-color: #F2F2F2;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding-top: 30px;
  padding-bottom: 40px;
  margin-bottom: 20px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content {
    margin-bottom: 15px;
  }
}
.plan .plan-box .item .plan-content .plan-price {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-price {
    margin-bottom: 30px;
  }
}
.plan .plan-box .item .plan-content .plan-price .price-text {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-price .price-text {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
.plan .plan-box .item .plan-content .plan-price .price {
  font-size: 5rem;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-price .price {
    font-size: 3rem;
  }
}
.plan .plan-box .item .plan-content .plan-price .price .small {
  font-size: 2rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-price .price .small {
    font-size: 1.6rem;
  }
}
.plan .plan-box .item .plan-content .plan-gaiyou {
  margin-top: 60px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-gaiyou {
    margin-top: 40px;
  }
}
.plan .plan-box .item .plan-content .plan-gaiyou .gaiyou-title {
  text-align: center;
  font-size: 2rem;
  margin: 0 20px 20px;
  color: #fff;
  background-size: 10px 2px;
  background-position: center;
  background-repeat: repeat-x;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-gaiyou .gaiyou-title {
    font-size: 1.8rem;
  }
}
.plan .plan-box .item .plan-content .plan-gaiyou .gaiyou-title .title-in {
  border-radius: 50px;
  padding: 5px 65px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-gaiyou .gaiyou-title .title-in {
    padding: 3px 35px;
  }
}
.plan .plan-box .item .plan-content .plan-gaiyou .text {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 20px 30px 20px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-gaiyou .text {
    font-size: 1.6rem;
  }
}
.plan .plan-box .item .plan-content .plan-gaiyou .sub-text {
  text-align: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .plan .plan-box .item .plan-content .plan-gaiyou .sub-text {
    font-size: 1.4rem;
  }
}
.plan .plan-box .item .period {
  text-align: right;
  font-size: 1.4rem;
}
.plan .plan-box .basic .sub-title {
  background-color: #39B88D;
}
.plan .plan-box .basic .sub-title::before {
  color: #39B88D;
}
.plan .plan-box .basic .plan-price .price {
  color: #39B88D;
}
.plan .plan-box .basic .plan-gaiyou .gaiyou-title {
  background-image: linear-gradient(to right, rgb(57, 184, 141), rgb(57, 184, 141) 5px, transparent 5px, transparent 10px);
}
.plan .plan-box .basic .plan-gaiyou .gaiyou-title .title-in {
  background-color: #39B88D;
}
.plan .plan-box .premium .sub-title {
  background-color: #F28010;
}
.plan .plan-box .premium .sub-title::before {
  color: #F28010;
}
.plan .plan-box .premium .plan-price .price {
  color: #F28010;
}
.plan .plan-box .premium .plan-gaiyou .gaiyou-title {
  background-image: linear-gradient(to right, rgb(242, 128, 16), rgb(242, 128, 16) 5px, transparent 5px, transparent 10px);
}
.plan .plan-box .premium .plan-gaiyou .gaiyou-title .title-in {
  background-color: #F28010;
}

.contact {
  background-color: #4791DF;
  padding-top: 90px;
}
.contact .title {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 60px;
  width: 55%;
}
@media (max-width: 1080px) {
  .contact .title {
    width: 45%;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .title {
    font-size: 2.2rem;
    width: 60%;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .title {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 120px;
  }
}
.contact .tel-box {
  width: 100%;
  height: 120px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .tel-box {
    flex-direction: column;
    height: auto;
  }
}
.contact .tel-box::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 416px;
  height: 273px;
  background-image: url(../images/contact-illust.png);
  top: -273px;
  right: 0;
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .tel-box::before {
    width: 260px;
    height: 171px;
    top: -171px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .tel-box::before {
    width: 180px;
    height: 120px;
    top: -120px;
  }
}
.contact .tel-box .tel-title {
  height: 100%;
  background-color: #FEC12F;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .contact .tel-box .tel-title {
    font-size: 2rem;
  }
}
@media (min-width: 769px) {
  .contact .tel-box .tel-title {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 38%;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .tel-box .tel-title {
    width: 100%;
    padding: 15px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .tel-box .tel-title {
    font-size: 1.8rem;
  }
}
.contact .tel-box .tel-num {
  background-color: #fff;
  height: 100%;
  padding: 0 30px 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 769px) {
  .contact .tel-box .tel-num {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 62%;
    justify-content: space-between;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .tel-box .tel-num {
    width: 100%;
    padding: 15px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    justify-content: center;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .tel-box .tel-num {
    flex-direction: column;
  }
}
.contact .tel-box .tel-num .num {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  font-size: 5.6rem;
  padding: 0 0 0 69px;
  position: relative;
}
@media (max-width: 1080px) {
  .contact .tel-box .tel-num .num {
    font-size: 4rem;
  }
}
@media (max-width: 900px) {
  .contact .tel-box .tel-num .num {
    font-size: 3rem;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .tel-box .tel-num .num {
    padding: 0 20px 0 55px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .tel-box .tel-num .num {
    margin-bottom: 5px;
  }
}
.contact .tel-box .tel-num .num::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 54px;
  height: 54px;
  background-image: url(../images/tel-icon.png);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1080px) {
  .contact .tel-box .tel-num .num::before {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 900px) {
  .contact .tel-box .tel-num .num::before {
    width: 40px;
    height: 40px;
  }
}
.contact .tel-box .tel-num .time {
  text-align: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .tel-box .tel-num .time {
    font-size: 1.4rem;
  }
}
.contact .contact-form .con-title {
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 10rem;
  line-height: 0.67;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-form .con-title {
    font-size: 6rem;
  }
}
.contact .contact-form .h-adr {
  background-color: #fff;
  padding: 60px 0;
  border-radius: 10px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-form .h-adr {
    padding: 40px 0;
  }
}
.contact .contact-box {
  padding: 0 60px;
  margin: 0 auto 55px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box {
    padding: 0 20px;
    margin: 0 auto 40px;
  }
}
.contact .contact-box dl {
  padding: 30px 0;
  border-top: 1px solid #E6E6E6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .contact .contact-box dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dl {
    padding: 20px 0;
  }
}
.contact .contact-box dt {
  width: 28%;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 1080px) {
  .contact .contact-box dt {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dt {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.contact .contact-box .required .form-ttl {
  display: block;
  position: relative;
}
@media (max-width: 1080px) {
  .contact .contact-box .required .form-ttl {
    display: inline-block;
  }
}
.contact .contact-box .required .form-ttl:after {
  content: "必須";
  color: #fff;
  background-color: #DE0000;
  padding: 6px 14px 7px 14px;
  border-radius: 8px;
  font-size: 1.6rem;
  display: block;
  position: absolute;
  top: -3px;
  right: 0;
}
@media (max-width: 1080px) {
  .contact .contact-box .required .form-ttl:after {
    right: -80px;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box .required .form-ttl:after {
    font-size: 1.2rem;
    padding: 5px 12px 6px 12px;
    right: -70px;
  }
}
.contact .contact-box dd {
  width: 66%;
}
@media (max-width: 1080px) {
  .contact .contact-box dd {
    width: 100%;
  }
}
.contact .contact-box dd input {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #E5F1F8;
  padding: 11px 20px;
  font-size: 1.6rem;
  line-height: 1;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dd input {
    padding: 11px 18px;
    font-size: 1.4rem;
  }
}
.contact .contact-box dd input.checkBox {
  display: none;
}
.contact .contact-box dd input.checkBox:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #4791DF;
  transition-duration: 0.1s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dd input.checkBox:checked + label::after {
    width: 12px;
    height: 12px;
    top: 7px;
    left: 6px;
  }
}
.contact .contact-box dd label.checkBox {
  position: relative;
  padding: 0 45px 0 40px;
  font-size: 2rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dd label.checkBox {
    font-size: 1.6rem;
    padding: 0 40px 0 35px;
    margin-bottom: 5px;
  }
}
.contact .contact-box dd label.checkBox:last-of-type {
  padding: 0 0 0 40px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dd label.checkBox:last-of-type {
    padding: 0 0 0 35px;
  }
}
.contact .contact-box dd label.checkBox::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  border: 2px solid #E5F1F8;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dd label.checkBox::before {
    width: 24px;
    height: 24px;
  }
}
.contact .contact-box dd label.checkBox::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  background-color: #E5F1F8;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box dd label.checkBox::after {
    width: 12px;
    height: 12px;
    top: 7px;
    left: 6px;
  }
}
.contact .contact-box dd.kinds {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.contact .contact-box .textarea-content {
  align-items: flex-start;
}
.contact .contact-box .textarea-content dt {
  padding-top: 10px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box .textarea-content dt {
    line-height: 26px;
  }
}
.contact .contact-box .textarea-content dd {
  height: 100%;
}
.contact .contact-box .textarea-content textarea {
  border-radius: 10px;
  background-color: #E5F1F8;
  width: 100%;
  min-height: 215px;
  padding: 15px 20px;
  font-size: 1.6rem;
  resize: none;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .contact-box .textarea-content textarea {
    font-size: 1.4rem;
    padding: 12px 18px;
    min-height: 180px;
  }
}
.contact ::-moz-placeholder {
  color: #ccc;
}
.contact ::placeholder {
  color: #ccc;
}
.contact :focus {
  outline: none;
}
.contact .privacy {
  padding: 0 60px;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .privacy {
    padding: 0 20px;
  }
}
.contact .privacy .privacy-title {
  margin: 0 0 50px 0;
  font-size: 2.4rem;
  color: #4791DF;
  text-align: center;
  background-image: linear-gradient(to right, rgb(71, 145, 223), rgb(71, 145, 223) 5px, transparent 5px, transparent 10px);
  background-size: 10px 2px;
  background-position: center;
  background-repeat: repeat-x;
  line-height: 1;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .privacy .privacy-title {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
  }
}
.contact .privacy .privacy-title span {
  background-color: #fff;
  padding: 0 15px;
}
.contact .privacy .scroll-area {
  width: 100%;
  height: 300px;
  padding: 0 30px 0 0;
  margin-bottom: 50px;
  font-size: 1.4rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .contact .privacy .scroll-area::-webkit-scrollbar {
    width: 10px;
  }
}
@media (min-width: 769px) {
  .contact .privacy .scroll-area::-webkit-scrollbar-track {
    background-color: #E5F1F8;
  }
}
@media (min-width: 769px) {
  .contact .privacy .scroll-area::-webkit-scrollbar-thumb {
    background-color: #4791DF;
  }
}
@media (min-width: 0px) and (max-width: 768px) {
  .contact .privacy .scroll-area {
    padding: 10px;
    border: 1px solid #0C1153;
  }
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .privacy .scroll-area {
    margin-bottom: 30px;
  }
}
.contact .privacy .scroll-area .text {
  margin-bottom: 30px;
}
.contact .privacy .scroll-area dl:last-of-type .text {
  margin-bottom: 0;
}
.contact .doui {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .doui {
    font-size: 1.4rem;
  }
}
.contact .doui input[type=checkbox] {
  display: none;
}
.contact .doui input[type=checkbox]:checked + .label_test:before {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.contact .doui input[type=checkbox]:checked + .label_test:after {
  background-color: #4791DF;
}
.contact .doui .label_test {
  position: relative;
  padding: 0 0 0 45px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .doui .label_test {
    padding: 0 0 0 35px;
  }
}
.contact .doui .label_test::before, .contact .doui .label_test::after {
  content: "";
  display: block;
  position: absolute;
}
.contact .doui .label_test::after {
  top: 50%;
  left: 15px;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background-color: #E5F1F8;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .doui .label_test::after {
    width: 20px;
    height: 20px;
  }
}
.contact .doui .label_test::before {
  top: 42%;
  left: 15px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .doui .label_test::before {
    width: 7px;
    height: 12px;
  }
}
.contact .submit {
  width: 500px;
  height: 100px;
  margin: 0 auto;
  background-color: #FEC12F;
  border-radius: 50px;
  transition: all 0.2s;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .submit {
    max-width: 400px;
    width: 80%;
    height: 70px;
  }
}
.contact .submit input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.4rem;
  text-align: center;
  transition: all 0.2s;
}
@media (min-width: 0px) and (max-width: 560px) {
  .contact .submit input {
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .contact .submit:hover {
    transition: all 0.2s;
    color: #FEC12F;
    background-color: #0C1153;
  }
}

.terms {
  margin-bottom: 100px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms {
    margin-bottom: 80px;
  }
}
.terms .mv {
  margin-top: 100px;
  margin-bottom: 150px;
  text-align: center;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms .mv {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.terms .mv-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms .mv-title {
    font-size: 2.4rem;
  }
}
.terms-box:not(:last-of-type) {
  margin-bottom: 80px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.terms-box-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.terms-box-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0C1153;
  position: absolute;
  left: 0;
  bottom: 0;
}
.terms-box-title span {
  display: inline-block;
  padding-bottom: 15px;
  z-index: 1;
  position: relative;
}
.terms-box-title span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FEC12F;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box-title span {
    padding-bottom: 12px;
  }
}
.terms-box-text {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box-text {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.terms-box .number {
  counter-reset: number 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box .number {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.terms-box .number-item {
  font-size: 1.8rem;
  display: flex;
  flex-direction: row;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box .number-item {
    font-size: 1.4rem;
  }
}
.terms-box .number-item:not(:last-of-type) {
  margin-bottom: 12px;
}
.terms-box .number-item::before {
  counter-increment: number 1;
  content: counter(number) ".";
  font-size: 1.8rem;
  margin-right: 12px;
  flex-shrink: 0;
}
@media (min-width: 0px) and (max-width: 560px) {
  .terms-box .number-item::before {
    font-size: 1.4rem;
    margin-right: 8px;
  }
}/*# sourceMappingURL=common.css.map */