@charset "utf-8";

/*====================
COMMON
====================*/

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

body {
  color: #0B2947;
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background: #F2F3F5;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.fl-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: top;
}

.fl-start {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.fl-end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.fl-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.fl-wrap-normal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fl-wrap-reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.fa-brands {
  font-family: "Font Awesome 5 Brands";
  color: #0B2947;
  font-size: 2rem;
  line-height: 1;
  vertical-align: middle;
  font-style: normal;
  transition: all .4s;
}

.fa-brands:hover {
  opacity: .7;
}

.fa-solid {
  font-size: 1rem;
  margin-right: 6px;
}

.fa-instagram {
  margin-right: 12px;
}

.common-title {
  text-align: left;
  margin-bottom: 5vh;
}

.common-textdeco {
  font-family: alkaline-caps, sans-serif;
  font-weight: 500;
}

.common-titleJp {
  margin-left: 20px;
  font-family: 'shippori-mincho', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.fa-chevron-right {
  margin-left: 14px;
  font-size: 1.4rem;
}

.fa-caret-right {
  margin-right: 14px;
  font-size: 1.4rem;
}

.accordion-item-title {
  position: relative;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all .5s ease;
}

.accordion-item-inner {
  display: none;
  padding: 1.5%;
}

/*======================
ヘッダー・グローバルメニュー
======================*/

.gnav-wrap {
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  width: calc(4vw + 10%);
  padding: 30px 0;
  box-sizing: border-box;
  z-index: 20;
}

.gnav-inner {
  position: relative;
  width: 100%;
  max-width: 140px;
  height: 100%;
  margin: auto;
}

.sitelogo-img {
  width: 100%;
  padding: 5%;
  overflow: hidden;
}

.sitelogo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g-nav {
  position: absolute;
  left: 50%;
  top: 60%;
  text-align: left;
  transform: translate(-50%, -50%);
}

.g-nav-top li {
  margin-bottom: 20px;
}

.g-nav-top a {
  padding-bottom: 4px;
   color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background:
    linear-gradient(currentColor 0 0) 100% 100% /var(--color, 0) 1px no-repeat;
  transition: 0.5s;
}

.g-nav-top a:hover {
  --color: 100%;
}

.g-nav-top, .g-nav-middle {
  margin-bottom: 10vh;
}

.g-nav-middle li {
  margin-bottom: 10px;
}

.g-nav-middle a {
  color: #333;
  font-size: 1.2rem;
}

.g-nav-btm a {
  color: #333;
  font-size: 1.5rem;
}

.g-nav-sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3vh;
  color: #0B2947;
}

.g-nav-middle a:hover, .g-nav-btm a:hover, .g-nav-sns:hover {
  opacity: .7;
}

.weather-area {
  padding: 3%;
  border: 1px solid #7e8c9c;
  border-radius: 10px;
}

.weather-area a {
  pointer-events: none;
  cursor: default;
}

.weather-title {
  padding-top: 10px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
}

.ww_info {
  display: none !important;
}

.ww_current {
  display: flex !important;
}

.ww_temp {
  width: 50% !important;
  font-family: zen-kaku-gothic-antique, sans-serif !important;
  color: #0B2947 !important;
  font-size: 1.7rem !important;
}

.ww_icon {
  width: 50% !important;
  margin: 0 !important;
}

.ww_icon svg {
  width: 28px !important;
  height: 28px !important;
}

.ww_cond {
  display: none !important;
}

/*====================
ハンバーガーメニュー
====================*/

@media(max-width: 960px) {
  
  .gnav-wrap {
    display: none;
  }
  
  .sp-menu {
    position: relative;
  }
  
  #s-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh;
    background: #F5F5F1;
    transition: all 0.6s;
  }

  #s-nav.panelactive {
    left: 0;
  }

  #s-nav.panelactive #s-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding: 5%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /*ナビゲーション*/
  #s-nav ul {
    position: absolute;
    z-index: 999;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 50%;
    max-width: 300px;
  }
  
  /*リストのレイアウト設定*/
  #s-nav li {
    list-style: none;
    text-align: center;
    padding: 5% 0;
  }
  
  #s-nav li a {
    color: #0B2947;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  
  .s-nav-logo {
    width: 120px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .s-nav-sns .fa-instagram {
    margin-right: 0;
    font-size: 2.4rem;
  }
  
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
	  mix-blend-mode: difference;
  }
  
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #555;
    width: 45%;
  }
  
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  .s-nav-linkBtn {
    padding-top: 8vh;
  }
  
  .s-nav-linkBtn-contactBtn {
    width: 180px;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
    background: #0B2947;
    transition: all 0.5s;
  }

  .s-nav-linkBtn-contactBtn a {
    display: block;
    color: #fff;
  }
  
  .s-nav-linkBtn-contactBtn:hover {
    opacity: .7;
  }
  
  .s-nav-linkBtn-sns {
    padding-top: 5vh;
  }
  
}

@media(min-width: 960px) {
  
  .sp-menu {
    display: none;
  }
  
}

/*====================
TOP
====================*/

.main {
  width: calc(100% - (calc(4vw + 10%)));
  height: 100%;
  margin-left: auto;
  margin-right: 0;
  overflow-x: hidden;
}

.top {
  padding: 3%;
  margin-bottom: 5vh;
}

.top-bar {
  margin-left: auto;
  margin-bottom: 5vh;
  padding: 0.5% 2%;
  width: 200px;
  color: #333;
  font-size: 1.5rem;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 30px;
}

.top-bar h3 {
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.top-bar ul {
  width: 100%;
  opacity: .6;
}

.top-bar ul li {
  position: relative;
}

.top-bar ul li a {
  display: block;
  color: #333;
}

.top-bar li.has-child ul {
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  width: 180px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.top-bar li.has-child:hover > ul,
.top-bar li.has-child ul li:hover >ul,
.top-bar li.has-child:active > ul,
.top-bar li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

.top-bar-accordion-inner a {
  color: #AAAAAA;
  margin: 10px 0;
  transition: all .4s ease-in-out;
}

.top-bar-accordion-inner a:not([aria-current="page"]):hover {
  color: #002F7E;
  font-weight: 600;
  font-size: 1.7rem;
}

.top-bar-accordion-inner a[aria-current="page"] {
  cursor: default;
  pointer-events: none;
}

.top-image {
  width: 70vw;
  margin-left: auto;
  overflow: hidden;
}

.top-image ul li {
  width: 100%;
  height: auto;
}

.top-image ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid #002F7E;
}

@media(max-width: 960px) {
  .main {
    width: 100%;
  }
  
  .top-bar {
    width: 160px;
    color: #333;
    font-size: 1.4rem;
  }
  
  .top-image {
    width: 100%;
    margin-left: auto;
    overflow: hidden;
  }
}

@media(max-width: 768px) {
  .top-bar {
    margin-bottom: 3vh;
  }
}

@media(max-width: 428px) {
  .top-bar {
    padding: 0.5% 2.5%;
  }
}


/*====================
ABOUT
====================*/

.about {
  position: relative;
  width: 100%;
  margin-bottom: 15vh;
  z-index: 0;
}

.about-wrap {
  width: 700px;
  margin: 0 auto;
  padding: 5vh 0;
}

.about-main-title {
  position: relative;
  margin-bottom: 5vh;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 2;
  z-index: 1;
}

.about-main-title span {
  display: inline-block;
}

.about-main-title::before {
  content: url("https://www.industrialtour-mie.info/wp24/wp-content/themes/mie-industrial-tourism/img/deco-explore.svg");
  position: absolute;
  top: -20px;
  left: -30px;
  width: 400px;
  transform: rotate(-1.5deg);
  opacity: .8;
  z-index:-1;
}

.about-main-description {
  margin-bottom: 5vh;
  font-size: 1.5rem;
  line-height: 2.5;
  text-align: left;
}

.about-detail-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 160px;
  height: 60px;
  margin: 0 auto;
  padding: 10px;
  color: #002F7E;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all .4s ease;
}

.about-detail-btn:hover {
  opacity: .7;
}

.about-detail-left {
  width: 35%;
}

.about-bg {
  position: absolute;
  bottom: -14vw;
  right: -5%;
  width: 38vw;
  height: auto;
  z-index: -1;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-inner {
  padding: 5vh 0;
}

@media(max-width: 768px) {
  .about-wrap {
    width: 95%;
  }
  
  .about-main-title {
    padding-top: 0;
    padding-left: 0;
  }
  
  .about-main-title::before {
    top: -10px;
    left: 10px;
    width: 360px;
  }
  
  .about-main-description {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 3vh;
  }
  
  .about-bg {
    bottom: -10vw;
    width: 46vw;
  }
}

@media(max-width: 428px) {
  .about-main-title {
    padding-top: 20px;
    padding-left: 14px;
    font-size: 2.8rem;
  }
  
  .about-main-description {
    width: 95%;
    margin-bottom: 3vh;
    letter-spacing: 0.05em;
  }
  
  .about-main-title::before {
    top: 10px;
    left: 10px;
    width: 300px;
  }
}

/*====================
MEMBER
====================*/

.member {
  width: 100%;
  margin-bottom: 15vh;
}

.member-wrap {
  position: relative;
  width: 90%;
  max-width: 1200px;
  padding: 5% 3%;
  background-color: #D5E1F1;
  border: 2px solid #002F7E;
  border-left: none;
  border-radius: 0 20px 20px 0;
  z-index: 0;
}

.member-title {
  position: relative;
  margin-bottom: 5vh;
  padding-top: 10px;
  padding-left: 20px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 2;
  text-align: left;
  z-index: 1;
}

.member-title span {
  display: inline-block;
}

.member-title::before {
  content: url("https://www.industrialtour-mie.info/wp24/wp-content/themes/mie-industrial-tourism/img/deco-member.svg");
  position: absolute;
  top: -3px;
  left: -10px;
  width: 200px;
  transform: rotate(-3deg);
  opacity: .8;
  z-index: -1;
}

.member-group {
  padding-top: 5vh;
  margin-bottom: 8vh;
  border-top: 1px solid #FFF;
}

.member-group-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 10px;
  color: #002F7E;
  font-size: 1.8rem;
  font-weight: 600;
}

.member-group-title-left {
  width: 40px;
  margin-right: 20px;
}

.member-group-title-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-group-inner {
  padding: 5%;
}

.member-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.member-group-item {
  width: calc((100% - 30px * 2) / 3);
  text-align: left;
}

.member-group-item a {
  color: #0B2947;
  transition: all .4s ease;
}

.member-group-item a:hover {
  opacity: .7;
}

.member-group-inner-img {
  width: 100%;
  height: 16vw;
  max-height: 200px;
  overflow: hidden;
}

.member-group-inner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-group-item p {
  padding-top: 5%;
}

@media(max-width: 960px) {
  .member-wrap {
    width: 90%;
  }
  
  .member-group-item {
    width: calc((100% - 30px) / 2);
  }
  
  .member-group-inner-img {
    height: 22vw;
  }
}

@media(max-width: 768px) {
  .member-wrap {
    width: 95%;
    padding: 5% 1.5%;
  }
  
  .member-title {
    margin-bottom: 3vh;
    padding-left: 10px;
  }
  
  .member-title::before {
    left: 0px;
  }
  
  .member-inner {
    padding: 0;
  }
  
  .member-group {
    margin-bottom: 5vh;
  }
  
  .member-group-list {
    gap: 0;
  }
  
  .member-group-item {
    width: 70vw;
    margin: auto;
    margin-bottom: 5vh;
  }
  
  .member-group-item p {
    font-size: 1.6rem;
  }
  
  .member-group-inner-img {
    height: 35vw;
  }
}

@media(max-width: 428px) {
  .member-title::before {
    top: -3px;
    left: 10px;
  }
}

/*====================
RESERVATION
====================*/

.reservation {
  width: 100%;
  padding: 3%;
}

.reservation-title {
  position: relative;
  margin-bottom: 5vh;
  padding-top: 10px;
  padding-left: 20px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 2;
  text-align: left;
  border-bottom: 2px solid #0B2947;
  z-index: 1;
}

.reservation-title span {
  display: inline-block;
}

.reservation-title::before {
  content: url("https://www.industrialtour-mie.info/wp24/wp-content/themes/mie-industrial-tourism/img/deco-reservation.svg");
  position: absolute;
  top: -15px;
  left: -10px;
  width: 200px;
  transform: rotate(-3deg);
  opacity: .8;
  z-index: -1;
}

.reservation-title span::after {
  border-bottom: 1px solid #333;
}

.reservation-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10% 5%;
}

.reservation-flow {
  margin-bottom: 10vh;
  align-items: center;
}

.reservation-flowItem {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  padding: 3.5%;
  background-color: #FFF;
  border-radius: 50%;
}

.reservation-flow1 {
  border: 10px solid #CFD9EB;
}

.reservation-flow2 {
  border: 10px solid #A3B3CE;
}

.reservation-flow3 {
  border: 10px solid #8798B8;
}

.fa-arrow-right {
  color: #707070;
  font-size: 2.4rem;
}

.reservation-flow-num {
  display: block;
  font-family: alkaline-caps, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.reservation-detail-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 190px;
  height: 60px;
  margin: 0 auto;
  padding: 10px;
  color: #002F7E;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all .4s ease;
}

.reservation-detail-left {
  width: 32%;
}

.reservation-detail-btn:hover {
  opacity: .7;
}

@media(max-width: 960px) {
  .reservation-flowItem {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
}

@media(max-width: 768px) {
  .reservation-title {
    padding-left: 10px;
  }
  
  .reservation-title::before {
    left: 0;
    width: 180px;
  }
  
  .reservation-inner {
    width: 100%;
    padding: 10% 2%;
  }
  
  .reservation-flow {
    display: block;
  }
  
  .reservation-flowItem {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    padding: 3% 1.5%;
  }
  
  .reservation-flow-text {
    font-size: 1.5rem;
  }
  
  .flow-item-arrow {
    margin: 5% 0;
  }
  
  .flow-item-arrow .fa-arrow-right {
    display: inline-block;
    transform: rotate(90deg);
  }
}

/*====================
お知らせ
====================*/

.news {
  width: 100%;
  margin-bottom: 8vh;
  padding: 3%;
}

.news-title {
  position: relative;
  margin-bottom: 5vh;
  padding-top: 3px;
  padding-left: 14px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 2;
  text-align: left;
  border-bottom: 2px solid #0B2947;
  z-index: 1;
}

.news-title span {
  display: inline-block;
}

.news-title::before {
  content: url("https://www.industrialtour-mie.info/wp24/wp-content/themes/mie-industrial-tourism/img/deco-news.svg");
  position: absolute;
  top: -5px;
  left: -10px;
  width: 140px;
  transform: rotate(-3deg);
  opacity: .8;
  z-index: -1;
}

.news-inner {
  align-items: flex-end;
}

.news-inner-left {
  width: 20%;
  max-width: 150px;
}

.news-inner-right {
  width: 75%;
}

.news-item {
  justify-content: flex-start;
  margin-bottom: 3%;
  padding-bottom: 1.5%;
  border-bottom: 1px solid #0B2947;
}

.news-item:last-child {
  margin-bottom: 1.5%;
}

.news-item-text {
  justify-content: flex-start;
  align-items: center;
  padding: 0 3%;
  color: #002F7E;
}

.news-item-date {
  margin-right: 30px;
  font-size: 1.6rem;
}

.news-item-title {
  font-size: 1.6rem;
}

.news-detail-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  color: #002F7E;
  font-size: 1.8rem;
  font-weight: 600;
  transition: all .4s ease;
}

.news-detail-left {
  width: 36%;
}

.news-detail-btn:hover {
  opacity: .7;
}

@media(max-width: 768px) {
  .news-title::before {
    left: -5px;
    width: 120px;
  }
  
  .news-inner {
    display: block;
  }
  
  .news-inner-left, .news-inner-right {
    width: 100%;
  }
  
  .news-inner-left {
    max-width: none;
    padding-top: 3vh;
  }
  
  .news-detail-btn {
    width: 140px;
  }
  
  .news-item-text {
    display: block;
    text-align: left;
    padding: 0 1%;
  }
  
  .news-item-date {
    font-size: 1.4rem;
  }
}

/*====================
インスタグラム
====================*/


/*====================
誘導ボタン
====================*/

.induction {
  width: 100%;
  padding: 3%;
  margin-bottom: 10vh;
}

.induction-inner {
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.induction-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  padding: 1.5% 3%;
  color: #333;
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  border: 1px solid #707070;
  border-radius: 10px 0 10px 10px;
  transition: all .5s ease;
}

.induction-btn:hover {
  color: #FFF;
  background-color: #002F7E;
}

@media(max-width: 960px) {
  .induction {
    margin-bottom: 15vh;
  }
  
  .induction-inner {
    max-width: 700px;
  }
}

@media(max-width: 768px) {
  .induction {
    margin-bottom: 5vh;
  }
  
  .induction-inner {
    display: block;
  }
  
  .induction-btn {
    width: 260px;
    height: 70px;
    margin: 0 auto;
    margin-bottom: 5vh;
  }
}

/*====================
マップ
====================*/

.map {
  width: 100%;
  height: 100%;
  padding: 5%;
  background-color: #FFF;
}

.map-area {
  position: relative;
  width: 80%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  z-index: 10;
}

.map-area::before {
  position: absolute;
  top: -100px;
  left: -80px;
  content: url("https://www.industrialtour-mie.info/wp24/wp-content/themes/mie-industrial-tourism/img/logo-icon2.svg");
  width: 200px;
  hegiht: auto;
  transform: rotate(-10deg);
  z-index: -10;
}

.map-area iframe {
  display: block;
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  width: 100%;
  height: auto;
  border: 13px solid #333E8C;
  border-radius: 10px;
}

.i4ewOd-pzNkMb-haAclf {
  background-color: #002F7E;
}

@media(max-width: 960px) {
  .map-area {
    width: 80%;
  }
}

@media(max-width: 768px) {
  .map-area {
    width: 100%;
  }
  
  .map-area::before {
    top: -50px;
    left: -5px;
    width: 130px;
  }
  
  .map-area iframe {
    border: 8px solid #333E8C;
  }
}

/*====================
資料ダウンロード
====================*/

.documents {
  width: 100%;
  margin: 5vh 0;
  padding: 10%;
  border-radius: 100px 0 0;
  background-color: #002F7E;
}

.documents-inner {
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.documents-item {
  display: inline-block;
  width: 33%;
  height: 30%;
  transition: all .4s ease;
}

.documents-item-img {
  display: block;
  overflow: hidden;
}

.documents-item-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: all .4s ease;
}

.documents-item-text {
  padding-top: 8%;
  color: #FFF;
  font-size: 2rem;
  font-weight: 600;
  transition: all .4s ease;
}

.documents-item:hover .documents-item-img img {
  transform: scale(1.1);
}

.documents-item:hover .documents-item-text {
  text-shadow:
		0 0 1px #fff,
		0 0 4px #b2ebf5;
} 

.fa-download {
  margin-right: 14px;
  font-size: 2rem;
}

@media(max-width: 768px) {
  .documents {
    padding: 10% 5%;
    border-radius: 50px 0 0;
  }
  
  .documents-inner {
    display: block;
  }
  
  .documents-item {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding-top: 3vh;
    margin-bottom: 3vh;
  }
}

@media(max-width: 428px) {
  .documents-item-text, .fa-download {
    font-size: 1.6rem;
  }
  
  .documents-item {
    width: 70%;
  }
}

/*====================
インスタグラム
====================*/

.instagram {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10vh 0;
}

/*====================
バナー
====================*/

.banner {
  width: 100%;
  padding: 5% 0;
  margin: 5% 0;
  border-top: 1px solid #CCD4E8;
  border-bottom: 1px solid #CCD4E8;
}

.banner-inner {
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.banner-inner a {
  display: block;
  width: calc((100% - 20px * 2) / 3);
  height: auto;
  overflow: hidden;
  transition: all .4s ease;
}

.banner-item {
  width: 100%;
  height: 100%;
}

.banner-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-item:hover {
  opacity: .7;
}

@media(max-width: 768px) {
  .banner-inner {
    width: 80%;
    margin: 0 auto;
  }
  
  .banner-inner a {
    width: calc((100% - 20px) / 2);
  }
}

/*====================
FOOTER
====================*/

.footer {
  width: calc(100% - (4vw + 8%));
  margin-left: auto;
  margin-right: 0;
  padding: 3% 0 0;
}

.footer-logo {
  width: 300px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-copy {
  padding: 3% 0;
  color: #828282;
  font-size: 1.1rem;
  text-align: center;
}

.reTopBtn-container {
  width: 10%;
  margin-right: 0;
  margin-left: auto;
}

.reTopBtn {
  display: inline-block;
}

.reTopBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 3.2rem;
  height: 3.2rem;
  background-color: #002F7E;
  border-radius: 50vh;
  transition: 0.3s;
}

.reTopBtn a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.reTopBtn span {
  width: 0px;
  height: 0px;
  visibility: hidden;
}

.reTopBtn a:hover {
  background-color: #002F7E;
  opacity: .7;
}

.reTopBtn a:hover::after {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

#page-top {
	position: fixed;
	right: 10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media(max-width: 960px) {
  .footer {
    width: 100%;
  }
}

@media(max-width: 768px) {
  
  .footer {
    width: 100%;
    padding-top: 5vh;
  }
  
  .footer-inner {
    width: 100%;
  }
  
  .footer-logo {
    width: 250px;
    margin-bottom: 5vh;
  }
  
}

/*====================
協議会について詳細ページ
====================*/

.about-top {
  padding: 5% 3%;
  margin-bottom: 5vh;
}

.about-top-bar {
  width: 100%;
  height: 10vh;
}

.about-top-message {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.about-top .about-main-title::before {
  top: -14px;
  left: -10px;
}

.about-outline {
  padding: 5vh 0;
}

.about-outline-message {
  width: 80%;
  padding: 5% 10%;
  background-color: #333E8C;
  border-radius: 0 20px 20px 0;
}

.about-outline-message-title {
  margin-bottom: 5%;
  font-family: alkaline-caps, sans-serif;
  color: #FFF;
  font-size: 3.8rem;
  font-weight: 700;
  text-align: left;
  line-height: 1;
  letter-spacing: 0.1em;
}

.about-outline-message-text {
  padding: 1.5% 0;
  color: #FFF;
  text-align: left;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

.about-guideline {
  width: 94%;
  margin: 0 auto;
  padding: 5vh 0;
}

.about-guideline-inner {
  gap: 30px;
  width: 100%;
  padding: 10%;
}

.about-guideline-inner a {
  display: inline-block;
  width: calc((100% - 30px *2) / 3); 
}

.guideline-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 1.5% 3%;
  color: #333;
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  border: 1px solid #707070;
  border-radius: 10px 0 10px 10px;
  transition: all .5s ease;
}

.guideline-btn:hover {
  color: #FFF;
  background-color: #002F7E;
}

.about-movie {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 5vh 0;
}

.about-movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}

.about-reservation-flow {
  width: 100%;
  margin-bottom: 10vh;
  padding: 5vh 0;
}

.about-reservation-flow-title {
  position: relative;
  margin-bottom: 5vh;
  padding-top: 10px;
  padding-left: 20px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 2;
  text-align: left;
  border-bottom: 2px solid #0B2947;
}

.about-reservation-flow-title span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.about-reservation-flow-title::before {
  content: attr(deco-reserve);
  position: absolute;
  transform: rotate(-3deg);
  top: 0;
  left: 0;
  font-family: adobe-handwriting-ernie, sans-serif;
  color: #9AB7D4;
  font-size: 2.4rem;
  font-weight: 400;
  opacity: .7;
}

.about-reservation-detail {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 10vh;
  padding: 5vh 0;
}

.about-reservation-detail-item {
  align-items: center;
  margin: 3% 0;
}

.about-reservation-item-left {
  width: 30%;
}

.about-reservation-item-right {
  width: 65%;
  text-align: left;
  line-height: 2;
}

.about-reservation-item-left {
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  padding: 3.5%;
  background-color: #FFF;
  border-radius: 50%;
}

.about-reservation-flow1 {
  border: 10px solid #CFD9EB;
}

.about-reservation-flow2 {
  border: 10px solid #A3B3CE;
}

.about-reservation-flow3 {
  border: 10px solid #8798B8;
}

.about-flow-item-arrow {
  width: 200px;
}

.about-flow-item-arrow .fa-arrow-down {
  font-size: 2rem;
}

.about-reservation-flow-num {
  font-family: alkaline-caps, sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
}

.about-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 80px;
  margin: 0 auto;
  padding: 1.5% 3%;
  color: #333;
  font-size: 2rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  border: 1px solid #707070;
  border-radius: 10px 0 10px 10px;
  transition: all .5s ease;
}

.about-contact-btn:hover {
  color: #FFF;
  background-color: #002F7E;
}

@media(max-width: 960px) {
  .about-top {
    margin-bottom: 3vh;
  }
  
  .about-top-message {
    max-width: 700px;
    padding-top: 5vh;
  }
  
  .about-top .about-main-title::before {
    top: -14px;
    left: -10px;
  }
  
  .about-top .about-main-description {
    margin-bottom: 0;
  }
  
  .about-outline {
    padding: 3vh 0;
  }
  
  .about-outline-message {
    width: 92%;
    padding: 10%;
  }
  
  .about-guideline-inner {
    padding: 10% 0;
  }
  
  .about-reservation-flow {
    padding: 5%;
  }
}

@media(max-width: 768px) {
  .about-top .about-main-title::before {
    left: 10px;
  }
  
  .about-top .about-main-description {
    width: 100%;
    margin-bottom: 0;
  }
  
  .about-reservation-detail {
    margin-bottom: 5vh;
  }
  
  .about-reservation-detail-item {
    display: block;
  }
  
  .about-reservation-item-left, .about-reservation-item-right {
    margin: 0 auto;
  }
  
  .about-reservation-item-right {
    width: 80%;
    padding-top: 5vh;
  }
  
  .about-flow-item-arrow {
    width: 100%;
    margin: 10% 0;
  }
  
  .about-guideline-inner {
    display: block;
    padding: 0;
  }
  
  .about-guideline-inner a {
    display: block;
    width: 60vw;
    margin: 0 auto;
    margin-bottom: 5%;
  }
  
  .about-movie {
    width: 100%;
  }
}

@media(max-width: 428px) {
  .about-top .about-main-title::before {
    top: 5px;
  }
  
  .about-top .about-main-description {
    width: 90%;
    margin-bottom: 0;
    text-align: justify;
  }
  
  .about-outline-message {
    width: 96%;
    padding: 10% 5%;
  }
  
  .about-outline-message-title {
    font-size: 3rem;
  }
  
  .about-outline-message-text {
    font-size: 1.4rem;
    line-height: 2;
  }
  
  .guideline-btn {
    height: 60px;
    font-size: 1.7rem;
  }
  
  .about-reservation-flow-title {
    padding-top: 5px;
    padding-left: 5px;
    font-size: 2.4rem;
  }
  
  .about-reservation-flow-title::before {
    top: -5px;
    left: -8px;
    font-size: 2rem;
  }
  
  .about-reservation-item-left {
    padding: 8% 3.5%;
  }
  
  .about-reservation-item-right {
    width: 100%;
  }
  
  .about-contact-btn {
    width: 220px;
    height: 60px;
    font-size: 1.8rem;
  }
}

/*====================
よくある質問
====================*/

.faq {
  width: 100%;
}

.faq-wrap {
  padding: 5% 0;
}

.faq-title {
  position: relative;
  margin-bottom: 5vh;
  padding-top: 6px;
  padding-left: 10px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 2;
  text-align: left;
  border-bottom: 2px solid #0B2947;
}

.faq-title span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.faq-title::before {
  content: attr(deco-faq);
  position: absolute;
  transform: rotate(-3deg);
  top: 0;
  left: 0;
  font-family: adobe-handwriting-ernie, sans-serif;
  color: #9AB7D4;
  font-size: 1.8rem;
  font-weight: 400;
  opacity: .7;
}

.faq-category {
  width: 90%;
  margin-bottom: 5vh;
}

.faq-category-title {
  width: 25%;
  padding: 3vh 0;
  font-size: 2rem;
}

.faq-itemWrap {
  width: 70%;
}

.faq-itemWrap li {
  margin: 1.5% 0;
  padding: 3vh 0;
  border-bottom: 1px solid #0B2947;
}

.faq-item-inner {
  display: none;
  margin: 3%;
  padding: 3%;
  text-align: left;
}

.faq-item-inner span {
  display: block;
  padding: 1.5% 0;
}

.faq-item-inner a {
  margin-left: 20px;
  color: #0B2947;
  font-size: 1.4rem;
}

.faq-item-inner .fa-caret-right {
  margin-right: 5px;
}

.faq-item-title {
  padding: 0 1.5%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.fa-circle-question {
  margin-right: 20px;
  font-size: 2rem;
}

.faq-item-opener .fa-caret-down {
  width: 3%;
  font-size: 2rem;
}

.faq-contact-area {
  align-items: center;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5% 0;
}

@media(max-width: 960px) {
  .faq-wrap {
    width: 95%;
    margin: 0 auto;
  }
  
  .faq-title {
    width: 100%;
  }
  
  .faq-contact-area {
    display: block;
  }
  
  .faq .induction-btn {
    margin: 0 auto;
    margin-top: 5%;
  }
}

@media(max-width: 768px) {
  .faq-title {
    margin-bottom: 3vh;
  }
  
  .faq-category {
    display: block;
    width: 100%;
  }
  
  .faq-category-title {
    width: 100%;
    padding: 2vh 0;
    text-align: left;
  }
  
  .faq-itemWrap {
    width: 100%;
  }
}

@media(max-width: 428px) {
  .faq-item-text {
    width: 92%;
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.5;
  }
  
  .faq-item-opener {
    width: 5%;
  }
  
  .faq-item-opener .fa-caret-down {
    width: 100%;
    margin-right: 0;
    font-size: 1.6rem;
  }
  
  .faq-item-inner p {
    line-height: 1.5;
  }
  
  .faq-contact-area {
    width: 100%;
  }
  
  .faq-contact-area p {
    text-align: left;
  }
  
  .faq .induction-btn {
    width: 240px;
    height: 70px;
  }
}


/*====================
会員企業各社ページ
====================*/

.member-intro {
  width: 100%;
  padding: 10% 3%;
}

.member-intro-top-inner {
  position: relative;
  width: 100%;
  z-index: 0;
}

.member-nameWrap {
  position: absolute;
  top: -12%;
  left: 5%;
  width: fit-content;
  max-width: 500px;
  padding: 1.5% 3%;
  color: #FFF;
  text-align: left;
  background-color: #002F7E;
  border-radius: 0 10px 10px 0;
  z-index: 1;
}

.member-intro-top-image {
  position: relative;
  width: 50vw;
  max-width: 800px;
  height: 30vw;
  max-height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.member-intro-top-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 13px solid #333E8C;
  border-radius: 10px;
}

.member-nameWrap h2 {
  padding: 3% 0 1%;
  font-size: 2.6rem;
  line-height: 1.5;
}

.member-nameWrap span {
  margin-right: 10px;
  margin-bottom: 3%;
  padding: 0.5%;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
}

.member-intro-icon {
  position: absolute;
  bottom: -20%;
  right: -4%;
  width: 17vw;
  height: auto;
  overflow: hidden;
  z-index: 1;
}

.member-intro-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.member-intro-outline {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3% 0;
  text-align: left; 
}

.member-intro-description {
  padding: 8% 0;
}

.member-intro-detail-subTitle {
  display: inline-block;
  margin: 10px 0;
  padding: 0.5% 1.5%;
  color: #FFF;
  background-color: #002F7E;
  border-radius: 50px;
}

.member-intro-detail {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3% 0;
  text-align: left;
}

.member-detail-inner {
  padding: 0 1%;
}

.member-detail-inner dt {
  width: 5%;
  margin: 10px 0;
}

.member-detail-inner dd {
  width: 95%;
  margin: 10px 0;
}

.member-detail-inner .fa-location-dot {
  margin-right: 14px;
  font-size: 1.5rem;
}

.member-intro-detail-link a {
  padding: 0 1%;
  color: #0B2947;
  font-size: 1.8rem;
}

.member-intro-detail-link a:hover {
  opacity: .7;
}

.member-intro-detail-link .fa-desktop {
  margin-right: 3%;
  font-size: 1.5rem;
}

.member-intro-detail .induction-inner {
  padding-top: 10vh;
}

.member-intro-detail-link {
  margin: 10px 0;
}

@media(max-width: 960px) {
  .member-nameWrap {
    left: 0;
  }
  
  .member-nameWrap h2 {
    font-size: 2.4rem;
  }
  
  .member-intro-top-image {
    width: 70%;
    max-width: 550px;
    height: 38vw;
  }
  
  .member-intro-icon {
    bottom: -13%;
    right: -3%;
    width: 20vw;
  }
  
  .member-intro-outline, .member-intro-detail {
    max-width: 550px;
  }
  
  .member-intro-detail-subTitle {
    font-size: 1.5rem;
  }
  
  .member-intro-detail .induction-btn {
    width: 200px;
    height: 60px;
    font-size: 1.8rem;
  }
}
  
@media(max-width: 768px) {
  .member-intro {
    padding: 10% 3% 0;
  }
  
  .member-nameWrap {
    left: -12%;
  }
  
  .member-nameWrap h2 {
    font-size: 2rem;
  }

  .member-intro-top-image {
    max-width: 400px;
    height: 42vw;
  }
  
  .member-intro-top-image img {
    border: 10px solid #333E8C;
  }

  .member-intro-icon {
    right: -1%;
    width: 23vw;
  }
  
  .member-intro-icon img {
    border: none;
  }
  
  .member-intro-outline, .member-intro-detail {
    max-width: 500px;
    padding: 10% 0;
  }
  
  .member-intro-detail-subTitle {
    padding: 1% 2%;
  }
}

@media(max-width: 428px) {
  .member-nameWrap {
    top: -20%;
    left: -24%;
  }
  
  .member-intro-top-image {
    width: 80%;
    height: 45vw;
  }
  
  .member-intro-outline, .member-intro-detail {
    max-width: 370px;
  }
  
  .member-detail-inner {
    margin-bottom: 1%;
  }
}

@media(min-width: 2000px) {
  .member-nameWrap {
	left: 15%;	
  }
}

/*====================
お問い合わせページ
====================*/

.contact {
  padding: 5%;
}

.contact-title {
  position: relative;
  display: inline-block;
  margin-bottom: 5vh;
  padding-top: 24px;
  padding-left: 18px;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 2;
}

.contact-title span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.contact-title::before {
  content: attr(deco-contact);
  position: absolute;
  transform: rotate(-1.5deg);
  top: 0;
  left: 0;
  font-family: adobe-handwriting-ernie, sans-serif;
  color: #9AB7D4;
  font-size: 5rem;
  font-weight: 400;
  opacity: .7;
}

.contact-precautions {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.contact-precautions a {
  color: #0c51a6;
  border-bottom: 1px solid #0c51a6;
  transition: all .4s ease;
}

.contact-precautions a:hover {
  opacity: .7;
}

.contact-inner {
  width: 100%;
  height: 1000px;
  padding: 10vh 0;
}

.contact-inner iframe {
  width: 100%;
  height: 100%;
}

@media(max-width: 768px) {
  .contact-title {
    padding-top: 14px;
    padding-left: 20px;
    font-size: 2.8rem;
  }
  
  .contact-title::before {
    font-size: 3.3rem;
  }
}

@media(max-width: 428px) {
  .contact {
    padding: 2.5%;
  }
  
  .contact-inner {
    padding: 3vh 0;
  }

}

/*====================
お知らせ記事ページ
====================*/

.article {
  padding: 10% 0;
}

.article-title {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5vh;
  padding-top: 10px;
  padding-left: 35px;
  font-size: 3.6rem;
  font-weight: 900;
  text-align: left;
  line-height: 2;
}

.article-title span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.article-title::before {
  content: attr(deco-article);
  position: absolute;
  transform: rotate(-1.5deg);
  top: 0;
  left: 0;
  font-family: adobe-handwriting-ernie, sans-serif;
  color: #9AB7D4;
  font-size: 3rem;
  font-weight: 400;
  opacity: .7;
}

.article-inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 10vh;
  text-align: left;
}

.article-inner-title {
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: 1;
}

.article-inner-date {
  font-size: 1.4rem;
}

.article-inner-text {
  padding-top: 3%;
  line-height: 1.8;
}

.article-inner-text a {
  color: #0B2947;
}

.article-link {
  padding-top: 5vh;
}

.article-linkBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 60px;
  margin: 0 auto;
  padding: 1.5% 3%;
  border: 1px solid #707070;
  border-radius: 10px 0 10px 10px;
  transition: all .5s ease;
  color: #333;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}

.article-linkBtn:hover {
  color: #FFF;
  background-color: #002F7E;
}

@media(max-width: 428px) {
  .article {
    padding: 5% 0;
  }
  
  .article-title {
    width: 95%;
    margin-bottom: 2vh;
    padding-top: 5px;
    padding-left: 15px;
    font-size: 3rem;
  }
  
  .article-title::before {
    font-size: 2.4rem;
  }
  
  .article-inner {
    width: 95%;
    margin-bottom: 5vh;
  }
  
  .article-inner-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .article-inner-text p {
    line-height: 2;
  }
}

/*====================
記事一覧ページ
====================*/

.archive {
  padding: 10% 0;
}

.archive-title {
  position: relative;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 5vh;
  padding-top: 10px;
  padding-left: 35px;
  font-size: 3.6rem;
  font-weight: 900;
  text-align: left;
  line-height: 2;
}

.archive-title span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.archive-title::before {
  content: attr(deco-archive);
  position: absolute;
  transform: rotate(-1.5deg);
  top: 0;
  left: 0;
  font-family: adobe-handwriting-ernie, sans-serif;
  color: #9AB7D4;
  font-size: 3rem;
  font-weight: 400;
  opacity: .7;
}

.archive-inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 5vh 0;
}

.archive-inner__content {
  padding: 3%;
  border-bottom: 1px solid #0B2947;
}

.archive-item__inner {
  justify-content: flex-start;
  color: #0B2947;
}

.archive-item__inner:hover {
  opacity: .7;
}

.archive-article-title {
  text-align: left;
  line-height: 1.5;
}

.archive-date {
  margin-right: 20px;
}

.archive-link {
  padding: 5vh 0;
}

.archive-linkBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 60px;
  margin: 0 auto;
  padding: 1.5% 3%;
  border: 1px solid #707070;
  border-radius: 10px 0 10px 10px;
  transition: all .5s ease;
  color: #333;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}

.archive-linkBtn:hover {
  color: #FFF;
  background-color: #002F7E;
}

.nav-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.nav-links li > * {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  height: 45px;
}
.nav-links li > *:not(.dots) {
  width: 45px;
  border-radius: 50%;
  color: #0B2947;
  background: #EFEFEF;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-links li > .current,
.nav-links li > a:hover {
  color: #FFF;
  background: #0B2947;
}

@media(max-width: 768px) {
  .archive-item__inner {
    display: block;
  }
  
  .archive-date {
    display: block;
    text-align: left;
  }
  
  .archive-article-title {
    padding-top: 1.5%;
  }
}

@media(max-width: 428px) {
  .archive {
    padding: 5% 0;
  }
  
  .archive-title {
    width: 95%;
    margin-bottom: 2vh;
    padding-top: 5px;
    padding-left: 15px;
    font-size: 3rem;
  }
  
  .archive-title::before {
    font-size: 2.4rem;
  }
}