@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.6666666667px) {
  .ttlStyle01 {
    font-size: 38px;
  }
}
@media screen and (max-width: 800px) {
  .ttlStyle01 {
    font-size: 6.2vw;
  }
}
.ttlStyle01 span {
  padding: 0.5vw;
  display: block;
  font-size: 1.4vw;
}
@media screen and (min-width: 1428.5714285714px) {
  .ttlStyle01 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .ttlStyle01 span {
    font-size: 3vw;
  }
}

.doc__title {
  font-size: 3vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 80px 0;
}
@media screen and (min-width: 900px) {
  .doc__title {
    font-size: 27px;
  }
}
@media screen and (max-width: 800px) {
  .doc__title {
    font-size: 6.2vw;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

/* ----------------------------------------------------------------------- 
	Button
----------------------------------------------------------------------- */
.btnStyle01 {
  width: 100%;
  height: 38px;
  line-height: 38px;
  position: relative;
  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;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #1E1E1E;
  background: #1E1E1E;
  text-align: center;
  outline: none;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
@media screen and (max-width: 800px) {
  .btnStyle01 {
    padding: 7px 10vw;
    margin-bottom: 20px;
  }
}
.btnStyle01:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FFF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.btnStyle01 span {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  font-size: 20px;
  font-size: 1.79vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1005.5865921788px) {
  .btnStyle01 span {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .btnStyle01 span {
    font-size: 3.8vw;
  }
}
.btnStyle01:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btnStyle01:hover span {
  color: #1E1E1E;
}

.btnStyle02 {
  position: relative;
  width: 100%;
  height: 38px;
  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;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btnStyle02 img {
  width: 50%;
  max-width: 152px;
  height: auto;
  display: block;
}

.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;
  -webkit-transition: ease 0.2s;
  transition: ease 0.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
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	Animation
----------------------------------------------------------------------- */
.slideIn {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.slideIn.slideInUp {
  -webkit-transform: translate(0, -20px);
          transform: translate(0, -20px);
  opacity: 1 !important;
}