/* --------------------------------------------------
	000.margin and padding
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote,
form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead,
article, aside, figure, footer, header,
hgroup, menu, nav, section, audio, video, canvas, main {
  margin: 0;
  padding: 0; }

article, aside, figure, figcaption, footer,
h1, h2, h3, h4, h5, h6, header, hgroup, menu, nav, section, main {
  display: block; }

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }

/* --------------------------------------------------
	001.HTML, Body, Anchor
-------------------------------------------------- */
html {
  font-size: 62.5%;
  overflow-y: scroll;
  * overflow-x: hidden;
  _overflow: auto; }

html, body {
  width: 100%;
  min-height: 100%; }

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 1.4rem;
  background: #fff;
  line-height: 1.7;
  color: #505050;
  letter-spacing: .1rem;
  font-weight: 400; }

@media only screen and (min-width: 1025px) {
  .sp-visible {
    display: none !important; }

  .tablet-visible {
    display: none !important; } }
@media only screen and (max-width: 1024px) {
  .tablet-hidden {
    display: none; }

  .sp-visible {
    display: none !important; } }
@media only screen and (max-width: 1024px) and (max-width: 767px) {
  .sp-visible {
    display: block !important; } }
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.125vw; }

  body {
    letter-spacing: 0; }

  .sp-hidden {
    display: none !important; }

  select,
  textarea,
  input[type='url'],
  input[type='text'],
  input[type='date'],
  input[type='tel'],
  input[type='email'],
  input[type='submit'] {
    -webkit-appearance: none; } }
span.link,
a {
  color: #505050;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer; }
  span.link.none,
  a.none {
    opacity: 0.4;
    pointer-events: none; }

@media only screen and (min-width: 1025px) {
  a:hover {
    text-decoration: none; } }
/* --------------------------------------------------
	002.Heading, Paragraph
-------------------------------------------------- */
dt, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 700; }

p {
  line-height: 1.6; }

/* --------------------------------------------------
	003.List
-------------------------------------------------- */
ol, ul, li {
  list-style: none; }

/* --------------------------------------------------
	004.Table
-------------------------------------------------- */
table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  vertical-align: top;
  font-weight: 500; }

/* --------------------------------------------------
	005.Form
-------------------------------------------------- */
fieldset {
  border: none; }

input, textarea, select, label {
  font-size: 100%;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500; }

@media only screen and (max-width: 767px) {
  input, textarea, select {
    font-size: 1.6rem;
    box-sizing: border-box; } }
button {
  font-family: "Inter", "Noto Sans JP", sans-serif; }

label {
  cursor: pointer; }

textarea {
  overflow: auto; }

legend {
  display: none; }

/* --------------------------------------------------
	006.Other
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle; }

object {
  vertical-align: middle;
  outline: none; }

em {
  font-style: italic; }

b,
strong {
  font-weight: 700; }

small {
  font-size: 100%; }

i {
  font-style: normal; }

u {
  text-decoration: none; }

abbr, acronym {
  border: none;
  font-variant: normal; }

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal; }

sup {
  font-size: 1em;
  vertical-align: text-top; }

sub {
  font-size: 1em;
  vertical-align: text-bottom; }

hr {
  display: none; }

/* --------------------------------------
		101 outline
-------------------------------------- */
#wrap {
  position: relative; }
  @media only screen and (max-width: 1024px) {
    #wrap {
      overflow: hidden; } }

div:focus,
img:focus,
textarea:focus,
a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: none; }

/* --------------------------------------
		105 other
-------------------------------------- */
.form-select {
  line-height: 4.8rem;
  height: 5rem;
  overflow: hidden;
  background: #fff;
  border-radius: 0;
  border: 0.1rem solid #505050;
  position: relative;
  width: 30rem; }
  @media only screen and (max-width: 767px) {
    .form-select {
      width: 100%; } }
  .form-select:after {
    width: 3em;
    height: 5rem;
    font-size: 1.6rem;
    line-height: 1;
    font-family: 'Material Icons Outlined';
    text-align: center;
    content: "expand_more";
    color: #505050;
    top: 50%;
    margin-top: -.5em;
    right: 0;
    position: absolute; }
  .form-select > select {
    width: 130%;
    line-height: 5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0 3rem 0 1.5rem;
    background: transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: content-box; }
    .form-select > select::-ms-expand {
      display: none; }
    .form-select > select:focus {
      border: none;
      outline: none;
      box-shadow: none; }

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 1s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  opacity: 1; }
  #loader.on {
    opacity: 0;
    z-index: -1; }

body #wrap {
  z-index: -1;
  position: relative; }
  body #wrap.on {
    z-index: 1; }

/* --------------------------------------
		102 header
-------------------------------------- */
.header-logo {
  height: 8.6rem;
  padding-left: 4%;
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .header-logo {
      height: 6.8rem;
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: #ffff;
      z-index: 9999; } }
  .header-logo img {
    max-width: 10rem; }
    @media only screen and (max-width: 767px) {
      .header-logo img {
        max-width: 8.5rem; } }
.header-menu {
  position: fixed;
  width: 6rem;
  height: 6rem;
  top: .5rem;
  right: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: -1;
  opacity: 0;
  transition: right .5s;
  cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .header-menu {
      opacity: 1;
      z-index: 10000; } }
  .header-menu span {
    width: 3rem;
    height: 2px;
    margin: .5rem auto;
    background: #505050; }
    @media only screen and (max-width: 767px) {
      .header-menu span {
        width: 2.6rem;
        height: 1px;
        margin: .4rem auto; } }
  .header-menu.on span:nth-of-type(1) {
    position: absolute;
    transform: rotate(45deg);
    left: 50%;
    margin-left: -1.5rem;
    top: 50%; }
    @media only screen and (max-width: 767px) {
      .header-menu.on span:nth-of-type(1) {
        margin-left: -1.3rem;
        margin-top: -.1rem; } }
  .header-menu.on span:nth-of-type(3) {
    display: none; }
  .header-menu.on span:nth-of-type(2) {
    position: absolute;
    transform: rotate(-45deg);
    right: 50%;
    margin-right: -1.5rem;
    top: 50%; }
    @media only screen and (max-width: 767px) {
      .header-menu.on span:nth-of-type(2) {
        margin-right: -1.3rem;
        margin-top: -.1rem; } }
.header-nav {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee; }
  @media only screen and (max-width: 767px) {
    .header-nav {
      width: 100%;
      height: calc(100% - 6.8rem);
      position: fixed;
      left: -100%;
      top: 6.8rem;
      z-index: 999;
      overflow: hidden;
      padding: 0 3%;
      transition: all .5s;
      justify-content: center;
      align-items: flex-start;
      padding: 0;
      background: #60add4;
      border: none; }
      .header-nav.active {
        left: 0;
        transition: all .5s; } }
  @media only screen and (max-width: 767px) {
    .header-nav .ohnet-btn {
      padding: 0 3rem; }
      .header-nav .ohnet-btn a {
        height: 3.6rem;
        border-radius: 5rem;
        background: #fff;
        color: #60add4;
        display: flex;
        justify-content: center;
        align-items: center; } }
  .header-nav ul {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .header-nav ul {
        width: 100%;
        flex-direction: column;
        padding: 3rem; } }
    @media only screen and (max-width: 767px) {
      .header-nav ul li {
        width: 100%;
        border-bottom: 1px solid #fff; } }
    .header-nav ul li a {
      height: 4.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      line-height: 1.1;
      text-align: center;
      padding: 0 1.5vw; }
      @media only screen and (max-width: 767px) {
        .header-nav ul li a {
          height: 4rem;
          color: #fff;
          justify-content: flex-start; } }
      @media only screen and (min-width: 1025px) {
        .header-nav ul li a:hover {
          color: #60add4; } }
.header-ttl {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem; }
  @media only screen and (max-width: 767px) {
    .header-ttl {
      font-size: 2rem;
      padding-top: 7.2rem;
      padding-bottom: 2rem;
      justify-content: space-between; } }
  .header-ttl:before, .header-ttl:after {
    content: "";
    width: 18.3rem;
    height: 15.7rem;
    background-size: auto 100%;
    background-repeat: no-repeat; }
    @media only screen and (max-width: 767px) {
      .header-ttl:before, .header-ttl:after {
        width: 3.8rem;
        height: 6.5rem; } }
  .header-ttl:before {
    background-image: url("../img/common/ill_l.png");
    background-position: 100% 100%;
    margin-right: 5rem; }
    @media only screen and (max-width: 767px) {
      .header-ttl:before {
        margin: 0; } }
  .header-ttl:after {
    background-image: url("../img/common/ill_r.png");
    background-position: 0% 100%;
    margin-left: 5rem; }
    @media only screen and (max-width: 767px) {
      .header-ttl:after {
        margin: 0; } }
  .header-ttl img {
    width: 47.6rem; }
    @media only screen and (max-width: 767px) {
      .header-ttl img {
        width: calc(100% - 11rem); } }
.header-pankuzu {
  max-width: 98rem;
  background: #eee;
  margin: 0 auto;
  padding: .2rem 1.5rem;
  overflow: auto; }
  @media only screen and (max-width: 767px) {
    .header-pankuzu {
      padding: .1rem 1rem; } }
  .header-pankuzu ul {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    .header-pankuzu ul li {
      flex-shrink: 0; }
      @media only screen and (max-width: 767px) {
        .header-pankuzu ul li {
          font-size: 1rem;
          letter-spacing: 0; } }
      .header-pankuzu ul li a {
        display: flex;
        align-items: center; }
        @media only screen and (min-width: 1025px) {
          .header-pankuzu ul li a:hover {
            opacity: 0.5; } }
        .header-pankuzu ul li a:after {
          content: "\e5cc";
          font-family: "material symbols outlined", cursive;
          font-size: 1.8rem;
          margin: 0 .3rem 0 0; }
          @media only screen and (max-width: 767px) {
            .header-pankuzu ul li a:after {
              font-size: 1.4rem;
              margin: 0; } }

/* --------------------------------------
		103 content
-------------------------------------- */
#wrap {
  overflow: hidden; }

.container .article-list {
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  position: relative; }
  @media only screen and (max-width: 1024px) {
    .container .article-list {
      align-items: center;
      margin: 0 1rem 5rem; } }
  @media only screen and (max-width: 1024px) and (max-width: 767px) {
    .container .article-list {
      margin: 0 0 2rem;
      padding-bottom: 2rem; } }

  .container .article-list > a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10; }
  .container .article-list-wrap {
    width: 100%;
    padding: 0 .5rem; }
    .container .article-list-wrap p {
      overflow: hidden;
      display: -webkit-box;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3; }
      @media only screen and (max-width: 767px) {
        .container .article-list-wrap p {
          display: none; } }
  .container .article-list-fig {
    width: 32rem;
    flex-shrink: 0;
    margin-left: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    background-size: 0 0; }
    @media only screen and (max-width: 767px) {
      .container .article-list-fig {
        width: 12rem;
        height: 12rem;
        border-radius: .8rem;
        position: relative;
        margin-left: 1rem;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%; } }
    .container .article-list-fig img {
      border-radius: 1rem; }
      @media only screen and (max-width: 767px) {
        .container .article-list-fig img {
          display: none; } }
  .container .article-list-header {
    margin-bottom: 2rem; }
    @media only screen and (max-width: 767px) {
      .container .article-list-header {
        margin-bottom: 0; } }
    .container .article-list-header-time {
      font-size: 1.2rem;
      font-weight: 700;
      color: #60add4; }
    .container .article-list-header-ttl {
      font-size: 2rem;
      line-height: 1.3;
      padding-bottom: 1rem; }
      @media only screen and (max-width: 767px) {
        .container .article-list-header-ttl {
          font-size: 1.4rem; } }
    .container .article-list-header-cat {
      margin-bottom: 1rem;
      display: flex; }
      @media only screen and (max-width: 767px) {
        .container .article-list-header-cat {
          margin-bottom: 0; } }
      .container .article-list-header-cat a {
        font-size: 1.4rem;
        line-height: 1;
        min-height: 2.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #60add4;
        border-radius: .3rem;
        padding: .2rem .8rem;
        color: #fff;
        position: relative;
        z-index: 11; }
        @media only screen and (max-width: 767px) {
          .container .article-list-header-cat a {
            font-size: 1.2rem;
            height: 1.8rem; } }
        .container .article-list-header-cat a span {
          font-size: 1.6rem;
          margin-right: .3rem; }
          @media only screen and (max-width: 767px) {
            .container .article-list-header-cat a span {
              font-size: 1.4rem; } }
.container-list {
  max-width: 98rem;
  border-top: 1px solid #eee;
  margin: 0 auto;
  padding-top: 4rem; }
  @media only screen and (max-width: 1024px) {
    .container-list {
      margin: 0 2%; } }
  @media only screen and (max-width: 767px) {
    .container-list {
      padding: 2rem 1.5rem;
      margin: 0; } }
.container-inner {
  max-width: 98rem;
  border-top: 1px solid #eee;
  margin: 0 auto;
  padding: 4rem 2%;
  text-align: center;
  font-size: 1.6rem; }
  @media only screen and (max-width: 767px) {
    .container-inner {
      font-size: 1.3rem; } }
  .container-inner.soon {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center; }

.aside-cat {
  padding: 8rem 2%; }
  @media only screen and (max-width: 767px) {
    .aside-cat {
      padding: 3.5rem 1rem; } }
  .aside-cat-ttl {
    text-align: center;
    font-size: 2.8rem;
    padding-bottom: 4rem; }
    @media only screen and (max-width: 767px) {
      .aside-cat-ttl {
        font-size: 1.8rem;
        padding-bottom: 2rem; } }
  .aside-cat-list {
    max-width: 99rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto; }
    .aside-cat-list li {
      width: 33.333%;
      padding: 1.5rem; }
      @media only screen and (max-width: 767px) {
        .aside-cat-list li {
          padding: 1rem; } }
      .aside-cat-list li a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 15rem;
        border-radius: .5rem;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        position: relative;
        color: #fff;
        font-weight: 700;
        font-size: 2rem;
        z-index: 1;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          .aside-cat-list li a {
            aspect-ratio: 1 / 1;
            height: auto;
            font-size: 1.1rem;
            text-align: center; } }
        .aside-cat-list li a:after {
          content: "";
          width: 100%;
          height: 100%;
          background: rgba(96, 173, 212, 0.5);
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1; }

.wp-pagenavi {
  text-align: center;
  clear: both;
  padding: 0 0 5rem 0;
  display: flex;
  justify-content: center; }
  .wp-pagenavi > a, .wp-pagenavi > span {
    min-width: 4.2rem;
    height: 4.2rem;
    font-size: 1.6rem;
    text-decoration: none;
    background: #fff;
    margin: .4rem;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .3rem; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi > a, .wp-pagenavi > span {
        font-size: 1.3rem;
        min-width: 3.2rem;
        height: 3.2rem; } }
    .wp-pagenavi > a span, .wp-pagenavi > span span {
      font-size: 2rem; }
    .wp-pagenavi > a.current, .wp-pagenavi > span.current {
      color: #fff;
      background: #60add4; }
    @media only screen and (min-width: 1025px) {
      .wp-pagenavi > a:hover, .wp-pagenavi > span:hover {
        background: #eee; } }

/* --------------------------------------
		104 footer
-------------------------------------- */
.div-top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 998; }
  @media only screen and (max-width: 767px) {
    .div-top {
      right: 1rem;
      bottom: 8rem; } }
  .div-top a {
    display: flex;
    color: #fff;
    width: 5rem;
    height: 5rem;
    align-items: center;
    justify-content: center;
    background: rgba(96, 173, 212, 0.9);
    border-radius: 50%; }
    .div-top a span {
      font-size: 1.8rem; }
      @media only screen and (max-width: 767px) {
        .div-top a span {
          font-size: 1.4rem; } }
@media only screen and (max-width: 1024px) and (max-width: 767px) {
  .div-top a {
    width: 3.6rem;
    height: 3.6rem; } }

    @media only screen and (min-width: 1025px) {
      .div-top a:hover {
        opacity: 0.8; } }

.footer {
  width: 100%;
  min-height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f8fc;
  padding: 0 3%; }
  @media only screen and (max-width: 1024px) {
    .footer {
      flex-direction: column;
      padding: 2.5rem; } }
  @media only screen and (max-width: 1024px) and (max-width: 767px) {
    .footer {
      padding: 1.5rem; } }

  .footer-copy {
    font-size: 1.2rem;
    color: #60add4;
    flex-shrink: 0; }
    @media only screen and (max-width: 767px) {
      .footer-copy {
        font-size: .9rem;
        text-align: center; } }
  .footer-nav {
    width: 100%; }
    @media only screen and (max-width: 1024px) {
      .footer-nav {
        padding-bottom: 2rem; } }
    .footer-nav ul {
      display: flex;
      justify-content: flex-start; }
      @media only screen and (max-width: 1024px) {
        .footer-nav ul {
          justify-content: center; } }
      @media only screen and (max-width: 767px) {
        .footer-nav ul {
          align-items: center;
          justify-content: center;
          flex-direction: column; } }
      .footer-nav ul li {
        margin-right: 1rem; }
        @media only screen and (max-width: 767px) {
          .footer-nav ul li {
            margin: .3rem 0; } }
        @media only screen and (max-width: 767px) {
          .footer-nav ul li a {
            font-size: 1.2rem; } }
