@charset "UTF-8";
/*//////////////////////////////////////////////////////////

------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  Kazuaki Hirabayashi

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}
q:before, q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

nav ul, nav ol {
  list-style: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  *margin-left: -7px;
}

input, button, select, textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 100%;
  vertical-align: baseline;
  *vertical-align: middle;
  margin: 0;
  padding: 0;
  outline: none;
}

input[type=radio] {
  appearance: auto;
  margin-right: 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ie6_error, .no_script {
  background: #F66;
  padding: 100px;
  text-align: center;
  font-size: 150%;
  color: #333;
}

.flt {
  float: left;
}

.flr {
  float: right;
}

.txt_l, td.txt_l, .txt_l td {
  text-align: left;
}

.txt_r, td.txt_r, .txt_r td {
  text-align: right;
}

.txt_c, td.txt_c, .txt_c td {
  text-align: center;
}

.valign_t, td.valign_t, .valign_t td {
  vertical-align: top;
}

.valign_m, td.valign_m, .valign_m td {
  vertical-align: middle;
}

.valign_b, td.valign_b, .valign_b td {
  vertical-align: bottom;
}

.clear {
  clear: both;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.img_bd {
  border: solid 1px #E8E8E8;
}

.c_red {
  color: #FF3425;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.scrollin {
  animation: fadeIn 0.6s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.scrollin {
  animation: fadeIn 0.6s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.scrollin {
  animation: fadeInLeft 0.6s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.scrollin {
  animation: fadeInRight 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 58px;
  --activeHeaderHeight: 58px;
  --minWidth: 1px;
  --sideW: 20px;
}
@media screen and (max-width: 767px) {
  :root {
    --headerHeight: 58px;
    --minWidth: 1px;
  }
}

html {
  width: 100%;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--activeHeaderHeight);
}
@media screen and (max-width: 767px) {
  html {
    height: -webkit-fill-available;
  }
}

body {
  font: 400 1.4rem/2 "Zen Kaku Gothic Antique", "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  color: #211813;
  text-align: left;
}
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100svh;
  height: 100vh;
  top: 0;
  left: 0;
  background: url(../images/bg_main.jpg) no-repeat center/cover;
}

a {
  text-decoration: none;
  color: #211813;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: inherit;
  }
}

#container_wrap {
  position: relative;
  overflow: hidden;
  min-width: var(--minWidth);
  max-width: calc(350px + var(--sideW) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sideW);
  background-color: #FAF9F7;
}

.header {
  position: absolute;
  transition: 0.3s;
}
.header .pc_logo {
  position: fixed;
  top: 45px;
  left: 30px;
}
@media screen and (max-width: 960px) {
  .header .pc_logo {
    display: none;
  }
}

.global_nav {
  position: fixed;
  width: clamp(240px, 22vw, 300px);
  top: 50vh;
  left: calc(50% + clamp(220px, 19.5vw, 267px));
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  .global_nav {
    width: 100%;
    top: auto;
    left: 0;
    bottom: 0;
    transform: none;
    z-index: 100;
  }
}
@media screen and (max-width: 960px) {
  .global_nav ul {
    display: none;
  }
}
.global_nav ul li {
  margin-top: 15px;
}
.global_nav ul li:first-child {
  margin-top: 0;
}
.global_nav ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.global_nav ul a::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../images/ico_menu_btn_01.svg) no-repeat center/contain;
}
.global_nav .btn_cmn_01 {
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .global_nav .btn_cmn_01 {
    border-radius: 15px 15px 0 0;
    margin: 0 auto;
    border: 5px solid #fff;
    border-bottom: 0 none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  }
}

.footer {
  padding-bottom: 110px;
}
.footer__about {
  background-color: #B32E12;
  padding: 60px var(--sideW);
  margin: 0 calc(var(--sideW) * -1) 60px;
  text-align: center;
  line-height: 1.6;
  color: #fff;
}
.footer__about h2 {
  color: #C7A956;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Jost", sans-serif;
  margin-bottom: 20px;
}
.footer__about strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer__about .address {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  font-size: 1.4rem;
}
.footer__about .address dt {
  font-weight: 700;
}
.footer__about .tel dt {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.footer__about .tel dd a {
  font-size: 3rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
}
.footer .sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
.footer .sns a {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}
.footer .sns a img {
  display: block;
  margin: 0 auto 5px;
}
.footer .logo {
  display: block;
  margin: 0 auto 50px;
}
.footer .copyright {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.main_visual {
  padding: 35px 0 0;
  text-align: center;
  margin-bottom: 50px;
}
.main_visual .text {
  font-size: 2.8rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  color: #B32E12;
  line-height: 1.2;
}
.main_visual .text span {
  display: inline-block;
  position: relative;
}
.main_visual .text span::before, .main_visual .text span::after {
  content: "";
  position: absolute;
  width: 27px;
  aspect-ratio: 27/67;
  background: url(../images/ico_ttl_main.svg) no-repeat center/contain;
  right: 100%;
  bottom: 0;
}
.main_visual .text span::after {
  right: auto;
  left: 100%;
  transform: rotateY(180deg);
}
.main_visual h1 {
  position: relative;
  z-index: 1;
}
.main_visual h1::before {
  content: "";
  position: absolute;
  width: 124.5%;
  aspect-ratio: 436/160;
  background: url(../images/main_visual_logo_bg.svg) no-repeat center/contain;
  right: calc(var(--sideW) * -1);
  top: -20px;
  z-index: -1;
}
.main_visual h1 img {
  display: block;
  width: 350px;
  margin: 0 auto;
}
.main_visual .date {
  font-size: 3.1rem;
  font-family: "Jost", sans-serif;
  line-height: 1.25;
}
.main_visual .time {
  font-size: 1.9rem;
  font-family: "Jost", sans-serif;
  line-height: 1.5;
}
.main_visual .place {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.main_visual .place::after {
  content: "";
  position: absolute;
  width: 154px;
  aspect-ratio: 154/158;
  background: url(../images/mv_ico_fan.svg) no-repeat center/contain;
  right: -57px;
  top: -40px;
}
.main_visual .mv_image {
  width: calc(100% + 40px);
  max-width: calc(100% + 40px);
  transform: translate(-40px);
}

.sec_point {
  position: relative;
  border: 4px solid #C7A957;
  padding: 120px 20px 40px;
  background: url(../images/point_bg_icon_01.svg) no-repeat top 1px left 1px, url(../images/point_bg_icon_02.svg) no-repeat top 1px right 1px;
  margin-bottom: 30px;
}
.sec_point::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 344/123;
  background: url(../images/point_bg_01.svg) no-repeat center/contain;
  top: -8px;
  left: 0;
}
.sec_point::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: 14px;
  transform: rotateX(180deg);
  background: url(../images/point_bg_icon_01.svg) no-repeat top left, url(../images/point_bg_icon_02.svg) no-repeat top right;
}
.sec_point > p {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.47;
  text-align: center;
  margin-bottom: 25px;
}
.sec_point > p .en {
  font-size: 2.8rem;
  font-family: "Jost", sans-serif;
  color: #B32E12;
  font-weight: 700;
}
.sec_point > p .ja {
  font-size: 2.6rem;
  color: #B32E12;
}
.sec_point ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 25px;
}
.sec_point ul li {
  position: relative;
  padding-left: 65px;
  line-height: 1.4;
}
.sec_point ul li::before {
  content: "";
  position: absolute;
  width: 77px;
  aspect-ratio: 77/92;
  background: url(../images/point_fan_01.svg) no-repeat center/contain;
  left: -30px;
  top: 0;
}
.sec_point ul li:nth-child(2)::before {
  background-image: url(../images/point_fan_02.svg);
}
.sec_point ul li:nth-child(3)::before {
  background-image: url(../images/point_fan_03.svg);
}
.sec_point ul li:nth-child(4)::before {
  background-image: url(../images/point_fan_04.svg);
}
.sec_point ul li h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #B32E12;
  margin-bottom: 5px;
}
.sec_point ul li p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
}
.sec_point strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
}

.main_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.main_nav a {
  display: block;
  background-color: #B32E12;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}
.main_nav a::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../images/ico_menu_btn_02.svg) no-repeat center/contain;
  margin: 8px auto 0;
}

.seminar_wrap {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}
.seminar_wrap.ico_fireworks {
  z-index: 0;
}
.seminar_wrap.ico_fireworks::before {
  content: "";
  position: absolute;
  width: 122px;
  aspect-ratio: 1/1;
  background: url(../images/ico_fireworks.svg) no-repeat center/contain;
  bottom: calc(100% - 30px);
  left: -20px;
}
.seminar_wrap .time {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
  letter-spacing: 0.05em;
}
.seminar_wrap .time img {
  display: block;
  margin: 0 auto;
}
.seminar_wrap .time.ico_fireworks::before {
  content: "";
  position: absolute;
  width: 99px;
  aspect-ratio: 1/1;
  background: url(../images/ico_fireworks.svg) no-repeat center/contain;
  top: -65px;
  right: -20px;
}
.seminar_wrap h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #B32E12;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
}
.seminar_wrap h4 span {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
}
.seminar_wrap .name {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 30px;
}
.seminar_wrap .name span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 5px;
}
.seminar_wrap .text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 30px;
}
.seminar_wrap .image {
  display: block;
  width: 240px;
  margin: 0 auto 30px;
  border-radius: 10px;
}
.seminar_wrap .profile {
  border: 1px solid #DDD1B1;
  border-radius: 10px;
  padding: 15px 20px;
  background-color: #fff;
}
.seminar_wrap .profile strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}
.seminar_wrap .profile p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}

.list_pickup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.list_pickup li {
  position: relative;
  border: 3px solid #C7A956;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 10px;
}
.list_pickup li:nth-child(even)::before {
  left: auto;
  right: -17px;
  transform: rotateY(180deg);
}
.list_pickup li:nth-child(2) h3 {
  font-size: 2.2rem;
}
.list_pickup li::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 80px;
  background: url(../images/ico_lantern.svg) no-repeat center/contain;
  top: -12px;
  left: -17px;
  z-index: 1;
}
.list_pickup li::after {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  border: 1px solid #C7A956;
  border-radius: 6px;
  pointer-events: none;
}
.list_pickup li h3 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
}
.list_pickup li .image {
  display: block;
  margin: 0 auto 10px;
  border-radius: 10px;
}
.list_pickup li .logo {
  display: block;
  margin: 0 auto;
}
.list_pickup + p {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 70px;
}

.floor_map {
  display: block;
  margin: 0 auto 60px;
}

.access_detail {
  font-weight: 500;
  margin-bottom: 70px;
}
.access_detail p {
  margin-bottom: 15px;
}
.access_detail ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.access_detail ul li {
  position: relative;
  padding-left: 1em;
}
.access_detail ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  aspect-ratio: 1/1;
  background-color: #B32E12;
  border-radius: 50%;
  left: 0;
  top: calc(1em - 3px);
}
.access_detail ul li a {
  color: #B32E12;
  text-decoration: underline;
}
.access_detail ul li a:hover {
  text-decoration: none;
}

.map {
  position: relative;
  overflow: hidden;
  height: 440px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list_brand {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 7px;
  margin-bottom: 50px;
}

.ttl_cmn_01 {
  text-align: center;
  margin-bottom: 50px;
}
.ttl_cmn_01 p {
  display: inline-block;
  position: relative;
  padding: 0 46px;
  text-align: center;
  font-size: 3.3rem;
  font-weight: 700;
  color: #B32E12;
  letter-spacing: 0.05em;
  line-height: 1.4;
  z-index: 1;
}
.ttl_cmn_01 p::before, .ttl_cmn_01 p::after {
  content: "";
  position: absolute;
  width: 33px;
  aspect-ratio: 33/63;
  background: url(../images/ico_ttl_01.svg) no-repeat center/contain;
  left: 0;
  top: calc(50% - 32.5px);
}
.ttl_cmn_01 p::after {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}
.ttl_cmn_01__in {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 40px;
}
.ttl_cmn_01__in::before {
  content: "";
  position: absolute;
  width: calc(100% + var(--sideW) * 2);
  height: 32px;
  background: url(../images/section_line.svg) no-repeat center/contain;
  top: 0;
  left: calc(var(--sideW) * -1);
}
.ttl_cmn_01__in span {
  display: block;
  color: #B32E12;
  font-size: 3rem;
  font-weight: 900;
}
.ttl_cmn_01.ico_fireworks {
  position: relative;
}
.ttl_cmn_01.ico_fireworks::after {
  content: "";
  position: absolute;
  width: 122px;
  aspect-ratio: 1/1;
  background: url(../images/ico_fireworks.svg) no-repeat center/contain;
  right: -40px;
  top: calc(100% - 30px);
}

.ttl_cmn_02 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
}
.ttl_cmn_02::after {
  content: "";
  display: block;
  width: calc(100% + var(--sideW) * 2);
  height: 13px;
  background: url(../images/section_line_02.svg) no-repeat center/contain;
  transform: translateX(calc(var(--sideW) * -1));
  margin-top: 10px;
}

.btn_cmn_01 {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: white;
  font-family: "Zen Old Mincho", serif;
  width: 300px;
  max-width: 100%;
  line-height: 64px;
  border-radius: 15px;
  background-color: #B32E12;
  text-align: center;
  margin: 60px auto 0;
}
.btn_cmn_01:first-child {
  margin-top: 0;
}
.btn_cmn_01 span {
  display: inline-block;
  position: relative;
}
.btn_cmn_01 span::before {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  background: url(../images/ico_btn_01.svg) no-repeat center/contain;
  left: 100%;
  top: 6px;
}
.btn_cmn_01 span::after {
  content: "";
  position: absolute;
  width: 17px;
  aspect-ratio: 17/18;
  background: url(../images/ico_btn_02.svg) no-repeat center/contain;
  right: calc(100% + 5px);
  bottom: 6px;
}
.btn_cmn_01.mt_min {
  margin-top: 35px;
}