﻿@charset "UTF-8";
/*
layout
*/
/*
color
*/
/*
pxをvwに変換

ウインドウ幅1400pxに対して要素幅50pxの場合
getvw(50,1400)となる
*/
/*
メディアクエリ
記述例
body{
  @include msw('max',1200){
    background-color: red;
  }
}
*/
/*
ICON FONT
*/
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  .back-btn {
    margin: 60px auto 100px;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  .back-btn {
    margin: 80px auto 150px;
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  section.intro .intro-title {
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    padding-bottom: 15px;
    border-bottom: 1px solid #CED6E7;
  }
  section.intro .intro-title-02 {
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 16px;
    font-weight: 700;
    line-height: 2em;
    letter-spacing: 0.05em;
    margin: 20px 0 16px;
  }
  section.intro .intro-txt-01, section.intro .intro-list-01 {
    font-feature-settings: "palt" on;
    font-size: 12px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.05em;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  section.intro .intro-title {
    color: #0C3387;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    padding-bottom: 15px;
    border-bottom: 1px solid #CED6E7;
  }
  section.intro .intro-title-02 {
    color: #0C3387;
    font-feature-settings: "palt" on;
    font-size: 18px;
    font-weight: 700;
    line-height: 2em;
    letter-spacing: 1.26px;
    margin: 20px 0 16px;
  }
  section.intro .intro-txt-01, section.intro .intro-list-01 {
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 2em;
    letter-spacing: 0.98px;
  }
}
/************************************************************
SCREEN ALL
*************************************************************/
section.table .table-body .table-box {
  font-family: sans-serif !important;
}

/************************************************************
SCREEN SP
*************************************************************/
@media screen and (max-width:767px) {
  .table-title {
    padding-top: 60px;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
  section.table {
    margin-top: 15px;
    position: relative;
  }
  section.table .table-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  section.table .table-container .table-head {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    transition: transform 0.1s;
    will-change: transform;
    display: flex;
  }
  section.table .table-container .table-head .table-box {
    color: white;
    background-color: #0C3387;
    text-align: center;
    font-feature-settings: "palt" on;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    width: 50%;
    height: 40px;
    border-left: 1px solid #0C3387;
    border-right: 1px solid #0C3387;
  }
  section.table .table-container .table-head .table-box:nth-child(n+3) {
    display: none;
  }
  section.table .table-container .table-body {
    padding-top: 40px;
    width: 100%;
  }
  section.table .table-container .table-body .table-box-row {
    display: flex;
  }
  section.table .table-container .table-body .table-box-row .table-box-row-series {
    width: 50%;
    height: auto;
    min-height: 100%;
    border-left: 1px solid #CED6E7;
  }
  section.table .table-container .table-body .table-box-row .table-box-row-model {
    width: 50%;
    height: 100%;
    border-right: 1px solid #CED6E7;
  }
  section.table .table-container .table-body .table-box-row .table-box-row-model .table-box {
    background-color: #F2F6FD;
  }
  section.table .table-container .table-body .table-box {
    text-align: center;
    font-feature-settings: "palt" on;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    min-height: 40px;
    border-bottom: 1px solid #CED6E7;
  }
}
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  .table-title {
    padding-top: 60px;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: "palt" on;
    font-size: 24px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.05em;
  }
  section.table {
    margin-top: 20px;
    position: relative;
    display: flex;
  }
  section.table .table-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  section.table .table-container .table-head {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
  }
  section.table .table-container .table-head .table-box {
    color: white;
    background-color: #0C3387;
    text-align: center;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    width: 25%;
    height: 42px;
  }
  section.table .table-container .table-head .table-box:nth-child(2) {
    border-right: 2px solid #CED6E7;
  }
  section.table .table-container .table-body {
    padding-top: 42px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 750px;
  }
  section.table .table-container .table-body .table-box-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 50%;
  }
  section.table .table-container .table-body .table-box-row .table-box-row-series {
    width: 50%;
    height: auto;
    min-height: 100%;
    border-left: 1px solid #CED6E7;
  }
  section.table .table-container .table-body .table-box-row .table-box-row-model {
    width: 50%;
    height: 100%;
    border-right: 1px solid #CED6E7;
  }
  section.table .table-container .table-body .table-box-row .table-box-row-model .table-box {
    background-color: #F2F6FD;
  }
  section.table .table-container .table-body .table-box {
    border-bottom: 1px solid #CED6E7;
    text-align: center;
    font-feature-settings: "palt" on;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    min-height: 42px;
  }
}