@charset "UTF-8";
/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(49, 49, 49, 0.9);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  background-color: #333;
  width: 100%;
  height: auto;
  max-height: 90%;
  padding: 20px;
}

.imgSet {
  width: auto;
  height: 90%;
  margin: 0 auto;
}

.imgSet img {
  overflow: hidden;
}

/* モーダルを閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #333;
  border: 1px solid #333;
  color: #fff;
  cursor: pointer;
  text-align: center;
  z-index: 10;
}

.modal .swiper-button-next,
.modal .swiper-button-prev {
  color: #ccc;
}

.parenr {
  position: relative;
}

/* Swiperの矢印部分 */
@media (max-width: 768px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    display: none;
  }
}
.hamburger {
  display: none;
}

.sp_nav_container {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav {
    display: none;
  }
  /*ハンバーガーメニュー*/
  .hamburger {
    display: block;
    position: absolute;
    top: 30px;
    right: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    z-index: 999;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    right: 0;
    background: #333;
    transition: 0.5s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 15px;
  }
  .hamburger span:nth-child(2) {
    top: 25px;
  }
  .hamburger span:nth-child(3) {
    top: 35px;
  }
  .hamburger.active {
    position: fixed;
    z-index: 9999;
  }
  /* Xボタン */
  .hamburger.active span:nth-child(1) {
    width: 30px;
    top: 30px;
    right: 0;
    background: #fff;
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2) {
    display: none;
    transition: 0.5s ease-in-out;
  }
  .hamburger.active span:nth-child(3) {
    width: 30px;
    top: 30px;
    right: 0;
    background: #fff;
    transform: rotate(45deg);
  }
  /* Xボタン */
  /*ナビレイアウト****/
  .sp_nav_container {
    display: block;
    position: fixed;
    background-color: #111;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 999;
  }
  .sp_nav {
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: scroll;
    margin: 100px 0;
  }
  .sp_nav img {
    width: 15%;
    height: auto;
    margin-bottom: 50px;
  }
  .sp_nav > ul img {
    display: block;
    width: 100px;
    height: auto;
    margin: auto;
  }
  .sp_nav ul a {
    text-decoration: none;
  }
  .sp_nav ul li {
    color: #fff;
    background-color: #111;
    transition: all 0.3s ease;
    margin: 15px 0;
    font-size: 2rem;
  }
  .sp_nav ul li:hover {
    background-color: #555;
    transition: 0.3s;
    color: #fff;
  }
  /*このクラスを、jQueryで付与・削除する */
  html.fixed {
    height: 100%;
    overflow: hidden;
  }
  .sp_nav_container.active {
    opacity: 1;
    visibility: visible;
  }
}
.animation_up {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.animation_right {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-30px);
}

.animation_left {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*****横並びディレイ*/
.animation_up.second {
  transition-delay: 0.4s;
}

.animation_up.third {
  transition-delay: 0.6s;
}

.animation_up.fourth {
  transition-delay: 0.8s;
}

/*****スクロールアニメーション*/
.aboutContainer {
  width: 90%;
  max-width: 880px;
  height: auto;
  margin: 100px auto;
}
.aboutContainer .about_halo_logo {
  width: 30%;
  height: auto;
  display: block;
  margin: 50px auto;
}
.aboutContainer h4 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}
.aboutContainer p {
  line-height: 1.8;
  font-size: 16px;
}
.aboutContainer img {
  width: 100%;
  height: auto;
  margin-top: 30px;
}

/*news archive************/
.archiveNewsContainer {
  width: 90%;
  max-width: 880px;
  height: auto;
  min-height: calc(100% - 300px);
  margin: 100px auto;
}
.archiveNewsContainer ul {
  width: 100%;
  height: auto;
}
.archiveNewsContainer ul li {
  padding: 30px;
  border-bottom: 1px dotted #333;
  padding-bottom: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .archiveNewsContainer ul li a:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

/**news********************/
.newsContainer {
  width: 90%;
  height: auto;
  max-width: 880px;
  margin: 100px auto;
}
.newsContainer .journalContents {
  width: 100%;
  height: auto;
}
.newsContainer .journalContents .newsTitle {
  font-size: 32px;
}
.newsContainer .journalContents .date {
  font-size: 13px;
  margin-top: 40px;
}
.newsContainer .journalContents img {
  width: 100%;
  height: auto;
  margin: 40px 0;
}
.newsContainer .journalContents h5 {
  font-size: 16px;
  margin: 20px 0;
}
.newsContainer .journalContents p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.newsContainer .journalContents p a {
  color: rgb(255, 0, 0);
}
.newsContainer a.btn {
  display: block;
  width: 90%;
  height: auto;
  max-width: 300px;
  background-color: #333;
  color: #fff;
  margin: 100px auto;
  text-align: center;
  font-size: 16px;
  padding: 25px 0;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .newsContainer a.btn:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

/*JOURNAL 一覧ページ*/
/***JOURNAL コンテンツページ*****/
.journalContainer {
  width: 90%;
  height: auto;
  max-width: 880px;
  margin: 100px auto;
}
.journalContainer .journalContents {
  width: 100%;
  height: auto;
}
.journalContainer .journalContents .jnTitle {
  font-size: 32px;
}
.journalContainer .journalContents .date {
  font-size: 13px;
  margin-top: 40px;
}
.journalContainer .journalContents img {
  width: 100%;
  height: auto;
  margin: 40px 0;
}
.journalContainer .journalContents h5 {
  font-size: 16px;
  margin: 20px 0;
}
.journalContainer .journalContents p {
  font-size: 16px;
  line-height: 1.8;
}
.journalContainer .journalContents p a {
  color: rgb(255, 0, 0);
}
.journalContainer .journalContents .twoCal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .journalContainer .journalContents .twoCal {
    flex-direction: column;
  }
}
.journalContainer .journalContents .twoCal img {
  width: 45%;
  height: auto;
}
@media (max-width: 768px) {
  .journalContainer .journalContents .twoCal img {
    width: 100%;
    height: auto;
  }
}
.journalContainer a.btn {
  display: block;
  width: 90%;
  height: auto;
  max-width: 300px;
  background-color: #333;
  color: #fff;
  margin: 100px auto;
  text-align: center;
  font-size: 16px;
  padding: 25px 0;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .journalContainer a.btn:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

.lookContainer {
  width: 90%;
  height: auto;
  max-width: 880px;
  margin: 100px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .lookContainer {
    flex-direction: column;
  }
}
.lookContainer .content {
  width: 45%;
  height: auto;
}
@media (max-width: 768px) {
  .lookContainer .content {
    width: 90%;
    height: auto;
  }
}
.lookContainer .content img {
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .lookContainer .content img:hover {
    transform: scale(1.05, 1.05);
    transition: 0.5s;
    opacity: 0.6;
    overflow: hidden;
  }
}
.lookContainer .content h2 {
  font-size: 32px;
  font-weight: bolder;
  margin: 15px 0 30px;
}

/*ロードアニメーション*/
#load_animation {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading_gif {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.loading_gif img {
  width: 100px;
  height: auto;
}

/* 画面全体の設定 */
/*ロードアニメーション*/
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

header .header_container {
  width: 90%;
  height: 130px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_container .logoSide {
  width: 50%;
  height: 100%;
}
header .header_container .logoSide a {
  display: block;
}
header .header_container .logoSide a img {
  height: 100px;
  width: auto;
  margin: 15px 0;
}
@media (hover: hover) and (pointer: fine) {
  header .header_container .logoSide a:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}
header .header_container .navSide {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .header_container .navSide {
    display: none;
  }
}
header .header_container .navSide ul {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.8;
}
header .header_container .navSide ul li {
  margin-right: 20px;
}
header .header_container .navSide ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (hover: hover) and (pointer: fine) {
  header .header_container .navSide ul li a:hover {
    opacity: 0.4;
    transition: 0.3s;
  }
}
header .header_container .navSide .shop_link {
  background-color: #333;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  width: 100px;
}
header .header_container .navSide .shop_link:hover {
  background-color: #a2a2a2;
  transition: 0.3s;
}
header .header_container .navSide .shop_link a {
  display: block;
  width: 100%;
  height: 100%;
}

main .hero {
  width: 100%;
  height: auto;
}
main .hero img {
  width: 100%;
  height: auto;
}
main .pageTitle {
  width: 100%;
  height: auto;
  background-color: #333;
}
main .pageTitle h2 {
  font-size: 32px;
  color: #fff;
  padding: 20px 5%;
}
main .topNews {
  width: 60%;
  height: auto;
  margin: 100px auto;
  max-width: 880px;
}
@media (max-width: 768px) {
  main .topNews {
    width: 90%;
  }
}
main .topNews h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
main .topNews ul li {
  border-bottom: 1px dotted #333;
}
main .topNews ul li:first-child {
  border-top: 1px dotted #333;
}
main .topNews ul li a {
  display: block;
  padding: 20px 0;
}
@media (hover: hover) and (pointer: fine) {
  main .topNews ul li a:hover {
    background-color: #777;
    transition: 0.3s;
    color: #fff;
  }
}
main .topNews ul li a p {
  padding: 0 10px;
}
main .topLook {
  width: 90%;
  height: auto;
  margin: 100px auto;
  max-width: 880px;
}
main .topLook h2 {
  font-size: 32px;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  width: 80%;
  max-width: 400px;
  height: auto;
  margin-bottom: 30px;
}
main .topLook .content {
  max-width: 650px;
  width: 90%;
  height: auto;
  margin: 0 auto;
}
main .topLook .content img {
  width: 100%;
  height: auto;
}
main .topLook a.btn {
  display: block;
  width: 90%;
  height: auto;
  max-width: 650px;
  background-color: #333;
  color: #fff;
  margin: 50px auto;
  text-align: center;
  font-size: 32px;
  padding: 25px 0;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  main .topLook a.btn:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}
main .topJournal {
  width: 90%;
  height: auto;
  max-width: 880px;
  margin: 100px auto;
}
main .topJournal h2 {
  font-size: 32px;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  width: 80%;
  max-width: 400px;
  height: auto;
  margin-bottom: 30px;
}
main .topJournal .topJournal_wrap {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 30px;
}
@media (max-width: 768px) {
  main .topJournal .topJournal_wrap {
    flex-direction: column;
  }
}
main .topJournal .topJournal_wrap .journalContents {
  width: 50%;
  height: auto;
  padding: 10px;
  border: #333 1px solid;
}
@media (hover: hover) and (pointer: fine) {
  main .topJournal .topJournal_wrap .journalContents a:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}
@media (max-width: 1080px) {
  main .topJournal .topJournal_wrap .journalContents {
    width: 45%;
  }
}
@media (max-width: 768px) {
  main .topJournal .topJournal_wrap .journalContents {
    width: 100%;
  }
}
main .topJournal .topJournal_wrap .journalContents img {
  width: 100%;
  height: auto;
}
main .topJournal .topJournal_wrap .journalContents h3 {
  font-size: 16px;
  margin: 16px 0;
}
main .topJournal .topJournal_wrap .journalContents p {
  font-size: 13px;
}
main .topJournal a.btn {
  display: block;
  width: 90%;
  height: auto;
  max-width: 650px;
  background-color: #333;
  color: #fff;
  margin: 50px auto;
  text-align: center;
  font-size: 32px;
  padding: 25px 0;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  main .topJournal a.btn:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}
main .linkArea {
  width: 100%;
  height: auto;
}
main .linkArea h2 {
  display: block;
  font-size: 56px;
  color: #fff;
  font-weight: bold;
  padding: 50px 50px 20px;
}
@media (max-width: 768px) {
  main .linkArea h2 {
    font-size: 24px;
  }
}
main .linkArea p {
  color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 0px 0 50px 50px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  main .linkArea p {
    font-size: 13px;
    line-height: 1.3;
  }
}
main .linkArea .inspec {
  position: relative;
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  main .linkArea .inspec a:hover {
    opacity: 0.6;
    transition: 0.1s;
  }
}
main .linkArea .inspec img {
  width: 100%;
  height: auto;
}
main .linkArea .inspec .textContent {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
main .linkArea .products {
  position: relative;
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  main .linkArea .products a:hover {
    opacity: 0.6;
    transition: 0.1s;
  }
}
main .linkArea .products img {
  width: 100%;
  height: auto;
}
main .linkArea .products .textContent {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
main .linkArea .about {
  position: relative;
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  main .linkArea .about a:hover {
    opacity: 0.6;
    transition: 0.1s;
  }
}
main .linkArea .about img {
  width: 100%;
  height: auto;
}
main .linkArea .about .textContent {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
main .linkArea .about .textContent p {
  width: 100%;
}

footer .footer {
  width: 100%;
  height: 300px;
  background-color: #D9D9D9;
  position: relative;
}
footer .footer .shopInfo {
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding-top: 50px;
}
footer .footer .shopInfo h4 {
  font-size: 16px;
}
footer .footer .shopInfo h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 10px;
}
footer .footer .shopInfo p {
  margin-bottom: 15px;
}
@media (hover: hover) and (pointer: fine) {
  footer .footer .shopInfo a:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}
footer .footer .copyright {
  font-size: 13px;
  position: absolute;
  bottom: 20px;
  left: 10%;
}/*# sourceMappingURL=style.css.map */