@charset "UTF-8";
.fade_content {
  visibility: hidden;
  backface-visibility: hidden;
}

.animated {
  visibility: visible;
}
.animated.fadein {
  animation: fadein 1.5s ease-out 0.4s 1 normal both;
}
.animated.fadetotop {
  animation: fadetotop 0.7s ease-out 0.4s 1 normal both;
}
.animated.fadetotop .delay:nth-child(1n) {
  animation: fadetotop 0.7s ease-out 0.6s 1 normal both;
}
.animated.fadetotop .delay:nth-child(2n) {
  animation: fadetotop 0.7s ease-out 0.8s 1 normal both;
}
.animated.fadetotop .delay:nth-child(3n) {
  animation: fadetotop 0.7s ease-out 1s 1 normal both;
}
.animated.fadetotop .delay:nth-child(4n) {
  animation: fadetotop 0.7s ease-out 1.2s 1 normal both;
}
.animated.fadetotop .delay:nth-child(5n) {
  animation: fadetotop 0.7s ease-out 1.4s 1 normal both;
}
.animated.fadetotop .delay:nth-child(6n) {
  animation: fadetotop 0.7s ease-out 1.6s 1 normal both;
}
.animated.fadetotop .delay:nth-child(7n) {
  animation: fadetotop 0.7s ease-out 1.8s 1 normal both;
}
.animated.fadetotop .delay:nth-child(8n) {
  animation: fadetotop 0.7s ease-out 2s 1 normal both;
}
.animated.fadetotop .delay:nth-child(9n) {
  animation: fadetotop 0.7s ease-out 2.2s 1 normal both;
}
.animated.fadetotop .delay:nth-child(10n) {
  animation: fadetotop 0.7s ease-out 2.4s 1 normal both;
}
.animated.fadetotop .delay:nth-child(11n) {
  animation: fadetotop 0.7s ease-out 2.6s 1 normal both;
}
.animated.fadetotop .delay:nth-child(12n) {
  animation: fadetotop 0.7s ease-out 2.8s 1 normal both;
}
.animated.fadetotop .delay:nth-child(13n) {
  animation: fadetotop 0.7s ease-out 3s 1 normal both;
}
.animated.fadetotop .delay:nth-child(14n) {
  animation: fadetotop 0.7s ease-out 3.2s 1 normal both;
}
.animated.fadetotop .delay:nth-child(15n) {
  animation: fadetotop 0.7s ease-out 3.4s 1 normal both;
}
.animated.fadetobottom {
  animation: fadetobottom 0.7s ease-out 0.4s 1 normal both;
}
.animated.fadetoright {
  animation: fadetoright 0.7s ease-out 0.4s 1 normal both;
}
.animated.fadetoleft {
  animation: fadetoleft 0.7s ease-out 0.4s 1 normal both;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadetotop {
  0% {
    transform: translateY(14px);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadetobottom {
  0% {
    transform: translateY(-14px);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadetoright {
  0% {
    transform: translateX(-14px);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadetoleft {
  0% {
    transform: translateX(14px);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes curtaintoleft {
  0% {
    transform-origin: right center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right center;
  }
  100% {
    transform-origin: right center;
    transform: scaleX(1);
  }
}
@keyframes curtaintoright {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left center;
  }
  100% {
    transform-origin: left center;
    transform: scaleX(1);
  }
}
.curtain_anim_text {
  clip-path: inset(0 100% 0 0);
}
.curtain_anim_text.animated {
  animation: curtain_anim 1s cubic-bezier(0.7, 0, 0.17, 1) 0.2s 1 normal both running;
}
@keyframes curtain_anim {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.curtain_anim_text.toleft {
  clip-path: inset(0 0 0 100%);
}
.curtain_anim_text.toleft.animated {
  animation: curtain_anim_toleft 1s cubic-bezier(0.7, 0, 0.17, 1) 0.2s 1 normal both running;
}
@keyframes curtain_anim_toleft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.curtain_anim_text.tobottom {
  clip-path: inset(0 0 0 100%);
}
.curtain_anim_text.tobottom.animated {
  animation: curtain_anim_tobottom 1s cubic-bezier(0.7, 0, 0.17, 1) 0.2s 1 normal both running;
}
@keyframes curtain_anim_tobottom {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@media screen and (max-width: 567px) {
  .no_animated {
    animation-name: none !important;
    animation-fill-mode: none !important;
  }
}
body {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  color: #434343;
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #000;
  color: #fff;
}
@media screen and (max-width: 567px) {
  body {
    font-size: 1.3rem;
    line-height: 1.6153846154;
  }
}

a:link, a:visited {
  color: #fff;
  text-decoration: none;
}

a {
  transition: 0.3s;
}
@media screen and (min-width: 568px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s;
  backface-visibility: hidden;
  vertical-align: bottom;
  width: 100%;
}

input,
select,
textarea {
  padding: 12px 10px;
  width: 100%;
  min-height: 60px;
  border: 2px solid #004ea2;
  border-radius: 0;
  background: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  vertical-align: middle;
  outline: none;
  -webkit-appearance: none;
}
input[type=file], input[type=radio], input[type=checkbox],
select[type=file],
select[type=radio],
select[type=checkbox],
textarea[type=file],
textarea[type=radio],
textarea[type=checkbox] {
  position: relative;
  top: -1px;
  margin-right: 5px;
  padding: 0;
  width: inherit;
}
input[type=button],
select[type=button],
textarea[type=button] {
  border: 2px solid #fff;
  background: #0068b7;
  color: #fff;
  font-size: 2.8rem;
  transition: all 0.5s;
}
input[type=button]:hover,
select[type=button]:hover,
textarea[type=button]:hover {
  background: #00afec;
}
@media screen and (max-width: 567px) {
  input[type=button],
  select[type=button],
  textarea[type=button] {
    font-size: 2.1rem;
  }
}
input.half,
select.half,
textarea.half {
  width: 335px;
}
input.half:first-child,
select.half:first-child,
textarea.half:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 567px) {
  input.half:first-child,
  select.half:first-child,
  textarea.half:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 567px) {
  input.half,
  select.half,
  textarea.half {
    width: 100%;
  }
}
@media screen and (max-width: 567px) {
  input,
  select,
  textarea {
    padding: 10px;
    min-height: 50px;
    font-size: 1.3rem;
  }
}

select {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

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

.checkbox01 {
  position: relative;
  padding-left: 40px;
  box-sizing: border-box;
  cursor: pointer;
}

.checkbox01::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  background: #fff;
}

.checkbox01::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 11px;
  margin-top: -9px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #004ea2;
  border-bottom: 3px solid #004ea2;
  transform: rotate(45deg);
}

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

.checkbox02 {
  display: block;
  position: relative;
  padding-left: 41px;
  height: 30px;
  line-height: 30px;
  cursor: pointer;
}

.checkbox02::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 30px;
  height: 30px;
  border: 2px solid #004ea2;
  background: #fff;
}

.checkbox02::after {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  margin: auto 0;
  width: 16px;
  height: 16px;
  background: #004ea2;
}

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

textarea {
  height: 200px;
}

:-moz-placeholder {
  color: #b2b2b2;
}

:placeholder-shown {
  color: #b2b2b2;
}

::-webkit-input-placeholder {
  color: #b2b2b2;
}

:-moz-placeholder {
  color: #b2b2b2;
}

::-moz-placeholder {
  color: #b2b2b2;
}

:-ms-input-placeholder {
  color: #b2b2b2;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: 1000px;
}
.inner.narrower {
  width: 800px;
  box-sizing: content-box;
}
@media screen and (max-width: 567px) {
  .inner.narrower {
    width: auto;
  }
}
@media screen and (max-width: 567px) {
  .inner {
    padding: 0 4%;
    width: auto;
  }
}

.gd {
  background: linear-gradient(270deg, #00afec 0, #a9d06b);
}

.gd_box {
  padding: 4px;
  background: linear-gradient(270deg, #00afec 0, #a9d06b);
}
.gd_box .ttl {
  padding: 0 0 4px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.gd_box .ttl .en {
  font-size: 2.4rem;
  line-height: 0;
}
@media screen and (max-width: 567px) {
  .gd_box .ttl .en {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 567px) {
  .gd_box .ttl {
    font-size: 1.6rem;
  }
}
.gd_box .content {
  background: #fff;
}

.btn_link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 355px;
  height: 90px;
  box-sizing: border-box;
  transition: all 0.3s linear 0.1s;
  overflow: hidden;
}
@media screen and (max-width: 568px) {
  .btn_link {
    width: 70vw;
  }
}
.btn_link:before {
  content: "";
  background: #fff;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: all 0.3s linear 0.1s;
}
@media screen and (min-width: 568px) {
  .btn_link:hover {
    color: #000 !important;
    opacity: 1;
  }
  .btn_link:hover:before {
    width: 100%;
    left: 0;
  }
}
.btn_link span {
  position: relative;
  z-index: 1;
  font-size: 12px;
}
@media screen and (max-width: 568px) {
  .btn_link span {
    font-size: 10px;
  }
}

main {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 200px;
  transition: all 0.5s linear 0.1s;
  font-family: "Shippori Mincho", serif;
  overflow-x: hidden;
}
@media screen and (max-width: 567px) {
  main {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 150px;
  }
}
main .section {
  position: relative;
}
main .section .section_inner {
  padding: 200px 0 0;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 568px) {
  main .section .section_inner {
    padding: 30vw 0 0;
  }
}

#header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.4);
  line-height: 1.1;
  transition: all 0.5s;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header.active .session_reception a {
  opacity: 0;
  visibility: hidden;
}
#header .header_logo {
  position: relative;
  z-index: 0;
  margin-right: auto;
  height: 100px;
  width: 25%;
  max-width: 280px;
  display: flex;
  align-items: center;
}
#header .header_logo a {
  display: block;
  margin: 0 auto 0 30px;
  height: 60px;
  width: 100%;
  transition: all 0.5s;
  background: url(../images/common/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  text-indent: -5260px;
}
#header .session_reception {
  width: 40%;
  max-width: 300px;
  margin-right: 100px;
}
@media screen and (max-width: 568px) {
  #header .session_reception {
    margin-right: 5%;
  }
}
#header .session_reception a {
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #fff;
  height: 40px;
  color: #fff;
  font-size: 14px;
}
#header .nav_menu_btn {
  width: 40px;
  height: 40px;
  margin-right: 4%;
  position: relative;
  cursor: pointer;
}
#header .nav_menu_btn .nav_menu_btn_line {
  position: relative;
  height: 30px;
  margin-bottom: 10px;
}
#header .nav_menu_btn .nav_menu_btn_line span {
  transition: all 0.3s ease;
  height: 1px;
  width: 40px;
  background: #fff;
  position: absolute;
  left: 0;
}
#header .nav_menu_btn .nav_menu_btn_line span:first-child {
  top: 0px;
}
#header .nav_menu_btn .nav_menu_btn_line span:nth-child(2) {
  top: 10px;
}
#header .nav_menu_btn .nav_menu_btn_line span:nth-child(3) {
  top: 20px;
}
#header .nav_menu_btn .nav_menu_btn_text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
}
#header .nav_menu_btn.active .nav_menu_btn_line span:first-child {
  top: 15px;
  left: 0;
  transform: translateY(-6px) rotate(30deg);
}
#header .nav_menu_btn.active .nav_menu_btn_line span:nth-child(2) {
  opacity: 0;
}
#header .nav_menu_btn.active .nav_menu_btn_line span:nth-child(3) {
  top: 15px;
  left: 0;
  transform: translateY(-6px) rotate(-30deg);
}

.header_nav {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow: auto;
  overflow-x: hidden;
  opacity: 0;
  background: #212025;
  transform: translateX(100%);
  z-index: 10;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.5s cubic-bezier(0.57, 0.15, 0.13, 0.97) 0s;
}
.header_nav.active {
  opacity: 1;
  transform: translateX(0%);
}
.header_nav.active .header_nav_inner.fadetoleft {
  animation: fadetoleft 0.7s ease-out 0.8s 1 normal both;
}
.header_nav .header_nav_inner {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 1%;
}
@media screen and (max-width: 568px) {
  .header_nav .header_nav_inner {
    padding: 34vw 8%;
  }
}
.header_nav .header_nav_inner .nav_link {
  font-family: "Shippori Mincho", serif;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.header_nav .header_nav_inner .nav_link .nav_link_li {
  margin-bottom: 10px;
}
.header_nav .header_nav_inner .nav_link .nav_link_li a {
  color: #fff;
  font-size: 14px;
  position: relative;
  display: inline-block;
}
.header_nav .header_nav_inner .nav_link .nav_link_li a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5em;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}
@media screen and (min-width: 568px) {
  .header_nav .header_nav_inner .nav_link .nav_link_li a:hover:before {
    left: 0;
    width: 100%;
  }
}
.header_nav .header_nav_inner .nav_sns_link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
.header_nav .header_nav_inner .nav_sns_link .nav_sns_link_li {
  text-indent: -9999px;
  margin: 0 20px;
}
.header_nav .header_nav_inner .nav_sns_link .nav_sns_link_li a {
  width: 30px;
  height: 30px;
  display: block;
}
.header_nav .header_nav_inner .nav_sns_link .nav_sns_link_li a.instagram_btn {
  background-image: url(../images/common/menu_inst.png);
  background-position: center center;
  background-size: 28px;
  background-repeat: no-repeat;
}
.header_nav .header_nav_inner .nav_sns_link .nav_sns_link_li a.x_btn {
  background-image: url(../images/common/menu_x.png);
  background-position: center center;
  background-size: 28px;
  background-repeat: no-repeat;
}
.header_nav .header_nav_inner .nav_sns_link .nav_sns_link_li a.line_btn {
  background-image: url(../images/common/menu_line.png);
  background-position: center center;
  background-size: 28px;
  background-repeat: no-repeat;
}
.header_nav .header_nav_inner .session_reception {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  transition: 0.3s;
}
.header_nav .header_nav_inner .session_reception a {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #fff;
  height: 40px;
  color: #fff;
  font-size: 14px;
}

#footer {
  padding: 150px 0 0;
  width: 100%;
  background-image: url(../images/common/footer_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 568px) {
  #footer {
    padding: 20vw 0 0;
  }
}
#footer .footer_inner {
  width: 90%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 568px) {
  #footer .footer_inner {
    width: 84%;
    margin: 0 auto 20vw;
  }
}
#footer .footer_inner .footer_inner_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 568px) {
  #footer .footer_inner .footer_inner_top {
    flex-wrap: wrap;
  }
}
#footer .footer_inner .footer_inner_top .logo {
  margin: 0 auto 20px 0;
}
#footer .footer_inner .footer_inner_top .logo a {
  display: block;
  width: 160px;
  height: 194px;
  background-image: url(../images/common/footer_logo.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
#footer .footer_inner .footer_inner_top .nav_link {
  font-family: "Shippori Mincho", serif;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 568px) {
  #footer .footer_inner .footer_inner_top .nav_link {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10vw;
  }
}
#footer .footer_inner .footer_inner_top .nav_link .nav_link_li {
  margin-bottom: 0px;
  margin-right: 50px;
}
@media screen and (max-width: 568px) {
  #footer .footer_inner .footer_inner_top .nav_link .nav_link_li {
    margin-bottom: 10px;
    width: 100%;
  }
  #footer .footer_inner .footer_inner_top .nav_link .nav_link_li:last-child {
    margin-bottom: 0px;
  }
}
#footer .footer_inner .footer_inner_top .nav_link .nav_link_li a {
  color: #fff;
  font-size: 14px;
  position: relative;
  display: inline-block;
}
#footer .footer_inner .footer_inner_top .nav_link .nav_link_li a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5em;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}
@media screen and (min-width: 568px) {
  #footer .footer_inner .footer_inner_top .nav_link .nav_link_li a:hover:before {
    left: 0;
    width: 100%;
  }
}
#footer .footer_inner .nav_sns_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
}
#footer .footer_inner .nav_sns_link .nav_sns_link_li {
  text-indent: -9999px;
  margin: 0 40px 0 0;
}
#footer .footer_inner .nav_sns_link .nav_sns_link_li a {
  width: 30px;
  height: 30px;
  display: block;
}
#footer .footer_inner .nav_sns_link .nav_sns_link_li a.instagram_btn {
  background-image: url(../images/common/menu_inst.png);
  background-position: center center;
  background-size: 28px;
  background-repeat: no-repeat;
}
#footer .footer_inner .nav_sns_link .nav_sns_link_li a.x_btn {
  background-image: url(../images/common/menu_x.png);
  background-position: center center;
  background-size: 28px;
  background-repeat: no-repeat;
}
#footer .footer_inner .nav_sns_link .nav_sns_link_li a.line_btn {
  background-image: url(../images/common/menu_line.png);
  background-position: center center;
  background-size: 28px;
  background-repeat: no-repeat;
}
#footer .footer_inner .session_reception {
  width: 80%;
  max-width: 300px;
  margin: 0 auto 0 0;
  transition: 0.3s;
}
#footer .footer_inner .session_reception a {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #fff;
  height: 40px;
  color: #fff;
  font-size: 14px;
}
#footer .copyright {
  padding: 8px 0 20px;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 567px) {
  #footer .copyright {
    padding: 8px 0 20px;
    font-size: 9px;
  }
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999999;
  text-align: center;
  top: 0;
}

#splash_logo {
  display: none;
  width: 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 568px) {
  #splash_logo {
    width: 20%;
  }
}

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #fff;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  /* visibility: hidden; */
}

@keyframes PageAnime-fadeout {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bg_session {
  background: #010101;
}

.bg_textbook {
  background: #010101;
}

.bg_faciliator {
  background: #a9995e;
}

.bg_sensuality {
  background: #212025;
}

.bg_course {
  background: #212025;
}

.bg_voice {
  background: #212025;
}

#top_page .bg_image_clip {
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: calc(100% + 100vh);
  clip-path: inset(0);
  z-index: -1;
}
#top_page .bg_image_fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#top_page .section.about .bg_image_fixed {
  background-image: url(../images/top_back_1.jpg);
}
#top_page .section .section_inner .section_inner_title {
  text-align: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 568px) {
  #top_page .section .section_inner .section_inner_title {
    margin-bottom: 20vw;
  }
}
#top_page .section .section_inner .section_inner_title .main_text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 24px;
  margin: 0 auto 20px;
}
#top_page .section .section_inner .section_inner_title .en_text {
  font-size: 14px;
  margin: 0 auto 20px;
}
#top_page .section .section_inner .section_inner_title .logo {
  width: 50px;
  margin: 0 auto;
}
#top_page .fv_video {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
}
#top_page .fv_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#top_page .fv_video #fv_video {
  opacity: 0;
  transition: opacity 1.5s ease;
}
#top_page .fv_video #fv_video.is-show {
  opacity: 1;
}
#top_page .fv_video .fv_text {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho", serif;
  text-orientation: mixed;
  font-size: 20px;
  padding: 20px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 36px;
}
@media screen and (max-width: 568px) {
  #top_page .fv_video .fv_text {
    font-size: 30px;
  }
}
#top_page .about .about_inner {
  padding-bottom: 150px;
}
@media screen and (max-width: 568px) {
  #top_page .about .about_inner {
    padding-bottom: 30vw;
  }
}
#top_page .about .about_inner .about_inner_logo {
  width: 20%;
  max-width: 200px;
  margin: 0 auto 200px;
}
@media screen and (max-width: 568px) {
  #top_page .about .about_inner .about_inner_logo {
    margin: 0 auto 30vw;
  }
}
#top_page .about .about_inner .about_inner_text {
  width: 84%;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.5em;
}
#top_page .about .about_inner .about_inner_text dt {
  font-size: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #top_page .about .about_inner .about_inner_text dt {
    font-size: 22px;
  }
}
#top_page .about .about_inner .about_inner_text dd {
  font-size: 18px;
}
@media screen and (max-width: 568px) {
  #top_page .about .about_inner .about_inner_text dd {
    font-size: 14px;
  }
}
#top_page .session .session_inner .section_inner_title {
  color: #b9a560;
}
#top_page .session .session_inner .section_inner_content {
  background-image: url(../images/top_back_2_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 200px 0 0;
  width: 100%;
}
@media screen and (max-width: 568px) {
  #top_page .session .session_inner .section_inner_content {
    background-image: url(../images/top_back_2.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    padding: 30vw 0 0;
  }
}
#top_page .session .session_inner .section_inner_content .session_inner_text {
  width: 84%;
  max-width: 1000px;
  margin: 0 auto 200px;
  line-height: 1.5em;
}
@media screen and (max-width: 568px) {
  #top_page .session .session_inner .section_inner_content .session_inner_text {
    margin: 0 auto 30vw;
  }
}
#top_page .session .session_inner .section_inner_content .session_inner_text dt {
  font-size: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #top_page .session .session_inner .section_inner_content .session_inner_text dt {
    font-size: 22px;
  }
}
#top_page .session .session_inner .section_inner_content .session_inner_text dd {
  font-size: 18px;
}
@media screen and (max-width: 568px) {
  #top_page .session .session_inner .section_inner_content .session_inner_text dd {
    font-size: 14px;
  }
}
#top_page .session .session_inner .section_inner_content .session_slider_wrap {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto 140px;
}
@media screen and (max-width: 568px) {
  #top_page .session .session_inner .section_inner_content .session_slider_wrap {
    margin: 0 auto 20vw;
  }
}
#top_page .session .session_inner .section_inner_content .session_slider_wrap .session_slider {
  margin-bottom: 10px;
}
#top_page .session .session_inner .section_inner_content .session_slider_wrap .session_slider_thumbnail {
  width: calc(100% + 4px);
  margin-left: -4px;
}
#top_page .session .session_inner .section_inner_content .session_slider_wrap .session_slider_thumbnail .slick-track {
  transform: unset !important;
}
#top_page .session .session_inner .section_inner_content .session_slider_wrap .session_slider_thumbnail .slick-track .thumbnail_img {
  margin: 0 4px;
}
@media screen and (min-width: 568px) {
  #top_page .session .session_inner .section_inner_content .session_slider_wrap .session_slider_thumbnail .slick-track .thumbnail_img:hover {
    cursor: pointer;
  }
}
#top_page .session .session_inner .section_inner_content .btn .btn_link {
  border: 0.5px solid #b9a560;
  height: 60px;
  color: #b9a560;
}
#top_page .session .session_inner .section_inner_content .btn .btn_link:before {
  background: #b9a560;
}
#top_page .session .session_inner .section_inner_content .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #top_page .session .session_inner .section_inner_content .btn .btn_link span {
    font-size: 12px;
  }
}
#top_page .textbook .textbook_inner .section_inner_title {
  color: #b9a560;
}
#top_page .textbook .textbook_inner .section_inner_content .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
@media screen and (max-width: 568px) {
  #top_page .textbook .textbook_inner .section_inner_content .content_wrap {
    flex-wrap: wrap;
    margin-bottom: 15vw;
  }
}
#top_page .textbook .textbook_inner .section_inner_content .content_wrap .content_image {
  width: 55%;
}
@media screen and (max-width: 568px) {
  #top_page .textbook .textbook_inner .section_inner_content .content_wrap .content_image {
    width: 100%;
    margin-bottom: 15vw;
  }
}
#top_page .textbook .textbook_inner .section_inner_content .content_wrap .content_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #top_page .textbook .textbook_inner .section_inner_content .content_wrap .content_text {
    font-size: 14px;
    width: 92%;
  }
}
#top_page .textbook .textbook_inner .section_inner_content .content_wrap .content_text .comment {
  line-height: 3em;
}
#top_page .textbook .textbook_inner .section_inner_content .btn .btn_link {
  border: 0.5px solid #b9a560;
  height: 60px;
  color: #b9a560;
}
#top_page .textbook .textbook_inner .section_inner_content .btn .btn_link:before {
  background: #b9a560;
}
#top_page .textbook .textbook_inner .section_inner_content .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #top_page .textbook .textbook_inner .section_inner_content .btn .btn_link span {
    font-size: 12px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_title {
  color: #fff;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .content_wrap {
    flex-wrap: wrap;
    margin-bottom: 20vw;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_image {
  width: 45%;
  order: 1;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_image {
    width: 80%;
    margin: 0 0 15vw auto;
    order: 0;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text {
  width: 45%;
  margin-left: 5%;
  font-size: 16px;
  order: 0;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text {
    width: 92%;
    order: 1;
    margin: 0 auto;
    font-size: 14px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .name {
  text-align: left;
  width: 100%;
  margin: 0 auto 30px;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .name .name_main {
  font-size: 40px;
  line-height: 1.5em;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .name .name_main small {
  font-size: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .name .name_main small {
    font-size: 16px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .explanation {
  color: #010101;
  margin-bottom: 30px;
  line-height: 3em;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .sns .sns_link_li {
  margin-right: 20px;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .sns .sns_link_li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #fff;
}
#top_page .faciliator .faciliator_inner .section_inner_content .content_wrap .content_text .sns .sns_link_li a img {
  width: 24px;
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  color: #010101;
  margin-bottom: 140px;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap {
    margin-bottom: 20vw;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title {
    margin-bottom: 40px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title .main_title {
  font-size: 34px;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title .main_title {
    font-size: 30px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title .title_link a {
  font-size: 18px;
  position: relative;
  display: inline-block;
  color: #010101;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title .title_link a {
    font-size: 14px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title .title_link a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #010101;
  transition: all 0.3s ease;
}
@media screen and (min-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .title .title_link a:hover:before {
    left: 0;
    width: 100%;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .blog_list_ul {
  width: 100%;
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .blog_list_ul li {
  margin-bottom: 30px;
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .blog_list_ul li a {
  color: #010101;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: solid #010101 0.5px;
}
@media screen and (max-width: 568px) {
  #top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .blog_list_ul li a {
    font-size: 14px;
    padding-bottom: 6px;
  }
}
#top_page .faciliator .faciliator_inner .section_inner_content .blog_wrap .blog_list_ul li a .blog_title {
  width: 70%;
}
#top_page .sensuality .sensuality_inner .section_inner_title {
  color: #9976d0;
}
#top_page .sensuality .sensuality_inner .section_inner_content .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
@media screen and (max-width: 568px) {
  #top_page .sensuality .sensuality_inner .section_inner_content .content_wrap {
    flex-wrap: wrap;
    margin-bottom: 20vw;
  }
}
#top_page .sensuality .sensuality_inner .section_inner_content .content_wrap .content_image {
  width: 55%;
}
@media screen and (max-width: 568px) {
  #top_page .sensuality .sensuality_inner .section_inner_content .content_wrap .content_image {
    width: 100%;
    margin-bottom: 15vw;
  }
}
#top_page .sensuality .sensuality_inner .section_inner_content .content_wrap .content_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #top_page .sensuality .sensuality_inner .section_inner_content .content_wrap .content_text {
    font-size: 14px;
    width: 92%;
  }
}
#top_page .sensuality .sensuality_inner .section_inner_content .content_wrap .content_text .comment {
  line-height: 3em;
}
#top_page .sensuality .sensuality_inner .section_inner_content .btn .btn_link {
  border: 0.5px solid #9976d0;
  height: 60px;
  color: #9976d0;
}
#top_page .sensuality .sensuality_inner .section_inner_content .btn .btn_link:before {
  background: #9976d0;
}
#top_page .sensuality .sensuality_inner .section_inner_content .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #top_page .sensuality .sensuality_inner .section_inner_content .btn .btn_link span {
    font-size: 12px;
  }
}
#top_page .course .course_inner .section_inner_title {
  color: #9976d0;
}
#top_page .course .course_inner .section_inner_content .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap {
    flex-wrap: wrap;
    margin-bottom: 20vw;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_image {
  width: 55%;
  order: 1;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_image {
    width: 100%;
    margin-bottom: 15vw;
    order: 0;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  order: 0;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_text {
    font-size: 14px;
    width: 92%;
    order: 1;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text .comment {
  line-height: 3em;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_text .comment {
    margin-bottom: 40px;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu {
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu {
    margin-bottom: 40px;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu:last-child {
  margin-bottom: 0;
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu .course_menu_title {
  color: #9976d0;
  font-size: 18px;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu .course_menu_title {
    font-size: 16px;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu .course_menu_price {
  color: #9976d0;
  font-size: 40px;
  line-height: 1.5em;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu .course_menu_price {
    font-size: 30px;
  }
}
#top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu .course_menu_detail {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .content_wrap .content_text .course_menu_wrap .course_menu .course_menu_detail {
    font-size: 12px;
  }
}
#top_page .course .course_inner .section_inner_content .btn .btn_link {
  border: 0.5px solid #9976d0;
  height: 60px;
  color: #9976d0;
}
#top_page .course .course_inner .section_inner_content .btn .btn_link:before {
  background: #9976d0;
}
#top_page .course .course_inner .section_inner_content .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #top_page .course .course_inner .section_inner_content .btn .btn_link span {
    font-size: 12px;
  }
}
#top_page .voice .voice_inner .section_inner_title {
  color: #9976d0;
}
#top_page .voice .voice_inner .section_inner_content .content_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
@media screen and (max-width: 568px) {
  #top_page .voice .voice_inner .section_inner_content .content_wrap {
    flex-wrap: wrap;
    margin-bottom: 20vw;
  }
}
#top_page .voice .voice_inner .section_inner_content .content_wrap .content_image {
  width: 55%;
}
@media screen and (max-width: 568px) {
  #top_page .voice .voice_inner .section_inner_content .content_wrap .content_image {
    width: 100%;
    margin-bottom: 15vw;
  }
}
#top_page .voice .voice_inner .section_inner_content .content_wrap .content_text {
  width: 40%;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #top_page .voice .voice_inner .section_inner_content .content_wrap .content_text {
    font-size: 14px;
    width: 92%;
  }
}
#top_page .voice .voice_inner .section_inner_content .content_wrap .content_text .comment {
  line-height: 3em;
}
#top_page .voice .voice_inner .section_inner_content .btn .btn_link {
  border: 0.5px solid #9976d0;
  height: 60px;
  color: #9976d0;
}
#top_page .voice .voice_inner .section_inner_content .btn .btn_link:before {
  background: #9976d0;
}
#top_page .voice .voice_inner .section_inner_content .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #top_page .voice .voice_inner .section_inner_content .btn .btn_link span {
    font-size: 12px;
  }
}

.lower_page section.fv {
  width: 100%;
  margin-bottom: 150px;
}
@media screen and (max-width: 568px) {
  .lower_page section.fv {
    margin-bottom: 90px;
  }
}
.lower_page section.fv .fv_wrap {
  width: 100%;
  height: 40vh;
  position: relative;
}
.lower_page section.fv .fv_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.lower_page section.fv .fv_wrap .fv_text {
  position: absolute;
  top: calc(50% + 50px);
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  font-size: 30px;
}
@media screen and (max-width: 568px) {
  .lower_page section.fv .fv_wrap .fv_text {
    top: calc(50% + 40px);
  }
}
.lower_page section.fv .fv_wrap .fv_text .ja {
  font-size: 30px;
}
@media screen and (max-width: 568px) {
  .lower_page section.fv .fv_wrap .fv_text .ja {
    font-size: 24px;
  }
}
.lower_page section.fv .fv_wrap .fv_text .en {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  .lower_page section.fv .fv_wrap .fv_text .en {
    font-size: 12px;
  }
}
.lower_page section.index {
  width: 84%;
  max-width: 1000px;
  margin: 0 auto;
}
.lower_page section.index .main_text {
  font-size: 30px;
  margin-bottom: 100px;
}
@media screen and (max-width: 568px) {
  .lower_page section.index .main_text {
    font-size: 24px;
    margin-bottom: 80px;
  }
}
.lower_page section.index .page_index {
  border-bottom: 0.5px solid #fff;
  padding-bottom: 30px;
  margin-bottom: 100px;
}
@media screen and (max-width: 568px) {
  .lower_page section.index .page_index {
    padding-bottom: 20px;
    margin-bottom: 60px;
  }
}
.lower_page section.index .page_index.f_color_black {
  border-bottom: 0.5px solid #010101;
}
.lower_page section.index .page_index li {
  margin-bottom: 5px;
}
.lower_page section.index .page_index li a {
  font-size: 16px;
  display: inline-block;
  padding-right: 35px;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 16px;
}
.lower_page section.index .page_index li a.beige {
  background-image: url(../images/common/index_button_beige.png);
}
.lower_page section.index .page_index li a.purple {
  background-image: url(../images/common/index_button_purple.png);
}
.lower_page .section .section_inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
.lower_page .section .section_inner .section_inner_in {
  width: 92%;
  margin: 0 auto;
}
.lower_page .section .vertical_title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 28px;
  margin: 0 5% 70px auto;
  padding-right: 5px;
  border-right: 0.5px solid #fff;
  line-height: 1.5em;
}
@media screen and (max-width: 568px) {
  .lower_page .section .vertical_title {
    font-size: 24px;
    margin: 0 5% 50px auto;
  }
}
.lower_page .section .vertical_title.f_color_beige {
  border-right: 0.5px solid #b9a560;
}
.lower_page .section .vertical_title.f_color_purple {
  border-right: 0.5px solid #9976d0;
}
.lower_page .section .comment_text {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  .lower_page .section .comment_text {
    font-size: 14px;
  }
}
.lower_page .section .comment_text .comment_title {
  font-size: 22px;
}
@media screen and (max-width: 568px) {
  .lower_page .section .comment_text .comment_title {
    font-size: 20px;
  }
}

#session_page_body #session_page {
  background: #362f3f;
}
#session_page_body #session_page .section .section_inner .session_slider_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 568px) {
  #session_page_body #session_page .section .section_inner .session_slider_wrap {
    margin: 0 auto 10vw;
  }
}
#session_page_body #session_page .section .section_inner .session_slider_wrap .session_slider {
  margin-bottom: 10px;
}
#session_page_body #session_page .section .section_inner .session_slider_wrap .session_slider_thumbnail {
  width: calc(100% + 4px);
  margin-left: -4px;
}
#session_page_body #session_page .section .section_inner .session_slider_wrap .session_slider_thumbnail .slick-track {
  transform: unset !important;
}
#session_page_body #session_page .section .section_inner .session_slider_wrap .session_slider_thumbnail .slick-track .thumbnail_img {
  margin: 0 4px;
}
@media screen and (min-width: 568px) {
  #session_page_body #session_page .section .section_inner .session_slider_wrap .session_slider_thumbnail .slick-track .thumbnail_img:hover {
    cursor: pointer;
  }
}
#session_page_body #session_page .section .section_inner .seminar_nemu .menu_title {
  font-size: 22px;
  padding-bottom: 5px;
  border-bottom: 0.5px solid #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 568px) {
  #session_page_body #session_page .section .section_inner .seminar_nemu .menu_title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
#session_page_body #session_page .section .section_inner .seminar_nemu .menu_content {
  font-size: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #session_page_body #session_page .section .section_inner .seminar_nemu .menu_content {
    font-size: 14px;
  }
}
#session_page_body #session_page .section .section_inner .seminar_nemu .menu_content dt {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  #session_page_body #session_page .section .section_inner .seminar_nemu .menu_content dt {
    font-size: 16px;
  }
}
#session_page_body #session_page .section .section_inner .seminar_nemu .menu_content dd {
  line-height: 2em;
  position: relative;
  padding-left: 1.2em;
}
#session_page_body #session_page .section .section_inner .seminar_nemu .menu_content dd:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#session_page_body #session_page .section .section_inner .session_video_wrap video {
  width: 100%;
}
#session_page_body #session_page .section .section_inner .btn .btn_link {
  border: 0.5px solid #b9a560;
  height: 60px;
  color: #b9a560;
}
#session_page_body #session_page .section .section_inner .btn .btn_link:before {
  background: #b9a560;
}
#session_page_body #session_page .section .section_inner .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #session_page_body #session_page .section .section_inner .btn .btn_link span {
    font-size: 12px;
  }
}

#voice_page_body #voice_page {
  background: #212025;
}
#voice_page_body #voice_page .section .section_inner .voice_box {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 5% 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .voice_box {
    margin-bottom: 50px;
    padding: 20px 8%;
  }
}
#voice_page_body #voice_page .section .section_inner .voice_box .experiencer .title {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#voice_page_body #voice_page .section .section_inner .voice_box .experiencer .title .main {
  font-size: 24px;
  line-height: 1.5em;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .voice_box .experiencer .title .main {
    font-size: 20px;
  }
}
#voice_page_body #voice_page .section .section_inner .voice_box .experiencer .title .sub {
  font-size: 16px;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .voice_box .experiencer .title .sub {
    font-size: 14px;
  }
}
#voice_page_body #voice_page .section .section_inner .voice_box .experiencer .comment {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .voice_box .experiencer .comment {
    font-size: 14px;
  }
}
#voice_page_body #voice_page .section .section_inner .voice_box .faciliator {
  margin-top: 50px;
}
#voice_page_body #voice_page .section .section_inner .voice_box .faciliator .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#voice_page_body #voice_page .section .section_inner .voice_box .faciliator .title .image {
  width: 50px;
  margin-right: 10px;
}
#voice_page_body #voice_page .section .section_inner .voice_box .faciliator .title .main {
  font-size: 24px;
  line-height: 1.5em;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .voice_box .faciliator .title .main {
    font-size: 20px;
  }
}
#voice_page_body #voice_page .section .section_inner .voice_box .faciliator .comment {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .voice_box .faciliator .comment {
    font-size: 14px;
  }
}
#voice_page_body #voice_page .section .section_inner .btn .btn_link {
  border: 0.5px solid #9976d0;
  height: 60px;
  color: #9976d0;
}
#voice_page_body #voice_page .section .section_inner .btn .btn_link:before {
  background: #9976d0;
}
#voice_page_body #voice_page .section .section_inner .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #voice_page_body #voice_page .section .section_inner .btn .btn_link span {
    font-size: 12px;
  }
}

#sensuality_page_body #sensuality_page {
  background: #212025;
}
#sensuality_page_body #sensuality_page .section .comment_text ul li {
  padding-left: 1.2em;
  position: relative;
}
#sensuality_page_body #sensuality_page .section .comment_text ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner {
  width: 100%;
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 568px) {
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner {
    flex-wrap: wrap;
  }
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box {
  width: 45%;
}
@media screen and (max-width: 568px) {
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box {
    width: 100%;
    margin: 0 auto 20vw;
  }
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box:last-child {
    margin: 0 auto 0;
  }
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box > div .image {
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box > div .image {
    margin-bottom: 30px;
  }
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box > div .title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box > div .title {
    font-size: 26px;
  }
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box > div .text {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 568px) {
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box > div .text {
    font-size: 14px;
  }
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box .btn .btn_link {
  border: 0.5px solid #9976d0;
  height: 60px;
  color: #9976d0;
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box .btn .btn_link:before {
  background: #9976d0;
}
#sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #sensuality_page_body #sensuality_page .section.bottom_link .section_inner .inner .section_inner_box .btn .btn_link span {
    font-size: 12px;
  }
}

#course_page_body #course_page {
  background: #f4f3ee;
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_title {
  font-size: 18px;
  color: #fff;
  background: #b9a560;
  padding: 5px 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_title {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text {
  margin-bottom: 70px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text {
    margin-bottom: 40px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price {
  border-bottom: 0.5px solid #010101;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_text {
  font-size: 18px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_text {
    font-size: 14px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_num {
  font-size: 36px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_num {
    font-size: 32px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_num small {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_num small {
    font-size: 12px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_num span {
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_price .menu_price_num span {
    font-size: 12px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content {
  font-size: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content {
    font-size: 14px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content dt {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content dt {
    font-size: 16px;
  }
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content dd {
  line-height: 2em;
  position: relative;
  padding-left: 1.2em;
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content dd:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content dd.num {
  padding-left: 0;
}
#course_page_body #course_page .section .section_inner .course_nemu .menu_text .menu_content dd.num:before {
  content: none;
}
#course_page_body #course_page .section .section_inner .btn .btn_link {
  border: 0.5px solid #b9a560;
  height: 60px;
  color: #b9a560;
}
#course_page_body #course_page .section .section_inner .btn .btn_link:before {
  background: #b9a560;
}
#course_page_body #course_page .section .section_inner .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section .section_inner .btn .btn_link span {
    font-size: 12px;
  }
}
#course_page_body #course_page .section.bottom_link .section_inner .inner {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section.bottom_link .section_inner .inner {
    flex-wrap: wrap;
  }
}
#course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box {
  width: 45%;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box {
    width: 100%;
    margin: 0 auto 20vw;
  }
  #course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box:last-child {
    margin: 0 auto 0;
  }
}
#course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box > div .image {
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box > div .image {
    margin-bottom: 30px;
  }
}
#course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box > div .text {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 568px) {
  #course_page_body #course_page .section.bottom_link .section_inner .inner .section_inner_box > div .text {
    font-size: 14px;
  }
}

#textbook_page_body #textbook_page {
  background: #f4f3ee;
}
#textbook_page_body #textbook_page .section.index .page_index {
  margin-bottom: 0px;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner {
  width: 100%;
  margin: 0 auto 200px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner {
    margin: 0 auto 25vw;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image {
  position: relative;
  margin-bottom: 70px;
}
@media screen and (min-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image {
    height: 20vw;
  }
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image {
    margin-bottom: 50px;
    width: 110%;
    margin-left: -5%;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image img {
  width: 100%;
}
@media screen and (min-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image .image_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image .image_text {
    font-size: 24px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .main_image .image_text span {
  display: block;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text {
  width: 92%;
  margin: 0 auto 70px;
  font-size: 16px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text {
    font-size: 14px;
    margin: 0 auto 50px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .head_text {
  font-size: 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .head_text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .sentence {
  font-size: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .sentence {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .sentence b {
  font-size: 18px;
  font-weight: normal;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .sentence b {
    font-size: 16px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .sentence b small {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .sentence b small {
    font-size: 12px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .image {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .image {
    width: 100%;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .image span {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .image span {
    font-size: 12px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu {
  margin-bottom: 40px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu {
    margin-bottom: 30px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu .toggle_nemu_head {
  padding-bottom: 10px;
  border-bottom: 0.5px solid #010101;
  font-size: 20px;
  background: url(../images/common/icon_arrow_down.png) no-repeat;
  background-size: 15px;
  background-position: right 10px center;
  transition: 0.3s;
}
@media screen and (min-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu .toggle_nemu_head {
    cursor: pointer;
  }
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu .toggle_nemu_head {
    font-size: 16px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu .toggle_nemu_head.open {
  background: url(../images/common/icon_arrow_up.png) no-repeat;
  background-size: 15px;
  background-position: right 10px center;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu .toggle_nemu_head small {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu .toggle_nemu_head small {
    font-size: 12px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl {
  padding: 20px 2%;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd {
  margin-bottom: 10px;
  padding-left: 2%;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd b {
  font-size: 18px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd b {
    font-size: 16px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd b small {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd b small {
    font-size: 12px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd .image {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd .image {
    width: 80%;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd .image span {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .textbook_inner .text .toggle_nemu dl dd .image span {
    font-size: 12px;
  }
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner:last-child {
  margin-bottom: 0;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner:last-child .text:last-child {
  margin-bottom: 0;
}
#textbook_page_body #textbook_page .section .section_inner .textbook_inner:last-child .sentence:last-child {
  margin-bottom: 0;
}
#textbook_page_body #textbook_page .section .section_inner .btn .btn_link {
  border: 0.5px solid #b9a560;
  height: 60px;
  color: #b9a560;
}
#textbook_page_body #textbook_page .section .section_inner .btn .btn_link:before {
  background: #b9a560;
}
#textbook_page_body #textbook_page .section .section_inner .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section .section_inner .btn .btn_link span {
    font-size: 12px;
  }
}
#textbook_page_body #textbook_page .section.bottom_link .section_inner .inner {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section.bottom_link .section_inner .inner {
    flex-wrap: wrap;
  }
}
#textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box {
  width: 45%;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box {
    width: 100%;
    margin: 0 auto 20vw;
  }
  #textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box:last-child {
    margin: 0 auto 0;
  }
}
#textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box > div .image {
  margin-bottom: 50px;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box > div .image {
    margin-bottom: 30px;
  }
}
#textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box > div .text {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 568px) {
  #textbook_page_body #textbook_page .section.bottom_link .section_inner .inner .section_inner_box > div .text {
    font-size: 14px;
  }
}

#post_page_body #post_page {
  background: #f4f3ee;
}
#post_page_body #post_page .section a {
  color: #010101 !important;
}
#post_page_body #post_page .section .section_inner {
  padding: 0;
}
#post_page_body #post_page .section .section_inner .post_list_wrap {
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .post_list_wrap {
    width: 92%;
  }
}
#post_page_body #post_page .section .section_inner .post_list_wrap li {
  border-bottom: 0.5px solid #010101;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#post_page_body #post_page .section .section_inner .post_list_wrap li a {
  display: block;
  font-size: 16px;
  background-image: url(../images/common/icon_arrow_next.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 20px top 2em;
  padding-right: 70px;
  transition: 0.3s;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .post_list_wrap li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 568px) {
  #post_page_body #post_page .section .section_inner .post_list_wrap li a:hover {
    background-position: right 10px top 2em;
  }
}
#post_page_body #post_page .section .section_inner .post_list_wrap li a dl dd {
  font-size: 14px;
  margin-bottom: 5px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .post_list_wrap li a dl dd {
    font-size: 12px;
  }
}
#post_page_body #post_page .section .section_inner .post_list_wrap li a dl dt {
  font-size: 16px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .post_list_wrap li a dl dt {
    font-size: 14px;
  }
}
#post_page_body #post_page .section .section_inner .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
#post_page_body #post_page .section .section_inner .pagination .nav-links .page-numbers {
  padding: 5px 10px;
  border: 0.5px solid #010101;
  margin: 0 10px;
  font-size: 12px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .pagination .nav-links .page-numbers {
    font-size: 10px;
  }
}
#post_page_body #post_page .section .section_inner .pagination .nav-links .page-numbers.current {
  background: rgba(0, 0, 0, 0.1);
}
#post_page_body #post_page .section .section_inner .pagination .nav-links .page-numbers.prev {
  text-indent: -1000px;
  border: none;
  background: url(../images/common/icon_arrow_prev2.png);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}
#post_page_body #post_page .section .section_inner .pagination .nav-links .page-numbers.next {
  text-indent: -1000px;
  border: none;
  background: url(../images/common/icon_arrow_next2.png);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}
#post_page_body #post_page .section .section_inner .arrow_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .arrow_wrap {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 568px) {
  #post_page_body #post_page .section .section_inner .arrow_wrap li a:hover.prev {
    background-position: left 0px center;
  }
  #post_page_body #post_page .section .section_inner .arrow_wrap li a:hover.next {
    background-position: right 0px center;
  }
}
#post_page_body #post_page .section .section_inner .arrow_wrap li.prev_li {
  margin: 0 auto 0 0;
}
#post_page_body #post_page .section .section_inner .arrow_wrap li.prev_li a {
  font-size: 16px;
  background: url(../images/common/icon_arrow_prev.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: left 10px center;
  padding-left: 40px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .arrow_wrap li.prev_li a {
    font-size: 14px;
  }
}
#post_page_body #post_page .section .section_inner .arrow_wrap li.next_li {
  margin: 0 0 0 auto;
}
#post_page_body #post_page .section .section_inner .arrow_wrap li.next_li a {
  font-size: 16px;
  background: url(../images/common/icon_arrow_next.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right 10px center;
  padding-right: 40px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .arrow_wrap li.next_li a {
    font-size: 14px;
  }
}
#post_page_body #post_page .section .section_inner .btn .btn_link {
  border: 0.5px solid #010101;
  height: 60px;
  color: #010101;
}
#post_page_body #post_page .section .section_inner .btn .btn_link:before {
  background: #010101;
}
#post_page_body #post_page .section .section_inner .btn .btn_link span {
  font-size: 14px;
  transition: all 0.3s linear 0.1s;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section .section_inner .btn .btn_link span {
    font-size: 12px;
  }
}
@media screen and (min-width: 568px) {
  #post_page_body #post_page .section .section_inner .btn .btn_link:hover span {
    color: #fff !important;
  }
}
#post_page_body #post_page .section.post {
  margin-top: 210px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section.post {
    margin-top: 150px;
  }
}
#post_page_body #post_page .section.post .post_wrap {
  width: 100%;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section.post .post_wrap {
    width: 92%;
    margin: 0 auto;
  }
}
#post_page_body #post_page .section.post .post_wrap dl {
  border-bottom: 0.5px solid #010101;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section.post .post_wrap dl {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}
#post_page_body #post_page .section.post .post_wrap dl dd {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section.post .post_wrap dl dd {
    font-size: 14px;
  }
}
#post_page_body #post_page .section.post .post_wrap dl dt {
  font-size: 24px;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section.post .post_wrap dl dt {
    font-size: 20px;
  }
}
#post_page_body #post_page .section.post .post_wrap .post_main {
  font-size: 16px;
  padding-bottom: 100px;
  margin-bottom: 70px;
  border-bottom: 0.5px solid #010101;
}
@media screen and (max-width: 568px) {
  #post_page_body #post_page .section.post .post_wrap .post_main {
    font-size: 14px;
    padding-bottom: 70px;
    margin-bottom: 50px;
  }
}
#post_page_body #post_page .section.post .post_wrap .post_main p:empty {
  display: block;
  height: 1.8em;
}

#pnf_page_body #pnf_page {
  background: #212025;
}
#pnf_page_body #pnf_page .section {
  margin-top: 210px;
}
@media screen and (max-width: 568px) {
  #pnf_page_body #pnf_page .section {
    margin-top: 150px;
  }
}
#pnf_page_body #pnf_page .section .section_inner {
  padding: 0;
  text-align: center;
}
#pnf_page_body #pnf_page .section .section_inner h3 {
  font-size: 16px;
}
@media screen and (max-width: 568px) {
  #pnf_page_body #pnf_page .section .section_inner h3 {
    font-size: 14px;
  }
}
#pnf_page_body #pnf_page .section .section_inner .lower_page_contents_comment {
  font-size: 16px;
  line-height: 2em;
}
@media screen and (max-width: 568px) {
  #pnf_page_body #pnf_page .section .section_inner .lower_page_contents_comment {
    font-size: 14px;
  }
}
#pnf_page_body #pnf_page .section .section_inner .btn .btn_link {
  border: 0.5px solid #fff;
  height: 60px;
  color: #fff;
}
#pnf_page_body #pnf_page .section .section_inner .btn .btn_link:before {
  background: #fff;
}
#pnf_page_body #pnf_page .section .section_inner .btn .btn_link span {
  font-size: 14px;
}
@media screen and (max-width: 568px) {
  #pnf_page_body #pnf_page .section .section_inner .btn .btn_link span {
    font-size: 12px;
  }
}
#pnf_page_body #pnf_page .section.bottom_link {
  margin-top: 100px;
}
@media screen and (max-width: 568px) {
  #pnf_page_body #pnf_page .section.bottom_link {
    margin-top: 70px;
  }
}

.mp {
  font-family: m-plus-2p, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mp.italic {
  font-style: italic;
}

.wh {
  color: #fff;
}

.bold {
  font-weight: 700;
}

.vw30 {
  font-size: 2.5vw;
}

.blue_txt {
  color: #004ea2;
}

.cmn_ttl {
  font-size: 50px;
  line-height: 1.2777777778;
}
.cmn_ttl .en {
  display: inline-block;
  margin: 0 0 0 5px;
  font-size: 3.8rem;
  font-weight: 600;
}
@media screen and (max-width: 567px) {
  .cmn_ttl .en {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 567px) {
  .cmn_ttl {
    font-size: 22px;
  }
}

.gd_txt {
  color: #a9d06b;
  background: linear-gradient(270deg, #00afec 0, #a9d06b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.f_color_beige {
  color: #b9a560 !important;
}

.f_color_purple {
  color: #9976d0 !important;
}

.f_color_black {
  color: #010101 !important;
}

.mt00 {
  margin-top: 0px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

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

.mt15 {
  margin-top: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

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

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

.mt25 {
  margin-top: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

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

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

.mt35 {
  margin-top: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

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

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

.mt45 {
  margin-top: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

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

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

.mt55 {
  margin-top: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

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

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

.mt65 {
  margin-top: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

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

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

.mt75 {
  margin-top: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

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

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

.mt85 {
  margin-top: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

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

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

.mt95 {
  margin-top: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

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

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

.mt110 {
  margin-top: 110px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.pt140 {
  padding-top: 140px !important;
}

@media screen and (max-width: 567px) {
  .mt05 {
    margin-top: 2.5px !important;
  }
  .pt05 {
    padding-top: 2.5px !important;
  }
  .mt10 {
    margin-top: 5px !important;
  }
  .pt10 {
    padding-top: 5px !important;
  }
  .mt15 {
    margin-top: 7.5px !important;
  }
  .pt15 {
    padding-top: 7.5px !important;
  }
  .mt20 {
    margin-top: 10px !important;
  }
  .pt20 {
    padding-top: 10px !important;
  }
  .mt25 {
    margin-top: 12.5px !important;
  }
  .pt25 {
    padding-top: 12.5px !important;
  }
  .mt30 {
    margin-top: 15px !important;
  }
  .pt30 {
    padding-top: 15px !important;
  }
  .mt35 {
    margin-top: 17.5px !important;
  }
  .pt35 {
    padding-top: 17.5px !important;
  }
  .mt40 {
    margin-top: 20px !important;
  }
  .pt40 {
    padding-top: 20px !important;
  }
  .mt45 {
    margin-top: 22.5px !important;
  }
  .pt45 {
    padding-top: 22.5px !important;
  }
  .mt50 {
    margin-top: 25px !important;
  }
  .pt50 {
    padding-top: 25px !important;
  }
  .mt55 {
    margin-top: 27.5px !important;
  }
  .pt55 {
    padding-top: 27.5px !important;
  }
  .mt60 {
    margin-top: 30px !important;
  }
  .pt60 {
    padding-top: 30px !important;
  }
  .mt65 {
    margin-top: 32.5px !important;
  }
  .pt65 {
    padding-top: 32.5px !important;
  }
  .mt70 {
    margin-top: 35px !important;
  }
  .pt70 {
    padding-top: 35px !important;
  }
  .mt75 {
    margin-top: 37.5px !important;
  }
  .pt75 {
    padding-top: 37.5px !important;
  }
  .mt80 {
    margin-top: 40px !important;
  }
  .pt80 {
    padding-top: 40px !important;
  }
  .mt85 {
    margin-top: 42.5px !important;
  }
  .pt85 {
    padding-top: 42.5px !important;
  }
  .mt90 {
    margin-top: 45px !important;
  }
  .pt90 {
    padding-top: 45px !important;
  }
  .mt95 {
    margin-top: 47.5px !important;
  }
  .pt95 {
    padding-top: 47.5px !important;
  }
  .mt100 {
    margin-top: 50px !important;
  }
  .pt100 {
    padding-top: 50px !important;
  }
  .mt110 {
    margin-top: 55px !important;
  }
  .pt110 {
    padding-top: 55px !important;
  }
  .mt120 {
    margin-top: 60px !important;
  }
  .pt120 {
    padding-top: 60px !important;
  }
  .mt130 {
    margin-top: 65px !important;
  }
  .pt130 {
    padding-top: 65px !important;
  }
  .mt140 {
    margin-top: 70px !important;
  }
  .pt140 {
    padding-top: 70px !important;
  }
  .mt00_sp {
    margin-top: 0px !important;
  }
  .pt00_sp {
    padding-top: 0px !important;
  }
  .mt05_sp {
    margin-top: 5px !important;
  }
  .pt05_sp {
    padding-top: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .pt10_sp {
    padding-top: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .pt15_sp {
    padding-top: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .pt20_sp {
    padding-top: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .pt25_sp {
    padding-top: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .pt30_sp {
    padding-top: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .pt35_sp {
    padding-top: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .pt40_sp {
    padding-top: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .pt45_sp {
    padding-top: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .pt50_sp {
    padding-top: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .pt55_sp {
    padding-top: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .pt60_sp {
    padding-top: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .pt65_sp {
    padding-top: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .pt70_sp {
    padding-top: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .pt75_sp {
    padding-top: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .pt80_sp {
    padding-top: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .pt85_sp {
    padding-top: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .pt90_sp {
    padding-top: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .pt95_sp {
    padding-top: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .pt100_sp {
    padding-top: 100px !important;
  }
  .mt110_sp {
    margin-top: 110px !important;
  }
  .pt110_sp {
    padding-top: 110px !important;
  }
  .mt120_sp {
    margin-top: 120px !important;
  }
  .pt120_sp {
    padding-top: 120px !important;
  }
  .mt130_sp {
    margin-top: 130px !important;
  }
  .pt130_sp {
    padding-top: 130px !important;
  }
  .mt140_sp {
    margin-top: 140px !important;
  }
  .pt140_sp {
    padding-top: 140px !important;
  }
}
.mr00 {
  margin-right: 0px !important;
}

.pr00 {
  padding-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.pr05 {
  padding-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

@media screen and (max-width: 567px) {
  .mr00_sp {
    margin-right: 0px !important;
  }
  .pr00_sp {
    padding-right: 0px !important;
  }
  .mr05_sp {
    margin-right: 5px !important;
  }
  .pr05_sp {
    padding-right: 5px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .pr10_sp {
    padding-right: 10px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .pr15_sp {
    padding-right: 15px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .pr20_sp {
    padding-right: 20px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .pr25_sp {
    padding-right: 25px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .pr30_sp {
    padding-right: 30px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .pr35_sp {
    padding-right: 35px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .pr40_sp {
    padding-right: 40px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .pr45_sp {
    padding-right: 45px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .pr50_sp {
    padding-right: 50px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .pr55_sp {
    padding-right: 55px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .pr60_sp {
    padding-right: 60px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .pr65_sp {
    padding-right: 65px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .pr70_sp {
    padding-right: 70px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .pr75_sp {
    padding-right: 75px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .pr80_sp {
    padding-right: 80px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .pr85_sp {
    padding-right: 85px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .pr90_sp {
    padding-right: 90px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .pr95_sp {
    padding-right: 95px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .pr100_sp {
    padding-right: 100px !important;
  }
}
.mb00 {
  margin-bottom: 0px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

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

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

.mb15 {
  margin-bottom: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

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

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

.mb25 {
  margin-bottom: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

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

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

.mb35 {
  margin-bottom: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

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

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

.mb45 {
  margin-bottom: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

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

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

.mb55 {
  margin-bottom: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

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

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

.mb65 {
  margin-bottom: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

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

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

.mb75 {
  margin-bottom: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

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

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

.mb85 {
  margin-bottom: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

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

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

.mb95 {
  margin-bottom: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

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

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

.mb110 {
  margin-bottom: 110px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

@media screen and (max-width: 567px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
  .pb00 {
    padding-bottom: 0px !important;
  }
  .mb05 {
    margin-bottom: 2.5px !important;
  }
  .pb05 {
    padding-bottom: 2.5px !important;
  }
  .mb10 {
    margin-bottom: 5px !important;
  }
  .pb10 {
    padding-bottom: 5px !important;
  }
  .mb15 {
    margin-bottom: 7.5px !important;
  }
  .pb15 {
    padding-bottom: 7.5px !important;
  }
  .mb20 {
    margin-bottom: 10px !important;
  }
  .pb20 {
    padding-bottom: 10px !important;
  }
  .mb25 {
    margin-bottom: 12.5px !important;
  }
  .pb25 {
    padding-bottom: 12.5px !important;
  }
  .mb30 {
    margin-bottom: 15px !important;
  }
  .pb30 {
    padding-bottom: 15px !important;
  }
  .mb35 {
    margin-bottom: 17.5px !important;
  }
  .pb35 {
    padding-bottom: 17.5px !important;
  }
  .mb40 {
    margin-bottom: 20px !important;
  }
  .pb40 {
    padding-bottom: 20px !important;
  }
  .mb45 {
    margin-bottom: 22.5px !important;
  }
  .pb45 {
    padding-bottom: 22.5px !important;
  }
  .mb50 {
    margin-bottom: 25px !important;
  }
  .pb50 {
    padding-bottom: 25px !important;
  }
  .mb55 {
    margin-bottom: 27.5px !important;
  }
  .pb55 {
    padding-bottom: 27.5px !important;
  }
  .mb60 {
    margin-bottom: 30px !important;
  }
  .pb60 {
    padding-bottom: 30px !important;
  }
  .mb65 {
    margin-bottom: 32.5px !important;
  }
  .pb65 {
    padding-bottom: 32.5px !important;
  }
  .mb70 {
    margin-bottom: 35px !important;
  }
  .pb70 {
    padding-bottom: 35px !important;
  }
  .mb75 {
    margin-bottom: 37.5px !important;
  }
  .pb75 {
    padding-bottom: 37.5px !important;
  }
  .mb80 {
    margin-bottom: 40px !important;
  }
  .pb80 {
    padding-bottom: 40px !important;
  }
  .mb85 {
    margin-bottom: 42.5px !important;
  }
  .pb85 {
    padding-bottom: 42.5px !important;
  }
  .mb90 {
    margin-bottom: 45px !important;
  }
  .pb90 {
    padding-bottom: 45px !important;
  }
  .mb95 {
    margin-bottom: 47.5px !important;
  }
  .pb95 {
    padding-bottom: 47.5px !important;
  }
  .mb100 {
    margin-bottom: 50px !important;
  }
  .pb100 {
    padding-bottom: 50px !important;
  }
  .mb110 {
    margin-bottom: 55px !important;
  }
  .pb110 {
    padding-bottom: 55px !important;
  }
  .mb120 {
    margin-bottom: 60px !important;
  }
  .pb120 {
    padding-bottom: 60px !important;
  }
  .mb130 {
    margin-bottom: 65px !important;
  }
  .pb130 {
    padding-bottom: 65px !important;
  }
  .mb140 {
    margin-bottom: 70px !important;
  }
  .pb140 {
    padding-bottom: 70px !important;
  }
  .mb00_sp {
    margin-bottom: 0px !important;
  }
  .pb00_sp {
    padding-bottom: 0px !important;
  }
  .mb05_sp {
    margin-bottom: 5px !important;
  }
  .pb05_sp {
    padding-bottom: 5px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .pb10_sp {
    padding-bottom: 10px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .pb15_sp {
    padding-bottom: 15px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .pb20_sp {
    padding-bottom: 20px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .pb25_sp {
    padding-bottom: 25px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .pb30_sp {
    padding-bottom: 30px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .pb35_sp {
    padding-bottom: 35px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .pb40_sp {
    padding-bottom: 40px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .pb45_sp {
    padding-bottom: 45px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .pb50_sp {
    padding-bottom: 50px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .pb55_sp {
    padding-bottom: 55px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .pb60_sp {
    padding-bottom: 60px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .pb65_sp {
    padding-bottom: 65px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .pb70_sp {
    padding-bottom: 70px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .pb75_sp {
    padding-bottom: 75px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .pb80_sp {
    padding-bottom: 80px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .pb85_sp {
    padding-bottom: 85px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .pb90_sp {
    padding-bottom: 90px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .pb95_sp {
    padding-bottom: 95px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .pb100_sp {
    padding-bottom: 100px !important;
  }
  .mb110_sp {
    margin-bottom: 110px !important;
  }
  .pb110_sp {
    padding-bottom: 110px !important;
  }
  .mb120_sp {
    margin-bottom: 120px !important;
  }
  .pb120_sp {
    padding-bottom: 120px !important;
  }
  .mb130_sp {
    margin-bottom: 130px !important;
  }
  .pb130_sp {
    padding-bottom: 130px !important;
  }
  .mb140_sp {
    margin-bottom: 140px !important;
  }
  .pb140_sp {
    padding-bottom: 140px !important;
  }
}
.ml00 {
  margin-left: 0px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

@media screen and (max-width: 567px) {
  .ml00_sp {
    margin-left: 0px !important;
  }
  .pl00_sp {
    padding-left: 0px !important;
  }
  .ml05_sp {
    margin-left: 5px !important;
  }
  .pl05_sp {
    padding-left: 5px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .pl10_sp {
    padding-left: 10px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .pl15_sp {
    padding-left: 15px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .pl20_sp {
    padding-left: 20px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .pl25_sp {
    padding-left: 25px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .pl30_sp {
    padding-left: 30px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .pl35_sp {
    padding-left: 35px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .pl40_sp {
    padding-left: 40px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .pl45_sp {
    padding-left: 45px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .pl50_sp {
    padding-left: 50px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .pl55_sp {
    padding-left: 55px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .pl60_sp {
    padding-left: 60px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .pl65_sp {
    padding-left: 65px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .pl70_sp {
    padding-left: 70px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .pl75_sp {
    padding-left: 75px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .pl80_sp {
    padding-left: 80px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .pl85_sp {
    padding-left: 85px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .pl90_sp {
    padding-left: 90px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .pl95_sp {
    padding-left: 95px !important;
  }
  .ml100_sp {
    margin-left: 100px !important;
  }
  .pl100_sp {
    padding-left: 100px !important;
  }
}
.al {
  text-align: left;
}

.ar {
  text-align: right;
}

.ac {
  text-align: center;
}

@media screen and (max-width: 567px) {
  .al_sp {
    text-align: left;
  }
  .ar_sp {
    text-align: right;
  }
  .ac_sp {
    text-align: center;
  }
}
.hidden {
  display: none !important;
  visibility: hidden;
}

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

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

.row {
  display: flex;
  flex-wrap: wrap;
}
.row.jc_sb {
  justify-content: space-between;
}
.row.jc_c {
  justify-content: center;
}
.row.jc_fe {
  justify-content: flex-end;
}
.row.ai_c {
  align-items: center;
}
.row.fd_c {
  flex-direction: column;
}
.row .fb_half {
  flex-basis: 50%;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .row .fb_half {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.row .col.grid1of2 {
  margin-right: 4%;
  margin-bottom: 4%;
  width: 48%;
}
.row .col.grid1of2:nth-child(even) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .row .col.grid1of2 {
    margin-right: 0;
    margin-bottom: 6%;
  }
}
.row .col.grid1of3 {
  margin-right: 2%;
  margin-bottom: 4%;
  width: 32%;
}
.row .col.grid1of3:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .row .col.grid1of3 {
    margin-right: 0;
    margin-bottom: 6%;
  }
  .row .col.grid1of3:first-child {
    margin-top: 0;
  }
}
.row .col.grid1of5 {
  margin-right: 2%;
  margin-bottom: 2%;
  width: 18.4%;
}
.row .col.grid1of5:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .row .col.grid1of5 {
    margin-right: 4%;
    margin-bottom: 4%;
    width: 48% !important;
  }
  .row .col.grid1of5:nth-child(even) {
    margin-right: 0;
  }
  .row .col.grid1of5:nth-child(5n) {
    margin-right: 4%;
  }
  .row .col.grid1of5:nth-child(10) {
    margin-right: 0;
  }
}
.row .col.gridfull {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .row .col {
    width: 100% !important;
  }
  .row .col.grid1of2_sp {
    margin-top: 0;
    margin-right: 3% !important;
    margin-left: 0;
    width: 48.5% !important;
  }
  .row .col.grid1of2_sp:nth-child(even) {
    margin-right: 0 !important;
  }
  .row .col.grid1of3_sp {
    margin-right: 3.611% !important;
    width: 30.926% !important;
  }
  .row .col.grid1of3_sp:nth-child(3n) {
    margin-right: 0 !important;
  }
  .row .col .noreset {
    width: inherit !important;
  }
}/*# sourceMappingURL=style.css.map */