@charset "utf-8";
/* ===================================================================
 common.css
======================================================================*/

/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var, b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, thead, tfoot, tr, th, td,
main, article, aside, canvas, details, embed, figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5em;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}

h1, h2, h3, h4, h5, h6, th {
  font-size: 100%;
  font-family: inherit;
}

em  { font-style: normal; }

table  {
  border-spacing: 0;
  border-collapse: collapse;
}

table, th, td {
  text-align: left;
  border: none;
}

ul, ol, li  { list-style: none; }

img    {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  font-size: 100%;
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: normal;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

select::-ms-expand { display:none; }

*, *:before, *:after { box-sizing: border-box; }

/*----------------------------------------------------------
 Base
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  min-width: 320px;
  background-color: #f1f4f6;
  font-size: 1.6em;
  color: #333;
  font-family: "ヒラギノ角ゴ ProN", "メイリオ", "Meiryo", sans-serif;
}

h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}

input, select, textarea {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

/*----------------------------------------------------------
 Anchers
------------------------------------------------------------*/
a {
  color: #26459a;
  text-decoration: underline;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
  a img { transition: .3s }
  a:hover img { opacity: .7; }
}

/*----------------------------------------------------------
 page
------------------------------------------------------------*/
.l_page {
  background-color: #fff;
}
.l_inner {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 1px 15px;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .l_page {
    padding-top: 30px;
  }
}

/*----------------------------------------------------------
 header
------------------------------------------------------------*/
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 10px 20px;
  background-color: rgba(255,255,255,.9);
  /* border-bottom: 3px solid #26459a; */
}
.l_header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(rgba(0,0,0,.05), rgba(0,0,0,0));
}
.l_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l_header-logo img {
  width: auto;
  height: 46px;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .l_header {
    padding: 0;
  }
  .l_header-inner {
    display: block;
  }
  .l_header-logo {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l_header {
    position: relative;
    padding: 0;
  }
  .l_header-inner {
    display: block;
  }
  .l_header:after {
    content: none;
  }
  .l_header-logo {
    padding: 10px;
    border-bottom: 1px solid #a7a7a7;
  }
  .l_header-logo img {
    height: 40px;
  }
}

/* ナビ
--------------------------------------------------*/
.l_header-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.l_header-nav-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 46px;
  padding: 0 15px;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.2em;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}
.l_header-nav-list a:hover {
  color: #26459a;
}
.l_header-nav-list a:after {
  content: "▼";
  position: absolute;
  bottom: -3px;
  left: 50%;
  margin-left: -6px;
  font-size: 12px;
  color: #26459a;
  transform: scale(1, 0.8);
  transition: .3s;
  opacity: 0;
}
.l_header-nav-list a:hover:after {
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .l_header-nav {
    border-top: 2px solid #a7a7a7;
  }
  .l_header-nav-list {
    justify-content: space-between;
    margin-top: -2px;
  }
  .l_header-nav-list > li {
    flex-grow: 1;
  }
  .l_header-nav-list a {
    padding: 0 5px;
    border-top: 2px solid #a7a7a7;
  }
  .l_header-nav-list a:hover {
    border-color: #26459a;
  }
  .l_header-nav-list a:after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .l_header-nav-list {
    display: block;
    padding: 8px 0;
    background: #fafafa;
    border-bottom: 1px solid #a7a7a7;
  }
  .l_header-nav-list a {
    display: block;
    height: auto;
    padding: 8px 15px;
    color: #26459a;
    text-align: left;
    font-weight: normal;
  }
  .l_header-nav-list a:after {
    content: "▼";
    position: static;
    margin-left: 5px;
    vertical-align: 1px;
    font-size: 10px;
    opacity: 1;
  }
}

/*----------------------------------------------------------
 main
------------------------------------------------------------*/
.l_main {
  padding: 80px 0 40px;
}
.l_section {
  padding: 60px 0;
}
.l_section + .l_section {
  border-top: 1px solid #eee;
}
.l_section h2 {
  position: relative;
  margin-bottom: 50px;
  padding: 20px;
  font-size: 2.8rem;
  font-weight: normal;
  text-align: center;
}
.l_section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 2px;
  margin-left: -30px;
  background: #26459a;
}
.l_section-child {
  margin: 50px 0;
}
.l_section-child:last-child {
  margin-bottom: 0;
}
.l_section-child > h3 {
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #16317a;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .l_main {
    padding: 0;
  }
  .l_section {
    padding: 30px 0;
  }
  .l_section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
  .l_section-child {
    margin: 30px 0;
  }
  .l_section-child > h3 {
    font-size: 1.8rem;
  }
}

/*----------------------------------------------------------
 footer
------------------------------------------------------------*/
.l_footer {
  padding: 20px 0;
  /* padding-bottom: env(safe-area-inset-bottom); */
  background-color: #f1f4f6;
  border-top: 1px solid #e1e1e1;
  text-align: center;
}

.l_footer-btnPagetop {
  position: fixed;
  bottom: 50px;
  right: 0;
}
.l_footer-btnPagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 100px;
  padding: 26px 0 10px 9px;
  background: #333;
  border: 1px solid #333;
  border-right: none;
  box-shadow: 0 0 30px rgba(0,0,0,.1);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.2em;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5em;
}
.l_footer-btnPagetop a:hover {
  background: #fff;
  color: #333;
}
.l_footer-btnPagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  transition: .3s;
}
.l_footer-btnPagetop a:hover:before {
  border-color: #333;
}
.l_footer-logo {
  margin-bottom: 20px;
}
.l_footer-copyright {
  font-size: 1.2rem;
  color: #666;
}

@media screen and (max-width: 767px) {
  .l_footer-btnPagetop {
    visibility: hidden;
  }
  .l_footer-logo {
    width: 230px;
    margin: 0 auto 20px;
  }
  .l_footer-copyright {
    font-size: 1rem;
  }
}

/*----------------------------------------------------------
 module
------------------------------------------------------------*/

/* ボタン
--------------------------------------------------*/
.m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 230px;
  height: 50px;
  background: #264598;
  border: 1px solid #264598;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}
.m_btn:hover {
  background: #fff;
  color: #264598;
}

/* Link */
.m_btn.-links {
  padding: 0 30px 0 20px;
}
.m_btn.-links:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.m_btn.-links:hover:after {
  border-color: #264598;
}

/* PDF */
.m_btn.-pdf {
  padding: 0 40px 0 20px;
  background: #fff;
  color: #264598;
}
.m_btn.-pdf:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 19px;
  margin-top: -10px;
  background: url("https://www.tgs-sw.co.jp/img/common/pdf_icon.png") no-repeat 0 0;
}
.m_btn.-pdf:hover {
  background-color: #f0f4fc;
}

/* EXCEL */
.m_btn.-excel {
  padding: 0 40px 0 20px;
  background: #fff;
  color: #264598;
}
.m_btn.-excel:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 21px;
  height: 20px;
  margin-top: -10px;
  background: url("https://www.tgs-sw.co.jp/img/common/icon_excel.png") no-repeat 0 0;
}
.m_btn.-excel:hover {
  background-color: #f0f4fc;
}

@media screen and (max-width: 767px) {
  .m_btn {
    min-width: 260px;
  }
}

/* リンク一覧
--------------------------------------------------*/

/* ボタン一覧 */
.m_btnList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.m_btnList:last-child {
  margin-bottom: 0;
}
.m_btnList.-left {
  justify-content: flex-start;
}
.m_btnList > li + li {
  margin-left: 30px;
}

/* テキストリンク一覧 */
.m_textlinkList {
  margin: 15px 0;
}
.m_textlinkList > li {
  position: relative;
  margin-top: 10px;
  padding-left: 24px;
  font-size: 1.4rem;
}
.m_textlinkList > li:before {
  content: "ー";
  position: absolute;
  top: 0;
  left: 5px;
  
}
.m_textlinkList > li a {
  display: inline-block;
  padding-right: 20px;
}
.m_textlinkList > li a.-pdf:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  margin-left: 5px;
  vertical-align: -2px;
  background: url("https://www.tgs-sw.co.jp/img/common/pdf_icon.png") no-repeat 0 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .m_btnList:not(.-sp2clm) {
    display: block;
    text-align: center;
  }
  .m_btnList:not(.-sp2clm) > li + li {
    margin: 15px 0 0;
  }
  .m_btnList.-sp2clm {
    justify-content: space-between;
  }
  .m_btnList.-sp2clm > li {
    width: 49%;
  }
  .m_btnList.-sp2clm > li + li {
    margin-left: 0;
  }
  .m_btnList.-sp2clm > li a {
    width: 100%;
    min-width: auto;
  }
}

/* テキスト
--------------------------------------------------*/
.m_text {
  margin: 15px 0;
  line-height: 1.8em;
}
.m_text:first-child {
  margin-top: 0;
}
.m_text:last-child {
  margin-bottom: 0;
}
.m_text.-sizeS {
  font-size: 1.4rem;
  line-height: 1.3em;
}
.m_text.-high {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .m_text {
    font-size: 1.4rem;
  }
  .m_text.-high {
    margin-top: 30px;
  }
}

/* 一覧
--------------------------------------------------*/
.m_discList {
  margin-left: 10px;
}
.m_discList > li {
  margin-top: 8px;
  padding-left: 1em;
  font-size: 1.4rem;
  text-indent: -1em;
}
.m_discList > li:before {
  content: "・";
}

/* データリスト */
.m_dataList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #eee;
}
.m_dataList > dt,
.m_dataList > dd {
  padding: 10px 5px;
  border-bottom: 1px solid #eee;
  font-size: 1.2rem;
}
.m_dataList > dt {
  width: 20%;
}
.m_dataList > dd {
  width: 80%;
}

@media screen and (max-width: 767px) {
  .m_discList {
    margin-left: 5px;
  }
}

/* カラム
--------------------------------------------------*/
.m_column {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.m_box > .m_column:only-child {
  margin: 0;
}
.m_column-box.-image {
  flex-shrink: 0;
  max-width: 300px;
}
.m_column-box + .m_column-box {
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .m_column {
    display: block;
  }
  .m_column-box.-image {
    max-width: none;
    width: 100%;
  }
  .m_column-box + .m_column-box {
    margin: 15px 0 0;
  }
}

/* ボックス
--------------------------------------------------*/
.m_box {
  padding: 30px;
  border: 1px solid #ccc;
}
.m_box + .m_box {
  margin-top: 30px;
}
.m_box > * + * {
  margin-top: 20px;
}
.m_box-title {
  margin-bottom: 10px;
}
.m_addressBox {
  padding: 30px;
  background: #f3f3f3;
}
.m_addressBox > p + p {
  margin-top: 10px;
}
.m_addressBox-title {
  font-size: 1.8rem;
  font-weight: bold;
}
.m_addressBox-tel {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .m_box,
  .m_addressBox {
    padding: 20px;
  }
  .m_box-title {
    font-size: 1.4rem;
  }
  .m_addressBox > p {
    font-size: 1.4rem;
  }
  .m_addressBox .m_addressBox-title {
    font-size: 1.6rem;
  }
}

/* テーブル
--------------------------------------------------*/
.m_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #26459a;
}
.m_table th,
.m_table td {
  padding: 20px 15px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 1.2rem;
}
.m_table thead th {
  padding: 15px 15px;
  background: #e9edf5;
}

.m_table .-rowT th,
.m_table .-rowT td {
  border-bottom-width: 0;
}
.m_table .-rowB th,
.m_table .-rowB td {
  border-top-width: 0;
}
.m_table th.-pt0,
.m_table td.-pt0 {
  padding-top: 8px;
}
.m_table th.-pb0,
.m_table td.-pb0 {
  padding-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .m_table thead th {
    white-space: nowrap;
  }
  .m_table th,
  .m_table td {
    padding: 10px;
    border: 1px solid #ccc;
    font-weight: normal;
  }
  .m_table .-rowT th,
  .m_table .-rowT td {
    border-bottom-width: 1px;
  }
  .m_table .-rowB th,
  .m_table .-rowB td {
    border-top-width: 1px;
  }
}