@charset "UTF-8";
/* =========================================================
reset
========================================================= */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* =========================================================
base
========================================================= */
html, body {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  box-sizing: border-box;
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "YuGothic", "Noto Sans JP", "IBM Plex Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 100dvh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: 0.4s;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

p {
  color: #333;
  margin: 0;
  padding: 0;
}

img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
}

figure {
  margin: 0;
  padding: 0;
}

dl, dt, dd, ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp-show {
    display: none;
  }
}

/* =========================================================
header
========================================================= */
.c-header--wrap {
  display: flex;
  align-items: center;
  padding: 10px 2vw;
}
.c-header-left {
  flex-grow: 1;
}
.c-header-left .logo {
  display: block;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .c-header-left .logo {
    max-width: 250px;
  }
}
.c-header-left .logo img {
  width: 100%;
}
.c-header-center {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-header-center {
    display: block;
    margin-right: 1%;
    max-width: 310px;
    width: 30%;
  }
}
.c-header-search {
  display: flex;
  align-items: center;
}
.c-header-search .submit {
  background: transparent;
  border: none;
  cursor: pointer;
}
.c-header-search .submit .icon {
  background-color: #f1f1f1;
  border: 1px solid #333;
  border-radius: 50%;
  margin-right: 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  transition: 0.4s;
}
.c-header-search .submit:hover .icon {
  background-color: #c4c4c4;
}
.c-header-search .input {
  font-size: clamp(14px, 1.6vw, 16px);
  padding: 0.8rem 2rem;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .c-header-search .input {
    font-size: 16px;
  }
}
.c-header-right {
  display: none;
}
@media screen and (min-width: 430px) {
  .c-header-right {
    display: block;
    margin-right: 40px;
    max-width: 190px;
  }
}
@media screen and (min-width: 768px) {
  .c-header-right {
    margin-right: 0;
    width: 23%;
  }
}
.c-header-right .ecbtn {
  background-color: #6179b6;
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: clamp(14px, 1.6vw, 16px);
  padding: 1rem 2rem;
  transition: 0.4s;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .c-header-right .ecbtn {
    font-size: 16px;
  }
}
.c-header-right .ecbtn:hover {
  background-color: #7990cc;
}

/* =========================================================
footer
========================================================= */
.footer_wrap {
  background: #fbd610;
  color: #333;
  padding-top: 60px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

.footer_top.inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  position: relative;
}

.footer_logo {
  width: 180px;
}

.footer_logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer_info {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.8;
}

.info_txt {
  margin-bottom: 25px;
}

.access_list li {
  margin-bottom: 5px;
}

.footer_nav {
  margin-right: 50px;
}

.nav_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav_list li a {
  display: flex;
  flex-direction: column;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.nav_list li a:hover,
.bottom_nav li a:hover {
  opacity: 0.7;
}

.nav_list li a .en {
  color: #385bb4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.nav_list li a .ja {
  font-size: 15px;
  position: relative;
  padding-left: 18px;
}

.nav_list li a .ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.footer_bottom {
  border-top: 2px dotted rgba(0, 0, 0, 0.3);
}

.footer_bottom_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer_bottom_inner.inner {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.bottom_nav li a {
  position: relative;
  padding-left: 18px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

.bottom_nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.copyright {
  font-size: 11px;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  .footer_wrap {
    padding-top: 50px;
  }
  .footer_nav {
    margin-right: 0;
  }
  .footer_bottom_inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer_top.inner,
.footer_bottom_inner.inner {
    margin: 0 auto;
    width: 90%;
  }
}
@media only screen and (max-width: 568px) {
  .footer_top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }
}
/* =========================================================
drawer
========================================================= */
.c-drawer {
  margin-left: 2vw;
}
@media screen and (min-width: 768px) {
  .c-drawer {
    margin-left: 1vw;
  }
}
.c-drawer-container {
  max-width: 0;
  width: 70vw;
  position: fixed;
  top: 0;
  right: -350px;
  transition: 0.4s;
  z-index: 999;
}
.c-drawer-container--wrap {
  background-color: #ffffff;
  border-left: 5px solid #d5d5d5;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 5vh;
  scrollbar-color: #929292 #fff;
  scrollbar-width: thin;
}
.c-drawer-container--wrap::-webkit-scrollbar {
  width: 8px;
  background-color: #333;
}
.c-drawer-container--wrap::-webkit-scrollbar-thumb {
  background: #929292;
  width: 6px;
  border-radius: 5px;
}
.c-drawer--label {
  background: #333;
  border: 1px solid #e4e8e9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 17px;
  right: 7px;
}
@media screen and (min-width: 768px) {
  .c-drawer--label {
    display: none;
  }
}
.c-drawer--label:hover .icon .border,
.c-drawer--label:hover .icon::before {
  transition: 0.4s;
  width: 18px;
}
.c-drawer--label .icon {
  border-radius: 50px;
  height: 34px;
  width: 34px;
  position: relative;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .c-drawer--label .icon {
    width: 30px;
  }
}
.c-drawer--label .icon::before, .c-drawer--label .icon::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
}
.c-drawer--label .icon::before {
  top: 12px;
  width: 10px;
}
@media screen and (min-width: 768px) {
  .c-drawer--label .icon::before {
    top: 12px;
  }
}
.c-drawer--label .icon::after {
  bottom: 12px;
  width: 18px;
}
@media screen and (min-width: 768px) {
  .c-drawer--label .icon::after {
    bottom: 12px;
  }
}
.c-drawer--label .icon .border {
  background-color: #fff;
  height: 2px;
  width: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
}
.c-drawer--close {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  font-size: clamp(11px, 1.3vw, 13px);
  overflow: hidden;
  padding: 3px 2rem;
  position: absolute;
  left: -44px;
  top: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(-90deg);
  transition: 0.3s;
}
@media screen and (min-width: 992px) {
  .c-drawer--close {
    font-size: 13px;
  }
}
.c-drawer--close::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.c-drawer--close:hover::before {
  bottom: 0;
}

#drawer-toggle:checked ~ .c-drawer-container {
  max-width: 350px;
  right: 0;
}
#drawer-toggle:checked ~ .c-drawer-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}

.c-hdnews ~ .c-drawer .c-drawer--label {
  top: 48px;
}

.c-drawer-nav {
  padding: 2rem 1.6rem 3rem;
  /* ===== main links ===== */
  /* ===== section title (カテゴリなど) ===== */
  /* ===== category list ===== */
}
.c-drawer-nav_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-drawer-nav_item:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.2rem;
}
.c-drawer-nav_link {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  padding: 0.8rem 0;
  position: relative;
}
.c-drawer-nav_link:hover {
  opacity: 0.7;
}
.c-drawer-nav_link.is-external::after {
  content: "↗";
  font-size: 1.2rem;
  margin-left: 0.6rem;
  vertical-align: middle;
}
.c-drawer-nav_title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.c-drawer-nav_sublist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0.4rem;
}
.c-drawer-nav_subitem.-empty {
  font-size: 1.3rem;
  color: #999;
}
.c-drawer-nav_sublink {
  display: block;
  font-size: 1.5rem;
  color: #333;
  padding: 0.6rem 0;
}
.c-drawer-nav_sublink:hover {
  text-decoration: underline;
}

/* =========================================================
Tablet / PC
========================================================= */
@media screen and (min-width: 768px) {
  .c-drawer-nav {
    padding: 3rem 2rem 4rem;
  }
  .c-drawer-nav_link {
    font-size: 1.5rem;
  }
  .c-drawer-nav_sublink {
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=style-common.css.map */