@charset "UTF-8";

:root {
  --en_font: "Manrope", sans-serif;
  --transition: all 0.2s ease-in-out;
}

html {
  font-size: 18px;
}

img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

html>*,
a,
a:hover {
  color: #444;
  font-family: '游ゴシック', "メイリオ", sans-serif;
}

a {
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
}

a img {
  transition: var(--transition);
}

a:hover img {
  transition: var(--transition);
  opacity: 0.8;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

ul.ul {
  display: block;
  list-style: disc;
  padding-left: 40px;
  margin-bottom: 20px;
}

.eng {
  font-family: var(--en_font);
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fix-nav,
.logo-fix {
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  padding: 0 25px;
}

.fix-nav ul {
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}

.fix-nav li {
  line-height: 60px;
}

.fix-nav li a {
  font-weight: bold;
  display: block;
  padding: 0 8px;
}

.fix-nav li:hover a {
  color: #004999;
}

.bx-wrapper {
  box-shadow: none;
  border: none;
  margin-bottom: 0;
}

.container {
  margin: auto;
  width: 100%;
  max-width: 1200px;
}

.flex-list {
  display: flex;
  flex-wrap: wrap;
}

.flex-list li {
  width: 23%;
  margin: 1%;
  text-align: center;
}

footer {
  padding: 30px 0;
}

.copy-right {
  text-align: center;
  margin: 8px 0;
}

/*メガメニュー*/
.gnav>ul {
  display: flex;
}

.gnav>ul>li {
  font-weight: bold;
  flex: 1 1 auto;
}

.gnav>ul>li>a {
  color: #444;
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: center;
}

.gnav>ul>li:hover>a {
  color: #D1000A;
}

.gnav>ul .menu {
  width: 100%;
  background-color: #F9F8F8;
  position: fixed;
  left: 0;
  z-index: 99990;
  overflow: hidden;

  visibility: hidden;
  opacity: 0;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gnav>ul>li:hover .menu {
  top: 145px;
  display: block;
  visibility: visible;
  opacity: 1;
}







.gnav>ul .menu .menu_inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.gnav>ul .menu .menu_inner li {}

.gnav>ul .menu a {
  color: #D1000A;
}

/*メガメニュー*/


.btn {
  border: #444 solid 2px;
  color: #444;
  padding: 10px 20px;
  font-size: inherit;
  font-weight: bold;
  background-color: #fff;
  transition: .35s ease-in-out;
}

.b-red {
  border-color: #D1000A;
  color: #fff;
  background-color: #D1000A;
}

.b-red:hover {
  border-color: #D1000A;
  color: #D1000A;
  background-color: #fff;
}

.b-red-r {
  border-color: #D1000A;
  color: #D1000A;
  background-color: #fff;
}

.b-red-r:hover {
  border-color: #D1000A;
  color: #fff;
  background-color: #D1000A;
}

.btn-i-center {
  display: block;
  width: fit-content;
  margin: auto;
}

.flex-50,
.flex-triple {
  display: flex;
  flex-wrap: wrap;
}

.flex-50>li {
  width: 50%;
  padding: 1%;
}

.flex-triple>li {
  width: calc(100% / 3);
  padding: 1%;
}