/* font-color */
/*--------------------
  Breakpoints
--------------------*/
/*--------------------
Z-index
--------------------*/
.is-ie {
  position: static;
  overflow: auto;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: block;
  color: #fff;
  text-decoration: none;
  outline: none;
  -webkit-outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:active, a:hover {
  outline: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  outline: none;
}

html {
  font-size: 62.5%;
  text-rendering: optimizeLegibility;
  outline: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-rendering: optimizeLegibility;
  -webkit-appearance: none;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-family: noto sans jp, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body {
  overscroll-behavior: none;
}

img {
  opacity: 1;
  transition: opacity 0.4s ease;
  vertical-align: middle;
  border: 0;
}
img.loaded {
  opacity: 1;
}

.content {
  contain: content;
  width: 100%;
  height: 100%;
}

main {
  display: block;
}

.post-password-form {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.js-scroll {
  opacity: 0;
  transform-origin: top;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 1 0.5s ease-out;
}

.js-trans {
  opacity: 1;
  transform-origin: top;
  transform: translateY(0);
  transition: opacity 0.5s ease-out, transform 0.5s;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    visibility: visible;
  }
}
@keyframes fadeSlideInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    visibility: visible;
  }
}
@keyframes fadeslideout {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes mouseflicker {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes scaledown {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
.c-button {
  background: #ff6e3d;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border-radius: 3px;
  height: 48px;
  padding: 0 16px 0 30px;
}
@media screen and (min-width: 768px) {
  .c-button {
    height: 60px;
    padding: 0 32px 0 60px;
  }
}
.c-button span {
  font-size: 0.9375rem;
  color: #fff;
}
.c-button:after {
  content: url("../images/common/arrow.svg");
  margin-left: 55px;
  transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button:hover:before {
    transform: translateX(15px);
    transition-duration: 0.3s;
  }
}

.c-category-selector {
  margin: 50px 0;
}
@media screen and (min-width: 768px) {
  .c-category-selector {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2%;
  }
}
.c-category-selector__box {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .c-category-selector__box {
    margin-bottom: 0;
  }
}
.c-category-selector__index {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  background-color: #5db0d4;
  color: #fff;
  background: green;
  font-weight: bold;
}
.c-category-selector__index span, .c-category-selector__index a {
  padding: 2rem 56px 2rem 2rem;
  width: 100%;
  font-size: 1.6rem;
}
.c-category-selector__index:hover {
  cursor: pointer;
  opacity: 0.7;
  transition-duration: 0.3s;
}
.c-category-selector .toggle-icon {
  width: 16px;
  height: 16px;
  position: relative;
  will-change: transform;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-category-selector .toggle-icon::before, .c-category-selector .toggle-icon::after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: #fff;
}
.c-category-selector .toggle-icon::after {
  transform: translateY(50%);
  transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 2px;
  height: 16px;
  bottom: 50%;
  left: 7px;
}
.c-category-selector .toggle-icon::before {
  width: 16px;
  height: 2px;
  bottom: calc(50% - 1px);
  left: 0;
}
.c-category-selector ul {
  position: absolute;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(10px);
  transition-duration: 0.3s;
  width: 100%;
}
.c-category-selector ul li {
  align-items: center;
  z-index: 0;
  background-color: #5db0d4;
  color: #fff;
  background: #02664d;
  font-weight: bold;
  position: relative;
}
.c-category-selector ul li:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  display: block;
  position: absolute;
  right: 20px;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-category-selector ul li:hover {
  background: #058c6a;
  transition-duration: 0.3s;
}
.c-category-selector ul li span, .c-category-selector ul li a {
  padding: 2rem 56px 2rem 2rem;
  width: 100%;
  font-size: 1.6rem;
}
.c-category-selector .-active ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition-duration: 0.3s;
}
.c-category-selector .-active .toggle-icon:after {
  transform: rotate(90deg);
  top: 0;
  transition-duration: 0.3s;
}

.c-pagenation {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-pagenation ul {
  display: flex;
  gap: 15px;
}
.c-pagenation a {
  padding: 20px;
  font-size: 1.6rem;
  color: #fff;
  background-color: green;
}
.c-pagenation .-current {
  text-decoration: underline;
}

.c-page-title {
  position: relative;
  height: 250px;
}
@media screen and (min-width: 768px) {
  .c-page-title--small h1 {
    font-size: 4rem;
    line-height: 5rem;
  }
  .c-page-title--middle h1 {
    font-size: 5rem;
    line-height: 6rem;
  }
  .c-page-title--large h1 {
    font-size: 6rem;
    line-height: 7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-page-title {
    height: 350px;
  }
}
.c-page-title h1 {
  position: absolute;
  color: #fff;
  padding: 50px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.c-page-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.c-pagenation {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-pagenation ul {
  display: flex;
  gap: 15px;
}
.c-pagenation a {
  padding: 20px;
  font-size: 1.6rem;
  color: #fff;
  background-color: green;
}
.c-pagenation .-current {
  text-decoration: underline;
}

.header {
  width: 100%;
  top: 0;
  left: 0;
  position: sticky;
  padding: 0 25px;
  box-sizing: border-box;
  z-index: 99;
  background-color: #e5e5e5;
  padding: 25px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.header__logo__link {
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
}
.header__logo__link.-sub {
  margin-left: 20px;
  opacity: 0.5;
}
.header__right {
  height: -moz-fit-content;
  height: fit-content;
}
.header__nav {
  color: #000;
  font-size: 1.6rem;
  height: 100%;
  display: flex;
}
.header__nav__menu {
  gap: 25px;
  align-items: center;
  margin-right: 25px;
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav__menu {
    display: flex;
  }
}
.header__nav__menu__item {
  position: relative;
}
.header__nav__menu__item a {
  font-size: 1.6rem;
  color: #000;
  position: relative;
}
.header__nav__menu__link:after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #000;
  left: 0;
  right: 0;
  margin: auto;
  transition-duration: 0.3s;
}
.header__nav__menu__link:hover:after {
  width: 100%;
  transition-duration: 0.3s;
}
.header__nav__submenu {
  position: absolute;
  min-width: 20rem;
  width: -moz-fit-content;
  width: fit-content;
  bottom: -65px;
  left: 50%;
  margin: auto;
  transform: translateX(-50%);
  background: #e1e1e1;
  padding: 15px;
  border-radius: 5px;
}

.footer__logo__link {
  width: 70px;
}
.footer__upper {
  display: flex;
  gap: 30px;
  padding: 50px;
}
.footer__menu {
  display: flex;
  gap: 30px;
}
.footer__list {
  color: #000;
  font-size: 1.4rem;
}
.footer__item__child a {
  color: #000;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.nav-modal {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition-duration: 0.3s;
  display: none;
  padding-top: 35px;
}
@media screen and (min-width: 768px) {
  .nav-modal {
    padding-top: 67px;
  }
}
.nav-modal .icon-external {
  display: inline;
  width: 20px;
}
.nav-modal .nav__hamburger__wrapper {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 25px;
  margin-right: 0;
  margin-left: auto;
}
.nav-modal .nav__hamburger__wrapper span:first-child {
  transform: rotate(45deg);
  position: relative;
  top: 12px;
}
.nav-modal .nav__hamburger__wrapper span:last-child {
  transform: rotate(-45deg);
}
.nav__wrapper {
  margin-left: 15px;
}
.nav__hamburger {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  width: 34px;
  height: 26px;
}
.nav__hamburger span {
  height: 3px;
  width: 90%;
  background-color: #000;
  display: block;
}
.nav-menu {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
}
.nav-menu a {
  color: #000;
  transition-duration: 0.3s;
}
.nav-menu a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.nav-menu-main {
  width: 50%;
}
.nav-menu-main-item {
  margin-bottom: 30px;
}
.nav-menu-wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .nav-menu-wrap {
    width: 80%;
  }
}
.nav-menu-cont {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .nav-menu-cont {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .nav-menu-cont {
    flex-direction: column;
  }
}
.nav-menu-link {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .nav-menu-link {
    font-size: 4rem;
  }
}
.nav-menu-sub {
  padding-left: 15px;
  margin-bottom: 15px;
}
.nav-menu-sub a {
  font-size: 1.5rem;
  line-height: 3rem;
}
@media screen and (min-width: 768px) {
  .nav-menu-sub a {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
.nav-menu-sub-item {
  position: relative;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .nav-menu-sub-item {
    padding-left: 1rem;
  }
}
.nav-menu-sub-item:before {
  display: block;
  position: absolute;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: #000;
  border-radius: 50%;
  content: "";
}
@media screen and (min-width: 768px) {
  .nav-menu-sub-item:before {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .nav-menu-sub-item:before {
    width: 0.5rem;
    height: 0.5rem;
    top: 1.3rem;
  }
}

.l-inner {
  width: 90%;
  margin: 0 auto;
}

.l-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-flex {
    flex-direction: row;
  }
}

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

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

.p-archive-news .content {
  margin-top: 100px;
  min-height: 70vh;
}
.p-archive-news__list {
  display: flex;
}
.p-archive-news__list.--tile {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .p-archive-news__list.--tile .p-archive-news__list__box {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (min-width: 1090px) {
  .p-archive-news__list.--tile .p-archive-news__list__box {
    width: calc((100% - 50px) / 3);
  }
}
.p-archive-news__list.--list {
  flex-direction: column;
}
.p-archive-news__list.--list .p-archive-news__list__box {
  border-bottom: 1px solid #ccc;
  padding-bottom: 17px;
}
.p-archive-news__list.--list .p-archive-news__list__box__detail {
  display: flex;
  align-items: center;
}
.p-archive-news__list.--list .p-archive-news__list__box__detail .badge {
  flex: 0 0 auto;
}
.p-archive-news__list.--list .p-archive-news__list__box .title {
  overflow: visible;
  text-overflow: unset;
  white-space: unset;
  word-break: break-all;
  line-height: 24px;
}
.p-archive-news__list.--list a[target=_blank] .title:after {
  content: "";
  background-image: url(../img/common/external-black.svg);
  background-size: cover;
  background-position: center;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.p-archive-news__list__box {
  width: 100%;
}
.p-archive-news__list__box a {
  transition-duration: 0.3s;
}
.p-archive-news__list__box a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}
.p-archive-news__list__box__image {
  aspect-ratio: 4/3;
}
.p-archive-news__list__box__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-archive-news__list__box__text {
  margin-top: 10px;
}
.p-archive-news__list__box__text .date {
  color: #000;
  font-size: 1.3rem;
  margin-right: 20px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-archive-news__list__box__text .date {
    font-size: 1.6rem;
  }
}
.p-archive-news__list__box__text .badge {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  padding: 3px 9px;
  background-color: #1673fb;
  margin-right: 20px;
  border-radius: 5px;
  letter-spacing: 3px;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .p-archive-news__list__box__text .badge {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-archive-news__list__box__text .badge {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.p-archive-news__list__box__text .title {
  font-size: 1.4rem;
  color: #333333;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  letter-spacing: 2px;
}
@media screen and (min-width: 400px) {
  .p-archive-news__list__box__text .title {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 768px) {
  .p-archive-news__list__box__text .title {
    font-size: 1.8rem;
    padding-top: 0.8rem;
  }
}
.p-archive-news__list .dummy {
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (min-width: 400px) {
  .p-archive-news__list .dummy {
    width: 47%;
  }
}
@media screen and (min-width: 768px) {
  .p-archive-news__list .dummy {
    width: 32%;
  }
}

.p-front main.mod-3rd {
  margin-top: 0;
}/*# sourceMappingURL=style.css.map */