@charset "UTF-8";

/* _destyle.scss  */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

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

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* _variable.scss */
/* _media.scss */
/* _utility.scss */
.u-md-down {
  display: none !important;
}

@media (max-width: 900px) {
  .u-md-down {
    display: block !important;
  }
}

@media (max-width: 900px) {
  .u-lg-only {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .u-lg-only {
    display: none !important;
  }
}

/*　_body.scss */
.c-body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 1.54;
  -webkit-font-smoothing: antialiased;
}

/* _container.scss */
.c-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 900px) {
  .c-container {
    padding: 0 20px;
  }
}

.c-container--breadclumb {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
}

.c-container--cv {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 900px) {
  .c-container--cv {
    padding: 0 20px;
  }
}

.c-container--footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* _header.scss */
.c-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.c-header__ttl-bg {
  height: 20px;
  background: #f4f4f4;
}

@media (max-width: 900px) {
  .c-header__ttl-bg {
    display: none;
  }
}

.c-header__ttl {
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  color: #666;
}

@media (max-width: 900px) {
  .c-header__ttl {
    position: static;
    margin-left: 10px;
  }
}

.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 64px;
  padding-left: 30px;
}

@media (max-width: 900px) {
  .c-header__inner {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 26px 0 16px;
    height: 49px;
  }
}

.c-header__logo {
  padding-top: 1px;
}

@media (max-width: 900px) {
  .c-header__logo {
    padding-top: 2px;
  }
}

.c-header__logo img {
  width: 100px;
}

@media (max-width: 900px) {
  .c-header__logo img {
    width: 88px;
  }
}

.c-header__nav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 900px) {
  .c-header__nav-area {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

/* _header-cv.scss */
.c-header-cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 900px) {
  .c-header-cv {
    display: none;
  }
}

.c-header-cv__btn {
  height: 64px;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #4A90E2;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  min-width: 110px;
}

.c-header-cv__btn:hover {
  opacity: 0.5;
}

.c-header-cv__btn--orange {
  padding: 0 18px;
  background: #F5A623;
}

.c-header-cv__txt {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

/* _hamburger.scss */
.c-hamburger {
  display: none;
}

@media (max-width: 900px) {
  .c-hamburger {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    background: white;
    border-radius: 50%;
    right: 20px;
    top: 65px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
    -webkit-transition: 0.9s;
    transition: 0.9s;
  }
}

.c-hamburger.js-moveUp {
  top: 14px;
}

.c-hamburger__bar {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  left: 11px;
  background: #333;
}

.c-hamburger__bar:nth-child(1) {
  top: 15px;
}

.c-hamburger__bar:nth-child(2) {
  top: 20px;
}

.c-hamburger__bar:nth-child(3) {
  top: 25px;
}

.c-hamburger.js-active .c-hamburger__bar:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-hamburger.js-active .c-hamburger__bar:nth-child(2),
.c-hamburger.js-active .c-hamburger__bar:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* _nav.scss */
@media (max-width: 900px) {
  .c-nav {
    display: none;
  }
}

.c-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding-left: 30px;
}

.c-nav__item {
  height: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16px;
  font-size: 12px;
}

.c-nav__item:hover .c-nav__txt {
  opacity: 0.5;
}

.c-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-nav__txt {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* _modal-nav.scss */
.c-modal-nav {
  display: none;
}

@media (max-width: 900px) {
  .c-modal-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 80%;
    max-width: 80%;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    height: 100vh;
  }
}

@media (max-width: 900px) {
  .c-modal-nav.js-active {
    opacity: 100;
    -webkit-transform: translate(0);
    transform: translate(0);
    pointer-events: auto;
    overflow-y: scroll;
  }
}

@media (max-width: 900px) {
  .c-modal-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .c-modal-nav__item {
    padding: 16px;
    font-weight: bold;
    width: 100%;
    border-bottom: solid 1px #eeeeee;
  }
}

@media (max-width: 900px) {
  .c-modal-nav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
}

@media (max-width: 900px) {
  .c-modal-nav__btn::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-right: solid 1.5px;
    border-bottom: solid 1.5px;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    color: #4A90E2;
  }
}

@media (max-width: 900px) {
  .c-modal-nav__btn::after {
    content: "";
    display: block;
    width: 11px;
    height: 1.5px;
    position: absolute;
    right: 3px;
    top: 50%;
    background-color: #4a90e2;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
  }
}

@media (max-width: 900px) {
  .c-modal-nav__txt {
    font-size: 12px;
  }
}

.c-modal-overlay {
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .c-modal-overlay.js-active {
    opacity: 100;
    display: block;
  }
}

/* _modal-cv.scss */
.c-modal-cv {
  display: none;
}

@media (max-width: 900px) {
  .c-modal-cv {
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .c-modal-cv__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .c-modal-cv__item:not(:last-child) {
    margin-bottom: 12px;
  }
}

@media (max-width: 900px) {
  .c-modal-cv__btn {
    padding: 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    padding: 16px 32px 16px 32px;
    position: relative;
  }

  .c-modal-cv__btn--orange {
    background: #F5A623;
  }

  .c-modal-cv__btn--blue {
    background: #4A90E2;
  }

  .c-modal-cv__btn--pink {
    background: -webkit-gradient(linear, left top, right top, from(#e93667), to(#f9739c));
    background: linear-gradient(to right, #e93667, #f9739c);
  }
}

@media (max-width: 900px) {
  .c-modal-cv__btn::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-right: solid 1.5px;
    border-bottom: solid 1.5px;
    position: absolute;
    right: 32px;
    top: 50%;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translateY(-50%);
    color: #fff;
  }
}

@media (max-width: 900px) {
  .c-modal-cv__btn::after {
    content: "";
    display: block;
    width: 11px;
    height: 1.5px;
    position: absolute;
    right: 35px;
    top: 50%;
    background-color: #fff;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
  }
}

@media (max-width: 900px) {
  .c-modal-cv__txt {
    font-size:14px;
    font-weight: bold;
    color: #fff;
  }
}

/* _breadcrumb.scss */
.c-breadcrumb {
  padding-top: 12px;
}

@media (max-width: 900px) {
  .c-breadcrumb {
    display: none;
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-breadcrumb__item:not(:last-child) {
  padding-right: 30px;
  position: relative;
}

.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  display: block;
  position: absolute;
  top: 1px;
  right: 10px;
}

.c-breadcrumb__btn :hover {
  opacity: 0.5;
}

.c-breadcrumb__txt {
  font-size: 11px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/* _section.scss */
.c-faq {
  padding-bottom: 43px;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .c-faq {
    padding-bottom: 30px;
  }
}

.c-faq__list {
  margin-bottom: 32px;
}

.c-faq__q {
  color: #4A90E2;
  font-size: 15px;
  margin-bottom: 18px;
  position: relative;
}

.c-faq__q::after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  height: 1px;
  background-color: #eee;
  left: 0;
  bottom: -9px;
}

.c-faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-faq__q-icon {
  font-size: 20px;
  margin-right: 20px;
}

@media (max-width: 900px) {
  .c-faq__q-icon {
    margin-right: 8px;
  }
}

.c-faq__a-icon {
  font-size: 20px;
  color: #f5a623;
  font-weight: bold;
  margin-right: 20px;
}

@media (max-width: 900px) {
  .c-faq__a-icon {
    margin-right: 8px;
  }
}

.c-faq__q-txt {
  padding-top: 8px;
}

@media (max-width: 900px) {
  .c-faq__q-txt {
    font-size: 14px;
  }
}

.c-faq__a-txt {
  padding-top: 8px;
}

@media (max-width: 900px) {
  .c-faq__a-txt {
    font-size:14px;
  }
}

/* _ttl.scss */
.c-ttl {
  height: 190px;
  background: #2cb696;
  background: url(../img/ttl_bg.jpg);
  background-size: cover;
  text-align: center;
}

@media (max-width: 900px) {
  .c-ttl {
    height: 112px;
    background: url(../img/ttl_bg_sp.jpg);
    background-size: cover;
  }
}

.c-ttl__area {
  max-width: 880px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 900px) {
  .c-ttl__area {
    padding: 0 16px;
  }
}

.c-ttl__txt {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

@media (max-width: 900px) {
  .c-ttl__txt {
    font-size: 17px;
    padding-right: 50px;
  }
}

/* _lead.scss */
.c-lead {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px;
}

@media (max-width: 900px) {
  .c-lead {
    padding: 30px 20px 20px;
  }
}

.c-lead__ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 900px) {
  .c-lead__ttl {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .c-lead__txt {
    font-size:14px;
  }
}

/* _link-underline.scss */
.c-link-underline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 65px;
}

.c-link-underline__btn {
  text-decoration: underline;
  font-size: 12px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-align: center;
  display: inline-block;
}

.c-link-underline__btn:hover {
  opacity: 0.5;
}

/* _cv.scss */
.c-cv {
  background: url(../img/cv_bg.jpg);
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 90px 0 100px;
  position: relative;
}

@media (max-width: 900px) {
  .c-cv {
    padding: 40px 0;
    background: url(../img/cv_bg_sp.jpg);
    background-size: cover;
  }
}

.c-cv:before {
  top: 0%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: transparent;
  border-top-color: #fff;
  border-width: 20px;
  margin-left: -20px;
}

.c-cv__lead {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .c-cv__lead {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 -20px 20px;
  }
}

.c-cv__sub-txt {
  font-size: 15.4px;
  margin-bottom: 20px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .c-cv__sub-txt {
    font-size:14px;
    margin-bottom: 10px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
}

.c-cv__btn {
  width: 460px;
  height: 76.2px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#e93667), to(#f9739c));
  background: linear-gradient(to right, #e93667, #f9739c);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 900px) {
  .c-cv__btn {
    width: 90%;
    height: 69px;
    margin-bottom: 20px;
    max-width: 500px;
  }
}

.c-cv__btn:hover {
  opacity: 0.8;
}

.c-cv__btn-txt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .c-cv__btn-txt {
    font-size: 19px;
  }
}

.c-cv__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .c-cv__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.c-cv__item {
  width: calc((100% - 40px) / 3);
}

@media (max-width: 900px) {
  .c-cv__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.c-cv__sub-btn {
  width: 100%;
  height: 56px;
  background: #fff;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0179cd;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 900px) {
  .c-cv__sub-btn {
    width: 90%;
    height: 50px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.c-cv__sub-btn:hover {
  opacity: 0.8;
}

@media (max-width: 900px) {
  .c-cv__sub-btn-txt {
    font-size: 18px;
  }
}

/* _footer.scss */
.c-footer {
  background: #fbfbfb;
  padding: 56px 0 72px;
}

@media (max-width: 900px) {
  .c-footer {
    padding: 40px 0 30px;
  }
}

.c-footer__logo {
  margin-bottom: 24px;
  display: inline-block;
}

.c-footer__logo img {
  width: 160px;
}

@media (max-width: 900px) {
  .c-footer__logo img {
    width: 120px;
  }
}

/* _footer-nav.scss */
.c-footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 40px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .c-footer-nav__list {
    font-size: 11px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}

.c-footer-nav__list--alt {
  font-size: 11px;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 8px;
}

@media (max-width: 900px) {
  .c-footer-nav__list--alt {
    font-size: 10px;
    margin-bottom: 0;
    padding-bottom: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .c-footer-nav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.c-footer-nav__item {
  padding-right: 24px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 900px) {
  .c-footer-nav__item {
    margin-bottom: 10px;
    line-height: 1;
    padding: 0 8px;
  }
}

.c-footer-nav__item:hover {
  opacity: 0.5;
}

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

.all_wrapper {
  overflow: hidden;
}

.pc_br {
  display: block;
}

/*
.display_sec {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.display_sec_last {
  padding: 40px 0 50px;
}


.display_sec_ttl01 {
  font-size: 15px;
  color: #f5a623;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #F5A623;
}

.display_sec_text {
  margin: 10px 0 14px;
  line-height: 1.8;
  font-size: 14px;
}
*/
.display_sec_box01 {
  margin-top: 35px;
}
.display_sec_box01 dl {
  display: flex;
}

.display_sec_box01 dt {
  width: 25%;
  font-weight: bold;
  background-color: #F8F8F8;
  padding: 20px 20px;
  border-top: 1px solid #D3D3D3;
  line-height: 1.6;
}

.display_sec_box01 dd {
  width: 80%;
  padding: 20px 20px;
  border-top: 1px solid #D3D3D3;
  line-height: 1.6;
}

.display_last_dt,
.display_last_dd {
  border-bottom: 1px solid #D3D3D3;
}

.display_sec_box01_text01 {
  margin: 10px 0;
}

.display_notion {
  font-size: 12px;
}

.display_sec_table_notion {
  font-size: 12px;
  text-align: right;
  display: block;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .pc_br {
    display: none;
  }

  .display_sec {
    padding: 30px 20px 0;
  }

  .display_sec_last {
    padding: 30px 20px 30px;
  }

  .display_sec_ttl01 {
    font-size: 14px;
  }

  .display_sec_text {
    font-size:14px;
  }

  .display_sec_box01 dl {
    display: block;
    font-size:14px;
  }

  .display_sec_box01 dt {
    width: 100%;
    padding: 10px;
    padding: 10px 10px 11px;
  }

  .display_sec_box01 dd {
    width: 100%;
    padding: 13px 10px;
    padding: 13px 10px 15px;
  }

  .display_sec_box01_notion {
    display: block;
    padding-bottom: 13px;
  }

  .display_sec_table_notion {
    text-align: center;
  }

  .display_last_dt {
    border-bottom: none;
  }
}