@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
html {
  font-size: 100%;
  line-height: 1.5em;
}

/*=======================================
 ■Foundation
=======================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  background: #000000;
}

body {
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  padding: vr();
  line-height: vr();
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: .3s;
  cursor: pointer;
}
a:hover {
  opacity: .7;
}
a img {
  display: inline-block;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-show {
    display: block;
    line-height: 0;
  }
}

.pc-tb-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-tb-show {
    display: block;
    line-height: 0;
  }
}
@media screen and (min-width: 1280px) {
  .pc-tb-show {
    display: block;
  }
}

.tb-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .tb-show {
    display: block;
    line-height: 0;
  }
}
@media screen and (min-width: 1280px) {
  .tb-show {
    display: none;
  }
}

.sp-show {
  display: block;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .sp-show {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .sp-show {
    display: none;
  }
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: .4s;
}

/* =======================================
 ■Layout
=======================================*/
/* =========================================================
section - コンテンツの大枠
========================================================= */
.l-container, .l-main--col2, .l-main--col3 {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .l-container, .l-main--col2, .l-main--col3 {
    max-width: 1280px;
  }
}
@media screen and (min-width: 768px) {
  .l-container--fluid-md {
    max-width: 100% !important;
    padding: 0;
  }
}
.l-container--mini {
  max-width: 800px;
}

/* =========================================================
common -  共通レイアウトの記述
========================================================= */
/*==================================
main
==================================*/
.l-main {
  padding-left: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-left: 60px;
  }
}

.l-main--narrow {
  max-width: 900px;
  margin: 0 auto;
}

.l-main--mini {
  max-width: 650px;
  margin: 0 auto;
}

/* 2カラム
============*/
.l-main--col2 {
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .l-main--col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .l-main--col2.reverse {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.l-main--col2 .l-main {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-main--col2 .l-main {
    width: calc(100% - 240px);
  }
}
@media screen and (min-width: 768px) {
  .l-main--col2 .l-side {
    width: 200px;
  }
}

/* 3カラム
============*/
.l-main--col3 {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-main--col3 {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 768px) {
  .l-main--col3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.l-main--col3 .l-main {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .l-main--col3 .l-main {
    width: calc(100% - 360px);
    padding: 0 20px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-main--col3 .l-side--left {
    width: 200px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-main--col3 .l-side--right {
    width: 160px;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}

/*==================================
section
==================================*/
.l-section {
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin: 50px auto 0;
  }
}
.l-section.bg-color {
  background: #dddddd !important;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .l-section.bg-color {
    padding: 50px 0;
  }
}
.l-section--in {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .l-section--in {
    padding-bottom: 50px;
  }
}

/* =======================================
  ■Object
=======================================*/
/* Component
======================================= */
/* =========================================================
header - ヘッダー関連全てココ
========================================================= */
.c-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px 0;
  padding-right: 53px;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-header {
    padding: 20px 0 20px 60px;
  }
}
.c-header__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

/*logo======*/
.c-header-logo {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .c-header-logo {
    padding-left: 30px;
  }
}
.c-header-logo__link {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .c-header-logo__link {
    width: 140px;
  }
}

/*sns==============*/
.c-header-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-header-sns {
    padding-right: 30px;
  }
}
.c-header-sns__link {
  padding: 0 5px;
}

/*pagetop==============*/
.c-header-pagetop {
  position: absolute;
  top: 9px;
  right: 60px;
}
@media screen and (min-width: 768px) {
  .c-header-pagetop {
    top: 11px;
  }
}
@media screen and (min-width: 768px) {
  .c-header-pagetop {
    top: 10px;
    right: 10px;
  }
}
.c-header-pagetop a {
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid #393939;
  border-radius: 20px;
  color: #fff;
  display: block;
  line-height: 1;
  padding: calc(8 * (100vw / 768)) calc(20 * (100vw / 768));
}
@media screen and (min-width: 768px) {
  .c-header-pagetop a {
    padding: 8px 20px;
  }
}
.c-header-pagetop a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #797979;
  line-height: 1;
  opacity: 1;
}
.c-header-pagetop a img {
  max-width: calc(300 * (100vw / 768));
  vertical-align: middle;
}
@media screen and (min-width: 576px) {
  .c-header-pagetop a img {
    max-width: calc(230 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-header-pagetop a img {
    max-width: 230px;
  }
}

/*pagelink==============*/
.c-header-pagelink {
  position: absolute;
  top: 9px;
  right: 60px;
}
@media screen and (min-width: 768px) {
  .c-header-pagelink {
    top: 11px;
    right: 10px;
  }
}
.c-header-pagelink_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.c-header-pagelink_list > li a {
  padding: 0 7px 0 0;
}
@media screen and (min-width: 768px) {
  .c-header-pagelink_list > li a {
    padding: 0 10px 0 0;
  }
}
.c-header-pagelink_list > li a img {
  height: 40px;
  width: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .c-header-pagelink_list > li a img {
    height: 45px;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
  ■ページトップへ戻るボタン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝　*/
.c-pagetop {
  text-align: center;
  position: relative;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-pagetop {
    padding: 0 0 0 60px;
  }
}

.c-pagetop-btn {
  width: 100%;
  text-decoration: none;
  position: relative;
  display: block;
  background: #1185E7;
  background-color: black;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRiMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzE1MTUxNSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b0000), color-stop(100%, #151515));
  background-image: -moz-linear-gradient(top, #4b0000 0%, #151515 100%);
  background-image: -webkit-linear-gradient(top, #4b0000 0%, #151515 100%);
  background-image: linear-gradient(to bottom, #4b0000 0%, #151515 100%);
  text-align: center;
  padding: 15px 0;
  z-index: 50;
}
.c-pagetop-btn img {
  display: inline-block;
  max-width: 60px;
}
@media screen and (min-width: 768px) {
  .c-pagetop-btn img {
    max-width: 100px;
  }
}

/* =========================================================
footer - footer関連全てココ
========================================================= */
.c-footer {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-footer {
    margin-bottom: 0;
    padding-left: 60px;
  }
}
.c-footer__in {
  background: #151515;
  padding: 30px 0 30px;
}
@media screen and (min-width: 768px) {
  .c-footer__in {
    padding: 50px 0;
  }
}
@media screen and (min-width: 768px) {
  .c-footer__in .l-container, .c-footer__in .l-main--col2, .c-footer__in .l-main--col3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}

/*c-footer-bnr===============*/
.c-footer-bnr__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .c-footer-bnr__list {
    max-width: 540px;
  }
}
.c-footer-bnr__item {
  width: 50%;
  padding: 0 5px 10px;
}
@media screen and (min-width: 768px) {
  .c-footer-bnr__item {
    max-width: 180px;
  }
}
@media screen and (min-width: 980px) {
  .c-footer-bnr__item {
    width: calc(100% / 3);
    max-width: 180px;
  }
}
.c-footer-bnr__item .link {
  display: inline-block;
}
.c-footer-bnr__item .mail {
  border: 1px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
}
.c-footer-bnr__item .mail span {
  margin: 0 0 0 3px;
}

/*text===================*/
.c-footer-text {
  background: url(../images/common/icon_care.svg) no-repeat left top;
  background-size: 30px 30px;
  background-position: center left;
  font-size: calc(28 * (100vw/768));
  padding-left: 40px;
  margin: 30px 0 0;
  color: #ffffff;
  font-size: 2.5vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-footer-text {
    font-size: 12px;
    font-size: 0.75rem;
    background-size: 60px 60px;
    padding-left: 80px;
    padding-right: 20px;
    margin: 0;
    max-width: 610px;
  }
}
.c-footer-text__contact {
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .c-footer-text__contact {
    padding-top: 10px;
  }
}
.c-footer-text__contact .in {
  display: inline-block;
  text-align: center;
}
.c-footer-text__contact .link {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}
.c-footer-text__contact .link img {
  display: inline-block;
  vertical-align: middle;
}

/*コピーライト＝＝＝＝＝＝＝＝＝*/
.c-footer-copy {
  text-align: center;
  background: #000000;
  padding: 15px 0;
}
.c-footer-copy__text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-footer-copy__text {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* =========================================================
navigation - グローバルナビ SPメニュー　内部リンク
========================================================= */
/* =================================
■【PC】グローバルナビ
=================================*/
.c-gnav {
  display: none;
  background: #efefef;
}
@media screen and (min-width: 768px) {
  .c-gnav {
    display: block;
  }
}
.c-gnav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-gnav__item {
  width: 100%;
}
.c-gnav__link {
  display: block;
  width: 100%;
  text-align: center;
}
.c-gnav__contents {
  width: 100%;
}

/*====================
■【SP】横スライドメニュー
====================*/
/*仕組み＝＝＝＝＝＝＝＝＝*/
.c-gnav {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-gnav {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.c-gnav #navDrw {
  display: none;
}
.c-gnav #navDrw:checked ~ .contents {
  transform: translateY(0px);
}
.c-gnav label {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-gnav label {
    left: 0;
    right: auto;
  }
}
.c-gnav .open {
  z-index: 600;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  transition: background 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 768px) {
  .c-gnav .open {
    width: 60px;
    height: 100vh;
  }
}
.c-gnav .open::before, .c-gnav .open::after {
  content: "";
}
.c-gnav .open .icon, .c-gnav .open::before, .c-gnav .open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% - 15px);
  width: 30px;
  border-bottom: 2px solid #ffffff;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 768px) {
  .c-gnav .open .icon, .c-gnav .open::before, .c-gnav .open::after {
    top: calc(50% - 18px);
  }
}
.c-gnav .open::before {
  transform: translateY(-8px);
}
.c-gnav .open::after {
  transform: translateY(8px);
}
.c-gnav .open .text {
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
  position: absolute;
  top: 33px;
  right: 0;
  left: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-gnav .open .text {
    top: calc(50% - 2px);
  }
}
.c-gnav .open .text::before {
  content: "MENU";
}
.c-gnav .close {
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background .6s;
}
.c-gnav #navDrw:checked + .open {
  background: rgba(63, 63, 63, 0.6);
  transform: translateY(0px);
}
.c-gnav #navDrw:checked + .open .icon {
  transform: scaleX(0);
}
.c-gnav #navDrw:checked + .open::before {
  transform: rotate(45deg);
  border-bottom: 2px solid #ffff;
}
.c-gnav #navDrw:checked + .open::after {
  transform: rotate(-45deg);
  border-bottom: 2px solid #fff;
}
.c-gnav #navDrw:checked + .open .text::before {
  content: "CLOSE";
  color: #fff;
}
.c-gnav #navDrw:checked ~ .close {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.3);
}
.c-gnav .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  z-index: 500;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 15px 15px 50px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(100vw);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-gnav .menu {
    left: 0;
    right: auto;
    width: 450px;
    transform: translateX(-450px);
    padding: 20px 20px 20px 80px;
  }
}
.c-gnav #navDrw:checked ~ .menu {
  transform: none;
}
.c-gnav ul, .c-gnav li {
  list-style: none;
}

/*中＝＝*/
.c-gnav-main {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .c-gnav-main {
    padding-top: 0;
  }
}
.c-gnav-main__list {
  border-top: 1px solid #454545;
}
.c-gnav-main__sublist {
  border-top: 1px solid #454545;
  margin: 40px 0 0;
}
.c-gnav-main__item {
  border-bottom: 1px solid #454545;
}
.c-gnav-main__item.low .c-gnav-main__link {
  background-color: rgba(204, 204, 204, 0.12);
  background-size: 10px 10px;
  background-position: center right 4px;
  color: #ddd;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 20px 5px 20px 40px;
}
.c-gnav-main__link {
  display: block;
  color: #ffffff;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  background: url(../images/icon/icon_right_w.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
  padding: 20px 5px;
}
.c-gnav-main__link:hover {
  background-color: rgba(79, 79, 79, 0.65);
}

/* =========================================================
side - サイド
========================================================= */
/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
/*メインタイトル
=============*/
.c-ttl-h1 {
  margin-bottom: 20px;
}
.c-ttl-h1__title {
  background: #dddddd;
  padding: 20px;
}
.c-ttl-h1__title .in {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-ttl-h1__title .in {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.c-ttl-h1__text {
  padding-top: 10px;
  text-align: center;
}

/*h2
=============*/
.c-ttl-h2 {
  background: #eeeeee;
  padding: 15px;
  margin-bottom: 15px;
}
.c-ttl-h2 .in {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-ttl-h2 .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*h3
=============*/
.c-ttl-h3 {
  background: #ededed;
  padding: 10px;
  margin-bottom: 10px;
}
.c-ttl-h3 .in {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-ttl-h3 .in {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/* =========================================================
text - 共通のテキストなど
========================================================= */
.c-basic-txt {
  color: #333333;
  line-height: 1.7;
  letter-spacing: 1px;
  font-size: 3.7vw;
}
@media screen and (min-width: 576px) {
  .c-basic-txt {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 768px) {
  .c-basic-txt {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (min-width: 980px) {
  .c-basic-txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-basic-txt p {
  margin-bottom: 10px;
}
.c-basic-txt a {
  color: #1185E7;
  text-decoration: underline;
  display: inline-block;
}
@media screen and (min-width: 576px) {
  .c-basic-txt a {
    transition: .3s;
    cursor: pointer;
  }
  .c-basic-txt a:hover {
    opacity: .7;
  }
}
.c-basic-txt strong {
  font-weight: bold;
}
.c-basic-txt .c-basic-txt--img {
  text-align: center;
  margin: 0 auto 10px;
}
.c-basic-txt img {
  display: inline-block;
}

/*文字配置＝＝＝＝＝＝＝＝＝*/
.pc-center {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .pc-center {
    text-align: center;
  }
}

.sp-center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sp-center {
    text-align: left;
  }
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
/*ベースボタン＝＝＝＝*/
.c-basic-btn {
  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;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 320px;
  width: 100%;
  padding: 12px 10px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: url(../images/icon/icon_right_w.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
  background-position: center right 10%;
  background-color: #1185E7;
  text-align: center;
  text-decoration: none !important;
  transition: .3s;
  transition: .3s;
  cursor: pointer;
}
.c-basic-btn:hover {
  opacity: .7;
}
@media screen and (min-width: 768px) {
  .c-basic-btn {
    padding: 18px 10px;
  }
}
.c-basic-btn__in {
  display: block;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-basic-btn__in {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-basic-btn.back {
  background: url(../images/icon/icon_left_w.svg) no-repeat left center;
  background-size: 15px 15px;
  padding-left: 20px;
  background-position: center left 10%;
  background-color: #959595;
}
.c-basic-btn.send {
  background-color: #c60d0d;
}

/* =========================================================
media - 画像関係のコンポーネント
========================================================= */
.c-responsive-img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
.c-responsive-img__link {
  width: 100%;
}

.c-circle-img {
  border-radius: 50%;
}

/*=============
高さに合わせてトリミング
==============*/
.c-square-img {
  display: block;
  overflow: hidden;
  width: 100%;
  /* トリミングしたい枠の幅 */
  height: 190px;
  /* トリミングしたい枠の高さ */
  position: relative;
}
.c-square-img__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}

/*Project
======================================= */
/* =========================================================
compmodel_ts - compmodel_tsページの独自コンテンツ
========================================================= */
.p-compmodel_ts-mainvisual {
  background-image: url(../images/compmodel_ts/bg_mv_sp.webp);
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100vh;
  padding: 6vh 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .p-compmodel_ts-mainvisual {
    background-image: url(../images/compmodel_ts/bg_mv_sp.webp);
  }
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-mainvisual {
    background-image: url(../images/compmodel_ts/bg_mv.webp);
    background-position: center;
    background-position: top;
    height: 100vh;
    padding: 4vh 0 0;
  }
}
.p-compmodel_ts-mainvisual::before {
  background: black;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, #000000 100%);
  content: '';
  position: absolute;
  top: 0;
  height: 15vh;
  width: 100%;
  z-index: 0;
}
.p-compmodel_ts-mainvisual::after {
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, #000000 100%);
  content: '';
  position: absolute;
  bottom: -1px;
  height: 10vh;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-mainvisual::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, #000000 100%);
    height: 15vh;
  }
}
.p-compmodel_ts-mainvisual--title {
  position: relative;
  text-align: center;
  z-index: 2;
}
.p-compmodel_ts-mainvisual--title img {
  height: auto;
  width: calc(850 * (100vw/768));
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-mainvisual--title img {
    max-width: 1136px;
    width: calc(1136 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-mainvisual--title img {
    width: auto;
  }
}
.p-compmodel_ts-housing {
  background-image: url(../images/compmodel_ts/bg_housing_sp.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 7vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-housing {
    background-image: url(../images/compmodel_ts/bg_housing.webp);
    padding: 10vh 0;
  }
}
.p-compmodel_ts-housing--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-housing--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-housing--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-housing--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-housing--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-movie {
  padding: 7vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-movie {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-movie--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-movie--title img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-movie--title img {
    width: calc(1240 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-movie--title img {
    max-width: 1240px;
  }
}
.p-compmodel_ts-movie--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-movie--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-movie--contents img {
    width: calc(645 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-movie--contents img {
    max-width: 645px;
  }
}
.p-compmodel_ts-movie_modal--label:hover {
  cursor: pointer;
  opacity: .8;
  transition: .4s;
}
.p-compmodel_ts-movie_modal--wrap input {
  display: none;
}
.p-compmodel_ts-movie_modal--wrap input:checked ~ .p-compmodel_ts-movie_modal--overlay {
  opacity: 1;
  height: 100%;
  transform: scale(1);
  transition: opacity 0.5s;
}
.p-compmodel_ts-movie_modal--wrap input:checked ~ .p-compmodel_ts-movie_modal--overlay .p-compmodel_ts-movie_modal--content {
  transform: translateY(20px);
}
.p-compmodel_ts-movie_modal--overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 0%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.p-compmodel_ts-movie_modal--trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-compmodel_ts-movie_modal--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  width: 90%;
}
.p-compmodel_ts-movie_modal--content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 560px;
  max-height: 315px;
}
.p-compmodel_ts-movie_modal--content iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 100%;
}
.p-compmodel_ts-movie_modal--closebtn {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  flex-direction: column;
  font-size: 22px;
  font-size: 1.375rem;
  position: absolute;
  top: -60px;
  right: 0;
  cursor: pointer;
  padding: 3px;
}
.p-compmodel_ts-movie_modal--closebtn::before, .p-compmodel_ts-movie_modal--closebtn::after {
  content: "";
  position: absolute;
  top: -70%;
  right: 0;
  left: 0;
  margin: auto;
  width: 3px;
  height: 20px;
  background: #fff;
}
.p-compmodel_ts-movie_modal--closebtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-compmodel_ts-movie_modal--closebtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-compmodel_ts-movie_modal--closebtn .reduce {
  font-size: 10px;
  font-size: 0.625rem;
}
.p-compmodel_ts-movie_modal--openbtn {
  cursor: pointer;
  line-height: 1.1;
  transition: all 0.3s;
  text-decoration: none;
}
.p-compmodel_ts-movie_modal--openbtn:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.p-compmodel_ts-rule {
  padding: 7vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-rule {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-rule--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-rule--title img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-rule--title img {
    width: calc(1240 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-rule--title img {
    max-width: 1240px;
  }
}
.p-compmodel_ts-rule--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-rule--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-rule--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-rule--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-rule--text {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-rule--text img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-rule--text img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-rule--text img {
    max-width: 970px;
  }
}
.p-compmodel_ts-about {
  padding: 7vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-about {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-about--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-about--title img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-about--title img {
    width: calc(1240 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-about--title img {
    max-width: 1240px;
  }
}
.p-compmodel_ts-about--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-about--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-about--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-about--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-flow {
  padding: 7vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-flow {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-flow--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-flow--title img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-flow--title img {
    width: calc(1240 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-flow--title img {
    max-width: 1240px;
  }
}
.p-compmodel_ts-flow--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-flow--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-flow--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-flow--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-flow--contents .text {
  color: #ffffff;
  font-size: calc(31 * (100vw/768));
  line-height: 1.4;
  margin: 20px 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-flow--contents .text {
    font-size: calc(22 * (100vw/1280));
    line-height: 1.6;
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-flow--contents .text {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 20px 0 0;
  }
}
.p-compmodel_ts-flow--contents .subtitle {
  display: block;
  margin: 3.5vh 0 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-flow--contents .subtitle {
    margin: 7vh 0 0;
  }
}
.p-compmodel_ts-flow--contents .subtitle:not(:first-of-type) {
  margin: 9vh 0 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-flow--contents .subtitle:not(:first-of-type) {
    margin: 18vh 0 0;
  }
}
.p-compmodel_ts-win {
  padding: 5vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-win {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-win--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-win--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-win--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-win--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-win--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-failure {
  padding: 5vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-failure {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-failure--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-failure--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-failure--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-failure--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-failure--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-result {
  padding: 5vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-result {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-result--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-result--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-result--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-result--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-result--contents img {
    max-width: 970px;
  }
}
.p-compmodel_ts-besides {
  padding: 5vh 0;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-besides {
    padding: 10vh 0;
  }
}
.p-compmodel_ts-besides--wrap {
  margin: auto;
  max-width: 1240px;
  text-align: center;
}
.p-compmodel_ts-besides--contents {
  margin: auto;
  max-width: 970px;
  text-align: center;
}
.p-compmodel_ts-besides--contents img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-compmodel_ts-besides--contents img {
    width: calc(970 * (100vw/1280));
  }
}
@media screen and (min-width: 1280px) {
  .p-compmodel_ts-besides--contents img {
    max-width: 970px;
  }
}

/* =========================================================
print - プリント表示に対する対応
========================================================= */
@media print {
  body::before {
    background: none;
  }

  .l-header,
  .l-footer {
    display: none !important;
  }

  .c-main-ttl__in {
    font-size: 30px;
  }

  .l-main {
    max-width: 100% !important;
    margin: 0 auto;
  }

  .l-main--row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .l-main--row .l-main--left {
    width: calc(100% - 300px) !important;
    padding-right: 15px;
  }
  .l-main--row .slick-track, .l-main--row .slick-initialized .slick-slide {
    width: calc(100% - 300px) !important;
  }
  .l-main--row .l-side {
    max-width: 300px;
  }

  .jq-inview-fade {
    opacity: 1 !important;
    display: block !important;
    top: 0 !important;
  }

  .p-detail-images-print {
    display: block !important;
  }
  .p-detail-images-print__item {
    text-align: center;
    max-height: 500px;
    background: #ffffff;
  }
  .p-detail-images-print__in {
    max-height: 500px;
  }

  .c-table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .c-table .c-th, .c-table .c-td {
    padding: 15px 10px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .c-table .c-th:first-of-type, .c-table .c-td:first-of-type {
    border-top: none;
  }
  .c-table .c-th {
    width: 15%;
  }
  .c-table .c-td {
    width: 85%;
  }
  .c-table.c-table--col4 .c-th {
    width: 15%;
  }
  .c-table.c-table--col4 .c-td {
    background: #ffffff;
    width: 35%;
  }
  .c-table.c-table--col4 .c-th, .c-table.c-table--col4 .c-td {
    display: block !important;
  }
  .c-table.c-table--col4 .c-th:first-of-type, .c-table.c-table--col4 .c-td:first-of-type {
    border-top: none;
  }
  .c-table.c-table--col4 .c-th:nth-of-type(2), .c-table.c-table--col4 .c-td:nth-of-type(2) {
    border-top: none;
  }
}
/* Utility
======================================= */
