/*
Theme Name: mecsolution_theme_2021
Author: YokoHorita
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Description:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

mecsolution_theme_2021 is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
 ## Links
 ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
 ## Posts and pages
 ## Asides
 ## Comments
# Infinite scroll
# Media
 ## Captions
 ## Galleries
--------------------------------------------------------------*/

:root {
  --bs-font-sans-serif: 'Noto Sans JP', sans-serif;
  --bs-primary: #012C60;
}
.bg-primary {
  background-color: var(--bs-primary) !important;
}
.text-primary {
  color: var(--bs-primary) !important;
}
.border-primary {
  border-color: var(--bs-primary) !important;
}
.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: white;
}

body {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: bold;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 20px;
}
.site {
  background-image: url('images/firstview.jpeg');
}
.site-header {
  display: flex;
  height: 100px;
  background-color: #012C60;
}
.site-header.is_home{
  background-color: transparent;
}
.site-title {
  padding-left: 64px;
  padding-right: 52px;
  background-color: white;
}
.menu-gnav-container {
  height: 100%;
}
.main-navigation ul {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  align-items: center;
}
.main-navigation li {
  list-style: none;
  margin-right: 48px;
  margin-left: 48px;
}
.main-navigation .menu-item a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}
.main-navigation .menu-item a:hover {
  text-decoration: underline;
}
.breadcrumbs {
  padding: 20px 50px;
  background-color: #012C60;
  color: white;
}
.breadcrumbs a {
  color: white;
  text-decoration: none;
}
.page-title {
  margin-bottom: 17px;
}
.page-title-underline {
  display: flex;
  justify-content: center;
}
.news_list dd {
  font-size: 12px;
}
.news_list dd time {
  color: #698EC7;
}
.eyecatch {
  padding-top: 100px;
  display: flex;
  justify-content: center;
}
.eyecatch h2 {
  text-align: left;
  color: white;
  font-size: 64px;
  font-weight: 100;
  letter-spacing: 7.68px;
  line-height: 104px;
}
.eyecatch a {
  display: inline-block;
  font-weight: bold;
  margin-top: 34px;
  margin-bottom: 60px;
  padding: 20px 50px;
  background-color: white;
  color: #012C60;
  text-decoration: none;
}
.post_list .post_item {
  color: inherit;
  text-decoration: none;
}
.post_contents img {
  object-fit: contain;
}
footer .menu {
  padding: 0;
}
footer .menu li {
  list-style: none;
  display: inline-block;
  margin-right: 48px;
}
footer .menu li a {
  color: var(--bs-primary);
  font-weight: medium;
  text-decoration: none;
}

table {
  border-collapse: separate;
  border-spacing: 1rem;
}
th {
  color: #959595;
  border-right: 3px solid #959595;
  width: 100px;
}
td ul {
  padding: 0;
}
td li {
  list-style: none;
  line-height: 2rem;
}
.w-100 {
  width: 100%;
}
