@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/*
min-font-size ($font_size, $min_font_size)
$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/* ----------------------------------------------------------------------- 

	common style 共通スタイル

----------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}
@media screen and (max-width: 800px) {
  .spOnly {
    display: block;
  }
}

/* ----------------------------------------------------------------------- 
	Background
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Title
----------------------------------------------------------------------- */
.ttlStyle01 {
  font-size: 3vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1266.66667px) {
  .ttlStyle01 {
    font-size: 38px;
  }
}
@media screen and (max-width: 800px) {
  .ttlStyle01 {
    font-size: 6.2vw;
  }
}
.ttlStyle01 span {
  padding: 0.5vw;
  display: block;
  font-size: 1vw;
}
@media screen and (min-width: 2000px) {
  .ttlStyle01 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .ttlStyle01 span {
    font-size: 3vw;
  }
}

/* ----------------------------------------------------------------------- 
	Button
----------------------------------------------------------------------- */
.btnStyle01 {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #1E1E1E;
  background: #1E1E1E;
  padding: 10px 5vw;
  text-align: center;
  outline: none;
  transition: ease .5s;
}
@media screen and (max-width: 800px) {
  .btnStyle01 {
    padding: 7px 10vw;
  }
}
.btnStyle01:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #F4E7DC;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top;
}
.btnStyle01 span {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 800px) {
  .btnStyle01 span {
    font-size: 3.8vw;
  }
}
.btnStyle01:hover:before {
  transform: scale(1, 1);
}
.btnStyle01:hover span {
  color: #1E1E1E;
}

.inactiveBtnStyle {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #1E1E1E;
  background: #1E1E1E;
  padding: 10px 5vw;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
@media screen and (max-width: 800px) {
  .inactiveBtnStyle {
    padding: 7px 10vw;
  }
}
.inactiveBtnStyle span {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  font-size: 0.83vw;
}
@media screen and (max-width: 800px) {
  .inactiveBtnStyle span {
    font-size: 3.8vw;
  }
}

/* ----------------------------------------------------------------------- 
	Layout
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Line
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Box
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Table
----------------------------------------------------------------------- */
.tblStyle01 {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .tblStyle01 {
    width: 100%;
  }
}
.tblStyle01 thead th, .tblStyle01 thead td {
  font-weight: 600;
}
.tblStyle01 th, .tblStyle01 td {
  min-height: 40px;
  padding: 10px 20px;
  border: solid 1px #999;
  vertical-align: top;
}
@media screen and (max-width: 800px) {
  .tblStyle01 th, .tblStyle01 td {
    font-size: 13px;
    padding: 10px 10px;
  }
}
.tblStyle01 th {
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  .tblStyle01 th {
    width: 30%;
  }
}
@media screen and (max-width: 800px) {
  .tblStyle01 td {
    width: 70%;
  }
}
.tblStyle01 td a {
  font-weight: 500;
}

/* ----------------------------------------------------------------------- 
	SideBar
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Form
----------------------------------------------------------------------- */
/* TextBox */
input[type=text] {
  width: 100%;
  height: 36px;
  border: 1px solid #999;
  background-color: #FFFFFF;
  padding: 2px 10px;
  font-size: 14px;
}

/* SelectBox */
.selectBoxStyle {
  overflow: hidden;
  text-align: center;
}

.selectBoxStyle select {
  width: 100%;
  height: 36px;
  padding: 2px 10px;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 14px;
}

.selectBoxStyle select::-ms-expand {
  display: none;
}

.selectBoxStyle {
  position: relative;
  border: 1px solid #999;
  background: #FFFFFF;
}

.selectBoxStyle::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
  pointer-events: none;
}

.selectBoxStyle select {
  padding: 8px 38px 8px 8px;
  color: black;
}

/* CheckBox */
input[type=checkbox] {
  display: none;
}

.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px 5px 30px;
  position: relative;
  width: auto;
}

.checkbox01::before {
  background: #fff;
  border: 1px solid #231815;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox01::after {
  border-right: 3px solid #999;
  border-bottom: 3px solid #999;
  content: '';
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}

input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}

/* RadioButton */
input[type=radio] {
  display: none;
}

.radio01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  width: auto;
}

.radio01::before {
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.radio01::after {
  background: #999;
  border-radius: 50%;
  content: '';
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

input[type=radio]:checked + .radio01::after {
  opacity: 1;
}

.searchButton {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  padding: 5px 0;
  color: #FFFFFF;
  transition: .3s;
}
.searchButton:hover {
  background: #1E1E1E;
}

/* ----------------------------------------------------------------------- 
	Animation
----------------------------------------------------------------------- */
.slideIn {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.0s;
}
.slideIn.slideInUp {
  transform: translate(0, -20px);
  opacity: 1 !important;
}
