@charset "UTF-8";
/* ------------------
 * 0. RESET
 ------------------ */
/* ------------------

！！！10px = 1rem、remに変換して使用してください！！！
PC -> 1450 px
SP -> iPhone
CHECK :root FOR DEFAULT COLORS & FONTS(_colorsfonts.scss)

0.RESET

------------------ */
ol,
ul {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
ol,
p,
em,
i,
ul {
  margin: 0;
  font: normal 400 100%/1.8 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', '游ゴシック', Meiryo, sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', '游ゴシック', Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    font-size: calc(1rem + 1vw);
  }
}

ol,
ul {
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

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

button {
  border: 0;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

:focus {
  outline: none;
  opacity: 0.7;
}

input[type='submit'],
input[type='button'] {
  border-radius: 0;
  border: none;
  cursor: pointer;
}

input[type='submit']::-webkit-search-decoration,
input[type='button']::-webkit-search-decoration {
  display: none;
}

input[type='submit']::focus,
input[type='button']::focus {
  outline-offset: -2px;
}

/* montserrat-regular - latin */
@font-face {
  font-family: 'enprimary';
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/enprimary.woff2") format("woff2");
}

@font-face {
  font-family: 'encond';
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/encond.woff2") format("woff2");
}

@font-face {
  font-family: 'jpttl';
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/jpttl.woff2") format("woff2");
}

:root {
  --primary_en: 'enprimary', sans-serif;
  --encond: 'encond', sans-serif;
  --ttl_jp: 'jpttl', 'Hiragino Kaku Gothic ProN', sans-serif;
  --ipt_ttl: calc(1.8rem + 2vw);
  --main_ttl: calc(1.4rem + 1.5vw);
  --sub_ttl: calc(1.2rem + 1.5vw);
  --ll_tx: calc(1.1rem + 1.4vw);
  --l_tx: calc(1rem + 1.4vw);
  --common_tx: calc(calc(0.8rem + 1.4vw));
  --s_tx: calc(0.6rem + 1vw);
  --ss_tx: 1rem;
  --black: #000;
  --white: #fff;
  --primary_c: #fb613a;
  --second_c: #055171;
  --third_c: #6500bd;
  --forth_c: #151f44;
  --fifth_c: #fff81f;
  --link_c: #00b1e8;
  --ltgray: #f6f7f9;
  --dkgray: #cfcece;
}

@media screen and (min-width: 769px) {
  :root {
    --ipt_ttl: 4rem;
    --main_ttl: 2.8rem;
    --sub_ttl: 2.2rem;
    --ll_tx: 1.8rem;
    --l_tx: 1.6rem;
    --common_tx: 1.5rem;
    --s_tx: 1.2rem;
    --ss_tx: 1rem;
  }
}

.grecaptcha-badge { visibility: hidden; }

/* FONTS */
/* COLORS */
/* ------------------
 * 1. MODULE
 ------------------ */
.m-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  position: relative;
  border-radius: 5rem;
  font-size: var(--common_tx);
  text-align: center;
  color: var(--white);
  background-color: var(--primary_c);
  transition: opacity 0.2s ease;
  font-weight: 600;
}

.m-btn:hover {
  opacity: 0.8;
}

.m-btn--cv {
  height: 13vw;
  border-radius: 13vw;
  font-size: 4vw;
}

.m-btn--cv:hover {
  opacity: 1;
  filter: hue-rotate(340deg);
}

@media screen and (min-width: 769px) {
  .m-btn--cv {
    font-size: 2vw;
    height: 6.5vw;
    width: 43vw;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1301px) {
  .m-btn--cv {
    font-size: 2.4rem;
    height: 8.45rem;
    width: 55.9rem;
  }
}

.m-btn__tx {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.m-btn__tx:after {
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 0.5rem;
  background: center/contain no-repeat url(../img/icon_arrow.svg);
  content: '';
}

.m-btn__tx--cv:after {
  width: 4vw;
  height: 4vw;
  margin-left: 2vw;
}

@media screen and (min-width: 769px) {
  .m-btn__tx--cv:after {
    width: 2.3vw;
    height: 2.3vw;
  }
}

@media screen and (min-width: 1301px) {
  .m-btn__tx--cv:after {
    width: 3rem;
    height: 3rem;
    margin-left: 2.6rem;
  }
}

.m-top-sec {
  padding: 5rem 0;
  background-color: var(--white);
}

@media screen and (min-width: 769px) {
  .m-top-sec {
    padding: 8.4rem 0;
  }
}

.m-top-sec__ttl {
  text-align: center;
  font-family: var(--ttl_jp);
  font-size: var(--main_ttl);
  margin-bottom: 2rem;
  padding: 0 3vw;
}

@media screen and (min-width: 769px) {
  .m-top-sec__ttl {
    margin-bottom: 3rem;
  }
}

.m-top-sec__ttl--underline:after {
  display: block;
  width: 4rem;
  border-bottom: 0.3rem solid var(--third_c);
  margin: 1.5rem auto 0;
  content: '';
}

.m-top-sec__subttl {
  display: block;
  width: 100%;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', '游ゴシック', Meiryo, sans-serif;
  font-size: var(--l_tx);
}

.m-top-sec__ctbox {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .m-top-sec__ctbox {
    min-width: 72rem;
  }
  .m-top-sec__ctbox--l {
    max-width: 110rem;
    width: 80%;
  }
  .m-top-sec__ctbox--m {
    max-width: 100rem;
    width: 75%;
  }
  .m-top-sec__ctbox--s {
    max-width: 90rem;
    width: 70%;
  }
}

.m-top-sec__ctdes {
  font-size: var(--common_tx);
  line-height: 1.8;
}

.m-top-sec__ctdes:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

/* ------------------
 * 2. LAYOUT
------------------ */
.l-hd {
  position: relative;
  width: 100%;
}

.l-hd__intro {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 2vw;
  background-color: var(--ltgray);
  font-size: var(--s_tx);
  color: #4c4c4c;
}

@media screen and (min-width: 769px) {
  .l-hd__intro {
    padding: 0.5rem 2.5rem;
  }
}

.l-hd__main {
  z-index: 99;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2vw;
  background-color: var(--white);
}

@media screen and (min-width: 769px) {
  .l-hd__main {
    padding: 1.5rem 2.5rem;
  }
}

.l-hd__logo {
  display: flex;
  align-items: center;
  width: 40%;
  max-width: 18rem;
}

@media screen and (min-width: 769px) {
  .l-hd__logo {
    width: 20rem;
  }
}

.l-hd__info {
  width: 60%;
}

@media screen and (min-width: 769px) {
  .l-hd__info {
    width: calc(100% - 18.8rem);
  }
}

.l-hd__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.l-hd__tel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  height: 3rem;
  margin-right: 2vw;
  font-size: var(--main_ttl);
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .l-hd__tel {
    margin-right: 1.5rem;
  }
}

.l-hd__num {
  line-height: 0.5;
  text-align: left;
  margin-bottom: -0.5rem;
}

.l-hd__time {
  margin-left: 0.2rem;
  font-size: var(--ss_tx);
  font-style: normal;
  font-weight: normal;
}

@media screen and (min-width: 769px) {
  .l-hd__telicon_link {
    height: 3.8rem;
    pointer-events: none;
  }
}

@media screen and (max-width: 768px) {
  .l-hd__telicon_link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    padding: 0.6rem;
    border: 0.2rem solid var(--primary_c);
    border-radius: 50%;
  }
}

.l-hd__telicon {
  height: 100%;
}

@media screen and (min-width: 769px) {
  .l-hd__telicon {
    margin-right: 0.5rem;
  }
}

.l-hd__btn {
  width: 18rem;
  height: 5rem;
}

@media screen and (max-width: 768px) {
  .l-hd__btn {
    width: 50%;
    min-width: 15rem;
  }
}

.l-kv {
  position: relative;
  width: 100%;
  height: 87vw;
  background: center/cover no-repeat url(../img/kv_bg_sp.jpg);
}

@media screen and (min-width: 769px) {
  .l-kv {
    height: 50vw;
    background-image: url(../img/kv_bg_sp.jpg);
  }
}

@media screen and (min-width: 1301px) {
  .l-kv {
    height: 65rem;
  }
}

.l-kv__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 92%;
}

@media screen and (min-width: 769px) {
  .l-kv__container {
    height: 80%;
  }
}

.l-kv__ttl {
  width: 100%;
  color: var(--white);
  font: 4vw/1 var(--ttl_jp), san-serif;
}

@media screen and (min-width: 769px) {
  .l-kv__ttl {
    font-size: 2.5vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__ttl {
    font-size: 3.3rem;
  }
}

.l-kv__line {
  display: block;
}

.l-kv__line:not(:first-child) {
  margin-top: 3vw;
}

@media screen and (min-width: 769px) {
  .l-kv__line:not(:first-child) {
    margin-top: 2vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__line:not(:first-child) {
    margin-top: 2.6rem;
  }
}

.l-kv__line--01 {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.l-kv__line--01:before, .l-kv__line--01:after {
  display: block;
  height: 6vw;
  width: 0.1rem;
  background-color: var(--white);
  margin-top: -1vw;
  content: '';
}

@media screen and (min-width: 769px) {
  .l-kv__line--01:before, .l-kv__line--01:after {
    height: 4.3vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__line--01:before, .l-kv__line--01:after {
    height: 5.6rem;
  }
}

.l-kv__line--01:before {
  margin-right: 4vw;
  transform: rotate(-30deg);
}

@media screen and (min-width: 1301px) {
  .l-kv__line--01:before {
    margin-right: 5.6rem;
  }
}

.l-kv__line--01:after {
  margin-left: 4vw;
  transform: rotate(30deg);
}

@media screen and (min-width: 1301px) {
  .l-kv__line--01:after {
    margin-left: 5.6rem;
  }
}

.l-kv__line--02 {
  font-size: 135%;
}

.l-kv__line--03 {
  font-size: 163%;
}

.l-kv__ctbox {
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
  height: 15%;
  width: 75%;
}

@media screen and (max-width: 768px) {
  .l-kv__ctbox {
    flex-direction: column;
    margin-top: 5vw;
    height: 40%;
    width: 87%;
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__ctbox {
    margin-top: 3.9rem;
    height: 7.8rem;
    width: 100rem;
  }
}

.l-kv__ctitem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--fifth_c);
  height: 30%;
  width: 100%;
  padding: 0 3vw;
  border-radius: 0.5rem;
  font: 3.5vw/1 var(--ttl_jp), san-serif;
}

@media screen and (min-width: 769px) {
  .l-kv__ctitem {
    height: 100%;
    width: 32%;
    padding: 0 1.2vw;
    font: 1.5vw/1.3 var(--ttl_jp), san-serif;
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__ctitem {
    font-size: 2rem;
  }
}

.l-kv__ctitem:before {
  display: inline-block;
  width: 4.5vw;
  height: 4.5vw;
  margin-right: 2vw;
  background: center/contain no-repeat url(../img/icon_top_check.svg);
  content: '';
}

@media screen and (min-width: 769px) {
  .l-kv__ctitem:before {
    width: 2.5vw;
    height: 2.5vw;
    margin-right: 0.8vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__ctitem:before {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.l-kv__ctdes {
  width: calc(100% - 4.5vw);
}

@media screen and (min-width: 769px) {
  .l-kv__ctdes {
    width: calc(100% - 2.5vw);
  }
}

@media screen and (min-width: 1301px) {
  .l-kv__ctdes {
    width: calc(100% - 3.2rem);
  }
}

.l-top-cv__ctbox {
  position: relative;
  width: 95%;
  margin: calc(-5rem - 10%) auto 2rem;
  border: 1.5vw solid #eeecec;
  padding: 3vw;
  background-color: var(--white);
}

@media screen and (min-width: 769px) {
  .l-top-cv__ctbox {
    width: 80%;
    padding: 2vw;
    margin: calc(-5rem - 12%) auto 5rem;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__ctbox {
    width: 104rem;
    padding: 2.6rem;
    margin: -20.6rem auto 5rem;
  }
}

.l-top-cv__arrow {
  position: absolute;
  top: -6vw;
  left: calc(50% - 18vw);
  filter: drop-shadow(0px -0.2vw 0.5vw #555555);
}

@media screen and (min-width: 769px) {
  .l-top-cv__arrow {
    left: calc(50% - 13vw);
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__arrow {
    top: -7.8rem;
    left: calc(50% - 33.8rem / 2);
  }
}

.l-top-cv__arrowhex {
  width: 36vw;
  height: 10vw;
  background-image: linear-gradient(0deg, var(--fifth_c) 0%, var(--fifth_c) 30%, transparent 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media screen and (min-width: 769px) {
  .l-top-cv__arrowhex {
    width: 26vw;
    height: 8vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__arrowhex {
    width: 33.8rem;
    height: 10.4rem;
  }
}

.l-top-cv__catch {
  transform: rotate(-15deg);
  display: flex;
  position: absolute;
  top: 4vw;
  left: 4vw;
  width: fit-content;
  font: 3.5vw var(--ttl_jp), san-serif;
  color: var(--third_c);
}

@media screen and (min-width: 769px) {
  .l-top-cv__catch {
    top: 2vw;
    left: 8vw;
    font-size: 2vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__catch {
    top: 2.6rem;
    left: 10.4rem;
    font-size: 2.6rem;
  }
}

.l-top-cv__catch:before, .l-top-cv__catch:after {
  display: block;
  height: 6vw;
  width: 0.1rem;
  background-color: var(--third_c);
  margin-top: 0.5vw;
  content: '';
}

@media screen and (min-width: 769px) {
  .l-top-cv__catch:before, .l-top-cv__catch:after {
    height: 3vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__catch:before, .l-top-cv__catch:after {
    height: 3.9rem;
    margin-top: 0.6rem;
  }
}

.l-top-cv__catch:before {
  margin-right: 4vw;
  transform: rotate(-35deg);
}

@media screen and (min-width: 769px) {
  .l-top-cv__catch:before {
    margin-right: 1.2vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__catch:before {
    margin-right: 1.6rem;
  }
}

.l-top-cv__catch:after {
  margin-left: 4vw;
  transform: rotate(35deg);
}

@media screen and (min-width: 769px) {
  .l-top-cv__catch:after {
    margin-left: 1.2vw;
  }
}

@media screen and (min-width: 769px) {
  .l-top-cv__catch:after {
    margin-left: 1.6rem;
  }
}

.l-top-cv__ctttl {
  position: relative;
  z-index: 5;
  width: 48vw;
  margin: 8vw 0 4vw 4vw;
  font-size: 4.5vw;
  line-height: 1.5;
  font-weight: bold;
  color: var(--forth_c);
  text-align: center;
}

@media screen and (min-width: 769px) {
  .l-top-cv__ctttl {
    width: fit-content;
    margin: 3.5vw 0 2vw 0;
    font-size: 2.9vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__ctttl {
    margin: 4.6rem 0 2.6rem 0;
    font-size: 3.8rem;
  }
}

.l-top-cv__deco {
  display: inline-block;
  background-image: linear-gradient(0, transparent 0%, transparent 7%, var(--fifth_c) 7%, var(--fifth_c) 45%, transparent 45%, transparent 100%);
}

.l-top-cv__imgbox {
  position: absolute;
  overflow: hidden;
  width: 43vw;
  height: 50vw;
  background: top/contain no-repeat url(../img/cv_img.png);
}

@media screen and (max-width: 768px) {
  .l-top-cv__imgbox {
    top: -6vw;
    right: 1vw;
  }
}

@media screen and (min-width: 769px) {
  .l-top-cv__imgbox {
    bottom: -1.5vw;
    right: -0.8vw;
    height: calc(25vw / 700 * 857);
    width: 25vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-top-cv__imgbox {
    bottom: -2rem;
    right: -1rem;
    width: 32.5rem;
    height: calc(32.5rem / 700 * 857);
  }
}

/* CUSTOMER LIST */

.company_ttl__big{
    font-size: 2.6vw;
    position: relative;
    line-height: 1;
}

@media screen and (max-width: 768px){
  .company_ttl__big {
    font-size: 6vw;
  }
}

.company_ttl__big::before{
    content:'';
    background: url(../img/img_backslash.png) no-repeat;
    background-size: contain;
    display: block;
    width: 4vw;
    height: 4vw;
    position: absolute;
    left: -4.5vw;
    bottom: 0;
}

@media screen and (max-width: 768px){
  .company_ttl__big::before{
    width: 7vw;
    height: 7vw;
    left: -7.5vw;
  }
}

.company_ttl__big::after{
    content:'';
    background: url(../img/img_slash.png) no-repeat;
    background-size: contain;
    display: block;
    width: 4vw;
    height: 4vw;
    position: absolute;
    right: -4.5vw;
    bottom: 0;
}

@media screen and (max-width: 768px){
  .company_ttl__big::after{
    width: 7vw;
    height: 7vw;
    right: -7.5vw;
  }
}

.company_ttl__blue {
    color: #029ff1;
    font-size: 3.8vw;
}

@media screen and (max-width: 768px){
  .company_ttl__blue {
    font-size: 7.5vw;
  }
}

.company_box {
  width: 80%;
  margin: 0 auto;
}

.company_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  font-size: 0;
}

@media screen and (min-width: 769px) {
  .company_list {
    width: 80%;
    max-width: 110rem;
  }
}

.company_list li {
  display: block;
  margin-bottom: 1rem;
  width: calc((100% - 6rem) / 7);
}

.company_list li:not(:nth-child(7n)) {
  margin-right: 1rem;
}

@media screen and (min-width: 769px) {
  .company_list li {
    width: calc((100% - 12rem) / 7);
  }
  .company_list li:not(:nth-child(7n)) {
    margin-right: 2rem;
  }
}

.l-problem {
  position: relative;
}

.l-problem__ctbox {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.l-problem__ctitem {
  width: 100%;
  padding: 4vw 4vw 4vw 5vw;
  background-color: var(--white);
  filter: drop-shadow(0 0 0.5rem #ccc);
}

@media screen and (max-width: 768px) {
  .l-problem__ctitem:not(:last-of-type) {
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 769px) {
  .l-problem__ctitem {
    padding: 2rem;
    width: calc((100% - 2rem) / 2);
  }
  .l-problem__ctitem:not(:nth-last-of-type(2)):not(:last-of-type) {
    margin-bottom: 2rem;
  }
}

.l-problem__ctttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-weight: bold;
  font-size: var(--sub_ttl);
}

.l-problem__ctttl:before {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  margin-top: 0.3rem;
  border-radius: 50%;
  background: center/50% #18516f no-repeat url(../img/check_mark.svg);
  content: '';
}

@media screen and (min-width: 769px) {
  .l-problem__ctttl:before {
    margin-top: -0.1rem;
    margin-right: 2rem;
  }
}

.l-problem__ttltx {
  display: block;
  width: calc(100% - 5rem);
}

.l-risk__ctbox {
  counter-reset: risk_count;
}

.l-risk__ctitem {
  position: relative;
  border: 0.1rem solid var(--dkgray);
  padding: 3rem;
  counter-increment: risk_count;
}

@media screen and (min-width: 769px) {
  .l-risk__ctitem {
    min-height: 26rem;
  }
}

.l-risk__ctitem:not(:last-of-type) {
  margin-bottom: 3.5rem;
}

.l-risk__ctitem:before {
  z-index: 4;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(-12vw - 0.1rem);
  left: calc(-12vw - 0.1rem);
  width: 0;
  height: 0;
  border: 12vw solid;
  border-color: transparent transparent var(--second_c) transparent;
  content: '';
}

@media screen and (min-width: 769px) {
  .l-risk__ctitem:before {
    top: -6.1rem;
    left: -6.1rem;
    border-width: 6rem;
  }
}

.l-risk__ctitem:after {
  z-index: 5;
  position: absolute;
  top: 2vw;
  left: 0.5vw;
  transform: rotate(-45deg);
  color: var(--white);
  font-family: var(--primary_en);
  font-size: var(--ll_tx);
  font-weight: 700;
  content: "RISK" counter(risk_count);
}

@media screen and (min-width: 769px) {
  .l-risk__ctitem:after {
    top: 1.5rem;
    left: 0.5rem;
  }
}

.l-risk__ctttl {
  margin: 0 0 3rem 10vw;
  font-size: var(--main_ttl);
  color: var(--second_c);
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .l-risk__ctttl {
    display: block;
    width: calc(100% - 23rem);
    margin: 0 0 1rem auto;
  }
}

@media screen and (max-width: 768px) {
  .l-risk__ctimgbox {
    float: left;
    width: 43%;
    margin: 2vw 4vw 2vw 0;
  }
}

@media screen and (min-width: 769px) {
  .l-risk__ctimgbox {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: 20rem;
  }
}

.l-risk__ctdes {
  font-size: var(--l_tx);
}

@media screen and (min-width: 769px) {
  .l-risk__ctdes {
    display: block;
    width: calc(100% - 23rem);
    margin: 0 0 0 auto;
  }
}

.l-mid-cv {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vw;
  color: var(--white);
  background: center/cover no-repeat url(../img/cv_bg_sp.jpg);
}

@media screen and (min-width: 769px) {
  .l-mid-cv {
    height: 31vw;
    background-image: url(../img/cv_bg_pc.jpg);
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv {
    height: 40.3rem;
  }
}

.l-mid-cv__ctbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 85%;
  padding: 0 2.5vw;
}

@media screen and (min-width: 769px) {
  .l-mid-cv__ctbox {
    justify-content: center;
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv__ctbox {
    width: 130rem;
    height: 34.3rem;
    padding: 0 3.3rem;
  }
}

.l-mid-cv__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  font-weight: bold;
  font-size: 3vw;
}

@media screen and (min-width: 769px) {
  .l-mid-cv__catch {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv__catch {
    font-size: 2rem;
  }
}

.l-mid-cv__logotx {
  display: block;
  margin: 0 1vw;
  width: 32vw;
}

@media screen and (min-width: 769px) {
  .l-mid-cv__logotx {
    margin: 0 0.5vw;
    width: 18vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv__logotx {
    margin: 0 0.6rem;
    width: 23.4rem;
  }
}

.l-mid-cv__ctttl {
  width: 80%;
  font: 6vw/1 var(--ttl_jp), san-serif;
}

@media screen and (max-width: 768px) {
  .l-mid-cv__ctttl--sp {
    display: block;
    font-size: 4vw;
    margin-bottom: 2.5vw;
  }
}

@media screen and (min-width: 769px) {
  .l-mid-cv__ctttl {
    margin-bottom: 0.5vw;
    font-size: 3.2vw;
    line-height: 1.5;
    text-align: center;
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv__ctttl {
    margin-bottom: 0.7rem;
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 768px) {
  .l-mid-cv__des {
    font-size: 2.8vw;
    width: 68vw;
  }
}

@media screen and (min-width: 769px) {
  .l-mid-cv__des {
    text-align: center;
    font-size: 1vw;
    width: 100%;
    margin-bottom: 2.5vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv__des {
    font-size: 1.3rem;
    margin-bottom: 3.3rem;
  }
}

.l-mid-cv__imgbox {
  position: absolute;
  background: top/contain no-repeat url(../img/cv_img.png);
}

@media screen and (max-width: 768px) {
  .l-mid-cv__imgbox {
    top: 9vw;
    right: 2vw;
    width: 40vw;
    height: calc(40vw / 700 * 857);
  }
}

@media screen and (min-width: 769px) {
  .l-mid-cv__imgbox {
    bottom: -9%;
    right: 15vw;
    width: 20vw;
    height: calc(20vw / 700 * 857);
  }
}

@media screen and (min-width: 1301px) {
  .l-mid-cv__imgbox {
    bottom: -3rem;
    right: 19.5rem;
    width: 26rem;
    height: calc(26rem / 700 * 857);
  }
}

.l-mid-cv__btn {
  width: 98%;
}

@media screen and (min-width: 769px) {
  .l-mid-cv__btn {
    width: 50%;
    margin: 0 auto;
  }
}

.l-promise__ctbox {
  counter-reset: promise_count;
}

.l-promise__ctitem {
  position: relative;
  padding: 3rem 0;
  border-bottom: 0.1rem solid var(--dkgray);
  counter-increment: promise_count;
}

@media screen and (min-width: 769px) {
  .l-promise__ctitem {
    min-height: 26rem;
  }
}

.l-promise__ctttl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  position: relative;
  margin-bottom: 2.5rem;
  font-size: var(--sub_ttl);
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .l-promise__ctttl {
    width: calc(100% - 32rem);
    margin: 0 0 1rem auto;
  }
}

.l-promise__ctttl:before {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 4.5rem;
  height: 4.5rem;
  padding-top: 0.5rem;
  margin-right: 1.5rem;
  background-image: linear-gradient(135deg, #7927c7 0%, #7927c7 50%, var(--third_c) 50%, var(--third_c) 100%);
  color: var(--white);
  font-family: var(--encond), sans-serif;
  font-size: 3.3rem;
  content: "0" counter(promise_count);
}

.l-promise__ttltx {
  display: block;
  padding-top: 0.3rem;
  line-height: 1.3;
  width: calc(100% - 6rem);
}

@media screen and (max-width: 768px) {
  .l-promise__ctimgbox {
    float: left;
    width: 40%;
    margin: 2vw 3vw 2vw 0;
  }
}

@media screen and (min-width: 769px) {
  .l-promise__ctimgbox {
    position: absolute;
    top: 3rem;
    left: 0;
    width: 29rem;
  }
}

.l-promise__ctdes {
  font-size: var(--l_tx);
}

@media screen and (min-width: 769px) {
  .l-promise__ctdes {
    display: block;
    width: calc(100% - 32rem);
    margin: 0 0 0 auto;
  }
}

.l-promise__btn {
  font-size: var(--ll_tx);
  height: 6.5rem;
  width: 90%;
  margin: 5rem auto 0;
}

@media screen and (min-width: 769px) {
  .l-promise__btn {
    font-size: var(--sub_ttl);
    height: 8rem;
    width: 60%;
    max-width: 78rem;
  }
}

.l-promise__ctsmall {
  font-style: normal;
  font-size: 80%;
}

.l-top-fee__ctcontainer {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .l-top-fee__ctcontainer {
    min-width: 72rem;
    width: 65%;
  }
}

.l-top-fee__ctttl {
  padding: 1rem 0;
  margin: 4rem auto 0;
  background-color: var(--forth_c);
  color: var(--white);
  font-size: var(--ll_tx);
  font-weight: bold;
}

.l-top-fee__ctbox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  border: 0.1rem solid var(--dkgray);
  background-color: var(--white);
}

.l-top-fee__ctkey, .l-top-fee__ctval {
  display: flex;
  padding: 0 4vw;
  font-size: var(--common_tx);
}

@media screen and (min-width: 769px) {
  .l-top-fee__ctkey, .l-top-fee__ctval {
    padding: 2rem 2.5rem;
    font-size: var(--l_tx);
  }
  .l-top-fee__ctkey:not(:last-of-type), .l-top-fee__ctval:not(:last-of-type) {
    border-bottom: 0.1rem solid var(--dkgray);
  }
}

.l-top-fee__ctkey {
  width: 35rem;
}

@media screen and (max-width: 768px) {
  .l-top-fee__ctkey {
    padding-top: 3vw;
    width: 100%;
  }
}

.l-top-fee__ctkey--top {
  align-items: flex-start;
}

.l-top-fee__keytx {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-weight: bold;
}

.l-top-fee__keytx:before {
  border-color: transparent transparent transparent var(--forth_c);
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.8rem;
  margin-right: 1rem;
  content: '';
}

.l-top-fee__ctval {
  width: calc(100% - 35rem);
}

@media screen and (max-width: 768px) {
  .l-top-fee__ctval {
    width: 100%;
    padding-bottom: 3vw;
  }
  .l-top-fee__ctval:not(:last-of-type) {
    border-bottom: 0.1rem solid var(--dkgray);
  }
}

.l-top-fee__valtx--orange {
  color: var(--primary_c);
}

@media screen and (max-width: 768px) {
  .l-top-fee__valtx--orange {
    font-size: 120%;
  }
}

.l-top-fee__sptlist {
  padding-left: 2rem;
  text-align: left;
}

.l-top-fee__em {
  font-size: 150%;
  font-weight: bold;
  font-style: normal;
}

.l-top-fee__sptitem {
  list-style-type: disc;
  font-size: var(--common_tx);
}

.l-top-fee__ssllist{
  text-align: left;
}

.l-top-fee__sslitem:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.l-top-fee__sslicon {
  margin-right: 1rem;
  padding: 0.5rem;
  border: 0.1rem solid var(--forth_c);
  color: var(--forth_c);
  font-size: var(--s_tx);
  font-weight: bold;
}

.l-top-fee__des {
  font-size: var(--s_tx);
  margin-top: 2rem;
}

.l-support-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 74vw;
  background-color: #38b2ac;
}

@media screen and (max-width: 768px) {
  .l-support-cv {
    position: relative;
  }
}

@media screen and (min-width: 769px) {
  .l-support-cv {
    height: 31vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv {
    height: 40.3rem;
  }
}

.l-support-cv__ctbox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: 85%;
  padding: 0 5vw;
  color: var(--white);
}

@media screen and (min-width: 769px) {
  .l-support-cv__ctbox {
    position: relative;
    height: 100%;
    padding: 2vw 12vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__ctbox {
    width: 130rem;
    padding: 2.6rem 15.6rem;
  }
}

.l-support-cv__ctttl {
  width: 100%;
  font: 4.2vw/1.5 var(--ttl_jp), san-serif;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .l-support-cv__ctttl {
    width: 66%;
    margin-bottom: 0.5vw;
    font-size: 2.3vw;
    text-align: left;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__ctttl {
    width: 65.2rem;
    margin-bottom: 0.7rem;
    font-size: 3rem;
  }
}

.l-support-cv__ctttl i {
  margin-right: -1.2vw;
  font-family: var(--ttl_jp), san-serif;
  font-size: 85%;
}

@media screen and (min-width: 769px) {
  .l-support-cv__ctttl i {
    margin-right: -0.6vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__ctttl i {
    margin-right: -0.8rem;
  }
}

.l-support-cv__deco {
  display: inline-block;
  padding: 0.2vw 1vw 0;
  margin: 0 -1vw 0.5vw;
  background-color: #189089;
}

@media screen and (min-width: 769px) {
  .l-support-cv__deco {
    margin: 0 -0.5vw 0.3vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__deco {
    padding: 0.3rem 1.3rem 0;
    margin: 0 -0.7rem 0.4rem;
  }
}

@media screen and (min-width: 769px) {
  .l-support-cv__des {
    font-size: 1.2vw;
    width: 66%;
    margin-bottom: 1vw;
  }
}

@media screen and (max-width: 768px) {
  .l-support-cv__des {
    font-size: 3vw;
    width: 59vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__des {
    font-size: 1.6rem;
    width: 65.2rem;
  }
}

.l-support-cv__logotx {
  display: block;
  margin: 0 1vw;
  width: 32vw;
}

@media screen and (min-width: 769px) {
  .l-support-cv__logotx {
    margin: 0 0.5vw;
    width: 25vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__logotx {
    margin: 0 0.7rem;
    width: 32.5rem;
  }
}

.l-support-cv__catch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 60vw;
  margin-top: -2vw;
  font-weight: bold;
  font-size: 3vw;
  filter: drop-shadow(0 0.2vw 0.2vw #7a7a7a);
}

@media screen and (min-width: 769px) {
  .l-support-cv__catch {
    width: 66%;
    font-size: 3vw;
    margin: -0.5vw 0 1.5vw;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__catch {
    width: 65.2rem;
    font-size: 3.9rem;
    margin: -0.7rem 0 2rem;
  }
}

.l-support-cv__imgbox {
  position: absolute;
  background: top/contain no-repeat url(../img/cv_support_img.png);
}

@media screen and (max-width: 768px) {
  .l-support-cv__imgbox {
    bottom: 0;
    left: 2.5vw;
    width: 36vw;
    height: calc(36vw / 700 * 974);
  }
}

@media screen and (min-width: 769px) {
  .l-support-cv__imgbox {
    bottom: -7vw;
    left: 13vw;
    width: 26vw;
    height: calc(26vw / 700 * 974);
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__imgbox {
    bottom: -9.1rem;
    left: 16.9rem;
    width: 33.8rem;
    height: calc(33.8rem / 700 * 974);
  }
}

.l-support-cv__btn {
  background-color: #1051a3;
  width: 98%;
}

@media screen and (min-width: 769px) {
  .l-support-cv__btn {
    width: 55%;
    height: 6vw;
    margin: 0 4.5vw 0 auto;
  }
}

@media screen and (min-width: 1301px) {
  .l-support-cv__btn {
    width: 54.3rem;
    height: 7.8rem;
    margin: 0 5.9rem 0 auto;
  }
}

.l-support-cv__btntx:after {
  transform: rotate(-90deg);
  filter: saturate(5) hue-rotate(211deg);
}

.l-flow__ctimgbox {
  display: block;
  width: 100%;
  margin: 0 auto 3rem;
}

.l-contact__ttl {
  color: var(--white);
}

.l-contact__ctbox {
  padding: 3rem 2rem;
  background-color: var(--white);
}

@media screen and (min-width: 769px) {
  .l-contact__ctbox {
    padding: 3rem;
  }
}

.l-contact__phonebox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.2rem 1rem 1rem;
  margin-top: 2rem;
  border: 0.1rem solid var(--dkgray);
  border-radius: 0.5rem;
}

@media screen and (min-width: 769px) {
  .l-contact__phonebox {
    width: 90%;
    padding: 1rem;
    margin: 2rem auto 0;
    pointer-events: none;
  }
}

.l-contact__imgbox {
  width: 8vw;
  height: 11vw;
  margin-right: 1rem;
}

@media screen and (min-width: 769px) {
  .l-contact__imgbox {
    width: 3rem;
    height: 4rem;
  }
}

.l-contact__img {
  height: 100%;
}

.l-contact__telbox {
  font-size: var(--s_tx);
  margin-top: -0.8rem;
}

@media screen and (min-width: 769px) {
  .l-contact__telbox {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: fit-content;
    margin-top: 0;
    font-size: var(--common_tx);
  }
}

.l-contact__tel {
  margin-right: 1rem;
  font-size: calc(1.2rem + 2vw);
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .l-contact__tel {
    font-size: 180%;
  }
}

@media screen and (max-width: 768px) {
  .l-contact__time {
    display: block;
    width: 100%;
    margin-top: -0.6rem;
  }
}

.l-contact form {
  display: block;
  width: 100%;
  margin: 5rem auto 0;
}

@media screen and (min-width: 769px) {
  .l-contact form {
    width: 95%;
  }
}

.l-contact__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding: 3rem 0;
  border-top: 0.1rem solid #e0e0e0;
}

.l-contact__item:last-of-type {
  padding: 2rem 0 0;
}

@media screen and (min-width: 769px) {
  .l-contact__item {
    flex-wrap: nowrap;
  }
}

.l-contact__item--nowrap {
  justify-content: center;
  flex-wrap: nowrap;
  width: 100% !important;
}

.l-contact__item--question {
  align-items: flex-start;
}

.l-contact__lable {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-size: var(--l_tx);
}

@media screen and (min-width: 769px) {
  .l-contact__lable {
    justify-content: space-between;
    width: 28%;
    margin-bottom: 0;
  }
}

.l-contact__inputarea {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .l-contact__inputarea {
    padding-left: 3rem;
    width: 70%;
  }
}

.l-contact__inputarea .error {
  margin-top: 0.5rem;
}

.l-contact__inputarea .mwform-radio-field {
  display: block;
  width: 50%;
  margin-left: 0 !important;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

@media screen and (min-width: 769px) {
  .l-contact__inputarea .mwform-radio-field {
    width: calc(100% / 3);
  }
}

.l-contact__input {
  padding: 1rem 2rem;
  box-shadow: 0.1rem 0.1rem 0.3rem 0 #d2d2d2 inset;
  border-radius: 0.5rem;
  border: 0;
  background-color: #f5f5f5;
  font-size: var(--l_tx);
  width: 100%;
}

.l-contact__input::placeholder {
  color: #cccccc;
}

.l-contact__must {
  display: inline-block;
  width: 5rem;
  padding: 0.3rem 0;
  border: 0.1rem solid #e4274b;
  font-size: var(--s_tx);
  text-align: center;
  color: #e4274b;
}

@media screen and (max-width: 768px) {
  .l-contact__must {
    width: 4rem;
    padding: 0.2rem 0;
    margin-left: 1rem;
  }
}

.l-contact.contact--confirm .contact__must {
  display: none;
}

.l-contact__confirm {
  display: block;
  position: relative;
  height: 6rem;
  width: 30rem;
  margin: 2rem auto;
  padding: 0;
  text-align: center;
  font-size: var(--common_tx);
  cursor: pointer;
}

.l-contact__confirm input {
  position: relative;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background-color: transparent;
}

.l-contact__confirm .m-btn__tx:after {
  transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .l-contact__confirm .m-btn__tx:after {
    margin-left: 0;
  }
}

.l-contact__back {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 6rem;
  width: 30rem;
  margin: 2rem auto;
  margin-right: 2rem;
  border-radius: 5rem;
  text-align: center;
  padding: 0;
  background-color: #ccc;
  color: var(--white);
  font-size: var(--common_tx);
  font-weight: bold;
  cursor: pointer;
}

.l-contact__back:before {
  transform: rotate(90deg);
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.5rem;
  filter: grayscale(1) brightness(1.5);
  background: center/contain no-repeat url(../img/icon_arrow.svg);
  content: '';
}

.l-contact__name {
  width: 40%;
}

.l-contact__email {
  width: 40%;
}

.l-contact__question {
  width: 50%;
  height: 20rem;
}

.l-contact__select {
  width: 40%;
  text-align: center;
  padding: 1rem;
}

.ft-logo {
  padding: 2rem 0;
}

.ft-logo__imgbox {
  width: 45%;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .ft-logo__imgbox {
    width: 25rem;
  }
}

@media screen and (min-width: 769px) {
  .l-top-faq__ctbox {
    padding: 0 3rem;
    background-color: var(--white);
  }
}

@media screen and (min-width: 769px) {
  .l-top-faq__item {
    padding: 3rem 0;
  }
  .l-top-faq__item:not(:last-of-type) {
    border-bottom: 0.1rem solid var(--dkgray);
  }
}

@media screen and (max-width: 768px) {
  .l-top-faq__item {
    padding: 5vw;
    background-color: var(--white);
  }
  .l-top-faq__item:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }
}

.l-top-faq__text {
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  font-size: var(--l_tx);
}

.l-top-faq__text:before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  border-radius: 50%;
  font-weight: bold;
  color: var(--white);
}

.l-top-faq__text--q {
  color: #1076eb;
  padding-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .l-top-faq__text--q {
    border-bottom: 0.1rem solid var(--dkgray);
  }
}

.l-top-faq__text--q:before {
  background-color: #6598c0;
  content: 'Q';
}

@media screen and (max-width: 768px) {
  .l-top-faq__text--a {
    padding-top: 1.5rem;
  }
}

.l-top-faq__text--a:before {
  background-color: var(--third_c);
  content: 'A';
}

.l-top-faq__ctttl {
  font-weight: bold;
  width: calc(100% - 4rem);
}

.l-top-faq__ctdes {
  padding: 0.5rem 0 0 4rem;
}

/* FOOTER */
.footer-before {
  display: none;
}

footer {
  width: 100%;
  color: #bebcbc;
  font-size: 1.2rem;
  text-align: center;
}

#foot {
  background: #2d2c2d;
}

.foot {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 105rem;
  margin: 0 auto;
  text-align: left;
  background: #2d2c2d;
  color: #a5a3a3;
  overflow: hidden;
  padding: 4.5rem 1rem;
}

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

.foot .textbox {
  float: left;
  line-height: 1.8;
  min-width: 41.5rem;
}

.foot .textbox img {
  width: 50%;
}

@media screen and (min-width: 769px) {
  .foot .textbox img {
    width: 60%;
    min-width: 28rem;
  }
}

.foot .textbox p.text-nano {
  font-size: 1rem;
  padding-top: 2.5rem;
}

.foot .linkBox {
  margin-top: 3rem;
  flex-direction: row;
}

.foot .linkBox .mgr10 {
  margin-right: 1rem;
}

.foot .linkBox ul li:first-child {
  margin-bottom: 1.5rem;
}

.foot .linkBox > ul > li {
  padding: 0;
  color: #b9b7b7;
}

.foot .linkBox ul li a {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #b9b7b7;
}

.foot .linkBox > ul > li.lifoot1,
.foot .linkBox > ul > li.lifoot2 {
  padding-top: 1.5rem;
}

.foot .textbox p.text-nano a {
  color: #b9b7b7;
}

.foot {
  padding: 2rem 2rem 2rem;
  color: #bebcbc;
  font-size: 1.2rem;
}

.foot .map {
  width: calc(100% - 41.5rem - 2rem);
  height: 27rem;
  float: right;
}

.foot .linkBox {
  display: flex;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 0rem;
    color: #bebcbc;
    font-size: 1.2rem;
  }
  .foot .linkBox {
    margin-bottom: 3rem;
  }
  .foot .map {
    width: 100%;
    float: none;
    height: auto;
  }
  #foot {
    background: #2d2c2d;
  }
  .foot {
    width: 94%;
    padding: 3%;
  }
  .foot img {
    margin-top: 1rem;
    width: 65%;
  }
  .foot .textbox {
    float: none;
    line-height: 1.8;
  }
  .foot .textbox p.text-nano {
    font-size: 0.7rem;
    padding-top: 2.5rem;
    padding-bottom: 3%;
  }
}

@media screen and (max-width: 768px) and (min-width: 769px) {
  .foot .textbox p.text-nano {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .foot .textbox p.text-nano a {
    color: #a5a3a3;
  }
  .foot .textbox .plateinc {
    overflow: hidden;
    padding-top: 3%;
    padding-bottom: 3%;
  }
  .foot .textbox .plateinc .left-box {
    float: left;
    padding-right: 5%;
    width: 45%;
  }
  .foot .textbox .plateinc p {
    font-size: 1.6rem;
  }
  .foot .textbox .plateinc p.text-mini {
    font-size: 1.4rem;
    padding-top: 1rem;
  }
  .foot .linkBox ul:nth-child(2) {
    margin-top: 1.5rem;
  }
}

.pagetop {
  z-index: 10;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 15vh;
  right: 3vw;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #373737;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.pagetop:after {
  display: block;
  transform: rotate(-45deg);
  width: 1rem;
  height: 1rem;
  margin-top: 0.3rem;
  border: solid var(--white);
  border-width: 0.2rem 0.2rem 0 0;
  content: '';
}

.pagetop span {
  display: none;
}

.pagetop.show {
  opacity: 1;
}

.pagetop.show:hover {
  opacity: 0.7;
}

/* ------------------
 * 3. COSMETIC
 ------------------ */
.c-bgc--gray {
  background-color: #f2f3f4;
}

.c-bgc--blue {
  background-color: #0a1b4d;
}

.c-linkudl:hover {
  text-decoration: underline;
}

.c_opacity {
  transition: opacity 0.2s ease;
}

.c_opacity:hover {
  opacity: 0.8;
}

@keyframes header {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

#wpstats {
  display: none;
}

/* ------------------
 * 0. UTILITY
 ------------------ */
@media screen and (min-width: 769px) {
  .pc_none {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.tac {
  text-align: center;
}

.fbd {
  font-weight: bold;
}

.lhw {
  line-height: 1.8;
}

.mt10 {
  margin-top: 1rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt50 {
  margin-top: 5rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb50 {
  margin-bottom: 5rem;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

/* news */
.news {
  background: #edf1f7;
  text-align: center;
  height: 160px;
  overflow: hidden;
}
.news-detail {
  width: 1000px;
  margin: 0px auto;
  overflow: hidden;
  height: auto;
  padding: 30px 0;
}
.news-left {
  float: left;
  padding: 0 38px 0 0;
  margin: -25px 45px 0 0;
  height: auto;
}
.news-left p {
  padding: 21px 0 0;
}
.news-head {
  font-size: 40px;
  font-family: 'DIN Alternate';
  color: #000;
}
.news-sub {
  font-size: 16px;
  color: #000;
}
.news-right {
  float: left;
  overflow: hidden;
  height: 100px;
}
.news-right li {
  text-align: left;
  margin-top: 20px;
  font-size: 1.7rem;
}
.news-right a {
  color: -webkit-link;
  text-decoration: underline;
}
@media screen and (max-width: 1499px) {
  .news {
    height: auto;
  }
  .news-detail {
    width: 70vw;
    padding: 1vw 0;
  }
  .news-left {
    padding: 0;
    margin: 0 3vw 0 0;
    height: auto;
  }
  .news-left p {
    padding: 1.4vw 0 0;
  }
  .news-head {
    font-size: 2.67vw;
  }
  .news-sub {
    font-size: 1.03vw;
  }
  .news-right {
    height: auto;
    border-left: solid 0.07vw #556c8d;
    padding: 0 0 0 4vw;
    margin: 10px 0;
  }
  .news-right ul li {
    text-align: left;
    line-height: 1.5;
    margin: 0px 0 10px;
  }
  .news-right .news-date {
    color: #828282;
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .news-left p {
    padding: 0;
  }
}
#sec_news {
  background: #f1f2e9;
  text-align: center;
  padding: 1.8%;
}

#sec_news .title {
  color: #00769d;
  display: inline-block;
  font-weight: bold;
  margin-right: 1.5%;
  border-right: 1px solid #c5c6ba;
  padding: 0.2% 1.5% 0.2% 0;
  font-size: 18px;
}

#sec_news dd {
  display: inline-block;
  vertical-align: middle;
}

#sec_news dd .date {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .news {
    height: auto;
  }
  .news-detail {
    width: 90%;
    height: auto;
    padding: 2vw 0;
  }
  .news-left {
    height: auto;
  }
  .news-left p {
    line-height: 1;
  }
  .news-head {
    font-size: 3.67vw;
  }
  .news-right {
    width: 70vw;
    height: auto;
    margin: 0;
  }
  .news-right ul li {
    margin-top: 1vw;
    padding: 0;
    font-size: 2.2vw;
  }
  .news-right .news-date {
    font-size: 2.2vw;
  }

  #sec_news {
    padding: 3% 0%;
  }
  #sec_news .title {
    width: 18%;
    padding: 5% 0;
  }
  #sec_news dd {
    width: 76%;
  }
  #sec_news dd .date {
    display: block;
    text-align: left;
    font-size: 80%;
  }
  #sec_news dd .txt {
    font-size: 14px;
    text-align: left;
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */