@charset "UTF-8";
/* CSS Document */ /* CSS Document */
/* ###################  ブレイクポイントの設定  ################### */
/*ブレイクポイント*/
/*
sp：640px
pad：830px
PC：831px以上
@include mq() {} → 無印の場合はSPのブレイクポイント
@include mq(pad) {} → 引数にpadが入るとPAD用のブレイクポイントが適用される
*/
.mt_10 {
  margin-top: 10px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.pt_60 {
  padding-top: 60px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.pt_70 {
  padding-top: 70px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.pt_80 {
  padding-top: 80px !important;
}

.pb_80 {
  padding-bottom: 80px !important;
}

.mt_90 {
  margin-top: 90px !important;
}

.mb_90 {
  margin-bottom: 90px !important;
}

.pt_90 {
  padding-top: 90px !important;
}

.pb_90 {
  padding-bottom: 90px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

body, html {
  margin: 0;
  padding: 0;
  color: #333;
}

html {
  font-family: "NotoSansCJKjp", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.serif {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

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

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

.center {
  text-align: center;
}

@-webkit-keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes bound {
  0% {
    top: 0;
    transform: translateY(300px);
    opacity: 0;
  }
  70% {
    top: 0;
    transform: translateY(-100px);
    opacity: 0.7;
  }
  100% {
    top: 0;
    transform: scale(1);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bound {
  0% {
    top: 0;
    transform: translateY(300px);
    opacity: 0;
  }
  70% {
    top: 0;
    transform: translateY(-100px);
    opacity: 0.7;
  }
  100% {
    top: 0;
    transform: scale(1);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes scale_in {
  0% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes scale_in {
  0% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes slide_in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide_in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@-webkit-keyframes maskOut {
  0%, 99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes maskOut {
  0%, 99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: local("Noto Sans CJK JP Regular"), url("../font/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../font/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: bold;
  font-display: block;
  src: local("Noto Sans CJK JP Bold"), url("../font/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../font/NotoSansCJKjp-Bold.woff") format("woff");
}
.red {
  color: #f00 !important;
}

header {
  width: 100%;
  display: flex;
  position: relative;
}
header #header_box {
  display: none;
}
@media screen and (max-width: 640px) {
  header #header_box {
    display: flex;
    width: 100%;
    background-color: #000;
    box-sizing: border-box;
  }
}
header .logo {
  width: 20%;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  header .logo {
    width: 30%;
    padding: 2%;
  }
}
header .logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
header .catch {
  transition: all 0.3s;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px 40px 10px 10px;
}
@media screen and (max-width: 1300px) {
  header .catch {
    position: absolute;
    width: 80%;
    top: 14%;
    left: 20%;
  }
}
@media screen and (max-width: 830px) {
  header .catch {
    position: relative;
    left: inherit;
    top: inherit;
  }
}
@media screen and (max-width: 640px) {
  header .catch {
    width: calc(80% - 70px);
    padding: 2%;
  }
}
header .catch img {
  max-width: 850px;
  width: 100%;
  height: auto;
  filter: drop-shadow(1px 1px 3px #666);
}

.openbtn {
  display: none;
}
@media screen and (max-width: 640px) {
  .openbtn {
    position: fixed;
    border: solid 1px #fff;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    display: block;
    z-index: 10001;
    right: 5px;
    top: 5px;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 1px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 24px;
}
.openbtn span:nth-of-type(3) {
  top: 32px;
}
.openbtn.active span {
  width: 40%;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
}

nav {
  width: 100%;
  background: #222;
}
@media screen and (max-width: 640px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10000;
    transition: 0.3s ease-in-out;
  }
}
nav ul {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 640px) {
  nav ul {
    flex-wrap: wrap;
    width: 80%;
    margin-top: 60px;
  }
}
nav li {
  list-style: none;
  width: 16.6666666667%;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 640px) {
  nav li {
    width: 100%;
  }
}
nav li span {
  color: #757575;
  font-size: 10pt;
  display: contents;
}
nav a {
  text-decoration: none;
  color: #fff;
  display: flex;
  width: 100%;
  font-size: 10pt;
  height: 50px;
  align-items: center;
  justify-content: center;
}
nav a:hover {
  background: #666;
}
@media screen and (max-width: 640px) {
  nav.active {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 10000;
  }
}

.top_img {
  width: 100%;
  background: #000;
  text-align: center;
  overflow: hidden;
}
.top_img .bx-wrapper {
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}
.top_img .bx-wrapper .bx-controls .bx-pager .bx-pager-item .active {
  background-color: #a60c6e;
  position: relative;
}
.top_img .bx-wrapper .bx-controls .bx-pager .bx-pager-item .active::after {
  background-color: #a60c6e;
  border-radius: 50%;
  content: "";
  height: 24px;
  left: -7px;
  opacity: 0.3;
  position: absolute;
  top: -7px;
  width: 24px;
}
.top_img .bx-wrapper .bx-pager {
  bottom: 20px;
}
.top_img ul {
  display: flex;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .top_img ul {
    overflow: hidden;
    max-width: 640px;
  }
}
.top_img li {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  min-width: 400%;
  -webkit-animation: infinity-scroll-left 35s infinite linear 0s both;
          animation: infinity-scroll-left 35s infinite linear 0s both;
  display: flex;
}
.top_img img {
  width: 100%;
  height: auto;
  max-width: 1200px;
}
@media screen and (max-width: 640px) {
  .top_img img {
    width: 100%;
  }
}

main {
  width: 100%;
  margin: auto;
  margin: 0px auto 50px auto;
}
main section {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  main section {
    width: 96%;
  }
}
main section h2 {
  text-align: center;
  color: #FFC000;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 36pt;
  text-shadow: 1px 1px 3px #ddd;
}
@media screen and (max-width: 640px) {
  main section h2 {
    font-size: 6vw;
  }
}
main section h3 {
  font-size: 20pt;
}
@media screen and (max-width: 640px) {
  main section h3 {
    font-size: 4.2vw;
  }
}
main section .obi {
  color: #fff;
  background: url("../img/h_back.png") no-repeat;
  text-align: center;
}
@media screen and (max-width: 640px) {
  main p,
main ul,
main dl {
    font-size: 2.5vw;
  }
}
main ul {
  width: 92%;
  margin: auto;
  padding: 0;
}
@media screen and (max-width: 640px) {
  main ul {
    width: 98%;
  }
}
main .area li,
main .rukey li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 640px) {
  main .area li,
main .rukey li {
    list-style-position: inside;
  }
}
main .f_pg {
  list-style: decimal;
  width: 50%;
  margin: auto;
  font-size: 18pt;
}
@media screen and (max-width: 640px) {
  main .f_pg {
    width: 100%;
    font-size: 14pt;
  }
}
main .f_pg li {
  list-style-position: inside;
  padding: 10px;
  text-align: center;
}
main .f_pg li:nth-child(odd) {
  background: #ffe8cb;
}
main .f_pg li:nth-child(even) {
  background: #fff4e7;
}

.info {
  border-top: 4px solid #c21500;
  border-bottom: 4px solid #c21500;
  border-left: 4px solid #c21500;
  border-right: 4px solid #c21500;
  -o-border-image: linear-gradient(to top, rgb(180, 129, 50) 0%, rgb(180, 129, 32) 23%, rgb(248, 251, 192) 61%, rgb(180, 129, 46) 100%);
     border-image: linear-gradient(to top, rgb(180, 129, 50) 0%, rgb(180, 129, 32) 23%, rgb(248, 251, 192) 61%, rgb(180, 129, 46) 100%);
  border-image-slice: 1;
  padding: 10px 40px 20px 40px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .info {
    padding: 2% 4%;
  }
}
.info h2 {
  text-align: center;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  .info h2 {
    line-height: 1.4;
    font-size: 4.5vw;
  }
}

.sc h2 {
  text-align: center;
}
.sc .sc_wrapper {
  width: 90%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin: auto;
}
.sc .sc_wrapper div {
  margin-right: 2%;
  box-sizing: border-box;
  text-align: center;
  width: 31%;
}
.sc .sc_wrapper img {
  width: 80%;
  height: auto;
  max-width: 268px;
}
.sc .sc_wrapper div:last-of-type {
  margin-right: 0;
}
.sc .sc_wrapper div:last-of-type img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .sc .sc_wrapper div:last-of-type img {
    width: 80%;
  }
}
.sc .sc_wrapper figure {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.sc .sc_wrapper .arrow {
  width: 20%;
  height: auto;
  max-width: 56px;
  max-height: 56px;
}

.sc .anime {
  opacity: 0;
}

.sc div.fade_in:nth-child(1).fade_in {
  -webkit-animation: bound 0.5s forwards ease-in;
          animation: bound 0.5s forwards ease-in;
}

.sc div.fade_in:nth-child(2).fade_in {
  -webkit-animation: bound 0.7s forwards ease-in;
          animation: bound 0.7s forwards ease-in;
}

.sc div.fade_in:nth-child(3).fade_in {
  -webkit-animation: bound 0.9s forwards ease-in;
          animation: bound 0.9s forwards ease-in;
}

.sc div.fade_in:nth-child(4).fade_in {
  -webkit-animation: bound 1.2s forwards ease-in;
          animation: bound 1.2s forwards ease-in;
}

.area_box {
  background: #eee;
  padding: 20px 0;
  margin: 20px 0;
}
@media screen and (max-width: 640px) {
  .area_box {
    padding: 1px 0 20px 0;
  }
}

.rukey_box {
  background: #eee;
  padding: 20px 0;
  margin: 20px 0;
}
@media screen and (max-width: 640px) {
  .rukey_box {
    padding: 0 0 20px 0;
  }
}

.entry_info_box {
  background: #fff;
  padding: 20px 0;
  margin: 20px 0;
}

.entry_info {
  width: 90%;
  max-width: 1200px;
}
.entry_info h2 {
  margin-bottom: 0;
}
.entry_info h3 {
  text-align: center;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  margin-top: 0;
}

.senkou {
  color: #FFC000;
  font-size: 24pt;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  text-shadow: 1px 1px 2px #aaa;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .senkou {
    font-size: 6vw;
  }
}
.senkou strong {
  font-size: 36pt;
}
@media screen and (max-width: 640px) {
  .senkou strong {
    display: block;
    font-size: 7.2vw;
  }
}
.senkou + p {
  text-align: center;
  margin: 0 0 80px 0;
  font-size: 20pt;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 640px) {
  .senkou + p {
    font-size: 3.8vw;
    margin-bottom: 40px;
    margin-top: 10px;
  }
}

.bg_orange {
  background: linear-gradient(0deg, #fff8e4, #fff);
  padding: 40px;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .bg_orange {
    width: 100%;
    margin: auto;
    padding: 0 2%;
    box-sizing: border-box;
  }
}

.bg_orange2 {
  background: linear-gradient(5deg, #fff1c6, #fff);
  padding: 40px;
  opacity: 0;
}

.bg_orange3 {
  background: linear-gradient(15deg, #ffe8a2, #fff);
  padding: 40px;
  opacity: 0;
}

.bg_orange4 {
  background: linear-gradient(25deg, #ffde7b, #fff);
  padding: 40px;
  opacity: 0;
}

.fade_in.bg_orange,
.fade_in.bg_orange2,
.fade_in.bg_orange3,
.fade_in.bg_orange4 {
  -webkit-animation-name: slide_in;
          animation-name: slide_in;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 1;
}

.shinsa_title {
  font-size: 42pt;
  color: #a18700;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  margin: 40px 0 0 0;
  line-height: 0.6;
  text-shadow: 1px 1px 2px #aaa;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .shinsa_title {
    font-size: 6vw;
  }
}
.shinsa_title small {
  font-size: 20pt;
}
@media screen and (max-width: 640px) {
  .shinsa_title small {
    font-size: 4.2vw;
  }
}
.shinsa_title + p {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro W3", YuMincho, "游明朝", "MS PMincho", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 18pt;
}
@media screen and (max-width: 640px) {
  .shinsa_title + p {
    font-size: 3.8vw;
    margin-bottom: 20px;
  }
}

/*
.fade_in.shinsa{            
    animation: slide_in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
*/
.shinsa_wrapper {
  display: flex;
  /*
    .gray_box{
        background: linear-gradient(to bottom, #f7f7f7 0%, #eee 100%);
        padding: 10.73% 0 6.87%;
        position: relative;
        width: 94.42%;
        margin-top: -5%;

        &::before{
            right: 100%;
            width: 25%;
            background: linear-gradient(to bottom, #f7f7f7 0%, #eee 100%);
            bottom: 0;
            content: '';
            height: 100%;
            position: absolute;
            top: 0;
            z-index: -1;
        }


        &::after{
            background: #eee;
            background: linear-gradient(to bottom, #f7f7f7 0%, #eee 100%);
            bottom: 0;
            content: '';
            height: 100%;
            position: absolute;
            top: 0;
            z-index: -1;
            left: 0;
            width: 50vw;
        }

        h3{
            font-size: 42pt;
            color: #a18700;
            font-family: 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', YuMincho, '游明朝', 'MS PMincho', 'HGS明朝E', 'ＭＳ Ｐ明朝', serif;
            margin: 0;
            line-height: 0.6;
            text-shadow: 1px 1px 2px #aaa;

            small{
                font-size: 20pt;                
            }
        }
    }
    */
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper {
    flex-wrap: wrap;
  }
}
.shinsa_wrapper figure {
  position: relative;
  width: 40%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper figure {
    width: 100%;
  }
}
.shinsa_wrapper figcaption {
  position: absolute;
  top: -10%;
  left: 5%;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper figcaption {
    width: 60%;
    left: -20%;
  }
}
.shinsa_wrapper figcaption img {
  width: 80%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper figcaption img {
    width: 60%;
    max-width: 150px;
  }
}
.shinsa_wrapper figcaption.change {
  left: -12%;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper figcaption.change {
    left: inherit;
    bottom: -10%;
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper figcaption.art {
    width: 40%;
    left: 0%;
  }
}
.shinsa_wrapper img {
  width: 100%;
  height: auto;
}
.shinsa_wrapper .shinsa_right {
  width: 60%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper .shinsa_right {
    width: 100%;
  }
}
.shinsa_wrapper dl {
  margin: 20px auto;
  width: 90%;
  font-size: 16pt;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper dl {
    width: 100%;
    font-size: 4.2vw;
  }
}
.shinsa_wrapper dl p {
  font-size: 12pt;
}
@media screen and (max-width: 640px) {
  .shinsa_wrapper dl p {
    font-size: 2.5vw;
  }
}
.shinsa_wrapper dt {
  background-color: #a18700;
  color: #fff;
  margin: 0;
  text-align: center;
  padding: 10px 0;
}
.shinsa_wrapper dd {
  border-bottom: 1px dashed #a18700;
  padding: 20px 0;
  margin: 0;
}
.shinsa_wrapper dd span {
  color: #a18700;
  font-size: 18pt;
}
.shinsa_wrapper .fade_in {
  -webkit-animation-name: slide_in;
          animation-name: slide_in;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
          animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 1;
}

.entry {
  text-align: center;
}
.entry h3 {
  background: #FFC000;
  color: #fff;
  text-shadow: 1px 1px 2px #aaa;
  width: 80%;
  padding: 5px 0;
  font-size: 24pt;
  margin: 40px auto 0px auto;
}
@media screen and (max-width: 640px) {
  .entry h3 {
    font-size: 4.2vw;
    margin-top: 10px;
    width: 98%;
  }
}
.entry p {
  font-size: 16pt;
}
@media screen and (max-width: 640px) {
  .entry p {
    font-size: 4.2vw;
  }
}
.entry a {
  font-weight: bold;
  text-decoration: none;
  font-size: 22pt;
  color: #333;
}
@media screen and (max-width: 640px) {
  .entry a {
    font-size: 4.2vw;
  }
}
.entry .ent_btn {
  width: 70%;
  border-radius: 100px;
  background: linear-gradient(90deg, #FFC000, #FF7700) fixed;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto 60px auto;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  font-size: 28pt;
  box-shadow: 2px 2px 3px #ccc;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 640px) {
  .entry .ent_btn {
    font-size: 4.2vw;
  }
}
.entry .ent_btn.fade_in {
  -webkit-animation: popup 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
          animation: popup 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
.entry .ent_btn:hover {
  opacity: 0.8 !important;
}

.pose_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .pose_wrapper {
    flex-wrap: wrap;
  }
}

.pose {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1%;
  padding: 0;
  width: 48%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .pose {
    width: 98%;
  }
}
.pose .pose_change {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .pose .pose_change {
    margin-top: 0;
  }
}
.pose h3 {
  width: 100%;
  text-align: center;
  margin: 40px 0 20px 0;
}
@media screen and (max-width: 640px) {
  .pose h3 {
    font-size: 6vw;
  }
}
.pose h4 {
  font-size: 18pt;
  margin: 10px 0 10px 0;
}
@media screen and (max-width: 640px) {
  .pose h4 {
    font-size: 4.2vw;
    margin-top: 4px;
  }
}
.pose dt {
  width: 28%;
  max-width: 200px;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  text-align: right;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
.pose dd {
  width: 70%;
  margin: 0 0 10px 0;
  padding: 0 0 10px 4%;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .pose dd {
    font-size: 3.8vw;
  }
}
.pose img {
  width: 100%;
  height: auto;
  max-height: 250px;
}

h3.women {
  background: #cc4387;
  color: #fff;
}

h3.men {
  background: #c0c0c0;
}

.inq_wrapper {
  background: #f0f0f0;
  padding: 30px 0 30px 0;
  margin: 60px 0;
}

.inq {
  text-align: center;
}
.inq h2 {
  margin: 0 auto 20px;
}
.inq dl {
  margin: 0;
}
.inq dt {
  margin: 0;
}
.inq dt a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20pt;
  font-weight: bold;
  color: #FFC000;
  text-decoration: none;
}
.inq dt img {
  width: 100%;
  height: auto;
  max-width: 24px;
  margin-right: 6px;
}
.inq dd {
  margin: 0;
}

.bunner {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.bunner img {
  width: 100%;
  height: auto;
}

footer {
  margin-top: 80px;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  width: 100%;
  font-size: 16px;
}

.movie {
  background: #000;
  width: 100%;
  margin-bottom: 50px;
  max-width: 100%;
}

.movie_back {
  text-align: center;
  background: #000;
  margin: 0px 0 50px 0;
  width: 100%;
  max-height: 720px;
  height: 720px;
  padding-top: 0;
  position: inherit;
}
@media screen and (max-width: 830px) {
  .movie_back {
    text-align: center;
    background: #000;
    margin: 0px 0 50px 0;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: auto;
  }
}

.movie_back iframe {
  max-width: 1280px;
  min-width: 768px;
  max-height: 720px;
  position: inherit;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .movie_back iframe {
    min-width: inherit;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

.posing_resson_bg {
  background-color: #02001a;
  width: 100%;
  padding-bottom: 20px;
}
.posing_resson_bg img {
  width: 100%;
  height: auto;
}
.posing_resson_bg .posing_resson_fv {
  width: 100%;
  height: auto;
}
.posing_resson_bg h2 {
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: left;
  text-shadow: none;
}
.posing_resson_bg .lesson_step {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 830px) {
  .posing_resson_bg .lesson_step {
    flex-wrap: wrap;
  }
}
.posing_resson_bg .lesson_step li {
  width: 25%;
  box-sizing: border-box;
  margin: 0 5px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 830px) {
  .posing_resson_bg .lesson_step li {
    width: 48%;
    margin: 0;
  }
}
.posing_resson_bg .flex-box {
  display: flex;
  color: #fff;
}
@media screen and (max-width: 830px) {
  .posing_resson_bg .flex-box {
    flex-wrap: wrap;
  }
}
.posing_resson_bg .flex-box div {
  width: 50%;
  box-sizing: border-box;
  margin-left: 2%;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  padding: 10px;
}
@media screen and (max-width: 830px) {
  .posing_resson_bg .flex-box div {
    width: 100%;
    margin-left: 0;
  }
}
.posing_resson_bg .flex-box h3 {
  margin: 0 0 10px 0;
  font-size: 12pt;
}
.posing_resson_bg .flex-box p {
  font-size: 10pt;
}
.posing_resson_bg table {
  width: 50%;
  border-bottom: 1px solid #fff;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 14pt;
}
@media screen and (max-width: 830px) {
  .posing_resson_bg table {
    width: 100%;
    margin-bottom: 20px;
  }
}
.posing_resson_bg table td,
.posing_resson_bg table th {
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 6px 0;
}
.posing_resson_bg article {
  display: flex;
  flex-wrap: wrap;
}
.posing_resson_bg article div {
  width: 22%;
  margin: 10px 1.5% 20px 1.5%;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .posing_resson_bg article div {
    width: 47%;
  }
}
.posing_resson_bg article img {
  width: 60%;
  height: auto;
  margin: auto;
}
.posing_resson_bg article dl {
  margin: -1px 0 0 0;
  padding: 0;
  color: #fff;
}
.posing_resson_bg article dt {
  font-weight: bold;
  margin: 0;
  padding: 6px 0;
  background: #fff;
  color: #02001a;
  border-radius: 6px;
}
.posing_resson_bg article dd {
  margin: 6px 0 0 0;
  padding: 0;
}

#kyousan {
  padding: 20px 0;
}
#kyousan h2 {
  text-align: center;
}
#kyousan div {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  align-content: center;
  justify-content: center;
}
#kyousan figure {
  margin: 1% 2%;
  padding: 0;
  width: 48%;
  max-width: 200px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#kyousan figure figcaption {
  font-size: 8pt;
  text-align: center;
}
#kyousan img {
  width: 100%;
  height: auto;
}
/*# sourceMappingURL=style.css.map */