@charset "utf-8";

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

* {box-sizing:border-box;}
img {
  max-width:100%;
  vertical-align: top;
}
.fwbold {font-weight:bold;}
.left {float:left;}
.right {float:right;}
.center {text-align:center;}
.clear {clear: both;}
.italic {font-style:italic;}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
a {
  color:inherit;
  text-decoration:none;
}
body {
  font-family: "Noto Sans", "Noto Sans SC", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size:14px;
  font-weight: 500;
  line-height:1.7;
  color:#000;  
  font-feature-settings: "palt";
}
.ff_outfit {
  font-family: "Outfit", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 961px){ 
  .pc_cont {display:block!important;} 
  .sp_cont {display:none!important;} 
  .sp_br {display: none;}
}

a:hover {
  text-decoration:underline;
  color:inherit;
}
hr.anc {
  font-size: 0!important;
  border:none!important;
  height:0!important;
  margin-top:0!important;
  padding-top:0!important;
}
.scrollin.bottom {
  opacity: 0;
  transform: translateY(25px);
  transition: 1s;
}
.scrollin.bottom.active {
  opacity: 1;
  transform: translateY(0);
}
:root {
  --main_color: #de1a28;
}
.box {
  width: 100%;
  max-width: 1220px;
  padding: 0 50px;
  margin: auto;
}

/* -----------------------------------------------------------
  PC
----------------------------------------------------------- */

.pc_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.sp_wrap {
  max-width: 600px;
  background: #fff;
  margin: auto;
}
  
/* :::::::::: header :::::::::: */
header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  height: 45px;
  width: 100%;
  max-width: 600px;
  transition-property: top;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 0 25px;
}
header .h1 {
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 2;
  transform: translateY(-50%);
  width: auto;
  font-size: 14px;
  font-weight: 900;
  color: #bf1c13;
}
header .lang_list {
  position: relative;
  display: flex;
  gap: 0.5em;
  font-size: 14px;
  font-weight: 700;
  padding-left: 20px;
}
header .lang_list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/lang.svg) no-repeat center center / contain;
  margin: auto;
}
header .lang_list li::after {
  content: "/";
  margin-left: 0.5em;
  color: #562e1b;
}
header .lang_list li:last-child::after {
  content: none;
}
header .lang_list li.jp {
  color: #f29600;
}
header .lang_list li.en {
  color: #946134;
}
header .lang_list li.ch {
  color: #e95513;
}

main {
  margin-top: 45px;
  background: #f5f2ec;
}
main .tabs_cont {
  padding: 25px 0 0;
}
main .tabs_cont .tabs {
  display: flex;
  gap: 4%;
}
main .tabs_cont .tabs .tab {
  width: 48%;
  background: #e95513;
  border-radius: 7px 7px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 10px 5px;
  opacity: 0.6;
  transition: 0.2s;
  cursor: pointer;
}
main .tabs_cont .tabs .tab:nth-of-type(2) {
  background: #f29600;
}
main .tabs_cont .tabs .tab.active {
  opacity: 1;
}
main .schedule01,
main .schedule02 {
  display: none;
  background: url(../img/bg01.jpg) no-repeat center center / cover;
  padding: 75px 0;
}
main .schedule02 {
  background-image: url(../img/bg02.jpg);
}
main .schedule01.active,
main .schedule02.active {
  display: block;
}
main .schedule01 h2,
main .schedule02 h2 {
  margin-bottom: 35px;
}

main .btn a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  background: #c79f62;
  padding: 12px 5%;
  margin-top: 20px;
}
main .note {
  margin-top: 1em;
  color: #fff;
  font-size: 10px;
  padding-left: 1em;
  text-indent: -1em;
}

footer {
  background: #f5f2ec;
  text-align: center;
}
footer .footer_box {
  padding: 55px 5%;
}
footer .footer_box p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.3em;
}
footer .footer_box p span {
  font-size: 10px;
  margin-right: 0.5em;
}
footer .footer_box p.copyright {
  position: relative;
  padding-top: 15px;
  margin: 15px 0 0;
}
footer .footer_box p.copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 1px;
  background: #000;
}






















/* -----------------------------------------------------------
  SP
----------------------------------------------------------- */
@media screen and (max-width: 960px){

  body {
    font-size:13px;
  }
  
  .box {
    padding: 0 5%;
  }
  
  .pc_cont {display:none!important;} 
  .sp_cont {display:block!important;} 
  .sp_br {display: block;}

  /* HEADER */
  header {
    padding: 0 5%;
  }



}