/*****************/
/**** reset *****/
/*****************/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.6s ease;
}
a:hover {
  opacity: 0.6;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

img {
  height: auto;
}

.wp-block-table td {
  border: none;
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

.desc {
  line-height: 1.6;
}

/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  /*****************/
  /***  parts  ***/
  /*****************/
  a[href*=tel] {
    pointer-events: none;
  }
  section {
    position: relative;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #content {
    line-height: 1.6;
  }
  #content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  #content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  #content p {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  /*****************/
  /*** fixed  ***/
  /*****************/
  .totop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 500;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background-color: #13467E;
    cursor: pointer;
    transform: translateY(200px);
    transition: all 0.6s ease;
  }
  .totop.active {
    transform: translateY(0);
  }
  .totop:hover {
    opacity: 1;
  }
  .totop:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .nav {
    max-width: 350px;
    width: 100%;
    height: 100vh;
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 950;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateX(100%);
    transition: all 0.6s ease;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav ul {
    width: 100%;
    margin: auto;
    border-top: 1px solid #13467E;
    padding-top: 20px;
  }
  .nav ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #13467E;
  }
  .nav ul li:last-child {
    margin-bottom: 0;
  }
  .nav ul li a {
    font-size: 1.6rem;
    color: #13467E;
    font-size: 500;
    text-align: center;
  }
  .humburger-wrapper {
    position: fixed;
    top: 0;
    right: 50px;
    z-index: 999;
    height: 100px;
    display: flex;
  }
  .humburger-wrapper .humburger-menu {
    margin: auto;
    width: 54px;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #13467E;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
  }
  .humburger-wrapper .humburger-menu.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
    width: 22px;
  }
  .humburger-wrapper .humburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .humburger-wrapper .humburger-menu.active span:last-child {
    width: 22px;
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .humburger-wrapper .humburger-menu span {
    width: 19px;
    height: 3px;
    background-color: #13467E;
    margin-bottom: 3px;
    transition: all 0.6s ease;
  }
  .humburger-wrapper .humburger-menu span:last-child {
    margin-bottom: 0;
  }
  /*****************/
  /*** header  ***/
  /*****************/
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .header-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo {
    width: 160px;
  }
  .header-sub {
    font-size: 1.7rem;
    font-weight: bold;
    color: #333333;
    margin-left: 20px;
    margin-bottom: 3px;
    font-weight: 600;
    line-height: 1.6;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
  }
  .header-right {
    margin-right: 75px;
  }
  .header-contact {
    width: 174px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFD600;
    border-radius: 40px;
    font-size: 1.8rem;
    color: #333333;
    font-weight: 600;
    background-color: #FFD600;
    transition: all 0.6s ease;
  }
  .header-contact:hover {
    background-color: white;
    opacity: 1;
  }
  .header-contact::before {
    content: "";
    margin-top: 3px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    margin-right: 10px;
  }
  /*****************/
  /****   footer   *****/
  /*****************/
  .footer {
    padding: 56px 50px 44px;
  }
  .footer-content {
    padding-bottom: 44px;
    border-bottom: 1px solid #13467E;
  }
  .footer-content__logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
  }
  .footer-content__logo img {
    width: 160px;
    margin-right: 12px;
  }
  .footer-content__corporate {
    margin-top: 21px;
    display: flex;
    align-items: center;
  }
  .footer-content__corporate img {
    width: 70px;
    margin-right: 9px;
  }
  .footer-content__corporate p {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
  }
  .footer-content__corporate p span {
    display: block;
    margin-top: 5px;
    font-size: 1.5rem;
    color: #008785;
  }
  .footer-copyright {
    margin-top: 36px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  /*****************/
  /***  parts  ***/
  /*****************/
  section {
    position: relative;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #content {
    line-height: 1.6;
  }
  #content h1 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
  #content h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  #content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  /*****************/
  /*** fixed  ***/
  /*****************/
  .fixed-bottom {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 300;
    background-color: white;
  }
  .totop {
    position: fixed;
    bottom: 65px;
    right: 30px;
    z-index: 500;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #13467E;
    cursor: pointer;
    transform: translateY(100px);
    transition: all 0.6s ease;
  }
  .totop.active {
    transform: translateY(0);
  }
  .totop:hover {
    opacity: 1;
  }
  .totop:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .nav {
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background-color: #F5F5F5;
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    transform: translateX(100%);
    transition: all 0.6s ease;
    z-index: 950;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav ul {
    width: 100%;
    margin: auto;
    border-top: 1px solid #13467E;
    padding-top: 20px;
  }
  .nav ul li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #13467E;
  }
  .nav ul li:last-child {
    margin-bottom: 0;
  }
  .nav ul li a {
    font-size: 1.6rem;
    color: #13467E;
    font-size: 500;
    text-align: center;
  }
  .humburger-wrapper {
    position: fixed;
    top: 11px;
    right: 5px;
    z-index: 999;
    height: 70px;
    display: flex;
  }
  .humburger-wrapper .humburger-menu {
    margin: auto;
    width: 54px;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #13467E;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
  }
  .humburger-wrapper .humburger-menu.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
    width: 22px;
  }
  .humburger-wrapper .humburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .humburger-wrapper .humburger-menu.active span:last-child {
    width: 22px;
    transform: rotate(-45deg) translate(4px, -4px);
  }
  .humburger-wrapper .humburger-menu span {
    width: 19px;
    height: 3px;
    background-color: #13467E;
    margin-bottom: 3px;
    transition: all 0.6s ease;
  }
  .humburger-wrapper .humburger-menu span:last-child {
    margin-bottom: 0;
  }
  /*****************/
  /*** header  ***/
  /*****************/
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-logo {
    width: 121px;
  }
  .header-sub {
    font-size: 1rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 2px;
    font-weight: 500;
    line-height: 1.6;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
  }
  .header-right {
    margin-right: 60px;
    position: fixed;
    bottom: 12px;
    left: 50%;
    z-index: 900;
    transform: translateX(-50%);
  }
  .header-contact {
    width: 121px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFD600;
    border-radius: 30px;
    font-size: 1.5rem;
    color: #333333;
    font-weight: 600;
    background-color: #FFD600;
    transition: all 0.6s ease;
  }
  .header-contact:hover {
    background-color: white;
    opacity: 1;
  }
  .header-contact::before {
    content: "";
    margin-top: 3px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    margin-right: 5px;
  }
  /*****************/
  /****   footer   *****/
  /*****************/
  .footer {
    padding: 80px 20px;
  }
  .footer-content {
    padding-bottom: 20px;
    border-bottom: 1px solid #13467E;
  }
  .footer-content__logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "MS PGothic", sans-serif;
  }
  .footer-content__logo img {
    margin-bottom: 5px;
    width: 150px;
  }
  .footer-content__corporate {
    margin-top: 25px;
    display: flex;
    align-items: center;
  }
  .footer-content__corporate img {
    width: 40px;
    margin-right: 9px;
  }
  .footer-content__corporate p {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
  }
  .footer-content__corporate p span {
    display: block;
    margin-top: 5px;
    font-size: 1.3rem;
    color: #008785;
  }
  .footer-copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #front {
    /*****************/
    /****   parts   *****/
    /*****************/
  }
  #front .section-ttl {
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 4.6rem;
    font-weight: 900;
  }
  #front .section-ttl::before {
    content: "";
    height: 7px;
    width: 100%;
    display: block;
    background: linear-gradient(to right, transparent, #13467E);
    margin-right: 30px;
  }
  #front .section-ttl::after {
    display: block;
    width: 100%;
    content: "";
    height: 7px;
    background: linear-gradient(to right, #13467E, transparent);
    margin-left: 30px;
  }
  #front {
    /*****************/
    /****   hero   *****/
    /*****************/
  }
  #front .hero {
    padding-top: 30px;
    padding-bottom: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #front .hero-left {
    width: 40%;
    margin-left: 8%;
  }
  #front .hero-left h1 img {
    width: 506px;
  }
  #front .hero-left__main {
    margin-top: 21px;
    font-size: 6.3rem;
    font-weight: 900;
    line-height: 1.2;
  }
  #front {
    /*****************/
    /****   about   *****/
    /*****************/
    /*****************/
    /****   feature   *****/
    /*****************/
    /*****************/
    /****   solve-problem   *****/
    /*****************/
    /*****************/
    /****   plan   *****/
    /*****************/
    /*****************/
    /****   customize   *****/
    /*****************/
    /*****************/
    /****   scene   *****/
    /*****************/
    /*****************/
    /****   fee   *****/
    /*****************/
    /*****************/
    /****   support   *****/
    /*****************/
    /*****************/
    /****   flow   *****/
    /*****************/
    /*****************/
    /****   faq   *****/
    /*****************/
    /*****************/
    /****   contact   *****/
    /*****************/
  }
}
@media screen and (min-width: 769px) and (min-width: 1800px) {
  #front .hero-left__main {
    font-size: 7rem;
  }
}
@media screen and (min-width: 769px) {
  #front .hero-left__sub {
    margin-top: 20px;
    font-size: 2.8rem;
    font-weight: 600;
    color: #0E62C5;
  }
  #front .hero-right {
    width: 49%;
    height: 621px;
    background-image: url(../img/hero-right.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 130px 0 0 130px;
    position: relative;
  }
  #front .hero-right__container {
    width: 92%;
    position: absolute;
    left: 0;
    bottom: -10%;
  }
  #front .about {
    background-color: #13467E;
    padding-top: 47px;
  }
  #front .about .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  #front .about-left {
    padding-bottom: 75px;
    max-width: 630px;
  }
  #front .about-logo {
    margin: 0 auto;
    width: 230px;
  }
  #front .about-main {
    margin-top: 20px;
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: white;
  }
  #front .about-sub {
    margin-top: 40px;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: white;
  }
  #front .about-right {
    width: 45%;
    margin-left: 3%;
  }
  #front .feature {
    background-image: url(../img/featuer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 52px;
    padding-bottom: 65px;
  }
  #front .feature-ttl {
    text-align: center;
    font-weight: 900;
    font-size: 4.2rem;
    color: #023A6C;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  #front .feature-ttl img {
    display: inline-block;
  }
  #front .feature-sub {
    margin-top: 27px;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
  }
  #front .feature-illust {
    margin: 42px auto 0;
    max-width: 956px;
    width: 100%;
  }
  #front .feature-list {
    margin-top: 81px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 1%;
    padding-right: 1%;
  }
  #front .feature-list__item {
    margin-bottom: 27px;
    flex-shrink: 0;
    width: 49%;
    max-width: 578px;
    border: 5px solid #13467E;
    border-radius: 17px;
    background-color: white;
    padding: 30px 27px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
  }
  #front .feature-list__ttl {
    text-align: center;
    font-size: 2.1rem;
    font-weight: bold;
    color: #13467E;
    padding-bottom: 16px;
    border-bottom: 2px solid #13467E;
  }
  #front .feature-list__desc {
    margin-top: 20px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
  }
  #front .solve-problem .problem {
    padding-top: 63px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
  }
  #front .solve-problem .problem::before {
    width: 50%;
    height: 10vw;
    background-color: white;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: skewY(10deg) translateY(50%);
  }
  #front .solve-problem .problem::after {
    width: 50%;
    height: 10vw;
    background-color: white;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: skewY(-10deg) translateY(50%);
  }
  #front .solve-problem .problem img {
    margin: 0 auto;
    max-width: 1430px;
    width: 95%;
    position: relative;
    z-index: 5;
  }
  #front .solve-problem .solve {
    margin-top: 80px;
  }
  #front .solve-problem .solve-ttl {
    text-align: center;
    padding-left: 7%;
    padding-right: 7%;
  }
  #front .solve-problem .solve-ttl__top {
    font-size: 4.6rem;
    font-weight: bold;
  }
  #front .solve-problem .solve-ttl__top span.blue {
    color: #0E62C5;
  }
  #front .solve-problem .solve-ttl__top span.green {
    color: #16B79B;
  }
  #front .solve-problem .solve-ttl__bottom {
    margin: 20px auto;
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
  }
  #front .solve-problem .solve-ttl__bottom img.logibility {
    width: 348px;
  }
  #front .solve-problem .solve-ttl__last {
    position: relative;
  }
  #front .solve-problem .solve-ttl__last img.bikkuri {
    width: 78px;
    position: absolute;
    right: -50px;
    bottom: -35px;
  }
  #front .solve-problem .solve-list {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
  }
  #front .solve-problem .solve-list__item {
    flex-shrink: 0;
    margin-left: 1.5%;
    width: 31%;
    margin-bottom: 20px;
    min-width: 380px;
    border: 3px solid #13467E;
    border-radius: 17px;
    background-color: white;
    padding: 24px 20px 35px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
  }
  #front .solve-problem .solve-list__item.green {
    border-color: #16B79B;
  }
  #front .solve-problem .solve-list__item.green .solve-list__ttl {
    color: #16B79B;
    border-color: #16B79B;
  }
  #front .solve-problem .solve-list__item.item1 .solve-child {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  #front .solve-problem .solve-list__item.item2 .solve-child {
    width: 266px;
    margin-left: auto;
    margin-right: auto;
  }
  #front .solve-problem .solve-list__item.item3 .solve-child {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  #front .solve-problem .solve-list__item.item6 .solve-child {
    width: 261px;
    margin-left: auto;
    margin-right: auto;
  }
  #front .solve-problem .solve-list__ttl {
    font-size: 2.4rem;
    color: #13467E;
    text-align: center;
    font-weight: bold;
    padding-bottom: 30px;
    border-bottom: 2px solid #13467E;
  }
  #front .solve-problem .solve-child {
    margin-top: 24px;
  }
  #front .solve-problem .solve-child__item {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
  }
  #front .solve-problem .solve-child__item span {
    position: absolute;
    font-size: 1.3rem;
    left: 24px;
    bottom: -5px;
    transform: translateY(100%);
  }
  #front .solve-problem .solve-child__item.no-icon {
    color: #0E62C5;
  }
  #front .solve-problem .solve-child__item.no-icon::before {
    display: none !important;
  }
  #front .solve-problem .solve-child__item:last-child {
    margin-bottom: 0;
  }
  #front .solve-problem .solve-child__item::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/solve-child__item-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
  }
  #front .plan {
    margin-top: 100px;
  }
  #front .plan-ttl img {
    display: inline-block;
    width: 323px;
  }
  #front .plan-sub {
    margin-top: 25px;
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
  }
  #front .plan-sub span {
    color: #199DD6;
  }
  #front .plan-lead {
    margin-top: 62px;
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
  }
  #front .plan-desc {
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
  }
  #front .plan-work {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #front .plan-work__wrapper {
    margin-top: 45px;
    background-color: #F5F5F5;
    border-radius: 5px;
    padding: 37px 30px 44px;
  }
  #front .plan-work__logo {
    width: 299px;
    margin: 0 auto;
  }
  #front .plan-work__item {
    min-width: 360px;
    width: 31%;
    margin-left: 1.5%;
    border: 3px solid;
    margin-bottom: 15px;
    position: relative;
    padding: 30px 10px 25px;
    min-height: 252px;
  }
  #front .plan-work__item.item1 {
    border-color: #0E62C5;
  }
  #front .plan-work__item.item1 .plan-child__item {
    background-color: #0E62C5;
  }
  #front .plan-work__item.item2 {
    border-color: #F96718;
  }
  #front .plan-work__item.item2 .plan-child__item {
    background-color: #F96718;
  }
  #front .plan-work__item.item3 {
    border-color: #16B79B;
  }
  #front .plan-work__item.item3 .plan-child__item {
    background-color: #16B79B;
  }
  #front .plan-work__ttl {
    position: absolute;
    font-size: 2.4rem;
    font-weight: 500;
    top: 0;
    left: 50%;
    background-color: #F5F5F5;
    padding: 5px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  #front .plan-child {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 7px;
    flex-wrap: wrap;
  }
  #front .plan-child__item {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
  }
  #front .plan-function__ttl {
    text-align: center;
    margin-top: 40px;
    font-size: 3.6rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #front .plan-function__ttl::before {
    content: "";
    display: block;
    width: 31px;
    height: 31px;
    background-image: url(../img/plan-funciton__ttl-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
  }
  #front .plan-function__ttl::after {
    content: "";
    display: block;
    width: 31px;
    height: 31px;
    background-image: url(../img/plan-funciton__ttl-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 15px;
  }
  #front .plan-function {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }
  #front .plan-function__item {
    min-width: 380px;
    width: 31%;
    margin-left: 1.5%;
    margin-bottom: 15px;
    position: relative;
    padding: 20px 10px 30px;
    background-color: #F5F5F5;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #front .plan-function__img {
    flex-shrink: 0;
    width: 144px;
  }
  #front .plan-child02 {
    margin-left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
  }
  #front .plan-child02__item {
    flex-shrink: 0;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
  }
  #front .plan-child02__item.blue {
    background-color: #0E62C5;
  }
  #front .plan-child02__item.orange {
    background-color: #F96718;
  }
  #front .plan-child02__item.green {
    background-color: #16B79B;
  }
  #front .plan-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
  }
  #front .customize {
    margin-top: 118px;
    padding-bottom: 50px;
  }
  #front .customize-ttl::before {
    width: 37%;
  }
  #front .customize-ttl::after {
    width: 37%;
  }
  #front .customize-ttl__inner {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.2;
  }
  #front .customize-ttl__inner img {
    display: inline-block;
    width: 323px;
  }
  #front .customize-sub.sub01 {
    margin-top: 52px;
  }
  #front .customize-sub.sub02 {
    margin-top: 94px;
  }
  #front .customize-sub {
    display: flex;
    align-items: center;
  }
  #front .customize-sub__number {
    flex-shrink: 0;
    width: 77px;
    height: 77px;
    background-color: #16B79B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.6rem;
    font-weight: 500;
    color: white;
    padding-bottom: 7px;
  }
  #front .customize-sub__right {
    margin-left: 25px;
  }
  #front .customize-sub__ttl {
    color: #16B79B;
    font-size: 2.4rem;
    font-weight: bold;
  }
  #front .customize-sub__desc {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 500;
  }
  #front .customize-mapping {
    margin: 61px auto 0;
    max-width: 816px;
    width: 95%;
  }
  #front .customize-list {
    margin-top: 72px;
    display: flex;
    flex-wrap: wrap;
  }
  #front .customize-list__item {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid #16B79B;
    margin-bottom: 20px;
    flex-shrink: 0;
    width: 285px;
  }
  #front .customize-list__item:last-child {
    padding-right: 0;
    margin-right: 0;
    border: none;
  }
  #front .customize-list__ttl {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #16B79B;
  }
  #front .customize-list__ttl span {
    background-color: #16B79B;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    margin-right: 2px;
    padding-bottom: 2px;
  }
  #front .customize-list__desc {
    margin-top: 7px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #front .scene-ttl img {
    width: 348px;
  }
  #front .scene-list {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #front .scene-list__item {
    flex-shrink: 0;
    width: 400px;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
  #front .scene-list__item.item1 img {
    width: 234px;
  }
  #front .scene-list__item.item2 img {
    width: 169px;
  }
  #front .scene-list__item.item3 img {
    width: 245px;
  }
  #front .scene-list__item.item4 img {
    width: 182px;
  }
  #front .scene-list__item.item5 img {
    width: 177px;
  }
  #front .scene-list__item.item6 img {
    width: 136px;
  }
  #front .scene-list__img {
    margin-bottom: 50px;
  }
  #front .scene-list__ttl {
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
    color: #13467E;
    line-height: 1.6;
    white-space: nowrap;
  }
  #front .scene-list__desc {
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 500;
    min-height: 100px;
  }
  #front .fee {
    margin-top: 60px;
    padding-bottom: 47px;
  }
  #front .fee-list {
    margin-top: 82px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #front .fee-list__item {
    min-width: 380px;
    width: 31%;
    margin-left: 1.5%;
    border: 6px solid #D6D6D6;
    margin-bottom: 25px;
    position: relative;
    border-radius: 17px;
    padding: 30px;
    min-height: 347px;
  }
  #front .fee-list__ttl {
    font-size: 2.4rem;
    font-weight: bold;
    padding: 13px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 16px;
    transform: translateY(-50%);
  }
  #front .fee-list .fee-initial {
    padding: 30px 60px 50px;
    border-color: #FFD600;
  }
  #front .fee-list .fee-initial__cost {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  #front .fee-list .fee-initial__left {
    padding-bottom: 10px;
  }
  #front .fee-list .fee-initial__left p {
    font-size: 4rem;
    font-weight: bold;
  }
  #front .fee-list .fee-initial__left p.top {
    padding-bottom: 13px;
    border-bottom: 1px solid #333333;
  }
  #front .fee-list .fee-initial__left p.bottom {
    padding-top: 13px;
  }
  #front .fee-list .fee-initial__right {
    font-size: 18rem;
    font-weight: 900;
    margin-left: 10px;
  }
  #front .fee-list .fee-initial__right span {
    font-size: 4rem;
  }
  #front .fee-list .fee-initial__desc {
    margin-top: 35px;
    font-size: 1.6rem;
  }
  #front .fee-list .fee-running__cost {
    margin-top: 30px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  #front .fee-list .fee-running__left {
    font-size: 1.6rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #front .fee-list .fee-running__left span {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  #front .fee-list .fee-running__right {
    margin-left: 5px;
    font-size: 5.5rem;
    font-weight: 900;
  }
  #front .fee-list .fee-running__right span {
    font-size: 4rem;
  }
  #front .fee-list .fee-running__note {
    margin-top: 24px;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #FFD600;
    padding: 5px 10px;
    line-height: 1.4;
  }
  #front .fee-list .fee-running__desc {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 500;
  }
  #front .fee-list .fee-charge__list {
    margin-top: 40px;
  }
  #front .fee-list .fee-charge__item {
    position: relative;
    font-size: 1.8rem;
    font-weight: 500;
    padding-left: 52px;
    margin-bottom: 37px;
    height: 39px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    padding-top: 6px;
  }
  #front .fee-list .fee-charge__item:first-child {
    padding-top: 0;
  }
  #front .fee-list .fee-charge__item:last-child {
    margin-bottom: 0;
  }
  #front .fee-list .fee-charge__item::before {
    content: "";
    display: block;
    width: 39px;
    height: 39px;
    background-image: url(../img/fee-charge__item-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #front .fee-list .fee-charge__item span {
    margin-top: 3px;
    display: block;
    font-size: 1.5rem;
    white-space: nowrap;
  }
  #front .fee-small {
    font-size: 1.8rem;
    font-weight: 500;
  }
  #front .support {
    background-color: #F5F5F5;
    padding-top: 97px;
    padding-bottom: 100px;
  }
  #front .support-inner {
    width: 95%;
    margin: 0 auto;
    max-width: 1313px;
    background-color: white;
    padding: 88px 95px 107px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
  }
  #front .support-img {
    width: 37%;
    position: absolute;
    right: -2%;
    bottom: -9%;
  }
  #front .support-main {
    width: 65%;
  }
  #front .support-ttl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #front .support-ttl__left p {
    color: #13467E;
    font-size: 3.3rem;
    font-weight: bold;
  }
  #front .support-ttl__left p.big {
    font-size: 8.3rem;
    margin-bottom: 5px;
  }
  #front .support-ttl__right {
    margin-top: 1%;
    margin-left: 1%;
    font-size: 3.8rem;
    font-weight: bold;
  }
  #front .support-lead {
    margin-top: 39px;
    color: #13467E;
    font-size: 2.7rem;
    font-weight: 500;
  }
  #front .support-desc {
    margin-top: 40px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  #front .flow {
    padding-top: 88px;
    padding-bottom: 100px;
  }
  #front .flow-ttl {
    font-size: 3.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  #front .flow-ttl:after {
    margin-left: 20px;
    content: "";
    display: block;
    width: 344px;
    height: 7px;
    background: linear-gradient(to right, #13467E, transparent);
  }
  #front .flow-process__list {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
  }
  #front .flow-process__item {
    width: 240px;
    flex-shrink: 0;
    padding-right: 45px;
    margin-bottom: 20px;
  }
  #front .flow-process__item:last-child {
    padding-right: 0;
  }
  #front .flow-process__item:last-child .flow-process__desc::before {
    display: none !important;
  }
  #front .flow-process__ttl {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #13467E;
    line-height: 1.2;
    white-space: nowrap;
  }
  #front .flow-process__ttl span {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #13467E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.3rem;
    font-weight: 500;
    margin-right: 14px;
  }
  #front .flow-process__desc {
    margin-top: 19px;
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    min-height: 54px;
  }
  #front .flow-process__desc::before {
    content: "";
    display: block;
    width: 10px;
    height: 44px;
    background-image: url(../img/flow-process__desc-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
  }
  #front .flow-support {
    margin-top: 167px;
  }
  #front .flow-support__list {
    margin-top: 58px;
    display: flex;
    flex-wrap: wrap;
  }
  #front .flow-support__item {
    width: 240px;
    flex-shrink: 0;
    padding-right: 25px;
    margin-bottom: 20px;
  }
  #front .flow-support__item:last-child {
    padding-right: 0;
  }
  #front .flow-support__item:last-child .flow-support__desc {
    white-space: nowrap;
  }
  #front .flow-support__ttl {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #13467E;
    line-height: 1.2;
  }
  #front .flow-support__ttl:before {
    content: "";
    display: block;
    width: 47px;
    height: 53px;
    background-image: url(../img/flow-support__ttl-before.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 11px;
  }
  #front .flow-support__desc {
    margin-top: 24px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #front .flow-support__desc span {
    font-size: 1.3rem;
    font-weight: 500;
    margin-left: 15px;
  }
  #front .faq {
    background-color: #F5F5F5;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  #front .faq-ttl {
    font-size: 3.6rem;
    font-weight: bold;
  }
  #front .faq-list {
    margin-top: 42px;
  }
  #front .faq-list__item {
    background-color: white;
    border-radius: 46px;
    border: 2px solid #333333;
    padding: 30px;
    margin-bottom: 20px;
  }
  #front .faq-list__item:last-child {
    margin-bottom: 0;
  }
  #front .faq-list__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  #front .faq-list__question:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    margin-right: 20px;
  }
  #front .faq-list__question p {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
  }
  #front .faq-list__question p::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../img/faq-list__question-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 16px;
  }
  #front .faq-list__answer {
    padding: 48px;
    padding-bottom: 0px;
    font-size: 1.8rem;
  }
  #front .contact {
    padding-top: 12.5vw;
    padding-bottom: 86px;
    background-image: url(../img/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  #front .contact-before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 110%;
    max-width: none;
    transform: translate(-50%, -50%);
  }
  #front .contact-ttl {
    margin: 0 auto;
    width: 314px;
  }
  #front .contact-buttons {
    margin-top: 31px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  #front .contact-buttons__item {
    max-width: 567px;
    min-height: 410px;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 86px;
    border-radius: 17px;
    border: 6px solid;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    background-color: white;
    border-color: white;
    transition: all 0.6s ease;
  }
  #front .contact-buttons__item:hover {
    opacity: 1;
  }
  #front .contact-buttons__item h3 {
    font-size: 3.3rem;
    font-weight: bold;
    line-height: 1.3;
    font-weight: 900;
    text-align: center;
    color: #333;
  }
  #front .contact-buttons__item p {
    margin-top: 3%;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
  }
  #front .contact-buttons__item .cta {
    margin-top: 3%;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 26px;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
  }
  #front .contact-buttons__item .cta img {
    margin-right: 5px;
  }
  #front .contact-buttons__document {
    display: none;
  }
  #front .contact-buttons__document:hover {
    border-color: #13467E;
  }
  #front .contact-buttons__document h3 {
    color: #13467E;
  }
  #front .contact-buttons__document .cta {
    background-color: #13467E;
    color: white;
    line-height: 1.3;
  }
  #front .contact-buttons__document .cta img {
    width: 22px;
  }
  #front .contact-buttons__contact {
    width: 100%;
    max-width: none;
  }
  #front .contact-buttons__contact:hover {
    border-color: #FFD600;
  }
  #front .contact-buttons__contact:hover .cta {
    background-color: white;
  }
  #front .contact-buttons__contact .tel {
    margin-top: 3%;
    color: #333;
    font-size: 4.2rem;
    font-weight: 600;
  }
  #front .contact-buttons__contact .tel span {
    font-weight: bold;
    font-size: 2.6rem;
  }
  #front .contact-buttons__contact .cta {
    border: 2px solid #FFD600;
    background-color: #FFD600;
    transition: all 0.6s ease;
  }
  #front .contact-buttons__contact .cta::before {
    content: "";
    margin-top: 3px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    margin-right: 10px;
  }
}
/*****************/
/****  SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #front {
    /*****************/
    /****   parts   *****/
    /*****************/
  }
  #front .section-ttl {
    margin-left: 5px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 2.6rem;
    font-weight: 900;
  }
  #front .section-ttl img {
    width: 200px;
  }
  #front .section-ttl::before {
    content: "";
    height: 7px;
    width: 100%;
    display: block;
    background: linear-gradient(to right, transparent, #13467E);
    margin-right: 5px;
  }
  #front .section-ttl::after {
    display: block;
    width: 100%;
    content: "";
    height: 7px;
    background: linear-gradient(to right, #13467E, transparent);
    margin-left: 5px;
  }
  #front {
    /*****************/
    /****   hero   *****/
    /*****************/
  }
  #front .hero {
    padding-top: 15px;
    padding-bottom: 93px;
    padding-left: 28px;
  }
  #front .hero-left h1 img {
    width: 274px;
  }
  #front .hero-left__main {
    margin-top: 10px;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.4;
  }
  #front .hero-left__sub {
    font-size: 1.6rem;
    font-weight: 600;
    color: #0E62C5;
  }
  #front .hero-right {
    margin-top: 30px;
    height: 90vw;
    max-height: 337px;
    background-image: url(../img/hero-right.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 60px 0 60px;
    position: relative;
  }
  #front .hero-right__container {
    width: 92%;
    max-width: 500px;
    position: absolute;
    left: 0;
    bottom: -10%;
  }
  #front {
    /*****************/
    /****   about   *****/
    /*****************/
  }
  #front .about {
    background-color: #13467E;
    padding-top: 35px;
  }
  #front .about-logo {
    margin: 0 auto;
    width: 230px;
  }
  #front .about-main {
    margin-top: 15px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
  }
  #front .about-sub {
    margin-top: 25px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
  }
  #front .about-right {
    margin: 30px auto 0;
    width: 80%;
  }
  #front {
    /*****************/
    /****   feature   *****/
    /*****************/
  }
  #front .feature {
    background-image: url(../img/featuer-bgSP.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #front .feature-ttl {
    text-align: center;
    font-weight: 900;
    font-size: 2.6rem;
    color: #023A6C;
    line-height: 1.6;
  }
  #front .feature-ttl img {
    width: 200px;
    display: inline-block;
  }
  #front .feature-sub {
    margin-top: 13px;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.6;
  }
  #front .feature-illust {
    margin: 32px auto 0;
    width: 100%;
  }
  #front .feature-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #front .feature-list__item {
    margin-bottom: 15px;
    width: 100%;
    border: 3px solid #13467E;
    border-radius: 17px;
    background-color: white;
    padding: 20px 15px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
  }
  #front .feature-list__ttl {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #13467E;
    padding-bottom: 12px;
    border-bottom: 2px solid #13467E;
  }
  #front .feature-list__desc {
    margin-top: 12px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
  }
  #front {
    /*****************/
    /****   solve-problem   *****/
    /*****************/
  }
  #front .solve-problem .problem {
    padding-top: 40px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
  }
  #front .solve-problem .problem::before {
    width: 50%;
    height: 10vw;
    background-color: white;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: skewY(10deg) translateY(50%);
  }
  #front .solve-problem .problem::after {
    width: 50%;
    height: 10vw;
    background-color: white;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: skewY(-10deg) translateY(50%);
  }
  #front .solve-problem .problem img {
    margin: 0 auto;
    max-width: 1430px;
    width: 95%;
    position: relative;
    z-index: 5;
  }
  #front .solve-problem .solve {
    margin-top: 40px;
  }
  #front .solve-problem .solve-ttl {
    text-align: center;
    padding-left: 7%;
    padding-right: 7%;
  }
  #front .solve-problem .solve-ttl__top {
    font-size: 2rem;
    font-weight: bold;
  }
  #front .solve-problem .solve-ttl__top span.blue {
    color: #0E62C5;
  }
  #front .solve-problem .solve-ttl__top span.green {
    color: #16B79B;
  }
  #front .solve-problem .solve-ttl__bottom {
    margin: 20px auto;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
  }
  #front .solve-problem .solve-ttl__bottom img.logibility {
    width: 200px;
  }
  #front .solve-problem .solve-ttl__last {
    position: relative;
    margin-top: 10px;
  }
  #front .solve-problem .solve-ttl__last img.bikkuri {
    width: 30px;
    position: absolute;
    right: -25px;
    bottom: -5px;
  }
  #front .solve-problem .solve-list {
    margin-top: 30px;
  }
  #front .solve-problem .solve-list__item {
    flex-shrink: 0;
    width: 100%;
    border: 3px solid #13467E;
    border-radius: 17px;
    background-color: white;
    padding: 15px 20px 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
  }
  #front .solve-problem .solve-list__item.green {
    border-color: #16B79B;
  }
  #front .solve-problem .solve-list__item.green .solve-list__ttl {
    color: #16B79B;
    border-color: #16B79B;
  }
  #front .solve-problem .solve-list__ttl {
    font-size: 2rem;
    color: #13467E;
    text-align: center;
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 2px solid #13467E;
  }
  #front .solve-problem .solve-child {
    margin-top: 15px;
  }
  #front .solve-problem .solve-child__item {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
  }
  #front .solve-problem .solve-child__item span {
    position: absolute;
    font-size: 1rem;
    left: 24px;
    bottom: -2px;
    transform: translateY(100%);
  }
  #front .solve-problem .solve-child__item.no-icon {
    color: #0E62C5;
  }
  #front .solve-problem .solve-child__item.no-icon::before {
    display: none !important;
  }
  #front .solve-problem .solve-child__item:last-child {
    margin-bottom: 0;
  }
  #front .solve-problem .solve-child__item::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/solve-child__item-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
  }
  #front {
    /*****************/
    /****   plan   *****/
    /*****************/
  }
  #front .plan {
    margin-top: 50px;
  }
  #front .plan-ttl img {
    display: inline-block;
    width: 150px;
  }
  #front .plan-sub {
    margin-top: 15px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
  }
  #front .plan-sub span {
    color: #199DD6;
  }
  #front .plan-lead {
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
  }
  #front .plan-desc {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
  }
  #front .plan-work {
    margin-top: 25px;
  }
  #front .plan-work__wrapper {
    margin-top: 25px;
    background-color: #F5F5F5;
    border-radius: 5px;
    padding: 20px 25px;
  }
  #front .plan-work__logo {
    width: 200px;
    margin: 0 auto;
  }
  #front .plan-work__item {
    border: 3px solid;
    margin-bottom: 15px;
    position: relative;
    padding: 20px 10px;
  }
  #front .plan-work__item.item1 {
    border-color: #0E62C5;
  }
  #front .plan-work__item.item1 .plan-child__item {
    background-color: #0E62C5;
  }
  #front .plan-work__item.item2 {
    border-color: #F96718;
  }
  #front .plan-work__item.item2 .plan-child__item {
    background-color: #F96718;
  }
  #front .plan-work__item.item3 {
    border-color: #16B79B;
  }
  #front .plan-work__item.item3 .plan-child__item {
    background-color: #16B79B;
  }
  #front .plan-work__ttl {
    position: absolute;
    font-size: 1.8rem;
    font-weight: 500;
    top: 0;
    left: 50%;
    background-color: #F5F5F5;
    padding: 5px;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  #front .plan-child {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 7px;
    flex-wrap: wrap;
  }
  #front .plan-child__item {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
  }
  #front .plan-function__ttl {
    text-align: center;
    margin-top: 20px;
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #front .plan-function__ttl::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../img/plan-funciton__ttl-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
  }
  #front .plan-function__ttl::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../img/plan-funciton__ttl-icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
  }
  #front .plan-function {
    margin: 25px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
  }
  #front .plan-function__item {
    margin-bottom: 15px;
    position: relative;
    padding: 20px 10px;
    background-color: #F5F5F5;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 390px;
  }
  #front .plan-function__img {
    flex-shrink: 0;
    width: 120px;
  }
  #front .plan-child02 {
    margin-left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
  }
  #front .plan-child02__item {
    flex-shrink: 0;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
  }
  #front .plan-child02__item.blue {
    background-color: #0E62C5;
  }
  #front .plan-child02__item.orange {
    background-color: #F96718;
  }
  #front .plan-child02__item.green {
    background-color: #16B79B;
  }
  #front .plan-bottom {
    margin-top: 25px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #front {
    /*****************/
    /****   customize   *****/
    /*****************/
  }
  #front .customize {
    margin-top: 50px;
    padding-bottom: 30px;
  }
  #front .customize-ttl::before {
    width: 37%;
  }
  #front .customize-ttl::after {
    width: 37%;
  }
  #front .customize-ttl__inner {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.2;
  }
  #front .customize-ttl__inner img {
    display: inline-block;
    width: 200px;
    margin-bottom: 10px;
  }
  #front .customize-sub.sub01 {
    margin-top: 30px;
  }
  #front .customize-sub.sub02 {
    margin-top: 60px;
  }
  #front .customize-sub {
    display: flex;
    align-items: flex-start;
  }
  #front .customize-sub__number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-color: #16B79B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    color: white;
  }
  #front .customize-sub__right {
    margin-left: 15px;
  }
  #front .customize-sub__ttl {
    padding-top: 5px;
    color: #16B79B;
    font-size: 1.8rem;
    font-weight: bold;
  }
  #front .customize-sub__desc {
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #front .customize-mapping {
    margin: 30px auto 0;
    max-width: 816px;
    width: 95%;
  }
  #front .customize-list {
    margin-top: 30px;
    border-top: 1px solid #16B79B;
    padding-top: 15px;
  }
  #front .customize-list__item {
    border-bottom: 1px solid #16B79B;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  #front .customize-list__item:last-child {
    padding-right: 0;
    margin-right: 0;
  }
  #front .customize-list__ttl {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #16B79B;
  }
  #front .customize-list__ttl span {
    background-color: #16B79B;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    margin-right: 2px;
    padding-bottom: 2px;
  }
  #front .customize-list__desc {
    margin-top: 7px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  #front {
    /*****************/
    /****   scene   *****/
    /*****************/
  }
  #front .scene-ttl img {
    width: 150px;
  }
  #front .scene-list {
    margin-top: 40px;
  }
  #front .scene-list__item {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
  #front .scene-list__item.item1 img {
    width: 234px;
  }
  #front .scene-list__item.item2 img {
    width: 169px;
  }
  #front .scene-list__item.item3 img {
    width: 245px;
  }
  #front .scene-list__item.item4 img {
    width: 182px;
  }
  #front .scene-list__item.item5 img {
    width: 177px;
  }
  #front .scene-list__item.item6 img {
    width: 136px;
  }
  #front .scene-list__img {
    margin-bottom: 30px;
  }
  #front .scene-list__ttl {
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    color: #13467E;
    line-height: 1.6;
    white-space: nowrap;
  }
  #front .scene-list__desc {
    margin-bottom: 0;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #front {
    /*****************/
    /****   fee   *****/
    /*****************/
  }
  #front .fee {
    margin-top: 30px;
    padding-bottom: 25px;
  }
  #front .fee-ttl {
    font-size: 1.8rem;
  }
  #front .fee-list {
    margin: 40px auto 0;
    max-width: 353px;
  }
  #front .fee-list__item {
    border: 6px solid #D6D6D6;
    margin-bottom: 20px;
    position: relative;
    border-radius: 17px;
    padding: 25px 20px;
  }
  #front .fee-list__ttl {
    font-size: 2rem;
    font-weight: bold;
    padding: 13px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 8px;
    transform: translateY(-50%);
  }
  #front .fee-list .fee-initial {
    padding: 20px;
    padding-top: 10px;
    border-color: #FFD600;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #front .fee-list .fee-initial__cost {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  #front .fee-list .fee-initial__left {
    padding-bottom: 10px;
  }
  #front .fee-list .fee-initial__left p {
    font-size: 1.6rem;
    font-weight: bold;
  }
  #front .fee-list .fee-initial__left p.top {
    padding-bottom: 7px;
    border-bottom: 1px solid #333333;
  }
  #front .fee-list .fee-initial__left p.bottom {
    padding-top: 7px;
  }
  #front .fee-list .fee-initial__right {
    font-size: 11rem;
    font-weight: 900;
    margin-left: 5px;
    display: flex;
    align-items: flex-end;
  }
  #front .fee-list .fee-initial__right span {
    display: block;
    margin-left: -5px;
    font-size: 2.4rem;
  }
  #front .fee-list .fee-initial__desc {
    margin-left: 2%;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 130px;
  }
  #front .fee-list .fee-running {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    padding-right: 10px;
  }
  #front .fee-list .fee-running__wrap.wrap01 {
    padding-top: 15px;
  }
  #front .fee-list .fee-running__wrap.wrap02 {
    flex-shrink: 0;
    width: 168px;
    margin-left: 1%;
  }
  #front .fee-list .fee-running__cost {
    margin-top: 15px;
  }
  #front .fee-list .fee-running__left {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
  }
  #front .fee-list .fee-running__right {
    margin-top: 5px;
    font-size: 2.8rem;
    font-weight: 700;
  }
  #front .fee-list .fee-running__right span {
    font-size: 1.8rem;
  }
  #front .fee-list .fee-running__note {
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #FFD600;
    padding: 5px 7px;
    line-height: 1.6;
  }
  #front .fee-list .fee-running__desc {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
  }
  #front .fee-list .fee-charge {
    padding: 35px 20px;
  }
  #front .fee-list .fee-charge__list {
    margin-top: 20px;
  }
  #front .fee-list .fee-charge__item {
    position: relative;
    font-size: 1.3rem;
    font-weight: 500;
    padding-left: 52px;
    margin-bottom: 15px;
    height: 39px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #front .fee-list .fee-charge__item:first-child {
    padding-top: 0;
  }
  #front .fee-list .fee-charge__item:last-child {
    margin-bottom: 0;
  }
  #front .fee-list .fee-charge__item::before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background-image: url(../img/fee-charge__item-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #front .fee-list .fee-charge__item span {
    margin-top: 5px;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  #front .fee-small {
    font-size: 1.3rem;
    font-weight: 500;
  }
  #front {
    /*****************/
    /****   support   *****/
    /*****************/
  }
  #front .support {
    background-color: #F5F5F5;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #front .support-inner {
    width: 95%;
    margin: 0 auto;
    max-width: 1313px;
    background-color: white;
    padding: 30px 20px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column-reverse;
  }
  #front .support-img {
    width: 60%;
    margin: 20px auto 0;
  }
  #front .support-ttl__left {
    display: flex;
    align-items: center;
  }
  #front .support-ttl__left p {
    color: #13467E;
    font-size: 2.6rem;
    font-weight: bold;
  }
  #front .support-ttl__left p.big {
    font-size: 5rem;
    margin-bottom: 5px;
  }
  #front .support-ttl__right {
    margin-top: 1%;
    margin-left: 1%;
    font-size: 2.4rem;
    font-weight: bold;
  }
  #front .support-lead {
    margin-top: 20px;
    color: #13467E;
    font-size: 2rem;
    font-weight: 500;
  }
  #front .support-desc {
    margin-top: 20px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  #front {
    /*****************/
    /****   flow   *****/
    /*****************/
  }
  #front .flow {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  #front .flow-ttl {
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  #front .flow-ttl:after {
    margin-left: 10px;
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    background: linear-gradient(to right, #13467E, transparent);
  }
  #front .flow-process__list {
    margin-top: 50px;
  }
  #front .flow-process__item {
    margin: 0 auto;
    max-width: 300px;
    margin-bottom: 40px;
  }
  #front .flow-process__item:last-child .flow-process__desc::before {
    display: none !important;
  }
  #front .flow-process__ttl {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #13467E;
    line-height: 1.2;
  }
  #front .flow-process__ttl span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #13467E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 500;
    margin-right: 10px;
  }
  #front .flow-process__desc {
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
  }
  #front .flow-process__desc::before {
    content: "";
    display: block;
    width: 10px;
    height: 44px;
    background-image: url(../img/flow-process__desc-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    left: 15px;
    transform: translateY(100%) rotate(90deg);
  }
  #front .flow-support {
    margin-top: 80px;
  }
  #front .flow-support__list {
    margin: 30px auto 0;
    max-width: 300px;
  }
  #front .flow-support__item {
    margin-bottom: 20px;
  }
  #front .flow-support__ttl {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #13467E;
    line-height: 1.2;
  }
  #front .flow-support__ttl:before {
    content: "";
    display: block;
    width: 30px;
    height: 40px;
    background-image: url(../img/flow-support__ttl-before.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 11px;
  }
  #front .flow-support__desc {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  #front .flow-support__desc span {
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 10px;
    display: block;
  }
  #front {
    /*****************/
    /****   faq   *****/
    /*****************/
  }
  #front .faq {
    background-color: #F5F5F5;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #front .faq-ttl {
    font-size: 2.4rem;
    font-weight: bold;
  }
  #front .faq-list {
    margin-top: 25px;
  }
  #front .faq-list__item {
    background-color: white;
    border-radius: 20px;
    border: 2px solid #333333;
    padding: 15px 10px;
    margin-bottom: 15px;
  }
  #front .faq-list__item:last-child {
    margin-bottom: 0;
  }
  #front .faq-list__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  #front .faq-list__question:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    margin-right: 10px;
  }
  #front .faq-list__question p {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
  }
  #front .faq-list__question p::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../img/faq-list__question-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
  }
  #front .faq-list__answer {
    padding: 20px;
    font-size: 1.6rem;
  }
  #front {
    /*****************/
    /****   contact   *****/
    /*****************/
  }
  #front .contact {
    padding-top: 12.5vw;
    padding-bottom: 40px;
    background-image: url(../img/contact-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  #front .contact-before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 110%;
    max-width: none;
    transform: translate(-50%, -50%);
  }
  #front .contact-ttl {
    margin: 0 auto;
    width: 200px;
  }
  #front .contact-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  #front .contact-buttons__item {
    padding: 30px 20px;
    border-radius: 10px;
    border: 6px solid;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    background-color: white;
    border-color: white;
    transition: all 0.6s ease;
  }
  #front .contact-buttons__item:hover {
    opacity: 1;
  }
  #front .contact-buttons__item h3 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3;
    font-weight: 900;
    text-align: center;
    color: #333;
  }
  #front .contact-buttons__item p {
    margin-top: 3%;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
  }
  #front .contact-buttons__item .cta {
    margin-top: 3%;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 26px;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
  }
  #front .contact-buttons__item .cta img {
    margin-right: 5px;
  }
  #front .contact-buttons__document {
    display: none;
  }
  #front .contact-buttons__document:hover {
    border-color: #13467E;
  }
  #front .contact-buttons__document h3 {
    color: #13467E;
  }
  #front .contact-buttons__document .cta {
    background-color: #13467E;
    color: white;
    line-height: 1.3;
  }
  #front .contact-buttons__document .cta img {
    width: 22px;
  }
  #front .contact-buttons__contact {
    width: 100%;
    max-width: none;
  }
  #front .contact-buttons__contact:hover {
    border-color: #FFD600;
  }
  #front .contact-buttons__contact:hover .cta {
    background-color: white;
  }
  #front .contact-buttons__contact .tel {
    margin-top: 3%;
    color: #333;
    font-size: 3rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  #front .contact-buttons__contact .tel span {
    font-weight: bold;
    font-size: 2rem;
  }
  #front .contact-buttons__contact .cta {
    margin-top: 20px;
    border: 2px solid #FFD600;
    background-color: #FFD600;
    transition: all 0.6s ease;
  }
  #front .contact-buttons__contact .cta::before {
    content: "";
    margin-top: 2px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    transform: rotate(45deg);
    margin-right: 10px;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  .page-contact .container {
    display: flex;
    justify-content: space-between;
  }
  .page-contact .contact-left {
    max-width: 662px;
    width: 56%;
  }
  .page-contact .contact-ttl {
    font-size: 3.6rem;
    font-weight: bold;
  }
  .page-contact .contact-sub {
    margin-top: 15px;
    color: #0E62C5;
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.6;
  }
  .page-contact .contact-desc {
    margin-top: 30px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .page-contact .contact-tel {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .page-contact .contact-tel__left {
    width: 244px;
    flex-shrink: 0;
  }
  .page-contact .contact-tel__ttl {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .page-contact .contact-tel__link {
    margin-top: 10px;
    font-size: 4.2rem;
    font-weight: 500;
    color: #333333;
  }
  .page-contact .contact-tel__link span {
    font-size: 2.6rem;
    font-weight: bold;
  }
  .page-contact .contact-tel__time {
    margin-top: 15px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .page-contact .contact-privacy {
    margin-top: 100px;
  }
  .page-contact .contact-privacy__ttl {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .page-contact .contact-privacy__desc {
    margin-top: 14px;
    border: 1px solid #707070;
    padding: 28px 24px;
    height: 149px;
    overflow-y: scroll;
  }
  .page-contact .contact-privacy__desc .privacy-policy {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .page-contact .contact-privacy__desc .privacy-policy__intro {
    margin-bottom: 1.5em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__section {
    margin-bottom: 2em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__heading {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__list {
    margin-bottom: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__list dt {
    font-weight: bold;
    margin-top: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__list dd {
    margin-left: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__items {
    margin-bottom: 1em;
    margin-top: 0.5em;
    padding-left: 1.2em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__items li {
    margin-bottom: 0.25em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__contact {
    font-style: normal;
    line-height: 1.5;
    margin-top: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__date {
    font-size: 1.6rem;
    margin-top: 1em;
  }
  .page-contact .contact-privacy__desc a {
    color: #333333;
  }
  .page-contact .contact-right {
    width: 39%;
    max-width: 467px;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 54px 60px;
  }
  .page-contact .contact-right .wpcf7 label {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .page-contact .contact-right .wpcf7 select,
  .page-contact .contact-right .wpcf7 input,
  .page-contact .contact-right .wpcf7 textarea {
    line-height: 1.6;
    display: block;
    width: 100%;
    border: 1px solid #CDD6DD;
    background-color: white;
    padding: 12px 20px;
    margin-bottom: 2px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .page-contact .contact-right .wpcf7 select::placeholder,
  .page-contact .contact-right .wpcf7 input::placeholder,
  .page-contact .contact-right .wpcf7 textarea::placeholder {
    color: #9F9F9F;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .page-contact .contact-right .wpcf7 input.your-company {
    display: block;
    margin-top: 18px;
  }
  .page-contact .contact-right .wpcf7 input.your-tel {
    display: block;
  }
  .page-contact .contact-right .wpcf7 select,
  .page-contact .contact-right .wpcf7 textarea {
    margin-top: 12px;
  }
  .page-contact .contact-right .wpcf7 .select-wrap {
    position: relative;
  }
  .page-contact .contact-right .wpcf7 .select-wrap:after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 0;
    right: 15px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateY(20px) rotate(45deg);
  }
  .page-contact .contact-right .wpcf7 select {
    color: #333;
    appearance: none;
  }
  .page-contact .contact-right .wpcf7 label.message {
    display: block;
    margin-top: 30px;
  }
  .page-contact .contact-right .wpcf7 textarea {
    height: 170px;
    overflow-y: scroll;
    resize: none;
  }
  .page-contact .contact-right .wpcf7 .privacy-check {
    display: block;
  }
  .page-contact .contact-right .wpcf7 .privacy-check label {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-contact .contact-right .wpcf7 .privacy-check label input {
    width: 13px;
    height: 13px;
    margin-right: 10px;
    margin-bottom: 0;
    border-radius: 0;
    margin-top: 2px;
  }
  .page-contact .contact-right .wpcf7 .wpcf7-submit {
    margin-top: 22px;
    width: 100%;
    border: 2px solid #FF6E00;
    border-radius: 28px;
    padding: 19px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FF6E00;
    background-color: white;
    cursor: pointer;
  }
  .page-contact .contact-right .wpcf7 .wpcf7-not-valid-tip {
    font-size: 1.6rem;
  }
  .page-contact .contact-right .wpcf7 button {
    margin-top: 22px;
    width: 100%;
    color: #fff;
    border-radius: 28px;
    padding: 19px;
    font-size: 1.8rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #C1C1C1;
    line-height: 1.6;
    pointer-events: none;
    cursor: not-allowed;
  }
  .page-contact .contact-right .wpcf7 button.confirm.active {
    border: 2px solid #FF6E00;
    color: #FF6E00;
    background-color: white;
    pointer-events: auto;
    cursor: pointer;
  }
  .page-contact .contact-right .wpcf7 button.back {
    margin-top: 0;
    pointer-events: auto;
    cursor: pointer;
  }
  .page-contact .contact-right .wpcf7 .confirm-row {
    margin-bottom: 25px;
  }
  .page-contact .contact-right .wpcf7 .confirm-left {
    font-size: 1.8rem;
    font-weight: 500;
    font-weight: bold;
  }
  .page-contact .contact-right .wpcf7 .confirm-right {
    white-space: pre-wrap;
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
  }
  .page-contact .contact-right .wpcf7 .confirm-wrapper,
  .page-contact .contact-right .wpcf7 input[type=submit],
  .page-contact .contact-right .wpcf7 button.back {
    display: none;
  }
  #thanks .tohome {
    margin: 20px auto 0;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 26px;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    background-color: #13467E;
    color: white;
    max-width: 300px;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  .page-contact .container {
    padding-top: 20px;
  }
  .page-contact .contact-ttl {
    font-size: 2.4rem;
    font-weight: bold;
  }
  .page-contact .contact-sub {
    margin-top: 10px;
    color: #0E62C5;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.6;
  }
  .page-contact .contact-desc {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .page-contact .contact-tel {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .page-contact .contact-tel__left {
    width: 120px;
    flex-shrink: 0;
  }
  .page-contact .contact-tel__ttl {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .page-contact .contact-tel__link {
    margin-top: 10px;
    font-size: 3rem;
    font-weight: 500;
    color: #333333;
  }
  .page-contact .contact-tel__link span {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .page-contact .contact-tel__time {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .page-contact .contact-privacy {
    margin-top: 50px;
  }
  .page-contact .contact-privacy__ttl {
    font-size: 1.6rem;
    font-weight: 500;
  }
  .page-contact .contact-privacy__desc {
    margin-top: 14px;
    border: 1px solid #707070;
    padding: 20px 16px;
    height: 149px;
    overflow-y: scroll;
  }
  .page-contact .contact-privacy__desc .privacy-policy {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .page-contact .contact-privacy__desc .privacy-policy__intro {
    margin-bottom: 1.5em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__section {
    margin-bottom: 2em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__heading {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__list {
    margin-bottom: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__list dt {
    font-weight: bold;
    margin-top: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__list dd {
    margin-left: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__items {
    margin-bottom: 1em;
    margin-top: 0.5em;
    padding-left: 1.2em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__items li {
    margin-bottom: 0.25em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__contact {
    font-style: normal;
    line-height: 1.5;
    margin-top: 1em;
  }
  .page-contact .contact-privacy__desc .privacy-policy__date {
    font-size: 1.4rem;
    margin-top: 1em;
  }
  .page-contact .contact-privacy__desc a {
    color: #333333;
  }
  .page-contact .contact-right {
    margin-top: 30px;
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 35px 20px;
  }
  .page-contact .contact-right .wpcf7 label {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .page-contact .contact-right .wpcf7 select,
  .page-contact .contact-right .wpcf7 input,
  .page-contact .contact-right .wpcf7 textarea {
    line-height: 1.6;
    display: block;
    width: 100%;
    border: 1px solid #CDD6DD;
    background-color: white;
    padding: 7px 15px;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .page-contact .contact-right .wpcf7 select::placeholder,
  .page-contact .contact-right .wpcf7 input::placeholder,
  .page-contact .contact-right .wpcf7 textarea::placeholder {
    color: #9F9F9F;
    font-size: 1.4rem;
    font-weight: 500;
  }
  .page-contact .contact-right .wpcf7 input.your-company {
    display: block;
    margin-top: 20px;
  }
  .page-contact .contact-right .wpcf7 input.your-tel {
    display: block;
  }
  .page-contact .contact-right .wpcf7 .select-wrap {
    position: relative;
  }
  .page-contact .contact-right .wpcf7 .select-wrap:after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 0;
    right: 15px;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    transform: translateY(15px) rotate(45deg);
  }
  .page-contact .contact-right .wpcf7 select,
  .page-contact .contact-right .wpcf7 textarea {
    margin-top: 10px;
  }
  .page-contact .contact-right .wpcf7 select {
    appearance: none;
    color: #333;
  }
  .page-contact .contact-right .wpcf7 label.message {
    display: block;
    margin-top: 20px;
  }
  .page-contact .contact-right .wpcf7 textarea {
    height: 170px;
    overflow-y: scroll;
    resize: none;
  }
  .page-contact .contact-right .wpcf7 .privacy-check {
    display: block;
  }
  .page-contact .contact-right .wpcf7 .privacy-check label {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-contact .contact-right .wpcf7 .privacy-check label input {
    width: 13px;
    height: 13px;
    margin-right: 10px;
    margin-bottom: 0;
    border-radius: 0;
    margin-top: 2px;
  }
  .page-contact .contact-right .wpcf7 .wpcf7-submit {
    margin-top: 20px;
    width: 100%;
    border: 2px solid #FF6E00;
    border-radius: 28px;
    padding: 10px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: #FF6E00;
    background-color: white;
    cursor: pointer;
  }
  .page-contact .contact-right .wpcf7 .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
  .page-contact .contact-right .wpcf7 button {
    margin-top: 20px;
    width: 100%;
    color: #fff;
    border-radius: 28px;
    padding: 10px;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: #C1C1C1;
    line-height: 1.6;
    pointer-events: none;
    cursor: not-allowed;
  }
  .page-contact .contact-right .wpcf7 button.confirm.active {
    border: 2px solid #FF6E00;
    color: #FF6E00;
    background-color: white;
    pointer-events: auto;
    cursor: pointer;
  }
  .page-contact .contact-right .wpcf7 button.back {
    margin-top: -15px;
    pointer-events: auto;
    cursor: pointer;
  }
  .page-contact .contact-right .wpcf7 .confirm-row {
    margin-bottom: 20px;
  }
  .page-contact .contact-right .wpcf7 .confirm-left {
    font-size: 1.6rem;
    font-weight: 500;
    font-weight: bold;
  }
  .page-contact .contact-right .wpcf7 .confirm-right {
    white-space: pre-wrap;
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
  }
  .page-contact .contact-right .wpcf7 .confirm-wrapper,
  .page-contact .contact-right .wpcf7 input[type=submit],
  .page-contact .contact-right .wpcf7 button.back {
    display: none;
  }
  #thanks .tohome {
    margin: 20px auto 0;
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 26px;
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    background-color: #13467E;
    color: white;
    max-width: 250px;
  }
}

/*# sourceMappingURL=main.css.map */
