/*
Theme Name: veritecoeur-theme
Theme URI: https://veritecoeur.com/
Author: Minoru Kakehi
Description: Twenty Twenty-One Based Custom Theme
Version: 1.0
Template: twentytwentyone
Tags: custom, light, responsive
*/

/***************************************************/

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

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

.clr,
.clear {
  clear: both;
}

/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** -------------------    MAIN STRUCTURE     ----------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/

body,
td,
th {
  /*font-family:"Libre Baskerville","游明朝", YuMincho, "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", Meiryo, serif;*/
}
/* Body */

.sp {
  display: none;
}
.pc {
  display: block;
}

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

html,
body {
  font-family: "Work Sans", "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  background-color: #ffffff;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: #333333;
}
/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  overflow: hidden;
}
.main_contents {
  margin-top: 110px;
}

.home .main_contents {
  margin-top: 0px;
}

.fadein_block {
  opacity: 0;
  transition: opacity 1s ease;
}

.max100p {
  width: 100%;
  margin: auto;
}

.header_center_max {
  max-width: 1200px;
  margin: auto;
  width: 92%;
}
@media (max-width: 900px) {
  .header_center_max {
    max-width: 1200px;
    margin: auto;
    width: 98%;
  }
}

.center_max {
  max-width: 1400px;
  margin: auto;
  width: 92%;
}

@media (max-width: 768px) {
  .center_max {
    width: 96%;
  }
  .main_contents {
    margin-top: 80px;
  }
}

.max_width_700 {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .max_width_700 {
    max-width: 700px;
  }
}

.max_width100percent {
  position: relative;
  width: 100vw;
  height: 100dvh; /* ← ここが重要 */
  margin: 0 auto;
  overflow: hidden;
}

section {
  position: relative;
  overflow: hidden;
  clear: both;
}

/* footer*/
footer {
  padding-bottom: 35px;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.home footer {
  display: none;
}

.page-id-11850 footer {
  display: none;
}

#footer_icon {
  width: 100%;
  text-align: center;
}
#footer_icon img {
  width: 20%;
  max-width: 60px;
}

#footer_copy {
  color: #000;
  text-align: center;
  padding: 30px 15% 50px 15%;
  font-size: 0.9em;
  line-height: 1.6em;
}
@media (max-width: 768px) {
  #footer_copy {
    padding: 30px 5% 50px 5%;
    font-size: 0.7em;
    line-height: 1.2em;
  }
}
.hidden {
  display: none;
}

#scroll_down_icon {
  width: 20px;
  position: fixed;
  right: 1.5%;
  top: 40%;
  z-index: 1;
}

.home #scroll_down_icon {
  display: none;
}
.page-id-11850 #scroll_down_icon {
  display: none;
}

#scroll_down_icon img {
  width: 100%;
}
@media (max-width: 768px) {
  #scroll_down_icon {
    width: 15px;
    position: fixed;
    right: 1.5%;
    top: 40%;
    z-index: 1;
  }
}
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** -------------------------    COMMON    -------------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
.text_white {
  color: #fff;
}

/* Navigation */
header {
  width: 100%;
  height: 80px;
  background-color: transparent;
  z-index: 10;
  padding: 20px 0 0 0;
}

.fix_header {
  position: fixed;
  margin: 0px 0 0px 0;
}

.logo {
  margin: 0px;
  height: 33px;
  padding: 5px 0% 0px 0;
  color: #000;
  float: left;
  width: 20%;
  max-width: 160px;
}

.logo img {
  width: 100%;
}
.logo_white {
  display: none;
}

.logo_black {
  display: block;
}

.text_white .logo_white {
  display: block;
}

.text_white .logo_black {
  display: none;
}
@media (max-width: 1150px) {
  .logo {
    margin: 0px;
    height: 33px;
    padding: 7px 0% 0px 0;
    color: #000;
    float: left;
    width: 24%;
    max-width: 140px;
  }
}
@media (max-width: 900px) {
  .logo {
    width: 19%;
  }
}

@media (max-width: 768px) {
  .logo {
    margin: 0px;
    height: auto;
    padding: 5px 0px 30px 0px;
    color: #000;
    float: none;
    width: 100%;
    text-align: center;
    max-width: none;
  }

  .logo img {
    width: 60%;
    max-width: 140px;
  }
}

#slide-menu {
  position: fixed;
  top: 0px;
  left: 0;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 70px 30px 40px 20px;
  z-index: 5;

  /* 初期状態では左に隠れている */
  transform: translateX(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none; /* 非表示状態ではクリックも無効に */
}

.home #slide-menu {
  background-color: transparent;
}

#slide-menu.active {
  transform: translateX(0); /* 左端から現れる */
  opacity: 1;
  pointer-events: auto;
}

#slide-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#slide-menu li {
  margin: 24px 0 24px 26px;
}

#slide-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #555;
}

#slide-menu li a {
  transition: background-color 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

#slide-menu li a:active {
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.6;
}

#slide-menu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.menu-color-white #slide-menu a {
  color: #fff;
}
.menu-color-lightgray #slide-menu a {
  color: #aaa;
}
.menu-color-darkgray #slide-menu a {
  color: #555;
}
.menu-color-black #slide-menu a {
  color: #000;
}

@media (max-width: 768px) {
  #slide-menu {
    padding: 70px 30px 40px 20px;
    width: 100%;
    background-color: #fff;
  }

  .menu-color-white #slide-menu {
    background-color: rgba(255, 255, 255, 0.8);
    background-color: #fff;
  }

  .menu-color-lightgray #slide-menu {
    background-color: rgba(255, 255, 255, 0.8);
    color: #aaa;
  }
  .menu-color-darkgray #slide-menu {
    background-color: rgba(255, 255, 255, 0.8);
    color: #555;
  }
  .menu-color-black #slide-menu {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
  }

  #slide-menu a {
    text-decoration: none;
    font-size: 1rem;
    color: #333;
  }

  .menu-color-white #slide-menu a {
    color: #333;
  }
  .menu-color-lightgray #slide-menu a {
    color: #333;
  }
  .menu-color-darkgray #slide-menu a {
    color: #333;
  }
  .menu-color-black #slide-menu a {
    color: #333;
  }
}
.slide_ul_submenu {
  display: none;
}
.page-id-18795 .slide_ul_submenu {
  display: block;
}

.category .slide_ul_submenu {
  display: block;
}

#slide-menu li.slide_li_submenu {
  margin: 18px 0px 18px 30px;
}
#slide-menu li.slide_li_submenu::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
  color: #555;

  font-size: 0.9rem;
}

#slide-menu .slide_li_submenu a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #555;
}

.sns_menu {
  padding: 3em 0 0 0;
}

.insta_logo_b {
  width: 23px;
  height: auto;
  display: inline-block;
}

.insta_logo_w,
.insta_logo_lg,
.insta_logo_dg,
.insta_logo_b {
  width: 23px;
  height: auto;
  display: inline-block;
  display: none;
}

.menu-color-white .insta_logo_w {
  display: inline-block;
}
.menu-color-lightgray .insta_logo_lg {
  display: inline-block;
}
.menu-color-darkgray .insta_logo_dg {
  display: inline-block;
}
.menu-color-black .insta_logo_b {
  display: inline-block;
}
/*!------------------------------------*\
    burger Start
\*!------------------------------------*/
#burger_base_box {
  position: relative;
  width: 100%;
  max-width: none;
  margin: auto;
}
#burger_menu {
  position: fixed;
  left: 40px;
  top: 34px;
  z-index: 20;

  width: 45px;
  height: 23px;
}
@media (max-width: 768px) {
  #burger_menu {
    position: fixed;
    left: 6%;
  }
}
#burger_menu img {
  width: 100%;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 23px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #555;
  border-radius: 4px;
}

.menu-color-white .menu-trigger span {
  background-color: #fff;
}
.menu-color-lightgray .menu-trigger span {
  background-color: #aaa;
}
.menu-color-darkgray .menu-trigger span {
  background-color: #555;
}
.menu-color-black .menu-trigger span {
  background-color: #000;
}
@media (max-width: 768px) {
  .active.menu-trigger span {
    background-color: #333 !important;
  }
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11.5px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #555;
  border-radius: 4px;
  transition: all 0.4s;
}

.menu-color-white .menu-trigger span:nth-of-type(2)::after {
  background-color: #fff;
}

.menu-color-lightgray .menu-trigger span:nth-of-type(2)::after {
  background-color: #aaa;
}

.menu-color-darkgray .menu-trigger span:nth-of-type(2)::after {
  background-color: #555;
}

.menu-color-black .menu-trigger span:nth-of-type(2)::after {
  background-color: #000;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(20px) scale(0);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-20px) scale(0);
}

.menu-trigger.not_show_x {
  display: none;
}
@media (max-width: 768px) {
  .active.menu-trigger span:nth-of-type(2)::after {
    background-color: #333 !important;
  }
}
/*!------------------------------------*\
    burger end
\*!------------------------------------*/

.section1 {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
  margin-top: 230px;
}

/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** -------------------------    TOP     ---------------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
#top_h1 {
  position: absolute;
  font-size: 10px;
  color: #aaa;
  top: 5px;
  right: 5px;
  z-index: 3;
}
#page_top header {
  background-color: transparent;
}
.top_full_img {
  margin: 0;
  height: 100%;
}
.top_full_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top_logo {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 350px;
  z-index: 1;
}

.top_logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.8));
}

.top_logo img.logo_img_w,
.top_logo img.logo_img_lg,
.top_logo img.logo_img_dg,
.top_logo img.logo_img_b {
  display: none;
}

.menu-color-white .top_logo img.logo_img_w {
  display: inline-block;
}
.menu-color-lightgray .top_logo img.logo_img_lg {
  display: inline-block;
}
.menu-color-darkgray .top_logo img.logo_img_dg {
  display: inline-block;
}
.menu-color-black .top_logo img.logo_img_b {
  display: inline-block;
}

@media (max-width: 768px) {
  .top_logo {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: none;
  }
}

.top-swiper {
  width: 100%;
  height: 100vh;
}
.top-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.top-swiper img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  display: block;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/**common**/
/*
.top_section {
  border-bottom: 20px solid #fff;
  max-height: 1000px;
  min-height: 80vw;
}
.top_section_text_box01 {
  bottom: 30px;
  padding: 30px 0px 30px 30px;
  position: absolute;
}

.loader {
  width: 40px;
  height: 40px;
  display: block;
  top: 48%;
  left: 49%;
  position: absolute;
}

.loader img {
  width: 100%;
}

#text_box_collection {
  bottom: 40px;
}

@media (max-width: 768px) {
  .top_section {
    min-height: 700px;
  }

  .top_section_text_box01 {
    bottom: 30px;
    padding: 30px 0px 0px 5%;
  }

  #text_box_journal {
    bottom: 10px;
  }

  #text_box_collection {
    bottom: 30px;
  }
}

.text_box_title {
  font-size: 1.26em;
  font-weight: bold;
  padding: 18px 10px 18px 10px;
  display: inline-block;
  margin-bottom: 2em;
  color: #fff;
  background-color: #414141;
  border-radius: 10px 10px 10px 10px;
  width: 200px;
  text-align: center;
  letter-spacing: 0.07em;
}

.text_white .text_box_title {
  color: #333;
  background-color: #fff;
}

.text_box_text01 {
  width: 100%;
  max-width: 500px;
  line-height: 1.8em;
}

@media (max-width: 768px) {
  .text_box_title {
    font-size: 1em;
    font-weight: bold;
    padding: 12px 3% 12px 3%;
    display: inline-block;
    margin-bottom: 2em;
    color: #fff;
    width: 180px;
    text-align: center;
  }

  .text_box_text01 {
    line-height: 1.4em;
    width: 100%;
    max-width: 700px;
    font-size: 0.9em;
  }
}

#top_section_journal {
  height: 100%;
  min-height: 100vh;
}
  */
/*
#bg01_1,
#bg01_2,
#bg01_3 {
  display: none;
}
#bg01_1 {
  display: block;
}

#sp_bg01_1,
#sp_bg01_2,
#sp_bg01_3 {
  display: none;
}

#bg02_1,
#bg02_2,
#bg02_3 {
  display: none;
}
#bg02_1 {
  display: block;
}

#sp_bg02_1,
#sp_bg02_2,
#sp_bg02_3 {
  display: none;
}

@media (max-width: 768px) {
  #bg01_1,
  #bg01_2,
  #bg01_3 {
    display: none;
  }
  #sp_bg01_1,
  #sp_bg01_2,
  #sp_bg01_3 {
    display: none;
  }
  #sp_bg01_1 {
    display: block;
  }

  #bg02_1,
  #bg02_2,
  #bg02_3 {
    display: none;
  }
  #sp_bg02_1,
  #sp_bg02_2,
  #sp_bg02_3 {
    display: none;
  }
  #sp_bg02_1 {
    display: block;
  }
}

.bg_photo_nav {
  text-align: left;
  width: 100%;
  position: relative;
  bottom: 0px;
}

#bg_photo_nav1 {
  max-width: 1600px;
}

.nav_bar {
  display: inline-block;
  height: 9px;
  width: 50px;
  margin: 30px 5px;
  border-radius: 3px;
  background-color: #fff;
}

.active_bar {
  background-color: #414141;
}

.bg_photo_nav li::after {
  position: absolute;
  top: 0;

  bottom: 0;

  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: transparent;
  width: 50px;
  margin-left: -25px;
}

#top_wide_img,
#top_wide_img_sp,
.wide_img_no_fix {
  width: 100%;
  height: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: fixed;
}
.wide_img_no_fix {
  position: absolute;
  min-height: 90vw;
  max-height: 1000px;
}

.top_photo {
  width: 100%;
  height: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: absolute;
}

.wide_img_no_fix .top_photo {
  min-height: 80vw;
  max-height: 1000px;
}

#top_section_collection .top_photo {
  height: 80vw;
}

@media (max-width: 768px) {
  .top_photo {
    height: 110vh;
  }

  #top_section_collection .wide_img_no_fix,
  #top_section_collection .top_photo {
    height: auto;
    min-height: 1200px;
    min-height: 700px;
  }
}

@media (max-width: 650px) {
  #top_section_collection .wide_img_no_fix,
  #top_section_collection .top_photo {
    height: auto;
    min-height: 1000px;
    min-height: 680px;
  }
}

@media (max-width: 580px) {
  #top_section_collection .wide_img_no_fix,
  #top_section_collection .top_photo {
    height: auto;
    min-height: 660px;
  }
}

#top_section_collection {
  background-color: #fafafa;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border-top: 20px solid #fff;
}

.top_logo_iw {
  position: fixed;
  top: 24vh;
  width: 100%;
  text-align: center;
}

.top_logo_iw img {
  width: 60%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .top_logo_iw img {
    width: 70%;
    max-width: 400px;
  }
}

#top_section_iw {
  background-color: #d8d6cb;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: url("../images/common/vc_top_incense_01.jpg");
}

@media (max-width: 768px) {
  #top_section_iw {
    background-image: url(../images/common/vc_top_incense_01_sp.jpg);
  }
}

.font-white {
  color: #fff;
}

#top_section_about {
  background-color: #f3f3f3;
  padding: 550px 0 200px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: url(../images/common/vc_top_about_20230801.jpg);
}

#text_box_image .text_box_text01 {
  max-width: 35%;
}

@media (max-width: 768px) {
  #top_section_about {
    background-color: #f3f3f3;
    padding: 40px 0 40px 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
}



#collection_img_box {
  width: 60%;
  position: absolute;
  padding-bottom: 30%;
  padding-top: 100px;
  bottom: 120px;
  right: 5%;
}

#collection_img_box #collection_img1 {
  max-width: 70%;
  bottom: 90px;
  right: 90px;
  position: absolute;
  z-index: 4;
}
#collection_img_box #collection_img2 {
  max-width: 70%;
  bottom: 60px;
  right: 60px;
  position: absolute;
  z-index: 3;
}
#collection_img_box #collection_img3 {
  max-width: 70%;
  bottom: 30px;
  right: 30px;
  position: absolute;
  z-index: 2;
}
#collection_img_box #collection_img4 {
  max-width: 70%;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 1;
}

#thank_you_btn {
  position: absolute;
  bottom: 320px;
  right: 32%;
}

@media (max-width: 768px) {
  #thank_you_btn {
    position: absolute;
    bottom: 130px;
    right: 80px;
  }
}

#top_section_stockists {
  background-color: #d8d6cb;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: url(../images/common/vc_04.jpg);
}

@media (max-width: 768px) {
  #top_section_stockists {
    background-image: url(../images/common/vc_04_sp.jpg);
  }
}

#text_box_stockists {
  bottom: 25%;
}

@media (max-width: 768px) {
  #text_box_stockists {
    bottom: 20px;
  }
}

#top_section_shop {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: url(../images/common/vc_05.jpg);
}

@media (max-width: 768px) {
  #top_section_shop {
    background-image: url(../images/common/vc_05_sp.jpg);
  }
}

@media (max-width: 768px) {
  #top_section_shop .top_section_text_box01 {
  }
}

#top_section_online {
  background-color: #bec1c1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: auto;
  max-height: none;
  padding: 40px 0;
}

#online_bg_list_ul {
  width: 100%;
  margin: auto;
}

.online_bg_list_li {
  float: left;
  width: 34%;
  padding: 20px 1%;
  position: relative;
}

.online_bg_list_li img {
  width: 100%;
}

#online_bg_list_ul li:nth-child(1),
#online_bg_list_ul li:nth-child(5) {
  padding: 20px 1% 20px 0;
  width: 33%;
}

#online_bg_list_ul li:nth-child(3),
#online_bg_list_ul li:nth-child(7) {
  padding: 20px 0 20px 1%;
  width: 33%;
}

.online_bg_list_li img {
  width: 100%;
}

.online_text_li {
  padding: 10px 0px 10px 1.66%;
  position: relative;
  width: 100%;
  clear: both;
}

@media (max-width: 768px) {
  #online_bg_list_ul {
    width: 94%;
    margin: auto;
  }
  .online_bg_list_li {
    float: left;
    width: 34%;
    padding: 20px 1%;
    position: relative;
  }

  .online_text_li {
    padding: 30px 0px 20px 0px;
    position: relative;
    bottom: auto;
  }
}

#text_box_online {
  padding: 20px 0 20px 30px;
  padding-left: calc(3% + 30px);
}

@media (min-width: 1400px) {
  #text_box_online {
    padding: 20px 0 20px 30px;
    padding-left: calc(50vw - 700px + 30px);
  }
}

@media (max-width: 768px) {
  #text_box_online {
    padding: 20px 0 20px 30px;
    padding-left: calc(5%);
  }
}

#top_section_thankyou {
  overflow: hidden;
  text-align: center;
  font-size: 1.8em;
  font-weight: bold;
  color: #13a235;
  border-bottom: none;

  display: block;
  position: relative;
}

#thank_you_div {
  height: 1em;
  padding-bottom: calc(50vh - 220px);
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) {
  #thank_you_div {
    height: 1em;
    padding-top: 48vh;
  }
}
*/
/** --------------  POPUP NEWS - TOP  ------------ **/

#popup_news_basebox {
  width: 100%;
  margin: auto;
  text-align: center;
  position: absolute;
  overflow: visible;
}

.popup_news {
  position: relative;
  top: 100px;
  height: auto;
  width: 50%;
  max-width: 500px;
  border: 1px solid #333;
  box-shadow: 0 15px 15px 0 rgba(23, 23, 23, 0.3);
  display: inline-block;
  margin: auto;
  z-index: 3;
  text-align: left;
  line-height: 1.8em;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
}

.blue .popup_news {
  background-color: rgba(178, 217, 255, 0.9);
}

.white .popup_news {
  background-color: rgba(255, 255, 255, 0.9);
}

.red .popup_news {
  background-color: rgba(251, 230, 230, 0.9);
}

.yellow .popup_news {
  background-color: rgba(244, 242, 190, 0.9);
}

.green .popup_news {
  background-color: rgba(216, 251, 222, 0.9);
}

.popup_news_head {
  border-bottom: 1px solid #333;
  padding: 1em 0;
}
.close_btn {
  display: block;
  position: absolute;
  width: 15%;
  height: 2em;
  padding-top: 0.5em;
}

/**/

.cssIcon-cross {
  display: inline-block;
  position: relative;
  padding-right: 20px;
  width: 30px;
}
.cssIcon-cross::before {
  content: "";
  position: absolute;
  background: #000;
  right: 10px;
  top: 50%;
  width: 1px;
  height: 20px;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.cssIcon-cross::after {
  content: "";
  position: absolute;
  background: #000;
  right: 10px;
  top: 50%;
  width: 1px;
  height: 20px;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}

/**/
.popup_news_cat {
  display: block;
  text-align: center;
  height: 2em;
  padding-top: 0.5em;
  font-size: 1.5em;
}

.popup_news_body {
  padding: 30px 50px 50px 50px;
}

.popup_news_title {
  font-size: 1.1em;
}

.popup_news_img {
  width: 100%;
  text-align: center;
}
.popup_news_img img {
  max-width: 70%;
}

.popup_news_text {
}

/**/
@media (max-width: 768px) {
  .popup_news {
    top: 80px;
    height: auto;
    width: 80%;
    max-width: 600px;
    line-height: 1.6em;
  }
  .popup_news_body {
    padding: 30px 10% 50px 10%;
  }
}

/**/

/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** ------------------------- COLLECTION  ---------------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/

#page_main_collection_box {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1460px;
}

/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** ------------------------- journal    ---------------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/

#page_journal {
}

#journal_left_menu {
  position: fixed;
  float: left;
  width: 15%;
}

#journal_left_submenu {
}

#journal_section_1 {
  float: none;
  width: 100%;
}
.journal_left_submenu_li {
  padding: 5px 0;
  font-size: 0.9em;
}

#journal_main_contents {
  position: relative;
  position: relative;
  max-width: none;
  margin-left: 200px;
}

.journal_article {
  margin: auto;
  border-bottom: 1px solid #333;
  padding-bottom: 3em;
  max-width: 1000px;
  margin: 0 auto 5em auto;
  padding: 0 0 5em;
}

.journal_main_cat_title {
  margin: auto;
  padding-bottom: 2em;
  font-weight: bold;
}

.journal_article img {
  max-width: 100%;
}

#journal_main_contents .screen-reader-text {
  display: none;
}

.pagination {
}

ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-numbers {
  display: inline-block;
  margin: 0 4px;
  padding: 4px 10px;
  text-decoration: none;
  color: #000;
}

.page-numbers.current {
  font-weight: 400;
  text-decoration: underline;
}

.page-numbers.dots {
  pointer-events: none;
}

.page-numbers.prev,
.page-numbers.next {
  font-weight: bold;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  #journal_left_menu {
    position: relative;
    width: 100%;
    padding: 10px 0 3em 0;
    float: none;
  }

  #journal_left_submenu {
    width: 92%;
    padding-bottom: 3em;
    border-bottom: 1px solid #333;
  }
  #journal_section_1 {
    float: none;
    width: 100%;
  }
  #journal_main_contents {
    width: 88%;
    margin-right: 0%;
    margin-top: 2em;
    margin-left: 6%;
    position: relative;
  }
  .journal_article img {
    max-width: 100%;
    height: auto;
  }
}

.post_date {
  line-height: 1.5em;
}

.post_category {
  line-height: 1.5em;
  color: #0000ff;
}

.post_title {
  line-height: 1.5em;
  padding-bottom: 1em;
}

.post_body {
  width: 100%;
  line-height: 1.6em;
  margin-top: 1em;
}

.post_body a {
  text-decoration: underline;
}

/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** -------------------------- ABOUT -------------------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/

.about_page {
  width: 100%;
}
.about_section {
  margin-bottom: 20px;

  line-height: 1.9em;
  padding: 0px 0;
}

.about_stockist_font {
  font-size: 1.2em;
  font-weight: 400;
}

.about_section_width_max {
  padding: 0px 0 0 0;
  margin: auto;
  width: 70%;
  padding-left: 5%;
  max-width: 740px;
}
#about_section_1 {
}

@media (max-width: 768px) {
  .about_section {
    margin-top: 20px;
  }

  .about_section_width_max {
    width: 88%;
    max-width: 740px;
    padding-left: 0;
  }
}

.about_title01 {
  padding-bottom: 3rem;
  font-size: 1.4rem;
}

.about_title02 {
  padding-top: 11rem;
  padding-bottom: 3rem;
  font-size: 1.4rem;
}

#about_title_history {
  padding-top: 120px;
}

#icon_map {
  width: 60px;
  margin-top: 6px;
  position: absolute;
  margin-left: 10px;
}
.no_under_line {
  text-decoration: none;
}
.about_text01 {
}

.about_text02 {
  font-size: 0.9rem;
  line-height: 1.7em;
  margin: 0 auto 0 auto;
  letter-spacing: 0.06em;
}

.about_text03 {
  font-size: 1rem;
  line-height: 1.6em;
  margin: 0 auto 4rem auto;
}

.brand_text_box_history {
}

.about_img_slider {
  margin-top: 2em;
}

.about_photo_li {
}

/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/
/** -------------------------    STOCKIT  --------------------------- **/
/** ----------------------------------------------------------------- **/
/** ----------------------------------------------------------------- **/

#page_stockist {
}

.stockist_section {
  padding-bottom: 200px;
}

#stockist_section_1 {
  background-color: #ffffff;
  padding-top: 0px;
  line-height: 1em;
}

.st_table {
  width: 80%;
  margin: auto;
  max-width: 1200px;
  padding-bottom: 50px;
  font-size: 0.8em;
}

.st_table_head {
  width: 100%;
  margin-bottom: -2em;
  font-size: 1.12em;
}

.st_table_body_ul {
  width: 100%;
}

.st_table_li {
  width: 110%;
  padding: 0px 0 0.5em 0;
}

.v_line {
  margin: 3em 0 1em 0;
  height: 1px;
  width: 100%;
  border-top: 1px solid #333;
}

.area_title {
  margin-top: 2em;
}
.li_name {
  width: 16.38%;
  display: inline-block;
}

.li_address {
  display: inline-block;
  width: 36.5%;
}

.li_tel {
  display: inline-block;
  width: 11%;
}

.li_url {
  display: inline-block;
}
@media (max-width: 768px) {
  #stockist_section_1 {
    background-color: #ffffff;
    padding-top: 20px;
    line-height: 1em;
  }

  .st_table {
    width: 88%;
    display: block;
    margin: auto;
    max-width: 1200px;
    padding-top: 0px;
  }

  .st_table_head {
    display: block;
    width: 100%;
  }

  .st_table_body_ul {
    display: block;
    width: 90%;
    border-left: none;
    width: 100%;
    padding: 2em 0;
  }

  .st_table_li {
    padding: 0px 0 2em 0;
  }

  .li_name {
    width: 100%;
    display: block;
    min-width: inherit;
    padding: 0px 0px 1em 0;
  }

  .li_address {
    width: 100%;
    display: block;
    padding: 0px 0px 0.4em 0;
  }

  .li_tel {
    width: 100%;
    display: block;
    padding: 0px 0px 0.4em 0;
  }

  .area_title {
    padding-top: 0em;
  }
}
