@charset "UTF-8";
/* Global
------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,600,700,800,9000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/* Base */
body {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 18px;
  line-height: 1.6;
  word-wrap: break-word;
  background: none;
  color: #595757;
}

body:lang(ja) {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

::selection {
  background-color: #def;
}

/*
@media screen and (min-width: 782px) {
    body {
        font-size: 19px;
    }
    body:lang(ja) {
        font-size: 16px;
    }
}

@media screen and (min-width: 980px) {
    body {
        font-size: 20px;
    }
    body:lang(ja) {
        font-size: 17px;
    }
}

*/
/* Heading */
h1,
h2,
h3,
h4,
h5,
h6,
.site-title {
  clear: both;
  font-weight: 600;
  line-height: 1.5;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

/* Link */
a {
  color: #4693f5;
  text-decoration: underline;
  transition: all .15s ease-in-out;
  cursor: pointer;
}

cite a,
cite a {
  text-decoration: none;
}

/* Text */
b,
strong {
  font-weight: 700;
}

dfn,
em,
i {
  font-style: italic;
}

q {
  quotes: "" "";
}

cite {
  border-bottom: dotted 1px #999;
  font-style: normal;
}

code,
kbd,
tt,
var {
  background-color: #f4f5f6;
  color: #666;
  font-family: "Noto Sans JP", Consolas, monospace;
  font-size: 90%;
}

abbr,
acronym {
  border-bottom: 1px dotted #999;
  cursor: help;
}

mark,
ins {
  background: linear-gradient(transparent 70%, #ffff66 70%);
  text-decoration: none;
}

ins.adsbygoogle {
  background-color: transparent;
}

/* List */
ul,
ol {
  margin: 0;
  padding: 0;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin-bottom: 0.5em;
}

dd {
  margin: 0 0 1.8em 1.5em;
}

/* Table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 90%;
  margin: 0 0 1.8em;
  width: 100%;
}

caption {
  margin-bottom: 0.6em;
}

table th,
table td {
  border: solid 1px #eee;
  padding: 1em 1.2em;
}

th {
  background-color: #f4f5f6;
  font-weight: 600;
  text-align: left;
}

/* Elements */
blockquote {
  color: #666;
  margin: 0 0 2em;
  padding: 12px 0 0 44px !important;
  position: relative;
}

blockquote:before {
  color: #ddd;
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 84px;
  left: -5px;
  line-height: 1;
  position: absolute;
  top: -5px;
}

blockquote p {
  margin-bottom: 0.8em;
}

blockquote cite {
  font-size: 90%;
}

address {
  margin: 0 0 1.8em;
  font-style: normal;
}

pre {
  background-color: #f4f5f6;
  color: #666;
  font-family: "Noto Sans JP", Consolas, monospace;
  font-size: 90%;
  line-height: 1.4;
  margin: 0 0 1.7em;
  max-width: 100%;
  overflow: auto;
  padding: 1.5em;
  word-wrap: normal;
}

hr {
  background-color: #eee;
  border: 0;
  height: 2px;
  margin: 1.8em auto;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

/* Media */
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

figure {
  margin: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

/* Form */
button,
input,
input[type="search"],
select,
textarea {
  background-color: #fff;
  box-sizing: border-box;
  line-height: 1.6;
  max-width: 100%;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: #333;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 90%;
  line-height: 1;
  padding: 1.1em 1.5em;
  text-transform: uppercase;
  transition: .3s ease-in-out;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background-color: #555;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  border: solid 1px #e6e6e6;
  color: #333;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #444;
}

input[type="file"] {
  margin-top: 0.6em;
}

select {
  border: solid 1px #e6e6e6;
  margin-top: 0.6em;
  padding: 0.6em;
}

textarea {
  max-width: 720px;
  width: 100%;
}

input[type="tel"] {
  direction: ltr;
  border: 1px solid #eee;
  padding: 10px;
}

input::placeholder {
  color: #ccc;
}

textarea::placeholder {
  color: #ccc;
}

/* navi */
.sub_img:before {
  background: #fff !important;
}

.sub_menu a {
  color: #000 !important;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Open Sans';
  display: inline-block;
  padding: 6px 0;
}

.page-header__title {
  font-size: 25px;
  margin: 0;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.items-baseline {
  align-items: baseline;
}

.flex {
  display: flex;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 900px) {
  .container {
    width: 880px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1024px;
  }
}

/*

    :root {
        --swl-fz--content: 4vw;
        //--swl-font_family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        --swl-font_family: 'Noto Sans JP', sans-serif;
        --swl-font_weight: 500;
        --color_main: #04384c;
        --color_text: #333;
        --color_link: #1176d4;
        --color_htag: #04384c;
        --color_bg: #fdfdfd;
        --color_gradient1: #d8ffff;
        --color_gradient2: #87e7ff;
        --color_main_thin: rgba(5, 70, 95, 0.05 );
        --color_main_dark: rgba(3, 42, 57, 1 );
        --color_list_check: #04384c;
        --color_list_num: #04384c;
        --color_list_good: #86dd7b;
        --color_list_triangle: #f4e03a;
        --color_list_bad: #f36060;
        --color_faq_q: #d55656;
        --color_faq_a: #6599b7;
        --color_icon_good: #3cd250;
        --color_icon_good_bg: #ecffe9;
        --color_icon_bad: #4b73eb;
        --color_icon_bad_bg: #eafaff;
        --color_icon_info: #f578b4;
        --color_icon_info_bg: #fff0fa;
        --color_icon_announce: #ffa537;
        --color_icon_announce_bg: #fff5f0;
        --color_icon_pen: #7a7a7a;
        --color_icon_pen_bg: #f7f7f7;
        --color_icon_book: #787364;
        --color_icon_book_bg: #f8f6ef;
        --color_icon_point: #ffa639;
        --color_icon_check: #86d67c;
        --color_icon_batsu: #f36060;
        --color_icon_hatena: #5295cc;
        --color_icon_caution: #f7da38;
        --color_icon_memo: #84878a;
        --color_deep01: #e44141;
        --color_deep02: #3d79d5;
        --color_deep03: #63a84d;
        --color_deep04: #f09f4d;
        --color_pale01: #fff2f0;
        --color_pale02: #f3f8fd;
        --color_pale03: #f1f9ee;
        --color_pale04: #fdf9ee;
        --color_mark_blue: #b7e3ff;
        --color_mark_green: #bdf9c3;
        --color_mark_yellow: #fcf69f;
        --color_mark_orange: #ffddbc;
        --border01: solid 1px var(--color_main);
        --border02: double 4px var(--color_main);
        --border03: dashed 2px var(--color_border);
        --border04: solid 4px var(--color_gray);
        --card_posts_thumb_ratio: 56.25%;
        --list_posts_thumb_ratio: 61.805%;
        --big_posts_thumb_ratio: 56.25%;
        --thumb_posts_thumb_ratio: 61.805%;
        --blogcard_thumb_ratio: 56.25%;
        --color_header_bg: #fdfdfd;
        --color_header_text: #333;
        --color_footer_bg: #fdfdfd;
        --color_footer_text: #333;
        --container_size: 1200px;
        --article_size: 900px;
        --logo_size_sp: 48px;
        --logo_size_pc: 40px;
        --logo_size_pcfix: 32px;
    }   

    */
a.disabled {
  pointer-events: none;
}

.c-button {
  border: 2px solid #000;
  text-decoration: none;
  color: #fff;
  width: 100%;
  display: block;
  margin-top: 10px;
  padding: 5px;
  font-size: 0.6em;
  background: #000;
}

.c-button:hover {
  background: transparent;
  color: #222;
  border-color: #4676d7;
}

.c-filterLayer.-texture-dot:after {
  background: none;
}

.-series .l-header__logo .c-catchphrase {
  font-size: 28px;
  padding: 4px 0;
  color: #000;
}

.-txt .c-headLogo__link {
  font-weight: 500;
}

.l-header__bar .c-catchphrase {
  padding: 0;
}

#header .sp_ {
  display: none !important;
}

.page-template-page-career #fix_header {
  display: none;
}

.c-headLogo__img {
  width: auto;
  height: auto;
}

.main-flame-1024 {
  padding: 0px 20px;
}

@media (min-width: 1024px) {
  .main-flame-1024 {
    max-width: 1024px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .main-flame-1024 {
    width: 100%;
    padding: 0px 20px;
  }
}

.post_content div > :first-child {
  line-height: 1.6;
}

.sec-1 {
  border: 2px solid #E2E2E2;
  padding: 20px 10px;
}

.sec-1 .sec-innner {
  display: flex;
}

@media (max-width: 600px) {
  .sec-1 .sec-innner {
    display: block;
  }
}

.sec-1 .sec-innner .sec-innner-r {
  padding: 0px 20px 0px 20px;
}

.sec-1 .sec-innner .sec-innner-r span {
  font-size: small;
}

.sec-1 .sec-innner .sec-innner-r h2 {
  color: #000;
  background: none;
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 1.6em;
}

.sec-1 .sec-innner .sec-innner-r h2::before {
  border: none;
}

.sec-1 .sec-innner .sec-innner-r ul {
  margin: 30px 0px;
}

.sec-1 .sec-innner .sec-innner-r .sec-innner-r-tittle-button button {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 2px solid;
  border-radius: 0px;
  color: #000;
  cursor: pointer;
  font-size: 100%;
  /* line-height: 1; */
  padding: 5px 20px;
  /* text-transform: uppercase; */
  /* transition: .3s ease-in-out; */
  /* vertical-align: top;*/
}

.sec-1 .sec-innner .sec-innner-r .sec-innner-r-tittle-button button a {
  color: #000;
  text-decoration: none;
}

.sec-1 .sec-innner .sec-innner-r .sec-innner-r-tittle-button button img {
  margin-left: 10px;
}

.sec-2 {
  background: #E2E2E2;
}

.sec-2 .sec-innner {
  padding: 30px;
  margin: 60px 0px;
}

.sec-2 .sec-innner .notice dl {
  display: flex;
}

.sec-2 .sec-innner .notice dl dt {
  font-weight: normal;
}

.sec-2 .sec-innner .notice dl dd {
  margin: 0 0 0em 1.5em;
}

.sec-2 .sec-innner .btn {
  text-align: right;
}

.sec-2 .sec-innner .btn span {
  font-size: 0.8em;
  border-bottom: 1px solid;
  margin-top: 20px;
  cursor: pointer;
}

.sec-2 .sec-innner .btn span i {
  padding-left: 10px;
}

.sec-2 .sec-innner .btn.js-btn-more {
  display: none;
}

.sec-3 h2 {
  color: #000;
  background: none;
  margin: 0;
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 1.6em;
}

.sec-3 h2::before {
  border: none;
}

.sec-3 h3 {
  color: #000;
  background: none;
  margin: 0px 0px 20px;
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 1.3em;
}

.sec-3 h3::before {
  display: none;
}

.sec-3 h4 {
  color: #000;
  background: none;
  margin: 70px 0px 20px;
  padding: 0;
  border: none;
  font-weight: 500;
}

.sec-3 h4::before {
  display: none;
}

.sec-3 ul {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 20px 0px;
}

@media (max-width: 960px) {
  .sec-3 ul {
    display: block;
  }
}

.sec-3 ul li {
  border: 1px solid;
  width: 19.5%;
  text-align: center;
  padding: 10px 0px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .sec-3 ul li {
    width: 100%;
  }
}

.sec-3 .sec-inner {
  padding: 30px;
  border: 1px solid #E2E2E2;
}

.sec-3 .sec-inner ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3列を作成 */
  gap: 20px;
  /* 必要に応じて調整 */
  margin: 70px 0px !important;
}

@media (max-width: 960px) {
  .sec-3 .sec-inner ul {
    display: block;
  }
}

.sec-3 .sec-inner ul li {
  border: none;
  text-align: center;
  padding: 10px 0px;
  width: 100%;
}

.sec-3 .sec-inner ul li .thumbnail-img {
  background: #F2F2F2;
  padding: 50px 0px;
}

.sec-3 .sec-inner ul li .thumbnail-img img {
  width: 50px;
}

.sec-3 .sec-inner ul li .txt-cont {
  text-align: left;
  margin-top: 10px;
  line-height: 10px;
}

.sec-3 .sec-inner ul li .txt-cont span {
  font-size: 0.6em;
  margin-top: 20px;
  display: block;
}

.sec-3 .sec-inner ul.img-pic li .thumbnail-img a img {
  width: 100%;
}

.sec-3 .active {
  background-color: #000;
  color: #fff;
}

.sec-3 .sec-inner {
  display: none;
}

.sec-3 .sec-inner.show {
  display: block;
}

.sec-inner-support-first .thumbnail-img {
  padding: 0 !important;
  background: none !important;
}

.sec-inner-support-first .thumbnail-img video {
  width: 100%;
}

.sec-inner-support-second ul {
  margin: 70px 0px 0px;
}

.sec-inner-support-second ul li .thumbnail-img a {
  display: block;
}

.sec-inner-support-third .txt {
  margin-bottom: 30px;
}

.sec-inner-support-third .sec-inner-support-third-video .thumbnail-img {
  padding: 0 !important;
  background: none !important;
}

.sec-inner-support-third .sec-inner-support-third-video .thumbnail-img video {
  width: 100%;
}

.sec-inner-support-four .faq {
  padding: 70px 0px;
}

.sec-inner-support-four .faq .faq_inner {
  background: #F2F2F2;
  padding: 30px;
  margin: 30px 0px;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_q {
  display: flex;
  margin: 10px 0px;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_q span {
  color: #1F7CCB;
  font-size: 1.6em;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_q p {
  font-size: 1.2em;
  display: flex;
  align-items: center;
  margin-left: 10px;
  color: #000;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_a {
  display: flex;
  margin: 10px 0px;
  align-items: center;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_a span {
  color: #E35D5D;
  font-size: 1.6em;
  display: flex;
  align-items: center;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_a p {
  font-size: 0.9em;
  margin-left: 10px;
}

.sec-inner-support-four .faq .faq_inner .faq_inner_a .faq_inner_a_txt {
  margin-left: 10px;
}

.sec-inner-support-five .sec-inner-support-five-in {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.sec-inner-support-five .sec-inner-support-five-in-btn {
  margin: 20px 0px;
}

.sec-inner-support-five .sec-inner-support-five-in-btn button {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid;
  border-radius: 0px;
  color: #000;
  cursor: pointer;
  font-size: 100%;
  /* line-height: 1; */
  padding: 10px 20px;
  /* text-transform: uppercase; */
  /* transition: .3s ease-in-out; */
  /* vertical-align: top; */
  margin: 0px auto;
  font-size: 0.8em;
}

.sec-inner-support-five .sec-inner-support-five-in-btn button a {
  color: #000;
  text-decoration: none;
}

.sec-inner-support-five .sec-inner-support-five-in-btn button a img {
  margin-left: 10px;
}

.l-footer__foot {
  background: #000;
  padding-bottom: 0em;
  padding-top: 0em;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */