@charset "UTF-8";
/* =========================================================
 Base
========================================================= */
/* ==============================
  base配下のscssを読み込み
================================= */
/*!
 * ress.css • v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

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

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

/* ==============================
  変数を定義
================================= */
/* color */
/* media query */
/* ==============================
  base/mixin
================================= */
/* ==============================
  base/base
================================= */
html {
  font-size: 62.5%;
  color: #000;
  -webkit-text-size-adjust: 100%;
}

body {
  position: static;
  word-break: break-all;
  font-size: 160%;
  font-family: "Noto Sans JP", "Noto Sans", YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  body {
    font-size: 140%;
  }
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fade {
  opacity: 0;
}
body.fade::after {
  opacity: 1;
}

canvas {
  vertical-align: top;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

img[src$=".svg"] {
  width: 100%;
}

i {
  font-style: normal;
}

button {
  border: none;
  border-color: none;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div {
  letter-spacing: 0em;
}
@media (max-width: 768px) {
  div {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

p {
  font-size: inherit;
  letter-spacing: 0em;
}
@media (max-width: 768px) {
  p {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}

label {
  font-size: inherit;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

input::-webkit-input-placeholder {
  font-size: inherit;
}

input::-moz-placeholder {
  font-size: inherit;
}

input:-ms-input-placeholder {
  font-size: inherit;
}

input::-ms-input-placeholder {
  font-size: inherit;
}

input::placeholder {
  font-size: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
}

main {
  display: block;
}

/* ==============================
  base/ 調整
================================= */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

/* ==============================
  PC、SP出しわけ
================================= */
.is-pc {
  display: block;
}
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

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

br.is-pc {
  display: inline;
}
@media (max-width: 768px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media (max-width: 768px) {
  br.is-sp {
    display: inline;
  }
}

/* =========================================================
 Layout
========================================================= */
/* =========================================================
 Base
========================================================= */
/* ==============================
  layout/layout
================================= */
.l-main {
  overflow: hidden;
}

.l-fixed-menu {
  display: none;
}
@media (max-width: 1060px) {
  .l-fixed-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    z-index: 10;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform ease 0.5s;
    transition: -webkit-transform ease 0.5s;
    transition: transform ease 0.5s;
    transition: transform ease 0.5s, -webkit-transform ease 0.5s;
    visibility: hidden;
  }
  .l-fixed-menu.is-show {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    visibility: visible;
  }
  .l-fixed-menu .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 18px;
    padding: 16px 10px;
  }
}

/* =========================================================
 Base
========================================================= */
/* ==============================
  layout/header
================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 70px;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-menu {
  width: 100%;
}
@media (max-width: 1060px) {
  .header-menu {
    display: block;
    height: 40px;
  }
}
.header-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 40px 16px 46px;
  position: relative;
  width: 100%;
}
@media (max-width: 1060px) {
  .header-pc {
    max-height: 40px;
    height: 100%;
    width: 100%;
    padding: 6px 16px;
  }
}
.header-front {
  width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1060px) {
  .header-front {
    width: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 60;
    gap: 20px;
  }
}
.header-logo {
  width: 237px;
}
@media (max-width: 1060px) {
  .header-logo {
    width: 143px;
  }
}
.header-logo a {
  display: block;
}
.header-logo a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header-logo a:hover {
    opacity: 1;
  }
}
.header-logo img {
  vertical-align: middle;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1180px) {
  .header-nav {
    display: none;
  }
}
.header-nav-list a {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.header-nav-list a:hover {
  opacity: 0.7;
}
@media (max-width: 1060px) {
  .header-nav-list a:hover {
    opacity: 1;
  }
}
.header-nav-sp {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
}
@media (max-width: 1060px) {
  .header-nav-sp {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    left: 0;
    background-color: #FFF;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    padding: 100px 15px 15px;
  }
}
@media (max-width: 1060px) {
  .header-nav-sp-inner {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: scroll;
  }
}
@media (max-width: 1060px) {
  .header-nav-sp-list {
    font-size: 20px;
    font-weight: 700;
  }
}
.header-nav-sp-list a {
  color: #193764;
}
@media (max-width: 1060px) {
  .header-nav-sp-list + .header-nav-sp-list {
    margin-top: 40px;
  }
}
.header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1060px) {
  .header-info {
    gap: 12px;
  }
}
@media (max-width: 1060px) {
  .header-info .btn-wrap,
  .header-info .btn-wrap-contact {
    display: none;
  }
}
.header-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 150px;
}
@media (max-width: 1060px) {
  .header-info-wrap {
    gap: 2px;
  }
}
@media (max-width: 768px) {
  .header-info-wrap {
    min-width: initial;
  }
}
.header-info-lead {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: center;
  text-align: left;
  gap: 12px;
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: bold;
  margin-bottom: 10px;
}
.header-info-lead .icon {
  width: 36px;
}
.header-info-lead .icon + p {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.header-info-tel {
  font-size: 18px;
  line-height: 0.9;
  color: #000;
}
.header-info-tel [class^=icon-],
.header-info-tel [class*=" icon-"] {
  font-size: 13px;
}
@media (max-width: 1060px) {
  .header-info-tel {
    font-size: 15px;
    line-height: 1;
  }
  .header-info-tel [class^=icon-],
  .header-info-tel [class*=" icon-"] {
    font-size: 10px;
  }
}
.header-info-time {
  position: relative;
  left: 8px;
  display: block;
  margin-top: 3px;
  font-size: 11px;
}
@media (max-width: 1060px) {
  .header-info-time {
    line-height: 1;
    margin-top: 0;
  }
}
@media (max-width: 1060px) {
  .header-info-sp {
    margin-top: 32px;
  }
}
@media (max-width: 1060px) {
  .header-info-sp .header-info-tel {
    margin-bottom: 10px;
    font-size: 28px;
    letter-spacing: 1.4px;
  }
}
@media (max-width: 1060px) {
  .header-info-sp .header-info-tel [class^=icon-],
  .header-info-sp .header-info-tel [class*=" icon-"] {
    font-size: 20px;
  }
}
.header-info-sp .header-info-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: bold;
  gap: 8px;
}
.header-info-sp .header-info-time span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 8px;
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  background-color: #333;
  color: #FFF;
  border-radius: 11px;
}
.header-menu-btn {
  display: none;
}
@media (max-width: 1060px) {
  .header-menu-btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 100;
    background-color: rgb(255, 255, 255);
    border: 1px solid #333;
    border-radius: 40px;
  }
}
.header-menu-btn span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  height: 2px;
  width: 15px;
  border-radius: 10px;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-menu-btn-1, .header-menu-btn-2, .header-menu-btn-3 {
  right: 0;
}
.header-menu-btn-1 {
  top: 15px;
}
.header-menu-btn-3 {
  top: 23px;
}

/* =========================================================
 Base
========================================================= */
/* ==============================
  layout/footer
================================= */
.l-footer {
  padding: 10px 16px;
  background-color: #F8F8F8;
  text-align: center;
}
.l-footer .copyright {
  font-family: "Roboto", sans-serif;
  color: #707070;
  font-size: 12px;
  line-height: 1;
}

/* =========================================================
 Module 使い回しできるパーツのスタイル
========================================================= */
/* =========================================================
 Base
========================================================= */
/* ==============================
  module/module
================================= */
.mv-section {
  background: url(../images/mv_bg_pc.webp) no-repeat;
  background-position: 50% 100px;
  background-size: 1240px auto;
}
@media (max-width: 1060px) {
  .mv-section {
    background: url(../images/mv_bg_sp.webp) no-repeat;
    background-position: 50% 30px;
    background-size: 390px auto;
  }
}
.mv-section-inner {
  padding-top: 120px;
  padding-inline: 50px;
  max-width: 1100px;
  margin-inline: auto;
}
@media (max-width: 1060px) {
  .mv-section-inner {
    padding: 63px 16px 50px;
  }
}
.mv-main {
  position: relative;
  z-index: 2;
  min-height: 434px;
}
@media (max-width: 1060px) {
  .mv-main {
    min-height: 380px;
  }
}
@media (max-width: 375px) {
  .mv-main {
    min-height: 262px;
  }
}
.mv-main:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 657px;
  height: 434px;
  background: url(../images/mv_pc.webp) no-repeat;
  background-size: 100% auto;
  z-index: -1;
}
@media (max-width: 1060px) {
  .mv-main:after {
    width: 507px;
    height: 335px;
  }
}
@media (max-width: 375px) {
  .mv-main:after {
    bottom: 0;
    right: -17px;
    width: 329px;
    height: 217px;
  }
}
@media (max-width: 1060px) {
  .mv-main .btn-wrap-wide .btn {
    margin-inline: auto;
  }
}
.mv-ttl {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.4285714286;
  color: #193764;
}
@media (max-width: 1060px) {
  .mv-ttl {
    margin-bottom: 9px;
    font-size: clamp(24px, 6.4vw, 42px);
  }
}
.mv-catch {
  margin-bottom: 44px;
  font-size: 30px;
  line-height: 1.5333333333;
  color: #193764;
}
@media (max-width: 1060px) {
  .mv-catch {
    margin-bottom: 30px;
    font-size: clamp(12px, 3.2vw, 30px);
  }
}
@media (max-width: 768px) {
  .mv-catch {
    margin-bottom: 67px;
  }
}

.problem-section {
  position: relative;
  padding: 40px 0 80px;
  background: rgba(0, 170, 196, 0.5);
  -webkit-box-shadow: inset 0px 5px 10px rgba(255, 255, 255, 0.25);
          box-shadow: inset 0px 5px 10px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 130px 130px 0px 0px;
  z-index: 2;
}
@media (max-width: 1060px) {
  .problem-section {
    margin-top: -50px;
    padding: 40px 16px;
    border-radius: 50px 50px 0px 0px;
  }
}
.problem-list {
  max-width: 800px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 76px;
}
@media (max-width: 768px) {
  .problem-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 216px;
    gap: 40px;
  }
}
.problem-list li {
  position: relative;
  width: 33.3333333333%;
  color: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .problem-list li {
    width: 100%;
  }
}
.problem-list li .title {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.125;
  font-weight: bold;
}
.problem-list li .title span {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 20px;
  font-size: 40px;
  line-height: 1;
  opacity: 0.5;
}
.problem-list li .thumb {
  margin-bottom: 16px;
  width: auto;
  height: 85px;
}
.problem-list li .thumb img {
  width: auto;
  height: 100%;
}
.problem-list li .lead {
  font-size: 16px;
  line-height: 1.25;
  font-weight: bold;
  text-shadow: 0px 0px 10px #2C606D;
}
.problem-list-num {
  color: #3BA7C1;
  font-size: 30px;
  letter-spacing: 0.03em;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media (max-width: 1060px) {
  .problem-list-num {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .problem-list-num {
    font-size: 30px;
  }
}
.problem-list-txt {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}
.problem-list-txt-large {
  font-size: 20px;
  font-weight: 700;
}

.about-section {
  background-color: #fff;
  padding: 80px 16px;
  background: url(../images/about_bg_01_pc.webp) no-repeat 50% 50%;
  background-size: cover;
}
@media (max-width: 768px) {
  .about-section {
    background: url(../images/about_bg_01_sp.webp) no-repeat 0 0;
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .about-section .txt-common-ttl {
    text-align: center;
  }
}
.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  max-width: 960px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 768px) {
  .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-logo {
  width: 401px;
}
@media (max-width: 768px) {
  .about-logo {
    width: 100%;
  }
}
.about-txt {
  font-size: 18px;
  line-height: 1.6666666667;
  font-weight: 500;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .about-txt {
    margin-top: 24px;
  }
}
.about-txt-highlight {
  display: inline-block;
  padding: 4px 8px 5px;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.6666666667;
  font-weight: bold;
  background-color: #7DD2DF;
  color: #FFF;
  line-height: 1.2;
}
.about-img {
  width: 400px;
}
@media (max-width: 768px) {
  .about-img {
    width: 100%;
  }
}

.recommend-section {
  position: relative;
  background-color: #7DD2DF;
}
@media (max-width: 768px) {
  .recommend-section {
    overflow: hidden;
    margin-top: -50px;
    border-radius: 50px 50px 0px 0px;
  }
}
.recommend-section:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% + 80px);
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 120px 0px 0px 120px;
  z-index: 1;
}
@media (max-width: 1060px) {
  .recommend-section:after {
    width: calc(50% + 120px);
  }
}
@media (max-width: 768px) {
  .recommend-section:after {
    display: none;
  }
}
.recommend-section-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 992px;
  padding-inline: 16px;
  margin-inline: auto;
  z-index: 2;
}
@media (max-width: 768px) {
  .recommend-section-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
    padding: 24px 16px 40px;
  }
}
.recommend-section .recommend-thumb {
  width: 387px;
}
@media (max-width: 1060px) {
  .recommend-section .recommend-thumb {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .recommend-section .recommend-thumb {
    width: 100%;
    max-width: 322px;
  }
}
.recommend-section .recommend-thumb .btn.is-sp {
  margin-top: 24px;
}
.recommend-section .recommend-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding: 27px 0;
  text-align: right;
}
@media (max-width: 768px) {
  .recommend-section .recommend-content {
    width: 100%;
    padding: 0;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .recommend-section .recommend-content:after {
    display: block;
    content: "";
    position: absolute;
    top: -24px;
    left: -16px;
    width: calc(100% + 32px);
    height: calc(100% + 24px);
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
  }
}
.recommend-section .recommend-content .title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .recommend-section .recommend-content .title {
    line-height: 1.3;
  }
}
.recommend-section .recommend-content .lead {
  margin-bottom: 16px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .recommend-section .recommend-content .lead {
    font-size: 16px;
    line-height: 1.3;
  }
}
.recommend-section .recommend-content .download {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 768px) {
  .recommend-section .recommend-content .download {
    display: none;
  }
}
.recommend-section .recommend-content .download .btn {
  justify-self: flex-end;
  width: 425px;
}
@media (max-width: 1060px) {
  .recommend-section .recommend-content .download .btn {
    width: initial;
  }
}

.estimate-aside {
  position: relative;
  background-color: #193764;
  z-index: 1;
  min-height: 220px;
}
@media (max-width: 768px) {
  .estimate-aside {
    min-height: 299px;
  }
}
.estimate-aside:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin-inline: auto;
  background: url(../images/bg_cta_01_pc.webp) no-repeat 50% 50%;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 768px) {
  .estimate-aside:after {
    background: url(../images/bg_cta_01_sp.webp) no-repeat 0 100%;
    background-size: cover;
  }
}
.estimate-aside-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  max-width: 992px;
  height: 100%;
  min-height: 220px;
  margin-inline: auto;
  padding-inline: 16px;
  z-index: 2;
}
@media (max-width: 768px) {
  .estimate-aside-inner {
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    min-height: 299px;
    padding: 34px 16px;
    text-align: center;
  }
}
.estimate-aside-inner .title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.25;
  color: #FFF;
  font-weight: bold;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .estimate-aside-inner .title {
    margin-bottom: 21px;
    font-size: 16px;
  }
}
.estimate-aside-inner .btn-estimate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .estimate-aside-inner .btn-estimate {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.estimate-aside-inner .btn-estimate .btn {
  justify-self: flex-end;
  width: 343px;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  .estimate-aside-inner .btn-estimate .btn {
    justify-self: center;
    width: initial;
    font-size: 13px;
  }
}
.estimate-aside-inner .btn-estimate .btn .icon-arrow {
  font-size: 14px;
}

.bg-polka-dots {
  background: url(../images/bg_pc.webp) repeat-y 50% -10px;
  background-size: 105% auto;
}
@media (max-width: 768px) {
  .bg-polka-dots {
    background: url(../images/bg_sp.webp) repeat-y -150px 20px;
    background-size: 520px auto;
  }
}

.merit-content {
  max-width: 992px;
  margin-inline: auto;
  padding: 80px 16px;
}
@media (max-width: 768px) {
  .merit-content {
    padding: 84px 16px;
  }
}
.merit-list {
  max-width: 800px;
  margin-inline: auto;
}
.merit-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .merit-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.merit-list li + li {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .merit-list li + li {
    margin-top: 40px;
  }
}
.merit-list li.merit-list-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .merit-list li.merit-list-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.merit-list-detail {
  width: 400px;
}
@media (max-width: 1060px) {
  .merit-list-detail {
    width: 100%;
  }
}
.merit-list-num {
  display: block;
  margin-bottom: 12px;
  color: #BDE8EE;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
}
.merit-list-ttl {
  color: #7DD2DF;
  font-size: 32px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.merit-list-txt {
  font-size: 16px;
  line-height: 1.875;
  color: #193764;
  margin-top: 16px;
}
.merit-list-img {
  width: 376px;
}
@media (max-width: 1060px) {
  .merit-list-img {
    width: 100%;
  }
}

.usecase-section {
  max-width: 992px;
  margin-inline: auto;
  padding: 80px 16px;
}
@media (max-width: 768px) {
  .usecase-section {
    padding: 40px 16px;
  }
}
.usecase-detail .etc {
  margin-top: 16px;
  color: #193764;
  font-size: 20px;
  font-weight: bold;
  text-align: right;
  line-height: 1;
}
.usecase-img {
  width: 25%;
  padding: 25px 25px 15px;
  background-color: #FFF;
  border: 5px solid #7DD2DF;
  border-radius: 20px;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  text-align: center;
}
@media (max-width: 768px) {
  .usecase-img {
    width: 100%;
    max-width: 230px;
  }
}
.usecase-img .title {
  margin-top: 11px;
  font-size: 16px;
  line-height: 1.375;
  color: #7DD2DF;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.usecase-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
@media (max-width: 768px) {
  .usecase-img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}

.comparison-section {
  max-width: 992px;
  margin-inline: auto;
  padding: 80px 16px;
}
.comparison-section .info-comp-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-section .info-comp-table .col-primary {
  border-inline: 9px solid #193764;
  padding-inline: 9px;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table .col-primary {
    border-inline: 4px solid #193764;
    padding-inline: 4px;
  }
}
.comparison-section .info-comp-table .col-primary .info-comp-table-detail {
  font-size: 16px;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table .col-primary .info-comp-table-detail {
    font-size: 11px;
  }
}
.comparison-section .info-comp-table thead th {
  position: relative;
  text-align: center;
  width: 260px;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #F6F6F6;
  border-bottom: 1px solid #DBDBDB;
  border-right: 1px solid #DBDBDB;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table thead th {
    width: 100px;
    padding: 6px;
    font-size: 12px;
    line-height: 1.3;
  }
}
.comparison-section .info-comp-table thead th:first-of-type {
  width: 160px;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table thead th:first-of-type {
    width: 40px;
    padding: 12px 0;
    font-size: 12px;
    background-color: transparent;
  }
}
.comparison-section .info-comp-table thead th:last-of-type {
  border-right: none;
}
.comparison-section .info-comp-table thead .col-primary {
  color: #FFF;
  background-color: #193764;
}
.comparison-section .info-comp-table thead .col-primary::before {
  content: "";
  display: block;
  width: calc(100% + 18px);
  height: 14px;
  background-color: #193764;
  position: absolute;
  top: 0;
  left: -9px;
  border-radius: 14px 14px 0 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table thead .col-primary::before {
    width: calc(100% + 8px);
    height: 6px;
    left: -4px;
    border-radius: 4px 4px 0 0;
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
.comparison-section .info-comp-table tbody th,
.comparison-section .info-comp-table tbody td {
  position: relative;
  border-right: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  text-align: center;
  padding: 30px 10px;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table tbody th,
  .comparison-section .info-comp-table tbody td {
    height: 86px;
    padding: 5px 2px;
  }
}
.comparison-section .info-comp-table tbody th {
  background-color: #FFF;
  border-left: 1px solid #DBDBDB;
}
.comparison-section .info-comp-table tbody td {
  background-color: #fff;
}
.comparison-section .info-comp-table tbody td [class^=icon-] {
  margin-bottom: 10px;
}
.comparison-section .info-comp-table tbody td .icon-double_circle {
  font-size: 20px;
  color: #C91127;
}
.comparison-section .info-comp-table tbody td .icon-circle {
  font-size: 21px;
}
.comparison-section .info-comp-table tbody td .icon-triangle {
  font-size: 20px;
}
.comparison-section .info-comp-table tbody td .icon-cross {
  font-size: 14px;
}
.comparison-section .info-comp-table tbody tr:last-child .col-primary::after {
  content: "";
  display: block;
  width: calc(100% + 18px);
  height: 9px;
  background-color: #193764;
  position: absolute;
  left: -9px;
  bottom: 0;
  border-radius: 0 0 14px 14px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table tbody tr:last-child .col-primary::after {
    width: calc(100% + 8px);
    height: 4px;
    left: -4px;
    border-radius: 0 0 4px 4px;
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}
.comparison-section .info-comp-table tbody .th-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #193764;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table tbody .th-txt {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    line-height: 1.2;
    display: grid;
    place-content: center;
    width: 100%;
    margin-inline: auto;
    text-align: start;
  }
}
.comparison-section .info-comp-table-img img {
  margin-bottom: 5px;
  width: revert-layer;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table-img {
    display: none;
  }
}
.comparison-section .info-comp-table-detail {
  font-size: 14px;
  color: #193764;
  line-height: 1.5;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .comparison-section .info-comp-table-detail {
    font-size: 11px;
  }
}

.bg-rounded-corner {
  padding: 80px 0;
  background-color: #7DD2DF;
  border-radius: 130px 130px 0px 0px;
}
@media (max-width: 1060px) {
  .bg-rounded-corner {
    border-radius: 50px 50px 0px 0px;
  }
}

.tile-section {
  max-width: 992px;
  padding: 0 16px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.tile-section:last-of-type {
  margin-bottom: 0;
}
.tile-section.methods .txt-common-ttl .title:after {
  background: url(../images/line_title_02_mdl.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.tile-section .lead {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.875;
  color: #FFF;
  text-shadow: 0px 0px 10px #2C606D;
}
@media (max-width: 768px) {
  .tile-section .lead {
    font-weight: bold;
  }
}
.tile-section .etc {
  margin-top: 16px;
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
  text-align: right;
  line-height: 1;
}
.tile-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
@media (max-width: 768px) {
  .tile-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.tile-list li {
  width: 25%;
  padding: 24px 17px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .tile-list li {
    width: 100%;
    max-width: 230px;
  }
}
.tile-list li .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: bold;
  min-height: 40.0000000008px;
}
.tile-list li .thumb {
  margin-bottom: 16px;
}
.tile-list li .title {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: bold;
}

.case-section {
  background-color: #E9F1F3;
}
.case-section-inner {
  max-width: 992px;
  padding: 80px 16px;
  margin-inline: auto;
}
.case-content {
  max-width: 800px;
  margin-inline: auto;
}
.case-content-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 47px 73px;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (max-width: 768px) {
  .case-content-block {
    padding: 24px 15px;
  }
}
.case-content-block + .case-content-block {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .case-content-block + .case-content-block {
    margin-top: 40px;
  }
}
.case-achievement-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1060px) {
  .case-achievement-wrap {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.case-achievement-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
@media (max-width: 1060px) {
  .case-achievement-main {
    width: 100%;
  }
}
.case-achievement-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.case-achievement-label li {
  background-color: #193764;
  color: #fff;
  font-size: 10px;
  padding: 5px 4px;
  border-radius: 2px;
}
.case-achievement-company {
  color: #ACACAC;
  font-size: 14px;
  font-weight: 700;
}
.case-achievement-company-detail {
  color: #ACACAC;
  font-size: 10px;
  margin-left: 20px;
}
@media (max-width: 1060px) {
  .case-achievement-company-detail {
    margin-left: 0;
    margin-top: 5px;
    font-size: 12px;
  }
}
.case-achievement-company-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 12px;
}
@media (max-width: 1060px) {
  .case-achievement-company-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.case-achievement-ttl {
  color: #193764;
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid #EAF3F5;
}
@media (max-width: 1060px) {
  .case-achievement-ttl {
    font-size: 15px;
  }
}
.case-achievement-txt {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #193764;
  letter-spacing: 0.04em;
}
@media (max-width: 1060px) {
  .case-achievement-txt {
    font-size: 12px;
  }
}
.case-achievement-img {
  max-width: 238px;
}
@media (max-width: 1060px) {
  .case-achievement-img {
    max-width: 100%;
  }
}
.case-solution-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 32px;
  background-color: #E9F1F3;
  padding: 24px 20px;
}
@media (max-width: 1060px) {
  .case-solution-wrap {
    gap: 18px;
    margin-top: 23px;
    padding: 24px 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.case-solution-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
@media (max-width: 1060px) {
  .case-solution-main {
    width: 100%;
  }
}
.case-solution-ttl {
  position: relative;
  padding: 0 0 0 32px;
  font-size: 16px;
  color: #193764;
}
.case-solution-ttl:before {
  content: "";
  position: absolute;
  background: url(../images/light_bulb_01.webp) no-repeat;
  background-size: 100% auto;
  width: 23px;
  height: 23px;
  top: 0;
  left: 0;
}
.case-solution-list {
  margin-top: 16px;
}
@media (max-width: 1060px) {
  .case-solution-list {
    margin-top: 6px;
  }
}
.case-solution-list li {
  padding-left: 1em;
  position: relative;
  font-size: 14px;
  color: #193764;
}
@media (max-width: 1060px) {
  .case-solution-list li {
    font-size: 11px;
  }
}
.case-solution-list li + li {
  margin-top: 4px;
}
.case-solution-list li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.case-solution-img {
  width: 196px;
}
@media (max-width: 1060px) {
  .case-solution-img {
    width: 100%;
  }
}
.case-comment {
  font-size: 14px;
  line-height: 1.7142857143;
  color: #193764;
  letter-spacing: 0.04em;
}
.case-comment-wrap {
  margin-top: 32px;
}
@media (max-width: 1060px) {
  .case-comment-wrap {
    margin-top: 23px;
  }
}
.case-comment-area {
  position: relative;
  margin-left: 44px;
  background-color: #F9F9F9;
  border-radius: 6px;
  padding: 8px;
}
.case-comment-area:after {
  content: "";
  position: absolute;
  background: url(../images/people_01.webp) no-repeat;
  background-size: 100%;
  width: 28px;
  height: 27px;
  top: 0;
  left: -44px;
}

.faq-section {
  background-color: #FAFAFA;
  padding: 80px 16px;
}
.faq-section-inner {
  max-width: 960px;
  margin-inline: auto;
}
.faq-section-inner .txt-common-ttl .title:after {
  background: url(../images/line_title_01_mdl.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.faq-ttl {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
.faq-list li {
  border-top: 1px solid #D9D8D8;
}
.faq-list li:last-of-type {
  border-bottom: 1px solid #D9D8D8;
}
.faq-list-wrap {
  max-width: 800px;
  margin-inline: auto;
}

.faq-title-button {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
  background-color: #FFF;
}
.faq-title-button:before, .faq-title-button:after {
  content: "";
  position: absolute;
  top: 1px;
  right: 36px;
  bottom: 0;
  width: 15px;
  height: 3px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .faq-title-button:before, .faq-title-button:after {
    right: 5px;
  }
}
.faq-title-button:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.faq-title-text {
  padding: 28px 60px 28px 70px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  color: #193764;
}
@media (max-width: 768px) {
  .faq-title-text {
    font-size: 12px;
    line-height: 1.6666666667;
    padding: 8px 24px 8px 35px;
    color: #333;
    font-weight: bold;
  }
}
.faq-title-text:before {
  content: "Q";
  position: absolute;
  top: 25px;
  left: 30px;
  font-family: "Poppins", sans-serif;
  color: #193764;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .faq-title-text:before {
    top: 4px;
    left: 0;
  }
}
.faq-title-text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #193764;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq-title-text:after {
    right: 0;
  }
}
.faq-content {
  display: none;
  background-color: rgba(234, 243, 245, 0.6);
  padding: 20px 60px 20px 70px;
  position: relative;
}
@media (max-width: 768px) {
  .faq-content {
    padding: 8px 24px 8px 35px;
  }
}
.faq-content:before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: "Poppins", sans-serif;
  color: #193764;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .faq-content:before {
    top: 12px;
    left: 2px;
  }
}
.faq-content-txt {
  font-size: 16px;
  line-height: 1.25;
  color: #193764;
}
@media (max-width: 768px) {
  .faq-content-txt {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
  }
}

.acd-ttl {
  padding: 28px 60px 28px 70px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  width: 100%;
  color: #193764;
}
@media (max-width: 768px) {
  .acd-ttl {
    font-size: 12px;
    line-height: 1.6666666667;
    padding: 8px 24px 8px 35px;
    color: #333;
    font-weight: bold;
  }
}
.acd-ttl:before {
  content: "Q";
  position: absolute;
  top: 25px;
  left: 30px;
  font-family: "Poppins", sans-serif;
  color: #193764;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .acd-ttl:before {
    top: 4px;
    left: 0;
  }
}
.acd-ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #193764;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  z-index: -1;
}
@media (max-width: 768px) {
  .acd-ttl:after {
    right: 0;
  }
}
.acd-ttl-btn {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: left;
  background-color: #FFF;
}
.acd-ttl-btn:before, .acd-ttl-btn:after {
  content: "";
  position: absolute;
  top: 1px;
  right: 36px;
  bottom: 0;
  width: 15px;
  height: 3px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .acd-ttl-btn:before, .acd-ttl-btn:after {
    right: 5px;
  }
}
.acd-ttl-btn:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.acd-content {
  display: none;
  background-color: rgba(234, 243, 245, 0.6);
}
.acd-content-inner {
  padding: 20px 60px 20px 70px;
  position: relative;
}
@media (max-width: 768px) {
  .acd-content-inner {
    padding: 8px 24px 8px 35px;
  }
}
.acd-content-inner:before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 32px;
  font-family: "Poppins", sans-serif;
  color: #193764;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .acd-content-inner:before {
    top: 12px;
    left: 2px;
  }
}
.acd-content-txt {
  font-size: 16px;
  line-height: 1.25;
  color: #193764;
}
@media (max-width: 768px) {
  .acd-content-txt {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
  }
}

.contact-section {
  position: relative;
  background-color: #75CDDB;
  padding: 80px 16px;
}
.contact-section .txt-common-ttl.white .title:after {
  background: url(../images/line_title_02_sht.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.contact-container {
  max-width: 800px;
  margin-inline: auto;
}
.contact-block {
  max-width: 960px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 55px 10px 50px;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .contact-block {
    padding: 32px 16px;
  }
}
.contact-block-inner {
  max-width: 598px;
  margin-inline: auto;
}
@media (max-width: 1060px) {
  .contact-block-inner .btn-wrap-wide {
    margin-top: 34px;
  }
}
@media (max-width: 1060px) {
  .contact-block-inner .btn-wrap-wide .btn {
    width: 275px;
  }
}
.contact-block .screen-reader-response,
.contact-block .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
.contact-block .wpcf7-response-output {
  font-size: 14px;
  color: #C91127;
  text-align: center;
  margin-top: 24px;
}

.fade-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
}
.fade-in {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    z-index: 10;
  }
  100% {
    opacity: 0;
  }
}

@keyframes anime {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    z-index: 10;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
/* =========================================================
 Base
========================================================= */
/* ==============================
  module/btn
================================= */
.btn {
  color: #fff;
  font-size: 18px;
  border-radius: 39px;
  padding: 17px 20px;
  font-weight: 700;
  width: 393px;
  letter-spacing: 0.04em;
  top: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (max-width: 1060px) {
  .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 12px;
    font-size: 13px;
  }
}
.btn:hover {
  top: 3px;
}
@media (max-width: 1060px) {
  .btn:hover {
    top: 0;
  }
}
.btn .icon-download {
  font-size: 24px;
}
@media (max-width: 1060px) {
  .btn .icon-download {
    font-size: 20px;
  }
}
.btn .icon-download2 {
  font-size: 24px;
}
@media (max-width: 1060px) {
  .btn .icon-download2 {
    font-size: 20px;
  }
}
.btn .icon-mail2 {
  font-size: 24px;
}
@media (max-width: 1060px) {
  .btn .icon-mail2 {
    font-size: 20px;
  }
}
.btn-red {
  background-color: #C91127;
  -webkit-box-shadow: 1px 2px 8px rgba(201, 17, 39, 0.29);
          box-shadow: 1px 2px 8px rgba(201, 17, 39, 0.29);
}
.btn-blue {
  background-color: #193764;
  -webkit-box-shadow: 3px 3px 10px rgba(59, 167, 193, 0.2);
          box-shadow: 3px 3px 10px rgba(59, 167, 193, 0.2);
}
.btn-has-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 5px;
}
@media (max-width: 1060px) {
  .btn-has-icon {
    justify-self: center;
  }
}
.btn-has-icon-left [class^=icon-],
.btn-has-icon-left [class*=" icon-"] {
  margin-right: 4px;
}
@media (max-width: 1060px) {
  .btn-has-icon-left [class^=icon-],
  .btn-has-icon-left [class*=" icon-"] {
    margin-right: 0;
  }
}
.btn-has-icon-right .icon-arrow {
  margin: 4px 0 0 4px;
  font-size: 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.btn-small {
  font-size: 14px;
  border-radius: 21px;
  padding: 7px 10px;
  width: 179px;
}
@media (max-width: 1060px) {
  .btn-small {
    padding: 6px 3px;
    width: 153px;
  }
}
.btn-small:hover {
  top: 2px;
}
@media (max-width: 1060px) {
  .btn-small:hover {
    top: 0;
  }
}
.btn-small .icon-download {
  font-size: 15px;
}
.btn-small .icon-mail {
  font-size: 12px;
}
@media (max-width: 1060px) {
  .btn-header {
    width: 214px;
    padding: 12px;
    font-size: 18px;
  }
}
.btn-header .icon-download {
  font-size: 16px;
}
.btn-header .icon-mail {
  font-size: 12px;
}
@media (max-width: 768px) {
  .btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.btn-wrap-mv {
  margin-top: 40px;
}
.btn-wrap-wide {
  margin-top: 50px;
}
.btn-wrap-middle {
  margin-top: 32px;
}
.btn-wrap-narrow {
  margin-top: 5px;
}
@media (max-width: 1060px) {
  .btn-wrap-contact {
    display: none;
  }
}
@media (max-width: 1060px) {
  .btn-wrap-header {
    margin-top: 48px;
  }
}
.btn-wrap-header .btn-wrap {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-wrap-header .btn-wrap + .btn-wrap {
  margin-top: 24px;
}
.btn-submit {
  position: relative;
  height: 47px;
  max-width: 263px;
  margin-inline: auto;
}
.btn-submit input {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  font-size: 16px;
}
.btn-banner .btn:hover {
  top: 0;
}
.btn-banner:hover .btn {
  top: 3px;
}

/* =========================================================
 Base
========================================================= */
/* ==============================
  module/txt
================================= */
.txt-vertical {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.txt-att {
  position: relative;
  padding-left: 1em;
  color: #ACACAC;
  font-size: 11px;
  line-height: 1.3636363636;
}
.txt-att:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.txt-blue {
  color: #3BA7C1;
}
.txt-blue.txt-underline {
  position: relative;
}
.txt-blue.txt-underline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3BA7C1;
  bottom: 0;
  left: 0;
}
.txt-white {
  color: #fff;
}
.txt-common-ttl {
  max-width: 960px;
  margin: 0 auto 40px;
}
.txt-common-ttl .title {
  display: inline-block;
  position: relative;
  padding: 0 0 15px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
.txt-common-ttl .title:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../images/line_title_01.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.txt-common-ttl .caption {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.txt-common-ttl.white .title {
  color: #FFF;
  text-shadow: 0px 0px 10px #2C606D;
}
.txt-common-ttl.white .title:after {
  background: url(../images/line_title_02.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.txt-common-ttl.white .caption {
  color: #FFF;
}

/* =========================================================
 Base
========================================================= */
/* ==============================
  module/form
================================= */
input[type=text],
input[type=tel],
input[type=email],
textarea {
  font-size: 14px;
  background-color: #F7F7F7;
  border-radius: 10px;
  padding: 15px 20px;
  width: 100%;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #BCBCBC;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  color: #BCBCBC;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #BCBCBC;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #BCBCBC;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: #BCBCBC;
}

textarea {
  resize: none;
  height: 100px;
}

.form-group + .form-group {
  margin-top: 25px;
}
.form-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 16px;
  }
}
.form-tag {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 700;
  background-color: #696969;
  color: #fff;
  padding: 4px 5px;
  border-radius: 4px;
  margin-left: 10px;
  line-height: 1;
}
@media (max-width: 768px) {
  .form-tag {
    font-size: 10px;
  }
}
.form-tag-required {
  background-color: #C91127;
}
.form-data {
  margin-top: 10px;
}
.form-data input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.form-data input[type=radio]:checked + span.wpcf7-list-item-label:after {
  opacity: 1;
}
.form-data .wpcf7-list-item + .wpcf7-list-item {
  display: block;
  margin-top: 6px;
}
.form-data span.wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form-data span.wpcf7-list-item-label:before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 3px solid #EDEDED;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}
.form-data span.wpcf7-list-item-label:after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #3BA7C1;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.form-data .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #C91127;
}
.form-data input.wpcf7-not-valid {
  border: 1px solid #C91127;
}
.form-agree-block {
  margin-top: 28px;
}
.form-agree-check {
  position: relative;
}
.form-agree-check br {
  display: none;
}
.form-agree-check .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-agree-check .wpcf7-list-item {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  margin-left: 0;
}
.form-agree-check .wpcf7-list-item:before {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  border: 2px solid #BCBCBC;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-agree-check .wpcf7-list-item:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-size: cover;
  position: absolute;
  top: 6px;
  left: 5px;
  z-index: 2;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-agree-check .wpcf7-list-item:has(input:checked):before {
  background-color: #3BA7C1;
}
.form-agree-check .wpcf7-list-item:has(input:checked):after {
  opacity: 1;
}
.form-agree-check input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.form-agree-check input:hover {
  cursor: pointer;
}
.form-agree-txt {
  font-size: 14px;
  line-height: 1.9285714286;
  font-weight: 700;
  padding-left: 32px;
  display: block;
}
.form-agree-txt-link {
  color: #3BA7C1;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 4px;
}

/* =========================================================
 State
========================================================= */
/* =========================================================
 Base
========================================================= */
/* ==============================
  state/state
================================= */
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-inner.is-open .header-nav-sp {
  opacity: 1;
  visibility: visible;
  z-index: 50;
  position: absolute;
  top: 0;
  width: 100%;
}
.header-inner.is-open .header-menu-btn {
  background-color: #7DD2DF;
  border-color: #7DD2DF;
}
.header-inner.is-open .header-menu-btn span {
  background-color: #FFF;
}
.header-inner.is-open .header-menu-btn-1 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(315deg);
          transform: translate(-50%, -50%) rotate(315deg);
}
.header-inner.is-open .header-menu-btn-3 {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-315deg);
          transform: translate(-50%, -50%) rotate(-315deg);
}

.acd-ttl-btn.is-open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.faq-title-button.is-open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
/*# sourceMappingURL=style.css.map */
