@charset "UTF-8";
:root {
  --font-set-gothic: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'Noto Sans JP', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  --font-set-mincho: '游明朝体', YuMincho, '游明朝', 'Yu Mincho', 'ヒラギノ角明朝 Pro', 'Hiragino Kaku Mincho Pro', 'メイリオ', 'Meiryo', serif;
  --text-color-main: #000;
  --border-color-main: #ddd;
  --bg-color-gray-1: #eee;
  --bg-color-gray-2: #f5f5f5;
}

.mincho {
  font-family: var(--font-set-mincho);
}

.mincho * {
  font-family: var(--font-set-mincho);
}

html {
  font-family: var(--font-set-gothic);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .05em;
}

html *,
html p,
html span {
  font-family: var(--font-set-gothic);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

html body {
  overflow: hidden;
}

html body #headerWrapper {
  position: relative;
  margin: auto;
  width: 1140px;
  max-width: 100%;
  background-color: transparent;
  z-index: 100;
}

html body #headerWrapper #header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1em;
  padding-right: 1em;
  margin: auto;
  padding-left: calc((100% - 1140px) / 2 + 1em);
  padding-right: calc((100% - 1140px) / 2 + 1em);
  width: 100%;
}

html body #headerWrapper #header nav {
  width: auto;
}

html body #headerWrapper #header:before {
  content: none;
}

html body #headerWrapper #header:after {
  content: none;
}

html body #headerWrapper #header #logo {
  margin-bottom: 0;
}

html body #headerWrapper #header #logo img {
  max-width: 180px;
  max-height: inherit;
}

html body #topicpath {
  position: absolute;
  top: 532px;
  width: 100%;
  background-color: transparent;
  font-size: .9rem;
  text-align: right;
}

html body #topicpath .breadcrumb {
  padding: 1em 0;
  text-align: left;
}

html body #topicpath .breadcrumb > li + li:before {
  content: '/';
}

html body.default #topicpath, html body.about #topicpath, html body.list_3col #topicpath {
  top: 532px;
}

html body #main > div > h1:first-child {
  position: relative;
  margin-top: 0;
  padding: 0 15px;
  background-size: cover;
  font-size: 3.6rem;
  font-weight: lighter;
  letter-spacing: .2em;
  margin-left: 0;
  margin-right: 0;
  height: 532px;
  display: flex;
  justify-content: center;
  align-items: center;
}

html body #main > div > h1:first-child.nikkenn {
  display: none;
}

html body #main h2 {
  font-size: 1.8rem;
}

html body #main h2:after {
  content: none;
}

html body #main hr {
  border: 1px solid var(--border-color-main);
}

html body #main input[type=submit] {
  padding: .8em 3em;
  background-color: #1c2a52;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid #1c2a52;
  letter-spacing: .1em;
}

html body #main input[type=submit]:hover {
  background-color: #fff;
  color: #1c2a52;
}

html body #main a {
  color: var(--text-color-main);
  text-decoration: underline;
}

html body #main a:hover {
  opacity: .6;
}

html body #main a img:hover {
  background-color: #b0b0b0;
}

html body #main .mailForm h1,
html body #main .formConfirm h1,
html body #main .formComplate h1 {
  display: none !important;
}

html body #main .mailForm .formConfiBu,
html body #main .formConfirm .formConfiBu,
html body #main .formComplate .formConfiBu {
  padding: 1.6em 0;
  width: 600px;
  max-width: 80%;
  font-weight: 800;
}

html body #main .formConfirm h1 {
  display: none;
}

html body #main .formComplate h1 {
  display: none;
}

html body #main .btn-form-link {
  display: inline-block;
  padding: .8em 2em;
  background-color: #1c2a52;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

html body #main .btn-form-link:hover {
  opacity: .8;
}

html body #main table.mailform-table {
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
  margin: 50px 0;
  font-size: 1rem;
  border: 0;
}

html body #main table.mailform-table:not(:last-of-type) {
  margin-bottom: 0;
}

html body #main table.mailform-table + table.mailform-table {
  margin-top: 0;
}

html body #main table.mailform-table + p.heading {
  margin-top: 50px;
}

html body #main table.mailform-table tr {
  border: 0;
}

html body #main table.mailform-table tr th {
  white-space: normal;
  border: 0;
  padding-left: 0;
  background-color: #fff;
}

html body #main table.mailform-table tr td {
  border: 0;
}

html body #main table.mailform-table input[type=text] {
  margin: 0;
  margin-bottom: 5px;
  padding: 1em;
  border: 1px solid var(--border-color-main);
  border-radius: 4px;
}

html body #main table.mailform-table input[type=tel] {
  margin: 0;
  margin-bottom: 5px;
  padding: 1em;
  border: 1px solid var(--border-color-main);
  border-radius: 4px;
}

html body #main table.mailform-table input[type=email] {
  margin: 0;
  margin-bottom: 5px;
  padding: 1em;
  border: 1px solid var(--border-color-main);
  border-radius: 4px;
}

html body #main table.mailform-table select {
  margin: 0;
  margin-bottom: 5px;
  padding: 1em;
  height: 100%;
  border: 1px solid var(--border-color-main);
  border-radius: 4px;
}

html body #main table.mailform-table textarea {
  margin: 0;
  margin-bottom: 5px;
  padding: 1em;
  min-height: 200px;
  border: 1px solid var(--border-color-main);
  border-radius: 4px;
  resize: vertical;
}

html body #main table.mailform-table label {
  padding-top: 0;
}

html body #main table.mailform-table div {
  margin: 0;
  margin-bottom: 5px;
}

html body #main table.mailform-table p {
  margin: 0;
  margin-bottom: 5px;
}

html body #main p.heading {
  margin: 0 -100%;
  padding: 1em 100%;
  background-color: var(--bg-color-gray-2);
  background-image: none;
  font-size: 2rem;
  border-bottom: 0;
  text-align: center;
}

html body #main .returnBu a {
  padding: .8em 3em;
  background-color: #1c2a52;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border: 1px solid #1c2a52;
  letter-spacing: .1em;
}

html body #main .returnBu a:hover {
  background-color: #fff;
  color: #1c2a52;
}

html body #main .qaList {
  margin-bottom: 0;
}

html body #main .qaList dl {
  margin-bottom: 0;
}

html body #main .qaList dl dt {
  position: relative;
  padding: 1em 3em;
  background-image: none;
  font-size: 1.4rem;
  font-weight: normal;
}

html body #main .qaList dl dt:before {
  content: 'Q';
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-color-main);
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.6;
}

html body #main .qaList dl dt:after {
  content: '＋';
  position: absolute;
  top: 1rem;
  right: 0;
  color: var(--text-color-main);
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: middle;
  line-height: 1.6;
}

html body #main .qaList dl dt.active:after {
  content: '−';
}

html body #main .qaList dl dd {
  position: relative;
  display: none;
  margin: 0 -100%;
  padding-top: 1em;
  padding-left: 2em;
  padding: 2em 100%;
  background-color: var(--bg-color-gray-2);
  background-image: none;
  border-bottom: 0;
  font-family: var(--font-set-gothic);
}

html body #main .qaList dl:before {
  content: none;
}

html body #main .parts_tabel_type05 {
  margin: auto;
  width: 800px;
  max-width: 100%;
}

html body #main .parts_tabel_type05 table {
  display: table;
}

html body #main .parts_tabel_type05 table tr th {
  padding: 1em 1em 1em 0;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid var(--border-color-main);
  vertical-align: top;
  white-space: nowrap;
  vertical-align: middle;
}

html body #main .parts_tabel_type05 table tr td {
  padding: 1em 0 1em 1em;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid var(--border-color-main);
  vertical-align: top;
}

html body #main .parts_img_type34 {
  margin-bottom: 80px;
  width: 100%;
  height: 532px;
}

html body #main .parts_img_type34.page-company {
  background-image: url("../../img/linc/page/main-company.png");
  background-size: cover;
}

html body #main .parts_img_type34.page-company img {
  display: none;
  object-fit: cover;
}

html body #main .parts_img_type34 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html body #main .parts_img_type34 p {
  position: absolute;
  top: 220px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  background-color: transparent;
  color: #fff;
  font-size: 3.6rem;
  font-weight: lighter;
  letter-spacing: .2em;
  line-height: 1.8;
  text-shadow: 0 0 20px #888;
}

@media screen and (max-width: 800px) {
  html body #topicpath {
    display: none;
    top: 300px;
  }
  html body.default #topicpath, html body.about #topicpath {
    display: none;
    top: 491px;
  }
  html body #headerWrapper .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #000;
  }
  html body #headerWrapper img {
    display: block;
    max-height: 30px;
  }
  html body #headerWrapper #header {
    margin: 0;
    padding: 0;
    height: 48px;
    width: 300px;
    max-width: 50%;
  }
  html body #headerWrapper #header .freeParts {
    margin: 0;
    padding: 9px 0;
    z-index: 2000;
  }
  html body #headerWrapper #header #logo {
    margin-bottom: 0;
  }
  html body #headerWrapper #header #logo img {
    margin: 0;
    padding: 0 9px;
    width: auto;
    max-width: 100%;
    height: 30px;
    max-height: 30px;
  }
  html body #headerWrapper #header nav {
    width: auto;
  }
  html body #headerWrapper #header nav ul li a {
    color: #000;
  }
}

.top #headerWrapper {
  position: relative;
  margin: auto;
  width: 1140px;
  max-width: 100%;
  height: auto;
  background-attachment: fixed;
  background-image: url(/images/temp/bg_header.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.top #headerWrapper #header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding-left: calc((100% - 1140px) / 2 + 1em);
  padding-right: calc((100% - 1140px) / 2 + 1em);
  width: 100%;
  z-index: 1000;
}

.top #headerWrapper #header:before {
  content: none;
}

.top #headerWrapper #header .freeParts {
  margin: 0;
}

.top #headerWrapper #upper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: #e3e3e3;
  background-image: url(/images/temp/bg_header.jpg);
  background-size: cover;
  color: #000;
}

.top #headerWrapper #upper .freeParts {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}

.top #headerWrapper #upper .freeParts .box {
  position: relative;
  margin: 0;
  height: 100%;
}

.top #headerWrapper #upper .freeParts .box .boxTop {
  position: relative;
  height: 100%;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom {
  position: relative;
  height: 100%;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div {
  position: relative;
  height: 100%;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1em;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: none;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual > div, .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual h1, .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual p {
  z-index: 2;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_label {
  margin-bottom: 1em;
  width: 300px;
  max-width: 100%;
  max-height: 100%;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_logo {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 500px;
  max-width: 100%;
  min-height: 50px;
  max-height: inherit;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn {
  position: absolute;
  right: 2em;
  bottom: 20px;
  display: block;
  width: 220px;
  height: 220px;
  max-width: 100%;
  z-index: 1;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn img {
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
}

.top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn p {
  font-size: 21px;
}

.top #headerWrapper #upper a {
  color: #000;
  text-decoration: none;
}

.top #bottom .topicsDigest {
  position: relative;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 -100% 60px;
  padding: 0 1em;
  background-color: #e3e3e3;
}

.top #bottom .topicsDigest .topicsDigestBox {
  padding: .5em;
}

.top #bottom .topicsDigest a {
  transition: .3s;
}

.top #bottom .topicsDigest a:hover {
  opacity: .6;
}

.top #bottom .topicsDigest .container {
  display: block;
}

.top #bottom .topicsDigest .container:before,
.top #bottom .topicsDigest .container:after {
  content: none;
}

@media screen and (max-width: 800px) {
  .top .topicsDigest {
    margin: 0 -15px 60px;
  }
}

#main div:first-child .parts_img_type34 {
  margin: 0 0 80px;
  width: 100%;
  height: 532px;
}

#main div:first-child .parts_img_type34.page-company {
  background-image: url("../../img/linc/page/main-company.png");
  background-size: cover;
}

#main div:first-child .parts_img_type34.page-company img {
  display: none;
  object-fit: cover;
}

#main div:first-child .parts_img_type34.page-member {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#main div:first-child .parts_img_type34.page-member p {
  font-size: 3.6rem;
  font-weight: lighter;
  letter-spacing: .2em;
}

#main div:first-child .parts_img_type34 img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  #main div:first-child .parts_img_type34 {
    height: 300px;
  }
  #main div:first-child .parts_img_type34 p {
    top: 50%;
  }
  #main div:first-child .parts_img_type34.page-member p {
    font-size: 2em;
  }
}

@media screen and (max-width: 800px) {
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn {
    position: relative;
    left: 0;
    bottom: 0;
    display: block;
    margin: 1em auto 0;
    width: 200px;
    height: 200px;
    text-align: center;
  }
  .top #bottom .topicsDigest {
    margin: 0 -15px;
  }
  .top #bottom .topicsDigest .topicsDigestBox {
    padding: .5em 0;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText {
    display: block;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText .topics_title {
    display: none;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText .post_date {
    margin-left: 0;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText .post_link {
    margin-left: 0;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText .topics_more {
    justify-content: end;
    margin-top: 4px;
    padding: 0;
    width: 100%;
    text-align: right;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText .topics_more a {
    margin-left: auto;
    font-size: 12px;
  }
  .top #bottom .topicsDigest .topicsDigestBox .topicDigestText .topics_more:after {
    width: 12px;
    height: 12px;
  }
  html body #main table th {
    overflow-wrap: break-word;
    word-break: break-all;
  }
  html body #main table td {
    overflow-wrap: break-word;
    word-break: break-all;
  }
  html body #main input[type=submit] {
    padding: .8em;
    width: 100%;
  }
  html body #main .returnBu a {
    padding: .8em;
    width: 100%;
  }
  html body #main .parts_tabel_type05 {
    max-width: 100%;
    overflow: hidden;
  }
  html body #main .parts_tabel_type05 table {
    max-width: 100%;
    table-layout: fixed;
  }
  html body #main .parts_tabel_type05 table tr th {
    overflow-wrap: break-word;
    word-break: break-all;
    white-space: normal;
  }
  html body #main .parts_tabel_type05 table tr td {
    padding: 1em 0;
    overflow-wrap: break-word;
    word-break: break-all;
    white-space: normal;
  }
  html body #main .parts_img_type34 {
    margin: 0 -15px 80px;
    width: calc(100% + 30px);
  }
  html body #main .parts_img_type34 img {
    margin: 0;
    width: 100%;
  }
  html body #main .parts_img_type34 p {
    font-size: 2em;
  }
  html body #main .qaList dl dd {
    margin: 0 -15px;
    padding: 2em;
  }
  html body #main .qaList dl dd:before {
    content: none;
  }
  html body #main p.heading {
    margin: 1em 0 0;
    padding: 1em;
    font-size: 1.4em;
  }
  html body #main table.mailform-table th {
    padding: 10px 0;
  }
  html body #main table.mailform-table td {
    padding: 10px 0;
  }
  html body #main table.mailform-table select {
    max-width: 100%;
  }
  html body #main table.mailform-table textarea {
    max-width: 100%;
  }
  html body #main table.mailform-table .infoMessage {
    max-width: 100%;
  }
  .top #headerWrapper img,
  #headerWrapper img {
    display: block;
    max-height: 30px;
  }
  .top #headerWrapper #header,
  #headerWrapper #header {
    margin: 0;
    padding: 0;
    height: 48px;
    width: 300px;
    max-width: 50%;
  }
  .top #headerWrapper #header .freeParts,
  #headerWrapper #header .freeParts {
    margin: 0;
    padding: 9px 0;
    z-index: 2000;
  }
  .top #headerWrapper #header .navbar-inverse,
  #headerWrapper #header .navbar-inverse {
    background-color: #e3e3e3;
    border-color: #444;
  }
  .top #headerWrapper #header .navbar-header,
  #headerWrapper #header .navbar-header {
    background-color: #e3e3e3;
  }
  .top #headerWrapper #header .navbar-header .nav.navbar-nav,
  #headerWrapper #header .navbar-header .nav.navbar-nav {
    background-color: #e3e3e3;
  }
  .top #headerWrapper #header .navbar-header .nav.navbar-nav li,
  #headerWrapper #header .navbar-header .nav.navbar-nav li {
    background-color: #e3e3e3;
  }
  .top #headerWrapper #header .navbar-header .nav.navbar-nav li a,
  #headerWrapper #header .navbar-header .nav.navbar-nav li a {
    background-color: #e3e3e3;
  }
  #main div:first-child .parts_img_type34 {
    margin: 0 -15px 80px;
    width: calc(100% + 30px);
  }
  #main div:first-child .parts_img_type34 img {
    margin: 0;
    width: 100%;
  }
  #main div:first-child .parts_img_type34 p {
    font-size: 2em;
  }
  .column1 #main > div > h1:first-child {
    padding-top: 48px;
    font-size: 2em;
    height: 300px;
  }
  .column1 #main.list_member .topicsList h1 {
    font-size: 2em;
  }
  #main_visual .top_fv_label {
    margin-bottom: 0;
  }
  #main_visual .top_fv_logo {
    margin: 20px auto;
    min-width: 200px;
    max-width: 200px;
  }
  .top .btn-square {
    display: block;
    margin: auto;
    width: 400px;
    max-width: 90%;
    line-height: 1.6;
  }
  .top h1 {
    margin-bottom: 20px;
    font-size: 2.2em;
  }
  .top h2 {
    font-size: 2em;
  }
  .top .section_sample .section_sample_content {
    display: grid;
    grid-gap: 10px;
  }
  .top .section_sample .section_sample_content .section_title {
    font-size: 2em;
    writing-mode: horizontal-tb;
    width: 100%;
  }
  .top .section_sample .section_sample_content .sample_content {
    margin: 0;
    width: 100%;
  }
  .top .cparts-id321 {
    padding: 40px 0;
  }
  .top .cparts-id321 .cparts-txt-block {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1em;
  }
  .top .cparts-id321 .cparts-txt-block .cparts-head-block h2 {
    margin: 0;
    margin-bottom: 20px;
  }
  .top .cparts-id321 .cparts-txt-block .cparts-notes-block {
    margin-bottom: 0;
    padding: 0;
  }
  .top .cparts-id321 .cparts-img-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .top .cparts-id321 .cparts-img-block img {
    height: 100%;
  }
  .cparts-id321 .cparts-txt-block {
    padding: 1em;
  }
  .cparts-id321 .cparts-txt-block .cparts-notes-block {
    padding: 0;
  }
  #opt3 [class*="navigation-"] ul li {
    display: inline-block;
  }
}

@media screen and (max-height: 800px) {
  .top #headerWrapper #upper .topicsDigest {
    position: relative;
  }
}

@media screen and (max-width: 800px) and (max-height: 800px) {
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual {
    margin: 50px 0 0;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual h1 {
    font-size: 2em;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn {
    position: relative;
    margin: 50px 2em 2em auto;
    width: 180px;
    height: 180px;
  }
}

@media screen and (max-width: 600px) and (max-height: 800px) {
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual {
    margin: 50px 0 0;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual h1 {
    font-size: 2em;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn {
    position: relative;
    left: 0;
    margin: 50px auto 0;
    width: 180px;
    height: 180px;
  }
}

@media screen and (max-width: 600px) and (max-height: 600px) {
  .top #headerWrapper #upper {
    height: calc(100vh + 50px);
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual {
    justify-content: end;
    padding-bottom: 50px;
    margin: 0;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual h1 {
    margin-bottom: 10px;
    font-size: 1.4em;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_label {
    margin: 0 auto;
    width: 200px;
    max-width: 100%;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_logo {
    margin: 10px auto;
    width: 150px;
    max-width: 80%;
  }
  .top #headerWrapper #upper .freeParts .box .boxTop .boxBottom > div #main_visual .top_fv_btn {
    position: relative;
    margin: 20px auto 0;
    width: 180px;
    height: 180px;
    z-index: 50;
  }
}

.about_option_item #cms_editor_form {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.about_option_item > .box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.about_option_item > .box .parts_text_type05_box_01,
.about_option_item > .box .parts_text_type05_box_02,
.about_option_item > .box .parts_text_type05_box_03 {
  position: relative;
  flex: 100% !important;
  padding-top: 100%;
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 50%;
}

.about_option_item > .box .parts_text_type05_box_01:before,
.about_option_item > .box .parts_text_type05_box_02:before,
.about_option_item > .box .parts_text_type05_box_03:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #464a65 0%, #464a65 45%, #fff 45%, #fff 100%);
  background-position: bottom;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.about_option_item > .box .parts_text_type05_box_01 h4,
.about_option_item > .box .parts_text_type05_box_02 h4,
.about_option_item > .box .parts_text_type05_box_03 h4 {
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  margin-bottom: 1em !important;
  padding: 0 1.5em;
  width: 100%;
  color: #feca21 !important;
  font-size: 1.6em !important;
  border-bottom: 0 !important;
  text-align: center;
}

.about_option_item > .box .parts_text_type05_box_01 p,
.about_option_item > .box .parts_text_type05_box_02 p,
.about_option_item > .box .parts_text_type05_box_03 p {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  width: 100%;
  text-align: center;
}

.about_option_item > .box .parts_text_type05_box_01 p:last-child,
.about_option_item > .box .parts_text_type05_box_02 p:last-child,
.about_option_item > .box .parts_text_type05_box_03 p:last-child {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
  padding: 0 1em;
  width: 100%;
  color: #feca21;
  font-size: 1.8em;
  font-weight: bold;
  padding: 1em 0;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1200px) and (min-width: 1000px) {
  .about_option_item > .box .parts_text_type05_box_01 h4,
  .about_option_item > .box .parts_text_type05_box_02 h4,
  .about_option_item > .box .parts_text_type05_box_03 h4 {
    font-size: 1.2em !important;
  }
  .about_option_item > .box .parts_text_type05_box_01 p:last-child,
  .about_option_item > .box .parts_text_type05_box_02 p:last-child,
  .about_option_item > .box .parts_text_type05_box_03 p:last-child {
    font-size: 1.4em !important;
  }
}

@media screen and (max-width: 800px) {
  .about_option_item > .box {
    grid-template-columns: repeat(1, 1fr);
  }
  .about_option_item > .box .parts_text_type05_box_01,
  .about_option_item > .box .parts_text_type05_box_02,
  .about_option_item > .box .parts_text_type05_box_03 {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------
汎用クラス
---------- */
.arrow_icon {
  position: relative;
}

.arrow_icon:after {
  content: "→";
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: inline-block;
  font-size: 1.2rem;
}

.display_small_img .parts_img_type06_box_01,
.display_small_img .parts_img_type06_box_02,
.display_small_img .parts_img_type06_box_03 {
  text-align: center;
}

.display_small_img .parts_img_type06_box_01 img,
.display_small_img .parts_img_type06_box_02 img,
.display_small_img .parts_img_type06_box_03 img {
  width: 220px !important;
  max-width: 100% !important;
}

.w-100 {
  width: 100%;
  max-width: 100%;
}

.m-b40px {
  margin-bottom: 40px;
}
/*# sourceMappingURL=cparts-customize.css.map */