@charset "UTF-8";
/* グーグルフォントの読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
/* 読み込んだフォントの指定 */
/* ベースとなるフォントカラー */
/* 任意のフォントカラー */
/* SPメディアクエリのブレイクポイント */
/* @media screen and (max-width: $sp_01) {} */
/* PCメディアクエリのブレイクポイント */
/* @media screen and (min-width: $pc_01) {} */
/********************************************************************************************************** setting */
/************************************************** トップページ＋下層ページ共通クラス */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 16px;
  line-height: 1.7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
}

/* PC・SPの切り替え時に表示・非表示 */
.sp_only {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .sp_only {
    display: inline !important;
  }
}

.pc_only {
  display: inline !important;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none !important;
  }
}

/* PC・SPの切り替え時に表示・非表示 END */
/* ページ内リンクの指定 */
div.map_link_area {
  position: relative;
  z-index: 0;
}

hr.map_link01 {
  position: absolute;
  top: -130px;
  border: none;
  font-size: 0;
}
@media screen and (max-width: 1024px) {
  hr.map_link01 {
    top: -80px;
  }
}

/* ページ内リンクの指定 END */
/************************************************** トップページ＋下層ページ共通クラス END */
main {
  overflow-x: hidden;
}

/************************ pc_header */
#pc_header {
  display: block;
}
@media screen and (max-width: 1024px) {
  #pc_header {
    display: none;
  }
}

#h_area {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  padding-top: 20px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#h_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  width: 100%;
  height: 0;
  background-color: #222;
  z-index: -1;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#h_area.smaller {
  height: 116px;
}
#h_area.smaller::before {
  height: 100%;
}

#h_box {
  max-width: 1500px;
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#h_logo {
  display: inline-block;
}
#h_logo img {
  max-width: 264px;
}
#h_logo img.hikari {
  max-width: 137px;
}
#h_logo img.zoom {
  max-width: 144px;
}

#h_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
#h_menu li {
  margin-right: 50px;
}
#h_menu li:last-child {
  margin-right: 0;
}
#h_menu li a {
  display: inline-block;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#h_menu li a.shop {
  position: relative;
  z-index: 0;
}
#h_menu li a.shop::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #fff;
  border-bottom: 0;
  position: absolute;
  bottom: -15px;
  margin-left: 15px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  #h_menu li a.shop:hover::before {
    opacity: 0.7;
  }
}
#h_menu li a.contact {
  background-color: #222;
  padding: 10px 40px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  #h_menu li a.contact:hover {
    background-color: #fff;
  }
  #h_menu li a.contact:hover .h_menu_en,
  #h_menu li a.contact:hover .h_menu_ja {
    color: #222;
    opacity: 1 !important;
  }
}
@media screen and (min-width: 1025px) {
  #h_menu li a:hover .h_menu_en,
  #h_menu li a:hover .h_menu_ja {
    opacity: 0.7;
  }
}

.h_menu_en {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

.h_menu_ja {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  text-align: center;
}

.mv_follow {
  position: fixed;
  top: 160px;
  right: 0;
  z-index: 2;
}
.mv_follow.zoom {
  top: auto;
  bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .mv_follow.zoom {
    top: 85px;
    bottom: auto;
  }
}
.mv_follow a {
  display: block;
  background-color: #0c2560;
  padding: 15px 30px;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.mv_follow a.zoom {
  background-color: #b10304;
}
@media screen and (min-width: 1025px) {
  .mv_follow a.zoom:hover {
    background-color: #d70405;
  }
}
@media screen and (min-width: 1025px) {
  .mv_follow a:hover {
    background-color: #113ea9;
  }
}
@media screen and (max-width: 1024px) {
  .mv_follow a {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .mv_follow {
    top: 85px;
  }
}

/************************ pc_header END */
/************************ sp_header */
#sp_header {
  display: none;
}
@media screen and (max-width: 1024px) {
  #sp_header {
    display: block;
  }
}

#sp_logo {
  display: block;
  position: fixed;
  top: 24px;
  left: 22px;
  z-index: 12;
}
#sp_logo img {
  max-width: 171px;
  width: 100%;
  height: auto;
}

#sp_menu {
  display: block;
  position: fixed;
  top: 33px;
  right: 24px;
  width: 30px;
  height: 24px;
  z-index: 12;
}

#sp_h_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.side_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.side_btn {
  display: block;
  position: fixed;
  top: 33px;
  right: 24px;
  cursor: pointer;
  z-index: 11;
  width: 30px;
  height: 24px;
}

.menu_trigger {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.menu_trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #fff;
  height: 2px;
  border-radius: 2px;
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu_trigger.active span:nth-of-type(1) {
  background-color: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
}
.menu_trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.menu_trigger.active span:nth-of-type(3) {
  background-color: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
          transform: translateY(-11px) rotate(45deg);
}

.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9;
}

.side_open .overlay {
  visibility: visible;
  cursor: pointer;
}

.nav_scroll {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  text-align: left;
  background: rgba(34, 34, 34, 0.8);
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.side_open .nav_scroll {
  -webkit-transform: translate3d(-100vw, 0, 0);
          transform: translate3d(-100vw, 0, 0);
}

.scroll_area {
  height: 100vh;
  padding-top: 80px;
  padding-bottom: 30px;
}

.scroll_box {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

#nav_menu {
  padding: 55px 60px;
}

#list_menu li {
  border-bottom: 1px solid #fff;
}
#list_menu li .list_menu_link {
  display: block;
  color: #fff;
  padding: 15px 0;
  font-weight: bold;
  font-size: 26px;
  font-weight: 400;
  font-family: "Sofia Sans Condensed", sans-serif;
  line-height: 1.4;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  letter-spacing: 0.15em;
}

/* アコーディオン */
.accordion-title {
  display: block;
  color: #fff;
  padding: 15px 0;
  font-weight: bold;
  position: relative;
  z-index: 0;
  font-size: 26px;
  font-weight: 400;
  font-family: "Sofia Sans Condensed", sans-serif;
  line-height: 1.4;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 0;
}
.accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -10px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.accordion-title.open::after {
  margin-top: -6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.accordion-content {
  display: none;
}

.accordion-link {
  display: block;
  margin-left: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

/* アコーディオン END */
.list_menu_box {
  max-width: 200px;
  width: 100%;
  margin: 70px auto 0 auto;
}
.list_menu_box a {
  display: block;
  background-color: #1237a5;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Sofia Sans Condensed", sans-serif;
  text-align: center;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  padding: 10px;
  line-height: 1.4;
}

/************************ sp_header END */
/************************ footer */
footer {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  width: 100%;
  height: 100%;
  background-image: url("../../common/image/footer.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -2;
}

#f_area {
  max-width: 1220px;
  width: 96%;
  margin: 0 auto;
  padding-top: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  #f_area {
    max-width: 100%;
    width: 70%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#f_box:last-child {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  #f_box {
    width: 100%;
    text-align: center;
  }
}

#f_logo {
  display: inline-block;
}
#f_logo img {
  max-width: 160px;
}

#f_company_box {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  #f_company_box {
    margin-top: 25px;
  }
}

.f_company {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .f_company {
    font-size: 14px;
  }
}

#f_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#f_list li {
  text-align: center;
  margin-right: 70px;
}
@media screen and (max-width: 1024px) {
  #f_list li:nth-child(2n) {
    margin-right: 0;
  }
}
#f_list li:last-child {
  margin-right: 0;
}
#f_list li .f_link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  #f_list li .f_link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  #f_list li .f_link {
    font-size: 14px;
  }
}
#f_list li .f_link_min {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
#f_list li .f_link_min:last-child {
  margin-top: 10px;
}
@media screen and (min-width: 1025px) {
  #f_list li .f_link_min:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  #f_list li .f_link_min {
    font-size: 12px;
  }
}
#f_list li span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  #f_list li span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  #f_list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) {
  #f_list {
    margin-top: 70px;
  }
}

.f_link_box {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .f_link_box {
    margin-top: 15px;
  }
}

small {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 90px 0 15px;
}
@media screen and (max-width: 1024px) {
  small {
    font-size: 10px;
    padding: 45px 0 10px;
  }
}

/************************ footer END */
/************************ single-page style */
.single_title {
  line-height: 1.4;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 0;
  text-align: center;
}
.single_title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 2px;
  background-color: #222;
}
@media screen and (max-width: 1024px) {
  .single_title::before {
    margin-left: -25px;
    width: 50px;
  }
}
.single_title span {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  line-height: 1.4;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .single_title span {
    font-size: 24px;
    text-align: left;
  }
}
.single_title.hikari::before {
  background-color: #0c2560;
}
.single_title.zoom::before {
  background-color: #b10304;
}
@media screen and (max-width: 1024px) {
  .single_title {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

.single_time {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .single_time {
    font-size: 14px;
    padding-bottom: 15px;
  }
}

.single_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.single_list li {
  width: 48%;
  margin-right: 4%;
}
.single_list li a {
  display: block;
  position: relative;
  z-index: 0;
  font-size: 16px;
  background-color: #f0f0f0;
  padding: 15px 0;
  text-align: center;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.single_list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  .single_list li a:hover {
    color: #fff;
    background-color: #222;
  }
  .single_list li a:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .single_list li a {
    font-size: 14px;
    padding: 10px 0;
  }
}
.single_list li:last-child {
  margin-right: 0;
}
.single_list li:last-child a::before {
  left: auto;
  right: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  .single_list li:last-child a:hover {
    color: #fff;
    background-color: #222;
  }
  .single_list li:last-child a:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 30px;
  }
}

.single_link_area {
  max-width: 290px;
  width: 100%;
  margin: 90px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .single_link_area {
    margin: 45px auto 0 auto;
  }
}

.single_link {
  display: block;
  background-color: #222;
  padding: 15px 0;
  border: 1px solid #222;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  position: relative;
  z-index: 0;
  text-align: center;
}
.single_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1024px) {
  .single_link::before {
    margin-top: -5px;
    width: 10px;
    height: 10px;
  }
}
.single_link span {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .single_link span {
    font-size: 14px;
    margin-left: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .single_link:hover {
    background-color: #fff;
  }
  .single_link:hover span {
    color: #222;
  }
  .single_link:hover::before {
    left: 35px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
  }
}
@media screen and (max-width: 1024px) {
  .single_link {
    padding: 10px 0;
    text-align: center;
  }
}

#text_area {
  margin-top: 60px;
}
#text_area h1 {
  font-size: 32px;
  font-weight: 900;
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.4;
}
#text_area h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -2;
}
#text_area h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background-color: #222;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #text_area h1 {
    font-size: 25px;
  }
}
#text_area h2 {
  font-size: 27px;
  font-weight: 900;
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.4;
}
#text_area h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -2;
}
#text_area h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 170px;
  height: 2px;
  background-color: #222;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #text_area h2 {
    font-size: 22px;
  }
}
#text_area h3 {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.4;
}
#text_area h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -2;
}
#text_area h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 2px;
  background-color: #222;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #text_area h3 {
    font-size: 19px;
  }
}
#text_area h4 {
  font-size: 19px;
  font-weight: 700;
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.7;
}
#text_area h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -2;
}
#text_area h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 2px;
  background-color: #222;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #text_area h4 {
    font-size: 16px;
  }
}
#text_area h5 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.7;
}
#text_area h5::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -2;
}
#text_area h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 2px;
  background-color: #222;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #text_area h5 {
    font-size: 14px;
  }
}
#text_area h6 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 0;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 1.7;
}
#text_area h6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  width: 100%;
  height: 2px;
  background-color: #ddd;
  z-index: -2;
}
#text_area h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #222;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #text_area h6 {
    font-size: 14px;
  }
}
#text_area * {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  #text_area * {
    font-size: 14px;
  }
}
#text_area p {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  #text_area p {
    font-size: 14px;
  }
}
#text_area img {
  max-width: 100%;
  width: auto !important;
  height: auto !important;
  display: block;
  margin: 0 auto 30px auto;
  border: 1px solid #f0f0f0;
}
@media screen and (max-width: 1024px) {
  #text_area img {
    margin: 0 auto 15px auto;
  }
}
#text_area ul {
  margin-bottom: 15px;
}
#text_area ul li {
  font-size: 16px;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5px;
}
#text_area ul li::before {
  content: "・";
  margin-right: 5px;
}
@media screen and (max-width: 1024px) {
  #text_area ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  #text_area ul {
    margin-bottom: 10px;
  }
}
#text_area ol {
  margin-bottom: 15px;
}
#text_area ol li {
  font-size: 16px;
  counter-increment: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5px;
}
#text_area ol li::before {
  content: "" counter(number) ".";
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  #text_area ol li {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  #text_area ol {
    margin-bottom: 10px;
  }
}
#text_area a {
  font-size: 16px;
  color: #0087b3;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  #text_area a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 1024px) {
  #text_area a {
    font-size: 14px;
  }
}
#text_area sup {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}
#text_area sub {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}
#text_area strong,
#text_area b {
  font-weight: bold;
}
#text_area i,
#text_area em {
  font-style: italic;
  font-size: 12px;
}
#text_area del {
  text-decoration: line-through;
}
#text_area table {
  border-left: solid 1px #ddd;
  border-top: solid 1px #ddd;
  width: 100%;
  margin-bottom: 15px;
}
#text_area table th,
#text_area table td {
  border-bottom: solid 1px #ddd;
  border-right: solid 1px #ddd;
  font-size: 16px;
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  #text_area table th,
  #text_area table td {
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 10px;
  }
}
#text_area table th {
  background: #f0f0f0;
  text-align: center;
  vertical-align: top;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  #text_area table th {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  #text_area table {
    margin-bottom: 10px;
  }
}
#text_area.hikari h1::after,
#text_area.hikari h2::after,
#text_area.hikari h3::after,
#text_area.hikari h4::after,
#text_area.hikari h5::after,
#text_area.hikari h6::after {
  background-color: #0c2560;
}
#text_area.zoom h1::after,
#text_area.zoom h2::after,
#text_area.zoom h3::after,
#text_area.zoom h4::after,
#text_area.zoom h5::after,
#text_area.zoom h6::after {
  background-color: #b10304;
}
@media screen and (max-width: 1024px) {
  #text_area {
    margin-top: 15px;
  }
}

/************************ single-page style END */
.store_calendar {
  max-width: 800px;
  width: 100%;
  margin: 90px auto 0 auto;
}
.store_calendar.zoom {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .store_calendar {
    margin: 80px auto 0 auto;
  }
}

/************************ XO Event Calendar style */
.xo-event-calendar table.xo-month {
  border: none;
  margin: 0;
}

.xo-event-calendar table.xo-month caption {
  background-color: #0c2560;
}

.xo-event-calendar table.xo-month .month-header {
  margin: 0;
}

.xo-event-calendar table.xo-month button {
  position: relative;
  z-index: 0;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
@media screen and (min-width: 1025px) {
  .xo-event-calendar table.xo-month button:hover {
    background-color: #113ea9;
  }
}

.xo-event-calendar table.xo-month button span.nav-prev {
  border-bottom: none;
  border-left: none;
  font-size: 0;
  height: auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  width: auto;
  /**/
  display: block;
  position: relative;
  z-index: 0;
}
.xo-event-calendar table.xo-month button span.nav-prev::before {
  content: "";
  position: absolute;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  margin-left: -4px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.xo-event-calendar table.xo-month button span.nav-next {
  border-right: none;
  border-top: none;
  font-size: 0;
  height: auto;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  width: auto;
  /**/
  display: block;
  position: relative;
  z-index: 0;
}
.xo-event-calendar table.xo-month button span.nav-next::before {
  content: "";
  position: absolute;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  margin-right: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.xo-event-calendar table.xo-month button:hover span.nav-next,
.xo-event-calendar table.xo-month button:hover span.nav-prev {
  border-width: 0;
}

.xo-event-calendar table.xo-month .month-header > span {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  padding: 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .xo-event-calendar table.xo-month .month-header > span {
    font-size: 25px;
  }
}

.xo-event-calendar table.xo-month > thead th.sunday,
.xo-event-calendar table.xo-month > thead th.monday,
.xo-event-calendar table.xo-month > thead th.tuesday,
.xo-event-calendar table.xo-month > thead th.wednesday,
.xo-event-calendar table.xo-month > thead th.thursday,
.xo-event-calendar table.xo-month > thead th.friday,
.xo-event-calendar table.xo-month > thead th.saturday {
  font-size: 0;
}

.xo-event-calendar table.xo-month > thead th {
  background-color: #0c2560;
  border: none;
}

.xo-event-calendar table.xo-month > thead th.sunday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .xo-event-calendar table.xo-month > thead th.sunday {
    height: 70px;
  }
}

.xo-event-calendar table.xo-month > thead td {
  background-color: #fffaf3;
}

.xo-event-calendar table.xo-month > thead th:before {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .xo-event-calendar table.xo-month > thead th:before {
    font-size: 18px;
  }
}

.xo-event-calendar table.xo-month > thead th.sunday::before {
  content: "sun";
}

.xo-event-calendar table.xo-month > thead th.monday::before {
  content: "mon";
}

.xo-event-calendar table.xo-month > thead th.tuesday::before {
  content: "tue";
}

.xo-event-calendar table.xo-month > thead th.wednesday::before {
  content: "wed";
}

.xo-event-calendar table.xo-month > thead th.thursday::before {
  content: "thu";
}

.xo-event-calendar table.xo-month > thead th.friday::before {
  content: "fri";
}

.xo-event-calendar table.xo-month > thead th.saturday::before {
  content: "sat";
}

.xo-event-calendar table.xo-month > tbody td {
  background-color: #fffaf3;
}

.xo-event-calendar table.xo-month .month-week table {
  height: 0;
}

.xo-event-calendar table.xo-month .month-dayname td {
  height: 80px;
  border: none;
}
@media screen and (max-width: 1024px) {
  .xo-event-calendar table.xo-month .month-dayname td {
    height: 70px;
  }
}

.xo-event-calendar table.xo-month .month-dayname td div {
  border-width: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .xo-event-calendar table.xo-month .month-dayname td div {
    font-size: 18px;
  }
}

.xo-event-calendar table.xo-month .month-dayname td div.today {
  color: #222;
  text-decoration: underline;
  font-weight: 600;
}

.xo-event-calendar table.xo-month .month-week {
  height: 80px;
  border-top: 1px solid #6d6d6d;
}
.xo-event-calendar table.xo-month .month-week table.month-dayname tbody tr.dayname td:nth-child(1) div {
  color: #ff4a4a;
}
.xo-event-calendar table.xo-month .month-week table.month-dayname tbody tr.dayname td:nth-child(2) div {
  background-color: #ddd;
}
.xo-event-calendar table.xo-month .month-week table.month-dayname tbody tr.dayname td:nth-child(3) div {
  background-color: #ddd;
}
.xo-event-calendar table.xo-month .month-week table.month-dayname tbody tr.dayname td:nth-child(7) div {
  color: #4897ff;
}
@media screen and (max-width: 1024px) {
  .xo-event-calendar table.xo-month .month-week {
    height: 70px;
  }
}

.holiday-all {
  color: #222;
}

.xo-event-calendar div.holiday-titles {
  display: none;
}

.xo-event-calendar table.xo-month .month-dayname-space {
  height: 0;
}

/************************ XO Event Calendar style END */
.calendar_note {
  margin-top: 5px;
}
.calendar_note li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 0;
  font-size: 14px;
}
.calendar_note li::before {
  content: "※";
  margin-right: 5px;
}
.calendar_note li.closed::after {
  content: "";
  width: 50px;
  height: 23px;
  background-color: #ddd;
}
@media screen and (max-width: 1024px) {
  .calendar_note li {
    font-size: 13px;
  }
}