/* ================================================================================

  [pc] 共通

================================================================================ */

/*-------------------------*/
/* +RESETS                 */
/*-------------------------*/
*, *:after, *:before {
  box-sizing: border-box;
}

html, body, blockquote, form, figure {
  margin: 0;
  padding: 0;
}

blockquote, code, embed, iframe,
img, input, object, pre,
table, td, textarea, video {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

a img, form, fieldset {
  border: none;
}

input, button, select {
  vertical-align: middle;
}

textarea {
  vertical-align: top;
}

abbr {
  cursor: help;
  border-bottom: 1px dotted #bbb;
}

blockquote p, button, input,
li h1, li h2, li h3, li h4,
li h5, li h6, li li, li p,
select, td p, th p {
  font-size: 100%;
}

/*-------------------------*/
/* +NORMALIZE              */
/*-------------------------*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, details, figcaption,
figure, footer, header, hgroup, main,
menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  appearance: textfield;
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.1280px;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}


/*デバイス共通----------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Arial", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.8rem;
  line-height: 1.65;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-break: break-all;
}

#wrap {
  min-width: 1000px;
  width: 100%;
  margin: 0 auto;
}


/*Header----------------------------------------------------------- */
.c-header {
  display: flex;
  padding: 0 calc(50% - 517.5px);
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #e6e6e6;
  min-height: 62px;
  font-family: "Arial", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.c-header_logo {
    margin: -3px 0 0 0;
    line-height: 1;
}
.c-header_tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 40px;
  pointer-events: none;
}
.c-header_tel_number {
  position: relative;
  padding-left: 22px;
  font-weight: bold;
  font-size: 23px;
  color: #505050;
  letter-spacing: -0.03em;
  line-height: 1;
}
.c-header_tel_number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../img/pc/icon_tel_head.svg) no-repeat top;
  background-size: 18px 18px;
}
.c-header_tel_text {
  color: #eb2e11;
  font-size: 15px;
  font-weight: bold;
  padding-left: 26px;
  line-height: 1;
}


/*Footer----------------------------------------------------------- */
.c-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: #505050;
  padding: 32px 16px;
  font-family: "Arial", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1;
}

.c-footer_list {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
}
#site_form1 .c-footer_list {
  display: none;
}

.c-footer_item {
  position: relative;
}
.c-footer_item+.c-footer_item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 4px;
  background: #8c8c8c;
  height: 12px;
  width: 1px;
}
.c-footer_item_link {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.c-footer_item_link.-current {
  color: #bfbfbf;
}
.c-footer_item_link.-blank {
  padding-right: 18px;
}
.c-footer_item_link.-blank::after {
  display: inline-block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  background: url(../img/pc/icon_link_target_blank.svg) no-repeat;
  background-size: 10px 10px;
  height: 10px;
  width: 10px;
}
.c-footer_copylight {
  color: #bfbfbf;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}





/* ================================================================================

  [pc] 各ページ

================================================================================ */
.content {
  width: 1035px;
  margin: 20px auto 40px;
  text-align: left;
}
.content .center {
  margin-top: 20px;
}

.content h2 {
  position: relative;
  border-radius: 5px;
  color: #505050;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  background: #f2f2f2;
  text-align: left;
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 6px;
}
.content h2::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  width: 2px;
  height: 28px;
  border-radius: 2px;
  background: linear-gradient(0deg, #2ec1ac 5%, #d2e603 94%);
}

.content h3 {
  font-size: 18px;
}
.content dl {
  margin-top: 40px;
}
.content dt {
  font-weight: 700;
}
.content p {
  margin-top: 10px;
}
.content p.mgt20 {
  margin-top: 20px;
}
.content p.mgb20 {
  margin-bottom: 20px;
}


/* パンくずリスト
-------------------------------------------------------------------- */
.c-breadcrumbs {
  position: relative;
  line-height: 13px;
}
.c-breadcrumbs_list {
  display: flex;
  width: 100%;
  height: 28px;
  padding: 10px 16px;
  box-sizing: border-box;
  font-size: 13px;
  padding: 10px calc(50% - 517.5px);
}
.c-breadcrumbs_item {
  display: inline-block;
}
.c-breadcrumbs_item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: -3px 0 0 0;
  border-right: 1px solid #8c8c8c;
  border-bottom: 1px solid #8c8c8c;
  vertical-align: middle;
  transform: rotate(-45deg);
}
.c-breadcrumbs_item:first-child::before {
  display: none;
}
.c-breadcrumbs_item:first-child a {
  padding: 5px 5px 5px 0;
}
.c-breadcrumbs_item:last-child {
  margin-right: 10px;
}
.c-breadcrumbs_link {
  padding: 5px;
  color: #4197f9;
}
.c-breadcrumbs_link.-current {
  font-weight: bold;
  color: #505050;
}


/* 会社概要
-------------------------------------------------------------------- */
.company_info {
  width: 940px;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
}
.company_info table {
  width: 100%;
}
.company_info table th,
.company_info table td {
  padding: 14px 10px 10px;
  border-bottom: 1px solid #cccccc;
}
.company_info table th {
  font-weight: 700;
  width: 140px;
}

.company_info_detail {
  width: 920px;
  margin: 15px auto 20px;
  font-size: 0.85em;
  color: #666;
}

/* プライバシーポリシー */
.privacy_policy {
  width: 940px;
  margin: 20px auto 0;
  font-size: 16px;
  text-align: justify;
  word-break: break-all;
}
.privacypolicy-detail-list {
  margin: 10px 0 0 10px;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number {
  margin: 10px 0 0 0px;
}
.privacypolicy-detail-list>li {
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  line-height: 2;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li {
  padding-left: 30px;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(1)::before {
  content: '(1)';
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(2)::before {
  content: '(2)';
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(3)::before {
  content: '(3)';
}
.privacypolicy-detail-list.privacypolicy-detail-list-number>li:nth-of-type(4)::before {
  content: '(4)';
}
