@charset "UTF-8";
/*----------------------------------
Variables Style
----------------------------------*/
/*--root--*/
/*--color--*/
/*--size--*/
/*--font--*/
/*--transition--*/
/*--opacity--*/
/*----------------------------------
Function Style
----------------------------------*/
/*----------------------------------
Extend Style
----------------------------------*/
.cl, .c-imgBox {
  display: inline-block;
  min-height: 1%;
  display: block;
  *zoom: 1;
}

.cl:after, .c-imgBox:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

* html .cl, * html .c-imgBox {
  height: 1%;
}

/*----------------------------------
Mixins Style
----------------------------------*/
/*----------------------------------
Reset Style
----------------------------------*/
dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, figure, input, textarea, p, blockquote {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

fieldset, img {
  border: 0;
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

q:before, q:after {
  content: " ";
}

abbr, acronym {
  border: 0;
}

a {
  color: #334499;
  text-decoration: none;
}

a:link {
  color: #334499;
}

a:visited {
  color: #334499;
  text-decoration: none;
}

a:hover {
  color: #334499;
  text-decoration: none;
  cursor: pointer;
}

a:active {
  color: #334499;
  text-decoration: none;
}

a:active, a:focus {
  outline: none;
}

li img,
dt img,
dd img {
  vertical-align: top;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 4px;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: #251b1e;
  box-sizing: content-box;
}

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

/*----------------------------------
Base Style
----------------------------------*/
/* Body Style */
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Arial, "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS UI Gothic", Helvetica, sans-serif;
  font-size: 10px;
  font-size: 1.0rem;
  line-height: 1.75;
  color: #333;
  min-width: 1100px;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  font-feature-settings: "palt";
  padding-top: 64px;
  word-break: break-all;
}

@media only screen and (max-width: 768px) {
  body {
    min-width: 320px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }
}

/* Image Style */
img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
  touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* Tel Style */
a[href^="tel:"] {
  color: #333;
  text-decoration: none;
  cursor: default;
}

a[href^="tel:"]:hover img {
  opacity: 1;
}

a {
  text-decoration: underline;
}

a img {
  transition: all 0.5s;
  backface-visibility: hidden;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: 0.7;
}

/*----------------------------------
Header Style
----------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  background-color: #1a1a1a;
  padding: 12px 25px;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media only screen and (max-width: 768px) {
  .l-header {
    padding: 18px 15px;
  }
}

.l-header .l-header_logo a {
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .l-header .l-header_logo {
    max-width: 176px;
  }
}

.l-header .l-header_hamburger {
  position: absolute;
  right: 25px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  font-size: 0;
}

.l-header .l-header_hamburger a {
  position: relative;
  display: block;
  height: 14px;
  width: 16px;
}

.l-header .l-header_hamburger a span {
  position: absolute;
  display: block;
  height: 2px;
  background-color: #debb69;
  left: 0;
  width: 100%;
  transition: 0.5s;
}

.l-header .l-header_hamburger a span:nth-child(1) {
  top: 0;
}

.l-header .l-header_hamburger a span:nth-child(2) {
  top: 6px;
}

.l-header .l-header_hamburger a span:nth-child(3) {
  bottom: 0;
}

.l-header .l-header_hamburger a.is-active span:nth-child(1) {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  top: 6px;
}

.l-header .l-header_hamburger a.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header .l-header_hamburger a.is-active span:nth-child(3) {
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  bottom: 6px;
}

.l-header .l-header_menu {
  position: fixed;
  width: 100%;
  left: 0;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: auto;
}

.l-header .l-header_menu a {
  color: #fff;
}

.l-header .l-header_menu .l-header_menu_nav {
  text-align: center;
}

.l-header .l-header_menu .l-header_menu_nav li {
  border-bottom: 1px solid #333;
}

.l-header .l-header_menu .l-header_menu_nav li a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 30px 0;
  text-decoration: none;
}

.l-header .l-header_menu .l-header_menu_nav li a.js-spAccordion_btn:before {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 15px;
  display: none;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

@media only screen and (max-width: 768px) {
  .l-header .l-header_menu .l-header_menu_nav li a.js-spAccordion_btn:before {
    display: block;
  }
}

.l-header .l-header_menu .l-header_menu_nav li a.js-spAccordion_btn.is-active:before {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {
  .l-header .l-header_menu .l-header_menu_nav li a {
    padding: 22px 0;
  }
}

.l-header .l-header_menu .l-header_menu_nav li a > * {
  display: block;
}

.l-header .l-header_menu .l-header_menu_nav li a span {
  font-weight: bold;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: .1em;
  text-indent: .1em;
}

@media only screen and (max-width: 768px) {
  .l-header .l-header_menu .l-header_menu_nav li a span {
    font-size: 2.4rem;
  }
}

.l-header .l-header_menu .l-header_menu_nav li a small {
  margin-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .l-header .l-header_menu .l-header_menu_nav li a small {
    font-size: 1.2rem;
  }
}

.l-header .l-header_menu .l-header_menu_nav li > ul.u-bgYellow a {
  color: #333;
}

.l-header .l-header_menu .l-header_menu_nav li > ul li {
  border-bottom: none;
  text-align: left;
  border-top: 1px solid #fff;
  line-height: 1.5;
}

.l-header .l-header_menu .l-header_menu_nav li > ul li a {
  padding: 15px 15px;
}

.l-header .l-header_menu .l-header_menu_nav li > ul li a[target="_blank"] {
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-image: url(/assets/images/common/icon-blank.svg);
}

/*----------------------------------
Footer Style
----------------------------------*/
.l-footer {
  background-color: #1a1a1a;
  color: #fff;
}

.l-footer a {
  color: #fff;
  text-decoration: none;
}

.l-footer .l-footer_banner {
  padding: 25px 0;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_banner {
    padding: 20px 0;
  }
}

.l-footer .l-footer_banner .l-footer_banner_list {
justify-content: center; 
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_banner .l-footer_banner_list {
    margin-top: -3px;
  }
}

.l-footer .l-footer_banner .l-footer_banner_list li {
  margin-right: 6px;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_banner .l-footer_banner_list li {
    margin-top: 3px;
    width: 49.56522%;
    margin-right: 0.86957%;
  }
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_banner .l-footer_banner_list li:nth-child(2n) {
    margin-right: 0;
  }
}

.l-footer .l-footer_banner .l-footer_banner_list li:nth-child(4n) {
  margin-right: 0;
}

.l-footer .l-footer_banner .l-footer_banner_list li a {
  display: block;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_banner .l-footer_banner_list li img {
    width: 100%;
  }
}

.l-footer .l-footer_body {
  padding: 40px 0 50px;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_body {
    padding: 15px 0 30px;
  }
}

.l-footer .l-footer_nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.53333;
  margin-bottom: 35px;
}

.l-footer .l-footer_nav > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_nav {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.l-footer .l-footer_nav li {
  /*--width: 348px;--*/
  width: 254px;
  margin-right: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid #debb69;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_nav li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.l-footer .l-footer_nav li:nth-child(4n) {
  margin-right: 0;
}

.l-footer .l-footer_nav li.l-footer_nav_request a {
  background-image: url(/assets/images/common/icon-request.svg);
}

.l-footer .l-footer_nav li.l-footer_nav_lock a {
  background-image: url(/assets/images/common/icon-lock.svg);
}

.l-footer .l-footer_nav li.l-footer_nav_window a {
  background-image: url(/assets/images/common/icon-window.svg);
}

.l-footer .l-footer_nav li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: top 50% right -5px;
  padding-right: 35px;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_nav li a {
    padding-right: 0;
    min-height: 44px;
    background-position: top 50% right 0;
    background-size: 43px auto;
  }
}

.l-footer .l-footer_utility {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_utility {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.l-footer .l-footer_utility .l-footer_utility_left {
  font-size: 12px;
  font-size: 1.2rem;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_utility .l-footer_utility_left {
    font-size: 1.1rem;
  }
}

.l-footer .l-footer_utility .l-footer_utility_left .l-footer_utility_left_link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 5px;
  margin-top: -10px;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_utility .l-footer_utility_left .l-footer_utility_left_link {
    margin-bottom: 20px;
  }
}

.l-footer .l-footer_utility .l-footer_utility_left .l-footer_utility_left_link li {
  margin-right: 35px;
  margin-top: 10px;
}

.l-footer .l-footer_utility .l-footer_utility_left .l-footer_utility_left_link li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_utility .l-footer_utility_left .l-footer_utility_left_copy {
    text-align: center;
  }
}

.l-footer .l-footer_utility .l-footer_utility_left .l-footer_utility_left_copy small {
  font-size: 12px;
  font-size: 1.2rem;
}

.l-footer .l-footer_utility .l-footer_utility_search {
  width: 348px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_utility .l-footer_utility_search {
    width: 100%;
    margin-bottom: 20px;
  }
}

.l-footer .l-footer_utility .l-footer_utility_search input {
  font-size: 14px;
  font-size: 1.4rem;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  background-color: #333;
  border: none;
  color: #7e7e7e;
}

@media only screen and (max-width: 768px) {
  .l-footer .l-footer_utility .l-footer_utility_search input {
    font-size: 1.3rem;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
  }
}

.l-footer .l-footer_utility .l-footer_utility_search button {
  font-size: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  right: 18px;
}

/*----------------------------------
Content Style
----------------------------------*/
body.is-fix {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#l-wrapper {
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  #l-wrapper {
    font-size: 1.4rem;
  }
}

.l-wrap {
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .l-wrap {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-wrap > *:last-child {
  margin-bottom: 0 !important;
}

.l-sec {
  position: relative;
  padding: 60px 0;
}

.l-sec > *:last-child {
  margin-bottom: 0 !important;
}
.interview-l{
  float:left; width:50%; text-align:right; padding-right:50px;
}

.interview-r{
  float:left; width:50%; text-align:left; padding-left:50px;
}

@media only screen and (max-width: 768px) {
  .l-sec {
    padding: 45px 0 55px;
  }
  .interview-l,.interview-r{
    float:none; width:100%; text-align:center; padding:15px 0px;
  }
}

.l-sec02 {
  position: relative;
  margin-bottom: 75px;
}

.l-sec02 > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .l-sec02 {
    margin-bottom: 40px;
  }
}

.l-fullSec {
  position: relative;
  padding: 40px 0 160px;
}

.l-fullSec > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .l-fullSec {
    padding: 40px 0 80px;
  }
}

/*----------------------------------
Main Style
----------------------------------*/
/*----------------------------------
Navigation Style
----------------------------------*/
/*--デフォルトは紫--*/
.c-localNav {
  background-color: #7434ea;
}

@media only screen and (max-width: 768px) {
  .c-localNav {
    display: none;
  }
}

.c-localNav a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.c-localNav ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.c-localNav ul li {
  margin-right: 80px;
}

.c-localNav ul li:last-child {
  margin-right: 0;
}

.c-localNav ul li a {
  position: relative;
  display: block;
  padding: 16px 0;
}

.c-localNav ul li a[target="_blank"] {
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-image: url(/assets/images/common/icon-blank.svg);
}

.c-localNav ul li a.is-active:before {
  content: " ";
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  top: 100%;
  border-style: solid;
  border-width: 10px;
  border-color: #7434ea transparent transparent transparent;
}

.c-localNav.c-localNav--blue {
  background-color: #29b6f6;
}

.c-localNav.c-localNav--blue a {
  color: #fff;
}

.c-localNav.c-localNav--blue ul li a.is-active:before {
  border-color: #29b6f6 transparent transparent transparent;
}

.c-localNav.c-localNav--purple {
  background-color: #7434ea;
}

.c-localNav.c-localNav--purple a {
  color: #fff;
}

.c-localNav.c-localNav--purple ul li a.is-active:before {
  border-color: #7434ea transparent transparent transparent;
}

.c-localNav.c-localNav--green {
  background-color: #4fbe4e;
}

.c-localNav.c-localNav--green a {
  color: #fff;
}

.c-localNav.c-localNav--green ul li a.is-active:before {
  border-color: #4fbe4e transparent transparent transparent;
}

.c-localNav.c-localNav--yellow {
  background-color: #efdd10;
}

.c-localNav.c-localNav--yellow a {
  color: #333;
}

.c-localNav.c-localNav--yellow ul li a.is-active:before {
  border-color: #efdd10 transparent transparent transparent;
}

.c-localNav.c-localNav--red {
  background-color: #e40001;
}

.c-localNav.c-localNav--red a {
  color: #fff;
}

.c-localNav.c-localNav--red ul li a.is-active:before {
  border-color: #e40001 transparent transparent transparent;
}

.c-localNav.c-localNav--darkPurple {
  background-color: #4b4183;
}

.c-localNav.c-localNav--darkPurple a {
  color: #fff;
}

.c-localNav.c-localNav--darkPurple ul li a.is-active:before {
  border-color: #4b4183 transparent transparent transparent;
}

/*----------------------------------
Navigation Style
----------------------------------*/
/*----------------------------------
Project Style
----------------------------------*/
/*--top--*/
.p-mainVisual {
  overflow: hidden;
  position: relative;
  border-bottom: 4px solid #debb69;
  /*--& .p-mainVisual_ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    color: #fff;
    font-size: 8rem;
    line-height: 1.15;
    font-weight: bold;
    @include contentCentering();
    letter-spacing: .05em;

    @include media(sp) {
      font-size: 4rem;
    }

    >span {
      display: block;
    }

    &.js-mainVisual_ttl {
      >span {
        span {
          display: inline-block;
          opacity: 0;
          transition: 0.25s;
          transform: scale(1.1);

          &.is-animeted {
            opacity: 1;
            transform: scale(1);
          }
        }
      }
    }

  }--*/
}

.p-mainVisual .p-mainVisual_ttl {
  width: 912px;
  padding-left: 75px;
  position: absolute;
  bottom: 165px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  z-index: 10;
  display: none;
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_ttl {
    width: 100%;
    padding: 0 10px;
    bottom: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_ttl img {
    max-height: 28px;
  }
}

.p-mainVisual .p-mainVisual_logo {
  position: absolute;
  width: 186px;
  top: 50px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_logo {
    display: none;
  }
}

.p-mainVisual .p-mainVisual_logo.p-mainVisual_logo--left {
  margin-left: -600px;
}

.p-mainVisual .p-mainVisual_logo.p-mainVisual_logo--right {
  margin-left: 600px;
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_list .p-mainVisual_list_item {
    font-size: 1.2rem;
  }
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item:before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item:after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 80px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(194, 194, 194, 0.16) 15.57%, rgba(136, 136, 136, 0.32) 32.39%, rgba(87, 87, 87, 0.49) 48.66%, rgba(49, 49, 49, 0.64) 63.95%, rgba(22, 22, 22, 0.78) 78.04%, rgba(6, 6, 6, 0.9) 90.5%, black 100%);
  opacity: 0.5;
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item.slick-active:before {
  display: none;
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item .p-mainVisual_list_item_name {
  position: absolute;
  left: 25px;
  bottom: 10px;
  font-weight: bold;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_list .p-mainVisual_list_item .p-mainVisual_list_item_name {
    left: 15px;
  }
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item .c-iconCamera {
  position: absolute;
  right: 25px;
  bottom: 10px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_list .p-mainVisual_list_item .c-iconCamera {
    right: 15px;
    bottom: 13px;
  }
}

.p-mainVisual .p-mainVisual_list .p-mainVisual_list_item .p-name {
  position: absolute;
  left: 25px;
  bottom: 10px;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .p-mainVisual .p-mainVisual_list .p-mainVisual_list_item .p-name {
    left: 15px;
    bottom: 13px;
  }
}

.p-topPanelUnit {
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .p-topPanelUnit {
    display: block;
  }
}

.p-topPanelUnit .p-topPanel {
  width: 100%;
}

.p-topPanel {
  position: relative;
  color: #fff;
  height: 712px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .p-topPanel {
    height: 417px;
  }
}

@media only screen and (min-width: 769px) {
  .p-topPanel:nth-child(2) {
    transition-delay: .5s;
  }
}

@media only screen and (min-width: 769px) {
  .p-topPanel:nth-child(3) {
    transition-delay: 1s;
  }
}

.p-topPanel .p-topPanel_desc {
  width: 100%;
  text-align: center;
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_icon {
  display: none;
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_icon img {
  width: 115px;
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_ttl {
  line-height: 1;
  margin-bottom: 25px;
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_ttl > * {
  display: block;
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_ttl span {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .p-topPanel .p-topPanel_desc .p-topPanel_desc_ttl span {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_ttl small {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .p-topPanel .p-topPanel_desc .p-topPanel_desc_ttl small {
    font-size: 1.5rem;
  }
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_btn a {
  display: inline-block;
  font-weight: bold;
  color: #fff !important;
  background-color: #1a1a1a;
  width: 158px;
  line-height: 1.5;
  transition: 0.5s;
  padding: 12px 0;
  text-decoration: none;
}

.p-topPanel .p-topPanel_desc .p-topPanel_desc_btn a:hover {
  background-color: #fff;
  color: #333 !important;
}

.p-topPanel .c-iconCamera {
  position: absolute;
  right: 30px;
  bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .p-topPanel .c-iconCamera {
    right: 15px;
  }
}

.p-topPanel .p-name {
  position: absolute;
  left: 30px;
  bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .p-topPanel .p-neme {
    left: 15px;
  }
}

.p-topPanel.p-topPanel--figure {
  background-image: url(/assets/images/home/bg-figure-off.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topPanel.p-topPanel--figure {
    background-image: url(/assets/images/home/bg-figure-on.jpg);
  }
}

.p-topPanel.p-topPanel--figure:before {
  content: " ";
  background-image: url(/assets/images/home/bg-figure-on.jpg);
  display: block;
}

@media only screen and (min-width: 769px) {
  .p-topPanel.p-topPanel--figure:hover {
    background-image: url(/assets/images/home/bg-figure-on.jpg);
  }
}

.p-topPanel.p-topPanel--figure2020 {
  background-image: url(/assets/images/home/2020/bg-figure-off.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topPanel.p-topPanel--figure2020 {
    background-image: url(/assets/images/home/2020/bg-figure-on.jpg);
  }
}

.p-topPanel.p-topPanel--figure2020:before {
  content: " ";
  background-image: url(/assets/images/home/2020/bg-figure-on.jpg);
  display: block;
}

@media only screen and (min-width: 769px) {
  .p-topPanel.p-topPanel--figure2020:hover {
    background-image: url(/assets/images/home/2020/bg-figure-on.jpg);
  }
}

.p-topPanel.p-topPanel--speed {
  background-image: url(/assets/images/home/bg-speed-off.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topPanel.p-topPanel--speed {
    background-image: url(/assets/images/home/bg-speed-on.jpg);
  }
}

.p-topPanel.p-topPanel--speed:before {
  content: " ";
  background-image: url(/assets/images/home/bg-speed-on.jpg);
  display: block;
}

@media only screen and (min-width: 769px) {
  .p-topPanel.p-topPanel--speed:hover {
    background-image: url(/assets/images/home/bg-speed-on.jpg);
  }
}

.p-topPanel.p-topPanel--speed2020 {
  background-image: url(/assets/images/home/2020/bg-speed-off.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topPanel.p-topPanel--speed2020 {
    background-image: url(/assets/images/home/2020/bg-speed-on.jpg);
  }
}

.p-topPanel.p-topPanel--speed2020:before {
  content: " ";
  background-image: url(/assets/images/home/2020/bg-speed-on.jpg);
  display: block;
}

@media only screen and (min-width: 769px) {
  .p-topPanel.p-topPanel--speed2020:hover {
    background-image: url(/assets/images/home/2020/bg-speed-on.jpg);
  }
}

.p-topPanel.p-topPanel--short {
  background-image: url(/assets/images/home/bg-short-off.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topPanel.p-topPanel--short {
    background-image: url(/assets/images/home/bg-short-on.jpg);
  }
}

.p-topPanel.p-topPanel--short:before {
  content: " ";
  background-image: url(/assets/images/home/bg-short-on.jpg);
  display: block;
}

@media only screen and (min-width: 769px) {
  .p-topPanel.p-topPanel--short:hover {
    background-image: url(/assets/images/home/bg-short-on.jpg);
  }
}

.p-topPanel.p-topPanel--short2020 {
  background-image: url(/assets/images/home/2020/bg-short-off.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topPanel.p-topPanel--short2020 {
    background-image: url(/assets/images/home/2020/bg-short-on.jpg);
  }
}

.p-topPanel.p-topPanel--short2020:before {
  content: " ";
  background-image: url(/assets/images/home/2020/bg-short-on.jpg);
  display: block;
}

@media only screen and (min-width: 769px) {
  .p-topPanel.p-topPanel--short2020:hover {
    background-image: url(/assets/images/home/2020/bg-short-on.jpg);
  }
}

.p-topReccomend {
  background-size: cover;
  background-position: 50% 50%;
  background-image: url(/assets/images/home/bg-reccomend.jpg);
}

@media only screen and (max-width: 768px) {
  .p-topReccomend .l-sec {
    padding: 40px 0 70px;
  }
}

.p-topReccomend_slider {
  position: relative;
  overflow: hidden;
}

.p-topReccomend_slider .p-topReccomend_slider_list {
  padding: 0 !important;
}

.p-topReccomend_slider .p-topReccomend_slider_list .slick-list {
  padding: 0 !important;
}

.p-topReccomend_slider .p-topReccomend_slider_list li {
  margin-right: 80px;
}

@media only screen and (max-width: 768px) {
  .p-topReccomend_slider .p-topReccomend_slider_list li {
    width: 268px;
    margin-right: 40px;
  }
}

.p-topReccomend_slider .p-topReccomend_slider_list li a {
  display: block;
}

.p-topReccomend_slider .p-topReccomend_slider_list li.slick-active figure:before {
  display: none;
}

.p-topReccomend_slider .p-topReccomend_slider_list li figure {
  position: relative;
}

.p-topReccomend_slider .p-topReccomend_slider_list li figure:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.3);
}

.p-topReccomend_slider .p-topReccomend_slider_list li p {
  margin-top: 15px;
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .p-topReccomend_slider .p-topReccomend_slider_list li p {
    margin-top: 10px;
  }
}

.p-topReccomend_slider .p-topReccomend_slider_next, .p-topReccomend_slider .p-topReccomend_slider_prev {
  position: absolute;
  top: 125px;
  left: 50%;
}

@media only screen and (max-width: 768px) {
  .p-topReccomend_slider .p-topReccomend_slider_next, .p-topReccomend_slider .p-topReccomend_slider_prev {
    top: 64px;
    width: 5px;
  }
}

.p-topReccomend_slider .p-topReccomend_slider_next {
  margin-top: -11px;
  -ms-transform: scale(-1);
      transform: scale(-1);
  margin-left: 310px;
}

@media only screen and (max-width: 768px) {
  .p-topReccomend_slider .p-topReccomend_slider_next {
    margin-top: -15px;
    margin-left: 150px;
  }
}

.p-topReccomend_slider .p-topReccomend_slider_prev {
  margin-left: -310px;
}

@media only screen and (max-width: 768px) {
  .p-topReccomend_slider .p-topReccomend_slider_prev {
    margin-left: -160px;
  }
}

.p-topLoopSlider li {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .p-topLoopSlider li {
    width: 288px;
  }
}

.p-topLoopSlider li .c-iconCamera {
  color: #fff;
  position: absolute;
  right: 15px;
  bottom: 10px;
}

.p-topBannrs {
  padding: 30px 0;
text-align: center !important;
}

@media only screen and (max-width: 768px) {
  .p-topBannrs {
    padding: 20px 0 12px;
  }
}

.p-topBannrs .p-topBannrs_ttl {
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .p-topBannrs .p-topBannrs_ttl {
    margin-bottom: 15px;
  }
}

.p-topBannrs .p-topBannrs_list {
  display: -ms-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .p-topBannrs .p-topBannrs_list {
    margin-bottom: 15px;
    margin-top: -10px;
  display: -ms-flexbox;
  display: flex;
  }
}

.p-topBannrs .p-topBannrs_list li {
  /*--margin-right: 34px;--*/
  margin-right: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .p-topBannrs .p-topBannrs_list li {
    margin-top: 10px;
    width: 22.31884%;
    margin-right: 3.47826%;
  }
}

@media only screen and (min-width: 769px) {
  .p-topBannrs .p-topBannrs_list li:nth-child(8n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .p-topBannrs .p-topBannrs_list li:nth-child(4n) {
    margin-right: 0;
  }
}

.p-topBannrs .p-topBannrs_list li a {
  display: block;
}

.p-lineWrap {
  position: absolute;
  z-index: 10;
}

.p-lineWrap .p-line {
  fill: none;
  stroke: #debb69;
  stroke-width: 2px;
  opacity: 0;
}

.p-lineWrap svg {
  width: 400px;
  height: 800px;
}

@media only screen and (max-width: 768px) {
  .p-lineWrap svg {
    width: 200px;
    height: 400px;
  }
}

.p-lineWrap01 {
  position: absolute;
  top: 0;
  right: 30px;
}

.p-lineWrap02 {
  position: absolute;
  top: -100px;
  left: 30px;
  z-index: 10;
}

.p-lineWrap03 {
  position: absolute;
  top: -100px;
  right: 30px;
  z-index: 10;
}

/*--rink--*/
.p-rinkMap {
  position: relative;
  width: 889px;
  margin: 0 auto 90px;
}

@media only screen and (max-width: 768px) {
  .p-rinkMap {
    width: 100%;
    margin-bottom: 50px;
  }
}

.p-rinkMap .p-rinkMap_img {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .p-rinkMap .p-rinkMap_img {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .p-rinkMap .p-rinkMap_btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
}

.p-rinkMap .p-rinkMap_btn li {
  position: absolute;
  width: 202px;
}

@media only screen and (max-width: 768px) {
  .p-rinkMap .p-rinkMap_btn li {
    position: static;
    width: 48%;
    margin-right: 4%;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .p-rinkMap .p-rinkMap_btn li:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--hokkaido {
    right: 355px;
    top: 0;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--tohoku {
    right: 0;
    top: 161px;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--kanto {
    right: 0;
    top: 311px;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--chubu {
    right: 345px;
    top: 141px;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--kinki {
    right: 307px;
    top: 456px;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--chugoku {
    right: 456px;
    top: 218px;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--shikoku {
    right: 529px;
    top: 456px;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li.p-rinkMap_btn--kyushu {
    right: 686px;
    top: 288px;
  }
}

.p-rinkMap .p-rinkMap_btn li a {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border: 2px solid #5f5f5f;
  border-radius: 6px;
  padding: 6px 0;
  color: #333;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .p-rinkMap .p-rinkMap_btn li a {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 769px) {
  .p-rinkMap .p-rinkMap_btn li a:hover, .p-rinkMap .p-rinkMap_btn li a.is-hover {
    background-color: #5f5f5f;
    color: #fff;
  }
  .p-rinkMap .p-rinkMap_btn li a:hover:before, .p-rinkMap .p-rinkMap_btn li a.is-hover:before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.p-rinkMap .p-rinkMap_btn li a:before {
  content: " ";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  width: 8px;
  height: 8px;
  -ms-transform: rotate(135deg);
      transform: rotate(135deg);
}

@media only screen and (max-width: 768px) {
  .p-rinkMap .p-rinkMap_btn li a:before {
    margin-top: -5px;
    width: 6px;
    height: 6px;
  }
}

.p-rinkUnit > *:last-child {
  margin-bottom: 0 !important;
}

.p-rink {
  padding-bottom: 60px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 55px;
}

.p-rink > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .p-rink {
    padding-bottom: 30px;
    margin-bottom: 25px;
  }
}

.p-rink .p-rink_ttl {
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .p-rink .p-rink_ttl {
    font-size: 1.8rem;
  }
}

.p-rink .p-rink_ttl a {
  font-weight: bold;
}

.p-rink .p-rink_address {
  margin-bottom: 25px;
}

.p-rink .p-rink_detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.p-rink .p-rink_detail li {
  width: 536px;
  margin-right: 28px;
  padding: 10px 20px;
}

@media only screen and (max-width: 768px) {
  .p-rink .p-rink_detail li {
    width: 100%;
    margin-right: 0;
  }
}

.p-rink .p-rink_detail li:nth-child(2n) {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .p-rink .p-rink_detail li:nth-child(2n) {
    background-color: #f2f2f2;
  }
}

@media only screen and (min-width: 769px) {
  .p-rink .p-rink_detail li:nth-child(4n+1), .p-rink .p-rink_detail li:nth-child(4n+2) {
    background-color: #f2f2f2;
  }
}

.p-rink .p-rink_detail li dl {
  display: table;
  width: 100%;
}

.p-rink .p-rink_detail li dl dt, .p-rink .p-rink_detail li dl dd {
  display: table-cell;
  vertical-align: top;
}

.p-rink .p-rink_detail li dl dt {
  width: 115px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .p-rink .p-rink_detail li dl dt {
    width: 90px;
  }
}

/*--membres--*/
.p-loginForm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 30px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
}

@media only screen and (max-width: 768px) {
  .p-loginForm {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-loginForm p {
  margin-right: 20px;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .p-loginForm p {
    width: 3em;
    margin-right: 0;
  }
}

.p-loginForm input[type="text"] {
  width: 400px;
  border: 1px solid #dcdcdc;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .p-loginForm input[type="text"] {
    width: calc(100% - 4em);
    margin-right: 0;
  }
}

.p-loginForm button {
  display: inline-block;
  width: 100px;
  color: #fff;
  background-color: #1a1a1a;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  padding: 10px;
}

@media only screen and (max-width: 768px) {
  .p-loginForm button {
    margin-top: 20px;
    padding: 10px 0;
  }
}

/*--begin--*/
.p-beginTtl {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #e6eef4;
  background-image: url(/assets/images/school/begin/mainvisual.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 440px;
}

@media only screen and (max-width: 768px) {
  .p-beginTtl {
    height: 220px;
    background-size: auto 100%;
  }
}

.p-beginTtl .p-beginTtl_ttl {
  text-align: center;
  line-height: 1;
}

.p-beginTtl .p-beginTtl_ttl > * {
  display: block;
}

.p-beginTtl .p-beginTtl_ttl .p-beginTtl_ttl_ja {
  font-size: 48px;
  font-size: 4.8rem;
}

@media only screen and (max-width: 768px) {
  .p-beginTtl .p-beginTtl_ttl .p-beginTtl_ttl_ja {
    font-size: 2.4rem;
  }
}

.p-beginTtl .p-beginTtl_ttl .p-beginTtl_ttl_en {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .p-beginTtl .p-beginTtl_ttl .p-beginTtl_ttl_en {
    margin-top: 10px;
    font-size: 1.3rem;
  }
}

.p-beginPreparation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
  .p-beginPreparation {
    display: block;
  }
}

.p-beginPreparation .p-beginPreparation_img {
  margin-left: 70px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .p-beginPreparation .p-beginPreparation_img {
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.p-beginPreparation .p-beginPreparation_desc {
  -ms-flex: 1;
      flex: 1;
}

.p-beginPreparation .p-beginPreparation_desc > *:last-child {
  margin-bottom: 0 !important;
}

.p-beginPreparation .p-beginPreparation_desc .p-beginPreparation_desc_item {
  margin-bottom: 55px;
}

@media only screen and (max-width: 768px) {
  .p-beginPreparation .p-beginPreparation_desc .p-beginPreparation_desc_item {
    margin-bottom: 30px;
  }
}

.p-beginPreparation .p-beginPreparation_desc .p-beginPreparation_desc_item .c-mdlTtl {
  margin-bottom: 20px;
}

.p-beginWear {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.p-beginWear .p-beginWear_item {
  padding: 15px 20px 20px;
  border-left: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

@media only screen and (max-width: 768px) {
  .p-beginWear .p-beginWear_item {
    padding: 10px;
  }
}

.p-beginWear .p-beginWear_item figure {
  text-align: center;
  margin-bottom: 15px;
}

.p-beginWear .p-beginWear_item.p-beginWear_item--quater {
  width: 25%;
}

@media only screen and (max-width: 768px) {
  .p-beginWear .p-beginWear_item.p-beginWear_item--quater {
    width: 50%;
  }
}

.p-beginWear .p-beginWear_item.p-beginWear_item--half {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .p-beginWear .p-beginWear_item.p-beginWear_item--half {
    width: 100%;
  }
}

.p-beginWear.p-beginWear--col5 .p-beginWear_item {
  width: 20%;
}

@media only screen and (max-width: 768px) {
  .p-beginWear.p-beginWear--col5 .p-beginWear_item {
    width: 50%;
  }
}

.p-beginIceUnit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 30px;
}

.p-beginIceUnit > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .p-beginIceUnit {
    display: block;
  }
}

.p-beginIce {
  border: 1px solid #dcdcdc;
  padding: 35px;
}

@media only screen and (max-width: 768px) {
  .p-beginIce {
    padding: 10px;
    margin-bottom: 20px;
  }
}

.p-beginIce figure {
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 769px) {
  .p-beginIce.p-beginIce--quater {
    width: 254px;
  }
}

@media only screen and (min-width: 769px) {
  .p-beginIce.p-beginIce--half {
    width: 536px;
  }
}

.p-beginIce02 {
  border: 1px solid #dcdcdc;
  padding: 35px;
}

.p-beginIce02 > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 {
    padding: 10px;
    margin-bottom: 20px;
  }
}

.p-beginIce02 .p-beginIce02_imgUnit {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_imgUnit {
    display: block;
    margin-bottom: 20px;
  }
}

.p-beginIce02 .p-beginIce02_imgUnit figure {
  margin-right: 55px;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_imgUnit figure {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.p-beginIce02 .p-beginIce02_imgUnit figure:last-child {
  margin-right: 0;
  margin-bottom: 0;
}

.p-beginIce02 .p-beginIce02_focalUnit {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 65px;
}

.p-beginIce02 .p-beginIce02_focalUnit > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_focalUnit {
    display: block;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .p-beginIce02 .p-beginIce02_focalUnit.p-beginIce02_focalUnit--col2 .p-beginIce02_focal {
    width: 490px;
    margin-right: 40px;
  }
  .p-beginIce02 .p-beginIce02_focalUnit.p-beginIce02_focalUnit--col2 .p-beginIce02_focal:nth-child(2n) {
    margin-right: 0;
  }
}

.p-beginIce02 .p-beginIce02_focal {
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_focal {
    display: block;
    margin-bottom: 20px;
  }
}

.p-beginIce02 .p-beginIce02_focal .p-beginIce02_focal_img {
  margin-right: 35px;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_focal .p-beginIce02_focal_img {
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
}

.p-beginIce02 .p-beginIce02_focal .p-beginIce02_focal_desc {
  -ms-flex: 1;
      flex: 1;
}

.p-beginIce02 .p-beginIce02_focal .p-beginIce02_focal_desc > *:last-child {
  margin-bottom: 0 !important;
}

.p-beginIce02 .p-beginIce02_focal .p-beginIce02_focal_desc p {
  margin-bottom: 1em;
}

.p-beginIce02 .p-beginIce02_sliding {
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_sliding {
    display: block;
  }
}

.p-beginIce02 .p-beginIce02_sliding .p-beginIce02_focal {
  -ms-flex: 1;
      flex: 1;
}

.p-beginIce02 .p-beginIce02_sliding .p-beginIce02_sliding_img {
  margin-left: 65px;
}

@media only screen and (max-width: 768px) {
  .p-beginIce02 .p-beginIce02_sliding .p-beginIce02_sliding_img {
    margin-left: 0;
    text-align: center;
  }
}

/*----------------------------------
Utility Style
----------------------------------*/
.u-fwb {
  font-weight: bold !important;
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-underline {
  text-decoration: underline !important;
}

@media only screen and (min-width: 769px) {
  .u-tal_pc {
    text-align: left !important;
  }
  .u-tac_pc {
    text-align: center !important;
  }
  .u-tar_pc {
    text-align: right !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-tal_sp {
    text-align: left !important;
  }
  .u-tac_sp {
    text-align: center !important;
  }
  .u-tar_sp {
    text-align: right !important;
  }
}

.u-centerring {
  margin-left: auto;
  margin-right: auto;
}

/*----------------------------------
color
----------------------------------*/
.u-colorBase {
  color: #333 !important;
}

.u-colorTheme {
  color: #f28d01 !important;
}

.u-colorRed {
  color: #e40001 !important;
}

/*----------------------------------
background
----------------------------------*/
.u-bgGradBlack {
  background: linear-gradient(0deg, #333333 0%, #1a1a1a 100%);
}

.u-bgLightGray {
  background-color: #f2f2f2 !important;
}

.u-bgDarkGray {
  background-color: #dcdcdc !important;
}

.u-bgPurple {
  background-color: #7434ea !important;
}

.u-bgRed {
  background-color: #e40001 !important;
}

.u-bgBlue {
  background-color: #29b6f6 !important;
}

.u-bgYellow {
  background-color: #efdd10 !important;
}

.u-bgGreen {
  background-color: #4fbe4e !important;
}

.u-bgWhite {
  background-color: #fff !important;
}

/*----------------------------------
フォントサイズ
----------------------------------*/
/*----------------------------------
width
----------------------------------*/
.u-w100 {
  width: 100% !important;
}

/*----------------------------------
margin
----------------------------------*/
.u-mb0 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 769px) {
  .u-mb0_pc {
    margin-bottom: 0px !important;
  }
  .u-mb5_pc {
    margin-bottom: 5px !important;
  }
  .u-mb10_pc {
    margin-bottom: 10px !important;
  }
  .u-mb15_pc {
    margin-bottom: 15px !important;
  }
  .u-mb20_pc {
    margin-bottom: 20px !important;
  }
  .u-mb25_pc {
    margin-bottom: 25px !important;
  }
  .u-mb30_pc {
    margin-bottom: 30px !important;
  }
  .u-mb35_pc {
    margin-bottom: 35px !important;
  }
  .u-mb40_pc {
    margin-bottom: 40px !important;
  }
  .u-mb45_pc {
    margin-bottom: 45px !important;
  }
  .u-mb50_pc {
    margin-bottom: 50px !important;
  }
  .u-mb55_pc {
    margin-bottom: 55px !important;
  }
  .u-mb60_pc {
    margin-bottom: 60px !important;
  }
  .u-mb65_pc {
    margin-bottom: 65px !important;
  }
  .u-mb70_pc {
    margin-bottom: 70px !important;
  }
  .u-mb75_pc {
    margin-bottom: 75px !important;
  }
  .u-mb80_pc {
    margin-bottom: 80px !important;
  }
  .u-mb85_pc {
    margin-bottom: 85px !important;
  }
  .u-mb90_pc {
    margin-bottom: 90px !important;
  }
  .u-mb95_pc {
    margin-bottom: 95px !important;
  }
  .u-mb100_pc {
    margin-bottom: 100px !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-mb0_sp {
    margin-bottom: 0px !important;
  }
  .u-mb5_sp {
    margin-bottom: 5px !important;
  }
  .u-mb10_sp {
    margin-bottom: 10px !important;
  }
  .u-mb15_sp {
    margin-bottom: 15px !important;
  }
  .u-mb20_sp {
    margin-bottom: 20px !important;
  }
  .u-mb25_sp {
    margin-bottom: 25px !important;
  }
  .u-mb30_sp {
    margin-bottom: 30px !important;
  }
  .u-mb35_sp {
    margin-bottom: 35px !important;
  }
  .u-mb40_sp {
    margin-bottom: 40px !important;
  }
  .u-mb45_sp {
    margin-bottom: 45px !important;
  }
  .u-mb50_sp {
    margin-bottom: 50px !important;
  }
  .u-mb55_sp {
    margin-bottom: 55px !important;
  }
  .u-mb60_sp {
    margin-bottom: 60px !important;
  }
  .u-mb65_sp {
    margin-bottom: 65px !important;
  }
  .u-mb70_sp {
    margin-bottom: 70px !important;
  }
  .u-mb75_sp {
    margin-bottom: 75px !important;
  }
  .u-mb80_sp {
    margin-bottom: 80px !important;
  }
  .u-mb85_sp {
    margin-bottom: 85px !important;
  }
  .u-mb90_sp {
    margin-bottom: 90px !important;
  }
  .u-mb95_sp {
    margin-bottom: 95px !important;
  }
  .u-mb100_sp {
    margin-bottom: 100px !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 769px) {
  .u-mt0_pc {
    margin-top: 0px !important;
  }
  .u-mt5_pc {
    margin-top: 5px !important;
  }
  .u-mt10_pc {
    margin-top: 10px !important;
  }
  .u-mt15_pc {
    margin-top: 15px !important;
  }
  .u-mt20_pc {
    margin-top: 20px !important;
  }
  .u-mt25_pc {
    margin-top: 25px !important;
  }
  .u-mt30_pc {
    margin-top: 30px !important;
  }
  .u-mt35_pc {
    margin-top: 35px !important;
  }
  .u-mt40_pc {
    margin-top: 40px !important;
  }
  .u-mt45_pc {
    margin-top: 45px !important;
  }
  .u-mt50_pc {
    margin-top: 50px !important;
  }
  .u-mt55_pc {
    margin-top: 55px !important;
  }
  .u-mt60_pc {
    margin-top: 60px !important;
  }
  .u-mt65_pc {
    margin-top: 65px !important;
  }
  .u-mt70_pc {
    margin-top: 70px !important;
  }
  .u-mt75_pc {
    margin-top: 75px !important;
  }
  .u-mt80_pc {
    margin-top: 80px !important;
  }
  .u-mt85_pc {
    margin-top: 85px !important;
  }
  .u-mt90_pc {
    margin-top: 90px !important;
  }
  .u-mt95_pc {
    margin-top: 95px !important;
  }
  .u-mt100_pc {
    margin-top: 100px !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-mt0_sp {
    margin-top: 0px !important;
  }
  .u-mt5_sp {
    margin-top: 5px !important;
  }
  .u-mt10_sp {
    margin-top: 10px !important;
  }
  .u-mt15_sp {
    margin-top: 15px !important;
  }
  .u-mt20_sp {
    margin-top: 20px !important;
  }
  .u-mt25_sp {
    margin-top: 25px !important;
  }
  .u-mt30_sp {
    margin-top: 30px !important;
  }
  .u-mt35_sp {
    margin-top: 35px !important;
  }
  .u-mt40_sp {
    margin-top: 40px !important;
  }
  .u-mt45_sp {
    margin-top: 45px !important;
  }
  .u-mt50_sp {
    margin-top: 50px !important;
  }
  .u-mt55_sp {
    margin-top: 55px !important;
  }
  .u-mt60_sp {
    margin-top: 60px !important;
  }
  .u-mt65_sp {
    margin-top: 65px !important;
  }
  .u-mt70_sp {
    margin-top: 70px !important;
  }
  .u-mt75_sp {
    margin-top: 75px !important;
  }
  .u-mt80_sp {
    margin-top: 80px !important;
  }
  .u-mt85_sp {
    margin-top: 85px !important;
  }
  .u-mt90_sp {
    margin-top: 90px !important;
  }
  .u-mt95_sp {
    margin-top: 95px !important;
  }
  .u-mt100_sp {
    margin-top: 100px !important;
  }
}

@media only screen and (min-width: 769px) {
  .u-mr144_pc {
    margin-right: 144px !important;
  }
}

/*----------------------------------
padding
----------------------------------*/
.u-pb0 {
  padding-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 768px) {
  .u-pb0_sp {
    padding-bottom: 0px !important;
  }
  .u-pb5_sp {
    padding-bottom: 5px !important;
  }
  .u-pb10_sp {
    padding-bottom: 10px !important;
  }
  .u-pb15_sp {
    padding-bottom: 15px !important;
  }
  .u-pb20_sp {
    padding-bottom: 20px !important;
  }
  .u-pb25_sp {
    padding-bottom: 25px !important;
  }
  .u-pb30_sp {
    padding-bottom: 30px !important;
  }
  .u-pb35_sp {
    padding-bottom: 35px !important;
  }
  .u-pb40_sp {
    padding-bottom: 40px !important;
  }
  .u-pb45_sp {
    padding-bottom: 45px !important;
  }
  .u-pb50_sp {
    padding-bottom: 50px !important;
  }
  .u-pb55_sp {
    padding-bottom: 55px !important;
  }
  .u-pb60_sp {
    padding-bottom: 60px !important;
  }
  .u-pb65_sp {
    padding-bottom: 65px !important;
  }
  .u-pb70_sp {
    padding-bottom: 70px !important;
  }
  .u-pb75_sp {
    padding-bottom: 75px !important;
  }
  .u-pb80_sp {
    padding-bottom: 80px !important;
  }
  .u-pb85_sp {
    padding-bottom: 85px !important;
  }
  .u-pb90_sp {
    padding-bottom: 90px !important;
  }
  .u-pb95_sp {
    padding-bottom: 95px !important;
  }
  .u-pb100_sp {
    padding-bottom: 100px !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-pt0_sp {
    padding-top: 0px !important;
  }
  .u-pt5_sp {
    padding-top: 5px !important;
  }
  .u-pt10_sp {
    padding-top: 10px !important;
  }
  .u-pt15_sp {
    padding-top: 15px !important;
  }
  .u-pt20_sp {
    padding-top: 20px !important;
  }
  .u-pt25_sp {
    padding-top: 25px !important;
  }
  .u-pt30_sp {
    padding-top: 30px !important;
  }
  .u-pt35_sp {
    padding-top: 35px !important;
  }
  .u-pt40_sp {
    padding-top: 40px !important;
  }
  .u-pt45_sp {
    padding-top: 45px !important;
  }
  .u-pt50_sp {
    padding-top: 50px !important;
  }
  .u-pt55_sp {
    padding-top: 55px !important;
  }
  .u-pt60_sp {
    padding-top: 60px !important;
  }
  .u-pt65_sp {
    padding-top: 65px !important;
  }
  .u-pt70_sp {
    padding-top: 70px !important;
  }
  .u-pt75_sp {
    padding-top: 75px !important;
  }
  .u-pt80_sp {
    padding-top: 80px !important;
  }
  .u-pt85_sp {
    padding-top: 85px !important;
  }
  .u-pt90_sp {
    padding-top: 90px !important;
  }
  .u-pt95_sp {
    padding-top: 95px !important;
  }
  .u-pt100_sp {
    padding-top: 100px !important;
  }
}

/*----------------------------------
height
----------------------------------*/
@media only screen and (max-width: 768px) {
  .u-mh0_sp {
    max-height: 0px !important;
  }
  .u-mh1_sp {
    max-height: 1px !important;
  }
  .u-mh2_sp {
    max-height: 2px !important;
  }
  .u-mh3_sp {
    max-height: 3px !important;
  }
  .u-mh4_sp {
    max-height: 4px !important;
  }
  .u-mh5_sp {
    max-height: 5px !important;
  }
  .u-mh6_sp {
    max-height: 6px !important;
  }
  .u-mh7_sp {
    max-height: 7px !important;
  }
  .u-mh8_sp {
    max-height: 8px !important;
  }
  .u-mh9_sp {
    max-height: 9px !important;
  }
  .u-mh10_sp {
    max-height: 10px !important;
  }
  .u-mh11_sp {
    max-height: 11px !important;
  }
  .u-mh12_sp {
    max-height: 12px !important;
  }
  .u-mh13_sp {
    max-height: 13px !important;
  }
  .u-mh14_sp {
    max-height: 14px !important;
  }
  .u-mh15_sp {
    max-height: 15px !important;
  }
  .u-mh16_sp {
    max-height: 16px !important;
  }
  .u-mh17_sp {
    max-height: 17px !important;
  }
  .u-mh18_sp {
    max-height: 18px !important;
  }
  .u-mh19_sp {
    max-height: 19px !important;
  }
  .u-mh20_sp {
    max-height: 20px !important;
  }
  .u-mh21_sp {
    max-height: 21px !important;
  }
  .u-mh22_sp {
    max-height: 22px !important;
  }
  .u-mh23_sp {
    max-height: 23px !important;
  }
  .u-mh24_sp {
    max-height: 24px !important;
  }
  .u-mh25_sp {
    max-height: 25px !important;
  }
  .u-mh26_sp {
    max-height: 26px !important;
  }
  .u-mh27_sp {
    max-height: 27px !important;
  }
  .u-mh28_sp {
    max-height: 28px !important;
  }
  .u-mh29_sp {
    max-height: 29px !important;
  }
  .u-mh30_sp {
    max-height: 30px !important;
  }
  .u-mh31_sp {
    max-height: 31px !important;
  }
  .u-mh32_sp {
    max-height: 32px !important;
  }
  .u-mh33_sp {
    max-height: 33px !important;
  }
  .u-mh34_sp {
    max-height: 34px !important;
  }
  .u-mh35_sp {
    max-height: 35px !important;
  }
  .u-mh36_sp {
    max-height: 36px !important;
  }
  .u-mh37_sp {
    max-height: 37px !important;
  }
  .u-mh38_sp {
    max-height: 38px !important;
  }
  .u-mh39_sp {
    max-height: 39px !important;
  }
  .u-mh40_sp {
    max-height: 40px !important;
  }
  .u-mh41_sp {
    max-height: 41px !important;
  }
  .u-mh42_sp {
    max-height: 42px !important;
  }
  .u-mh43_sp {
    max-height: 43px !important;
  }
  .u-mh44_sp {
    max-height: 44px !important;
  }
  .u-mh45_sp {
    max-height: 45px !important;
  }
  .u-mh46_sp {
    max-height: 46px !important;
  }
  .u-mh47_sp {
    max-height: 47px !important;
  }
  .u-mh48_sp {
    max-height: 48px !important;
  }
  .u-mh49_sp {
    max-height: 49px !important;
  }
  .u-mh50_sp {
    max-height: 50px !important;
  }
  .u-mh51_sp {
    max-height: 51px !important;
  }
  .u-mh52_sp {
    max-height: 52px !important;
  }
  .u-mh53_sp {
    max-height: 53px !important;
  }
  .u-mh54_sp {
    max-height: 54px !important;
  }
  .u-mh55_sp {
    max-height: 55px !important;
  }
  .u-mh56_sp {
    max-height: 56px !important;
  }
  .u-mh57_sp {
    max-height: 57px !important;
  }
  .u-mh58_sp {
    max-height: 58px !important;
  }
  .u-mh59_sp {
    max-height: 59px !important;
  }
  .u-mh60_sp {
    max-height: 60px !important;
  }
  .u-mh61_sp {
    max-height: 61px !important;
  }
  .u-mh62_sp {
    max-height: 62px !important;
  }
  .u-mh63_sp {
    max-height: 63px !important;
  }
  .u-mh64_sp {
    max-height: 64px !important;
  }
  .u-mh65_sp {
    max-height: 65px !important;
  }
  .u-mh66_sp {
    max-height: 66px !important;
  }
  .u-mh67_sp {
    max-height: 67px !important;
  }
  .u-mh68_sp {
    max-height: 68px !important;
  }
  .u-mh69_sp {
    max-height: 69px !important;
  }
  .u-mh70_sp {
    max-height: 70px !important;
  }
  .u-mh71_sp {
    max-height: 71px !important;
  }
  .u-mh72_sp {
    max-height: 72px !important;
  }
  .u-mh73_sp {
    max-height: 73px !important;
  }
  .u-mh74_sp {
    max-height: 74px !important;
  }
  .u-mh75_sp {
    max-height: 75px !important;
  }
  .u-mh76_sp {
    max-height: 76px !important;
  }
  .u-mh77_sp {
    max-height: 77px !important;
  }
  .u-mh78_sp {
    max-height: 78px !important;
  }
  .u-mh79_sp {
    max-height: 79px !important;
  }
  .u-mh80_sp {
    max-height: 80px !important;
  }
  .u-mh81_sp {
    max-height: 81px !important;
  }
  .u-mh82_sp {
    max-height: 82px !important;
  }
  .u-mh83_sp {
    max-height: 83px !important;
  }
  .u-mh84_sp {
    max-height: 84px !important;
  }
  .u-mh85_sp {
    max-height: 85px !important;
  }
  .u-mh86_sp {
    max-height: 86px !important;
  }
  .u-mh87_sp {
    max-height: 87px !important;
  }
  .u-mh88_sp {
    max-height: 88px !important;
  }
  .u-mh89_sp {
    max-height: 89px !important;
  }
  .u-mh90_sp {
    max-height: 90px !important;
  }
  .u-mh91_sp {
    max-height: 91px !important;
  }
  .u-mh92_sp {
    max-height: 92px !important;
  }
  .u-mh93_sp {
    max-height: 93px !important;
  }
  .u-mh94_sp {
    max-height: 94px !important;
  }
  .u-mh95_sp {
    max-height: 95px !important;
  }
  .u-mh96_sp {
    max-height: 96px !important;
  }
  .u-mh97_sp {
    max-height: 97px !important;
  }
  .u-mh98_sp {
    max-height: 98px !important;
  }
  .u-mh99_sp {
    max-height: 99px !important;
  }
  .u-mh100_sp {
    max-height: 100px !important;
  }
}

/*----------------------------------
display
----------------------------------*/
@media only screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}

/*----------------------------------
Button Style
----------------------------------*/
.c-btn_wrap {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .c-btn_wrap {
    padding: 0 15px;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  color: #fff !important;
  background-color: #1a1a1a;
  max-width: 348px;
  width: 100%;
  line-height: 1.5;
  font-weight: bold;
  padding: 20px 0;
  background-repeat: no-repeat;
  transition: all 0.5s;
  text-align: center;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .c-btn {
    width: 100%;
    max-width: 100%;
    padding: 17px 0;
  }
}

.c-btn:hover {
  background-color: #fff;
  color: #333 !important;
}

.c-btn:before {
  content: " ";
  position: absolute;
  right: 20px;
  top: 50%;
  -ms-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  border-top: 3px solid #debb69;
  border-right: 3px solid #debb69;
  width: 7px;
  height: 7px;
}

@media only screen and (max-width: 768px) {
  .c-btn:before {
    width: 6px;
    height: 6px;
    border-top: 2px solid #debb69;
    border-right: 2px solid #debb69;
  }
}

.c-btn.c-btn--rev:before {
  -ms-transform: translateY(-50%) rotate(-135deg);
      transform: translateY(-50%) rotate(-135deg);
  right: auto;
  left: 20px;
}

.c-btn.c-btn--top:before {
  margin-top: 3px;
  -ms-transform: translateY(-50%) rotate(-45deg);
      transform: translateY(-50%) rotate(-45deg);
}

.c-btn.c-btn--plus {
  background-image: url(/assets/images/common/icon-plus.svg);
  background-position: right 20px top 50%;
}

@media only screen and (max-width: 768px) {
  .c-btn.c-btn--plus {
    background-size: 14px auto;
  }
}

.c-btn.c-btn--plus:before {
  display: none;
}

.c-btnUnit {
  display: -ms-flexbox;
  display: flex;
  margin-top: -28px;
}

@media only screen and (max-width: 768px) {
  .c-btnUnit {
    display: block;
    margin-top: 0;
  }
}

.c-btnUnit.c-btnUnit--center {
  -ms-flex-pack: center;
      justify-content: center;
}

.c-btnUnit.c-btnUnit--center li:last-child {
  margin-right: 0;
}

.c-btnUnit.c-btnUnit--col3 li {
  width: 348px;
  margin-right: 28px;
}

@media only screen and (max-width: 768px) {
  .c-btnUnit.c-btnUnit--col3 li {
    width: 100%;
  }
}

.c-btnUnit.c-btnUnit--col3 li:nth-child(3n) {
  margin-right: 0;
}

.c-btnUnit li {
  margin-top: 28px;
}

@media only screen and (max-width: 768px) {
  .c-btnUnit li:first-child {
    margin-top: 0;
    margin-right: 0 !important;
  }
}

.c-btnUnit li a {
  width: 100%;
}

.c-tabBtn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 35px;
}

@media only screen and (max-width: 768px) {
  .c-tabBtn {
    margin-top: -10px;
  }
}

@media only screen and (max-width: 768px) {
  .c-tabBtn li {
    width: 48%;
    margin-right: 4%;
    margin-top: 10px;
  }
  .c-tabBtn li:nth-child(2n) {
    margin-right: 0;
  }
}

.c-tabBtn li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #f2f2f2;
  font-weight: bold;
  line-height: 1.5;
  padding: 14px 0;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.c-tabBtn li a.is-active {
  color: #fff;
  background-color: #666;
}

@media only screen and (max-width: 768px) {
  .c-tabBtn.c-tabBtn--col1SP li {
    width: 100%;
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .c-tabBtn.c-tabBtn--col3 li {
    width: 348px;
    margin-right: 28px;
  }
  .c-tabBtn.c-tabBtn--col3 li:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .c-tabBtn.c-tabBtn--col4 li {
    width: 254px;
    margin-right: 28px;
  }
  .c-tabBtn.c-tabBtn--col4 li:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .c-tabBtn.c-tabBtn--col5 li {
    width: 200px;
    margin-right: 25px;
  }
  .c-tabBtn.c-tabBtn--col5 li:last-child {
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .c-tabBtn.c-tabBtn--col8 li {
    width: 127px;
    margin-right: 12px;
  }
  .c-tabBtn.c-tabBtn--col8 li:last-child {
    margin-right: 0;
  }
}

/*----------------------------------
Dialog Style
----------------------------------*/
/*----------------------------------
Grid Style
----------------------------------*/
/*----------------------------------
Heading Style
----------------------------------*/
.c-pageTtl {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl {
    display: block;
  }
}

.c-pageTtl .c-pageTtl_desc {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  background-color: #fff;
  height: 616px;
  width: 515px;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .c-pageTtl_desc {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
}

.c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_icon {
  display: none;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_icon img {
    width: 96px;
  }
}

.c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_ttl {
  line-height: 1.5;
  margin-top: -5px;
}

.c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_ttl > * {
  display: block;
  font-weight: bold;
}

.c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_ttl span {
  font-size: 40px;
  font-size: 4rem;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_ttl span {
    font-size: 2.8rem;
  }
}

.c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_ttl small {
  font-size: 18px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .c-pageTtl_desc .c-pageTtl_desc_ttl small {
    font-size: 1.3rem;
  }
}

.c-pageTtl .c-pageTtl_img {
  -ms-flex: 1;
      flex: 1;
  height: 616px;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .c-pageTtl_img {
    height: auto;
  }
}

.c-pageTtl .c-pageTtl_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.c-pageTtl .c-iconCamera {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #333;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .c-iconCamera {
    right: 10px;
    bottom: 10px;
  }
}

.c-pageTtl .p-name {
  position: absolute;
  left: 530px;
  bottom: 15px;
  color: #333;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl .p-name {
    left: 10px;
    bottom: 10px;
  }
}

.c-pageTtl02 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  text-align: center;
  height: 440px;
  position: relative;
  background-size: cover;
  background-position: 30% 50%;
  color: #fff;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl02 {
    height: 220px;
  }
}

.c-pageTtl02.c-pageTtl02--figure {
  background-image: url(/assets/images/figure/mainvisual-under.jpg);
}

.c-pageTtl02.c-pageTtl02--speed {
  background-image: url(/assets/images/speed/mainvisual-under.jpg);
}

.c-pageTtl02.c-pageTtl02--short {
  background-image: url(/assets/images/short/mainvisual-under.jpg);
}

.c-pageTtl02.c-pageTtl02--jsf {
  background-image: url(/assets/images/jsf/mainvisual-under.jpg);
}

.c-pageTtl02.c-pageTtl02--school {
  background-image: url(/assets/images/school/mainvisual-under.jpg);
}

.c-pageTtl02.c-pageTtl02--rink {
  background-image: url(/assets/images/rink/mainvisual-under.jpg);
}

.c-pageTtl02.c-pageTtl02--column1 {
  background-image: url(/assets/images/column/mainvisual-under-c-1.jpg);
}

.c-pageTtl02.c-pageTtl02--column2 {
  background-image: url(/assets/images/column/mainvisual-under-c-2.jpg);
}

.c-pageTtl02.c-pageTtl02--column3 {
  background-image: url(/assets/images/column/mainvisual-under-c-3.jpg);
}

.c-pageTtl02.c-pageTtl02--column4 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-4.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02.c-pageTtl02--column_x {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-xx.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-pageTtl02.c-pageTtl02--column5 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-5.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02.c-pageTtl02--column6 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-6.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02.c-pageTtl02--column7 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-7.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02.c-pageTtl02--column8 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-8.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02.c-pageTtl02--column9 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-9.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02.c-pageTtl02--column10 {
  background-color: #bbb;
  background-image: url(/assets/images/column/mainvisual-top-c-10.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-pageTtl02 .c-pageTtl02_icon {
  margin-bottom: 10px;
  display: none;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl02 .c-pageTtl02_icon img {
    width: 40px;
  }
}

.c-pageTtl02 .c-pageTtl02_ttl > * {
  display: block;
  font-weight: bold;
}

.c-pageTtl02 .c-pageTtl02_ttl span {
  font-size: 40px;
  font-size: 4rem;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl02 .c-pageTtl02_ttl span {
    font-size: 2.8rem;
  }
}

.c-pageTtl02 .c-pageTtl02_ttl small {
  font-size: 18px;
  font-size: 1.8rem;
}

@media only screen and (max-width: 768px) {
  .c-pageTtl02 .c-pageTtl02_ttl small {
    font-size: 1.3rem;
  }
}

.c-secTtl {
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .c-secTtl {
    margin-bottom: 55px;
  }
}

.c-secTtl > span {
  display: block;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .c-secTtl > span {
    font-size: 2.5rem;
  }
}

.c-secTtl > small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .c-secTtl > small {
    font-size: 1.4rem;
  }
}

.c-secTtl.c-secTtl--white {
  color: #fff;
}

.c-secTtl.js-fadeTtl > span span {
  opacity: 0;
  transition: 0.25s;
}

.c-secTtl.js-fadeTtl > span span.is-animeted {
  opacity: 1;
}

.c-secTtl.js-fadeTtl > small {
  opacity: 0;
  transition: 0.5s;
}

.c-secTtl.js-fadeTtl > small.is-animeted {
  opacity: 1;
}

.c-secTtl02 {
  font-weight: bold;
  text-align: center;
  background-color: #f2f2f2;
  margin-bottom: 40px;
  padding: 15px 15px;
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-secTtl02 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .c-secTtl02 {
    font-size: 1.8rem;
    padding: 11px 15px;
  }
}

.c-secTtl03 {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.3;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 50px;
  border-top: 1px solid #333;
}

@media only screen and (max-width: 768px) {
  .c-secTtl03 {
    font-size: 2.5rem;
    padding-top: 30px;
    margin-bottom: 30px;
  }
}

.c-mdlTtl {
  border-left: 8px solid #7434ea;
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 3px 0 3px 10px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .c-mdlTtl {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.c-mdlTtl.c-mdlTtl--blue {
  border-left: 8px solid #29b6f6;
}

.c-mdlTtl.c-mdlTtl--purple {
  border-left: 8px solid #7434ea;
}

.c-mdlTtl.c-mdlTtl--green {
  border-left: 8px solid #4fbe4e;
}

.c-mdlTtl.c-mdlTtl--yellow {
  border-left: 8px solid #efdd10;
}

.c-mdlTtl.c-mdlTtl--red {
  border-left: 8px solid #e40001;
}

.c-mdlTtl.c-mdlTtl--darkPurple {
  border-left: 8px solid #4b4183;
}

.c-mdlTtl02 {
  font-weight: bold;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .c-mdlTtl02 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.c-playerTtl {
  line-height: 1.5;
  border-top: 1px solid #1a1a1a;
  padding-top: 25px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .c-playerTtl {
    padding-top: 20px;
  }
}

.c-playerTtl > * {
  display: block;
  font-weight: bold;
}

.c-playerTtl span {
  font-size: 30px;
  font-size: 3rem;
}

@media only screen and (max-width: 768px) {
  .c-playerTtl span {
    font-size: 2rem;
  }
}

.c-playerTtl small {
  display: block;
  color: #7434ea;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .c-playerTtl small {
    font-size: 1.4rem;
  }
}

.c-playerTtl.c-playerTtl--blue small {
  color: #29b6f6;
}

.c-playerTtl.c-playerTtl--purple small {
  color: #7434ea;
}

.c-playerTtl.c-playerTtl--green small {
  color: #4fbe4e;
}

.c-playerTtl.c-playerTtl--yellow small {
  color: #efdd10;
}

.c-playerTtl.c-playerTtl--red small {
  color: #e40001;
}

.c-playerTtl.c-playerTtl--darkPurple small {
  color: #4b4183;
}

.c-partsTtl {
  background-color: #666;
  color: #fff;
  margin-bottom: 50px;
  font-weight: bold;
}

.c-partsTtl span {
  display: inline-block;
  background-color: #333;
  padding: 6px 20px;
}

/*----------------------------------
Text Style
----------------------------------*/
.c-iconCamera {
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .c-iconCamera {
    -ms-transform-origin: right center;
        transform-origin: right center;
    -ms-transform: scale(0.7);
        transform: scale(0.7);
  }
}

.c-iconCamera span {
  display: inline-block;
  padding-left: 25px;
  background-repeat: no-repeat;
  background-image: url(/assets/images/common/icon-camera.svg);
  background-position: left 0 top 50%;
}

.p-name {
  font-size: 10px;
  font-size: 1rem;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .p-name {
    -ms-transform-origin: left center;
        transform-origin: left center;
    -ms-transform: scale(0.7);
        transform: scale(0.7);
  }
}

.c-label {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  width: 98px;
  line-height: 1.5;
  text-align: center;
  padding: 3px 0;
  background-color: #1a1a1a;
}

@media only screen and (max-width: 768px) {
  .c-label {
    font-size: 1rem;
    width: 70px;
    padding: 2px 0;
  }
}

.c-label.c-label--red {
  background-color: #e40001;
}

.c-label.c-label--purple {
  background-color: #7434ea;
}

.c-label.c-label--gray {
  background-color: #666;
}

.c-label.c-label--yellow {
  background-color: #efdd10;
  color: #333;
}

.c-label.c-label--green {
  background-color: #4fbe4e;
}

.c-label.c-label--blue {
  background-color: #29b6f6;
}

.c-label.c-label--bl {
  background-color: #1a1a1a;
  border-left: 6px solid #debb69;
}

.c-noteTxt {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
}

@media only screen and (max-width: 768px) {
  .c-noteTxt {
    font-size: 1.2rem;
  }
}

.c-noteTxt:before {
  content: "※";
}

.c-txt {
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .c-txt {
    margin-bottom: 30px;
  }
}

.c-encloseTxt {
  border: 10px solid #f2f2f2;
  padding: 25px 30px;
  margin-bottom: 50px;
}

.c-encloseTxt > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c-encloseTxt {
    padding: 15px;
    margin-bottom: 30px;
  }
}

.c-encloseTxt p {
  margin-bottom: 1em;
}

.c-techiqueLead {
  margin-bottom: 100px;
}

.c-techiqueLead > *:last-child {
  margin-bottom: 0 !important;
}

.c-techiqueLead > * {
  margin-bottom: 1em !important;
}

.c-techiqueLead .c-circleList li, .c-techiqueLead .c-numList02 li {
  margin-bottom: 0;
}
.c-circleList li a {
  color:#333;
  font-weight: bold;
  text-decoration: none;
}
.c-circleList li a:hover{
  color:#a00;
}

@media only screen and (max-width: 768px) {
  .c-techiqueLead {
    margin-bottom: 50px;
  }
}

.c-detailsTxts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 30px;
}

.c-detailsTxts .c-detailsTxts_date {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .c-detailsTxts .c-detailsTxts_date {
    font-size: 1.1rem;
    margin-right: 20px;
  }
}

.c-detailsTxts .c-label {
  margin-right: 10px;
}

/*----------------------------------
Box Style
----------------------------------*/
.c-postUnit {
  margin-bottom: 60px;
}

.c-postUnit > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c-postUnit {
    margin-bottom: 30px;
  }
}

.c-postUnit.c-postUnit--white a {
  color: #fff;
}

.c-postUnit.c-postUnit--white .c-post {
  border-bottom: 1px solid #363636;
}

.c-postUnit.c-postUnit--white .c-post a:before {
  border-top: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
}

.c-postUnit.c-postUnit--white .c-post .c-post_subTtl {
  font-weight: normal;
  color: #a0a0a0;
}
.c-postUnit.c-postUnit--white .c-post .c-post_subTtl.sub_strong {
  font-weight: bold;
}

.c-post {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 30px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
  .c-post {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}

.c-post a {
  position: relative;
  display: block;
  color: #333;
  padding-right: 40px;
  text-decoration: none;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .c-post a {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .c-post a {
    padding-right: 45px;
  }
}

.c-post a:hover .c-post_ttl {
  text-decoration: underline;
}

.c-post a:before {
  content: " ";
  position: absolute;
  right: 20px;
  top: 50%;
  -ms-transform: translateY(-50%) rotate(45deg);
      transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #9fa0a0;
  border-right: 1px solid #9fa0a0;
  width: 9px;
  height: 9px;
}

@media only screen and (max-width: 768px) {
  .c-post a:before {
    width: 6px;
    height: 6px;
  }
}

.c-post .c-post_status {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 10px;
}

.c-post .c-post_status .c-post_status_date {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 30px;
}

@media only screen and (max-width: 768px) {
  .c-post .c-post_status .c-post_status_date {
    font-size: 1.1rem;
    margin-right: 20px;
  }
}

.c-post .c-post_status .c-label {
  margin-right: 10px;
}

.c-post .c-post_ttl {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
}

@media only screen and (max-width: 768px) {
  .c-post .c-post_ttl {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 5px;
  }
}

.c-post .c-post_subTtl {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.85714;
  color: #666;
}
.c-post .sub_strong {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .c-post .c-post_subTtl {
    font-size: 1.1rem;
    line-height: 2;
  }
}

.c-profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 65px;
}

@media only screen and (max-width: 768px) {
  .c-profile {
    display: block;
  }
}

.c-profile .c-profile_img {
  width: 320px;
}

@media only screen and (max-width: 768px) {
  .c-profile .c-profile_img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 30px;
  }
}

.c-profile .c-profile_desc {
  width: 748px;
}

@media only screen and (max-width: 768px) {
  .c-profile .c-profile_desc {
    width: 100%;
  }
}

.c-profile .c-profile_desc .c-profile_desc_table {
  width: 100%;
  line-height: 1.6;
}

.c-profile .c-profile_desc .c-profile_desc_table tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.c-profile .c-profile_desc .c-profile_desc_table tr th, .c-profile .c-profile_desc .c-profile_desc_table tr td {
  padding: 10px 15px;
}

.c-profile .c-profile_desc .c-profile_desc_table tr th {
  font-weight: bold;
  width: 200px;
}

@media only screen and (max-width: 768px) {
  .c-profile .c-profile_desc .c-profile_desc_table tr th {
    width: 100px;
  }
}

.c-profile .c-profile_desc .c-profile_desc_table tr span {
  font-weight: normal;
  display: block;
  color: #666;
  font-size: 12px;
  font-size: 1.2rem;
}

.c-imgBox {
  margin-bottom: 50px;
}
.c-imgBox2 {
  margin-bottom: 50px;
}
.c-imgBox.c-imgBox--quarter .c-imgBox_img {
  width: 254px;
}
.c-imgBox.c-imgBox--quarter .c-imgBox_img2 {
  width: 254px;
}
.c-imgBox_desc_txt .img01{
  float:right;
  margin-left:10px;
  margin-bottom:10px;
}
.c-imgBox_desc_txt .img02{
  float:left;
  margin-right:10px;
  margin-bottom:10px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox.c-imgBox--quarter .c-imgBox_img {
    width: 100%;
  }
  .c-imgBox.c-imgBox--quarter .c-imgBox_img2 {
    width: 100%;
  }
  .c-imgBox_desc_txt .img01, .c-imgBox_desc_txt .img02{
    float:none;
	width:100%;
	margin-left: auto;
	margin-right: auto;
  }
}

.c-imgBox.c-imgBox--five .c-imgBox_img {
  width: 198px;
}

.c-imgBox.c-imgBox--five .c-imgBox_img2 {
  width: 580px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox.c-imgBox--five .c-imgBox_img {
    width: 100%;
  }
  .c-imgBox.c-imgBox--five .c-imgBox_img2 {
    width: 100%;
  }
}

.c-imgBox.c-imgBox--right .c-imgBox_img {
  float: right;
  margin-right: 0;
  margin-left: 28px;
}
.c-imgBox.c-imgBox--right .c-imgBox_img2 {
  float: right;
  margin-right: 0;
  margin-left: 28px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox.c-imgBox--right .c-imgBox_img {
    float: none;
    margin-left: 0;
  }
  .c-imgBox.c-imgBox--right .c-imgBox_img2 {
    float: none;
    margin-left: 0;
  }
}

.c-imgBox .c-imgBox_img {
  float: left;
  margin-right: 28px;
  margin-bottom: 28px;
  max-width: 536px;
}

.c-imgBox .c-imgBox_img2 {
  float: left;
  margin-right: 28px;
  margin-bottom: 28px;
  max-width: 536px;
}

.c-imgBox .c-imgBox_img3 {
  float: right;
  margin-right: 28px;
  margin-bottom: 28px;
  max-width: 220px;
}

.c-imgBox .c-imgBox_img5 {
  float: right;
  margin-right: 28px;
  margin-bottom: 28px;
  max-width: 220px;
}

.c-imgBox .c-imgBox_img6 {
  float: right;
  margin-right: 28px;
  margin-bottom: 28px;
  max-width: 290px;
}

.c-imgBox .c-imgBox_img7 {
  float: right;
  /*margin-right: 28px;*/
  margin-bottom: 28px;
  max-width: 320px;
}

.c-imgBox .c-imgBox_img8 {
  float: right;
  /*margin-right: 28px;*/
  margin-bottom: 28px;
  max-width: 220px;
}

.c-imgBox .c-imgBox_img9 {
  float: right;
  /*margin-right: 28px;*/
  margin-bottom: 28px;
  max-width: 300px;
}

.c-imgBox .c-imgBox_img_chris {
  float: right;
  /*margin-right: 28px;*/
  margin-bottom: 28px;
  max-width: 320px;
}

.c-imgBox .c-imgBox_img_pc {
  float: right;
  margin-right: 28px;
  margin-bottom: 28px;
  max-width: 220px;
}
.c-imgBox .c-imgBox_img_sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-imgBox .c-imgBox_img {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_img2 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_img3 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_img7 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_img8 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_img9 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_chris {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
  .c-imgBox .c-imgBox_img_pc {
	display: none;
  }
  .c-imgBox .c-imgBox_img_sp {
	display: block;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 10px;
    float: none;
  }
}

.c-imgBox .c-imgBox_img img {
  width: 100%;
}
.c-imgBox .c-imgBox_img2 img {
  width: 100%;
}
.c-imgBox .c-imgBox_img3 img {
  width: 100%;
}
.c-imgBox .c-imgBox_img5 img {
  width: 100%;
}
.c-imgBox .c-imgBox_img6 img {
  width: 100%;
}

.c-imgBox .c-imgBox_img figcaption {
  margin-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
.c-imgBox .c-imgBox_img2 figcaption {
  margin-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
.c-imgBox .c-imgBox_img3 figcaption {
  margin-top: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
.c-imgBox .c-imgBox_desc > *:last-child {
  margin-bottom: 0 !important;
}

.c-imgBox .c-imgBox_desc p {
  margin-bottom: 25px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox .c-imgBox_desc p {
    margin-bottom: 10px;
  }
}

.c-imgBox02Unit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -28px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox02Unit {
    display: block;
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 769px) {
  .c-imgBox02Unit.c-imgBox02Unit--col2 .c-imgBox02 {
    width: 536px;
    margin-right: 28px;
  }
  .c-imgBox02Unit.c-imgBox02Unit--col2 .c-imgBox02:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .c-imgBox02Unit.c-imgBox02Unit--col3 .c-imgBox02 {
    width: 348px;
    margin-right: 28px;
  }
  .c-imgBox02Unit.c-imgBox02Unit--col3 .c-imgBox02:nth-child(3n) {
    margin-right: 0;
  }
}

.c-imgBox02Unit .c-imgBox02 {
  margin-top: 28px;
  margin-bottom: 0;
  margin-left: 0;
  max-width: auto;
}

@media only screen and (max-width: 768px) {
  .c-imgBox02Unit .c-imgBox02:first-child {
    margin-top: 0;
  }
}

.c-imgBox02 {
  max-width: 724px;
  margin: 0 auto 50px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox02 {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.c-imgBox02.c-imgBox02--small {
  max-width: 536px;
}

@media only screen and (max-width: 768px) {
  .c-imgBox02.c-imgBox02--small {
    max-width: 100%;
  }
}

.c-imgBox02 img {
  width: 100%;
}

.c-imgBox02 figcaption {
  margin-top: 15px;
}

.c-technique {
  margin-bottom: 85px;
}

@media only screen and (max-width: 768px) {
  .c-technique {
    margin-bottom: 40px;
  }
}

.c-technique .c-technique_ttl {
  vertical-align: middle;
  font-weight: bold;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: 1.3;
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .c-technique .c-technique_ttl {
    margin-bottom: 20px;
  }
}

.c-technique .c-technique_ttl span {
  font-size: 40px;
  font-size: 4rem;
}

@media only screen and (max-width: 768px) {
  .c-technique .c-technique_ttl span {
    font-size: 2.8rem;
  }
}

.c-technique .c-technique_ttl small {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 15px;
}

@media only screen and (max-width: 768px) {
  .c-technique .c-technique_ttl small {
    font-size: 1.4rem;
  }
}

.c-technique .c-technique_img {
  margin-bottom: 5px;
}

.c-technique .c-technique_def dt {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .c-technique .c-technique_def dt {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.c-calender .c-calender_month_wrap {
  position: relative;
  margin-bottom: 35px;
}

.c-calender .c-calender_month {
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.c-calender .c-calender_month > * {
  display: block;
}

.c-calender .c-calender_month .c-calender_month_num {
  font-size: 64px;
  font-size: 6.4rem;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_month .c-calender_month_num {
    font-size: 3.2rem;
  }
}

.c-calender .c-calender_month .c-calender_month_en {
  margin-top: 3px;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_month .c-calender_month_en {
    margin-top: 10px;
  }
}

.c-calender .c-calender_prev, .c-calender .c-calender_next {
  display: inline-block;
  position: absolute;
  bottom: 0;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_prev, .c-calender .c-calender_next {
    bottom: -5px;
  }
}

.c-calender .c-calender_prev:before, .c-calender .c-calender_next:before {
  content: " ";
  position: absolute;
  top: .5em;
  width: 8px;
  height: 8px;
}

.c-calender .c-calender_prev {
  left: 30px;
  padding-left: 30px;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_prev {
    left: 0;
    padding-left: 15px;
  }
}

.c-calender .c-calender_prev:before {
  left: 0;
  border-top: 2px solid #9fa0a0;
  border-left: 2px solid #9fa0a0;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.c-calender .c-calender_next {
  right: 30px;
  padding-right: 30px;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_next {
    right: 0;
    padding-right: 15px;
  }
}

.c-calender .c-calender_next:before {
  right: 0;
  border-top: 2px solid #9fa0a0;
  border-right: 2px solid #9fa0a0;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.c-calender .c-calender_utility {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 40px;
}

.c-calender .c-calender_utility .c-calender_utility_form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.c-calender .c-calender_utility .c-calender_utility_form > * {
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_utility .c-calender_utility_form > * {
    margin-right: 10px;
  }
}

.c-calender .c-calender_utility .c-calender_utility_form > *:last-child {
  margin-right: 0;
}

.c-calender .c-calender_utility .c-calender_utility_form select {
  width: 150px;
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-image: url(/assets/images/common/select-arrow.svg);
  background-position: right 15px top 50%;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_utility .c-calender_utility_form select {
    width: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_utility .c-calender_utility_form p {
    font-size: 1rem;
  }
}

.c-calender .c-calender_utility .c-calender_utility_form button {
  background-color: #f2f2f2;
  padding: 5px 10px;
}

.c-calender .c-calender_utility .c-calender_utility_btn {
  width: 254px;
}

@media only screen and (max-width: 768px) {
  .c-calender .c-calender_utility .c-calender_utility_btn {
    display: none;
  }
}

.c-calender .c-calender_utility .c-calender_utility_btn .c-btn {
  font-size: 14px;
  font-size: 1.4rem;
}

.c-calender .c-calender_utility .c-calender_utility_btn .c-btn:before {
  display: none;
}

.c-calender .c-calender_utility .c-calender_utility_btn .c-note {
  margin-top: 3px;
}

.c-calenderForm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .c-calenderForm {
    margin-bottom: 30px;
  }
}

.c-calenderForm > * {
  margin-right: 15px;
}

@media only screen and (max-width: 768px) {
  .c-calenderForm > * {
    margin-right: 10px;
  }
}

.c-calenderForm > *:last-child {
  margin-right: 0;
}

.c-calenderForm select {
  width: 150px;
  background-color: #1a1a1a;
  background-repeat: no-repeat;
  background-image: url(/assets/images/common/select-arrow.svg);
  background-position: right 15px top 50%;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .c-calenderForm select {
    width: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .c-calenderForm p {
    font-size: 1rem;
  }
}

.c-calenderForm button {
  background-color: #f2f2f2;
  padding: 5px 10px;
}

/*----------------------------------
List Style
----------------------------------*/
.c-palyeyList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -28px;
  margin-bottom: 28px;
}

.c-palyeyList .c-palyeyList_item {
  position: relative;
  margin-right: 28px;
  margin-top: 28px;
  color: #fff;
  width: 254px;
}

@media only screen and (max-width: 768px) {
  .c-palyeyList .c-palyeyList_item {
    width: 48%;
    margin-right: 4%;
  }
}

@media only screen and (max-width: 768px) {
  .c-palyeyList .c-palyeyList_item:nth-child(2n) {
    margin-right: 0;
  }
}

.c-palyeyList .c-palyeyList_item:nth-child(4n) {
  margin-right: 0;
}

.c-palyeyList .c-palyeyList_item a {
  display: block;
  color: #fff;
}

.c-palyeyList .c-palyeyList_item a:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(194, 194, 194, 0.16) 15.57%, rgba(136, 136, 136, 0.32) 32.39%, rgba(87, 87, 87, 0.49) 48.66%, rgba(49, 49, 49, 0.64) 63.95%, rgba(22, 22, 22, 0.78) 78.04%, rgba(6, 6, 6, 0.9) 90.5%, black 100%);
  opacity: .5;
  z-index: 1;
}

.c-palyeyList .c-palyeyList_item figure {
  position: relative;
  padding-top: 320px;
  z-index: 0;
}

@media only screen and (max-width: 768px) {
  .c-palyeyList .c-palyeyList_item figure {
    padding-top: 125.98425%;
  }
}

.c-palyeyList .c-palyeyList_item figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

.c-palyeyList .c-palyeyList_item .c-palyeyList_item_ttl {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .c-palyeyList .c-palyeyList_item .c-palyeyList_item_ttl {
    font-size: 2rem;
  }
}

.c-palyeyList .c-palyeyList_item .c-palyeyList_item_name {
  position: absolute;
  left: 0;
  bottom: 15px;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  line-height: 1.5;
}

.c-palyeyList .c-palyeyList_item .c-palyeyList_item_name > * {
  display: block;
  font-weight: bold;
}

.c-palyeyList .c-palyeyList_item .c-palyeyList_item_name span {
  font-size: 20px;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .c-palyeyList .c-palyeyList_item .c-palyeyList_item_name span {
    font-size: 1.6rem;
  }
}

.c-palyeyList .c-palyeyList_item .c-palyeyList_item_name small {
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .c-palyeyList .c-palyeyList_item .c-palyeyList_item_name small {
    font-size: 1rem;
  }
}

.c-simpleList {
  margin-bottom: 80px;
  /*--&.c-simpleList--col2 {
    display: flex;
    flex-wrap: wrap;

    li {
      width: 536px;
      margin-right: 28px;

      @include media(sp) {
        width: 100%;
        margin-right: 0;
      }

      &:nth-child(2n) {
        margin-right: 0;

        @include media(sp) {
          background-color: $colorLightGray;
        }
      }

      &:nth-child(4n+1), &:nth-child(4n+2) {
        @include media(pc) {
          background-color: $colorLightGray;
        }
      }
    }
  }--*/
}

@media only screen and (max-width: 768px) {
  .c-simpleList {
    margin-bottom: 40px;
  }
}

.c-simpleList li {
  line-height: 1.5;
  padding: 12px 20px;
}

.c-simpleList li:nth-child(even) {
  background-color: #f2f2f2;
}

.c-simpleList02 {
  margin-bottom: 40px;
}

.c-simpleList02 > *:last-child {
  margin-bottom: 0 !important;
}

.c-simpleList02 li {
  margin-bottom: 1em;
}

.c-circleList {
  margin-bottom: 50px;
}

.c-circleList > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c-circleList {
    margin-bottom: 30px;
  }
}

.c-circleList.c-circleList--bgGray {
  padding: 25px 30px;
  background-color: #f2f2f2;
}

@media only screen and (max-width: 768px) {
  .c-circleList.c-circleList--bgGray {
    padding: 15px;
  }
}

.c-circleList li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
}

.c-circleList li:before {
  content: " ";
  position: absolute;
  top: .45em;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #333;
  border-radius: 50%;
}

.c-circleList li a[href$=".pdf"], .c-circleList li a[href$=".xlsx"], .c-circleList li a[href$=".xls"], .c-circleList li a[href$=".doc"], .c-circleList li a[href$=".docx"] {
  text-decoration: none;
  color: #333;
}

.c-circleList li a[href$=".pdf"]:after, .c-circleList li a[href$=".xlsx"]:after, .c-circleList li a[href$=".xls"]:after, .c-circleList li a[href$=".doc"]:after, .c-circleList li a[href$=".docx"]:after {
  content: " ";
  display: inline-block;
  background-image: url(/assets/images/common/icon-pdf.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 24px;
  vertical-align: middle;
  background-size: cover;
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  .c-circleList li a[href$=".pdf"]:after, .c-circleList li a[href$=".xlsx"]:after, .c-circleList li a[href$=".xls"]:after, .c-circleList li a[href$=".doc"]:after {
    width: 9px;
    height: 12px;
  }
}

.c-defList {
  margin-bottom: 30px;
}

.c-defList > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c-defList {
    margin-bottom: 20px;
  }
}

.c-defList li {
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .c-defList li {
    margin-bottom: 20px;
  }
}

.c-defList li dl dt {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  .c-defList li dl dt {
    font-size: 1.6rem;
  }
}

.c-defList li dl dt:before {
  content: " ";
  position: absolute;
  left: 0;
  top: .75em;
  width: 4px;
  height: 4px;
  background-color: #333;
  border-radius: 50%;
}

.c-numList {
  margin-bottom: 50px;
}

.c-numList > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c-numList {
    margin-bottom: 30px;
  }
}

.c-numList li {
  position: relative;
  padding-left: 3em;
  counter-increment: num;
  margin-bottom: 1em;
}

.c-numList li:before {
  content: "（" counter(num) "）";
  position: absolute;
  left: 0;
  top: 0;
}

.c-numList02 {
  margin-bottom: 50px;
}

.c-numList02 > *:last-child {
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 768px) {
  .c-numList02 {
    margin-bottom: 30px;
  }
}

.c-numList02 li {
  position: relative;
  padding-left: 1.5em;
  counter-increment: num;
  margin-bottom: 1em;
}

.c-numList02 li:before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  top: 0;
}

.c-itemList {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -15px;
  margin-bottom: 35px;
}

.c-itemList li {
  text-align: center;
  margin-top: 15px;
}

.c-itemList li figure {
  border: 1px solid #dcdcdc;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .c-itemList li {
    width: 48%;
    margin-right: 4%;
  }
  .c-itemList li:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 769px) {
  .c-itemList.c-itemList--col4 > * {
    width: 254px;
    margin-right: 28px;
  }
  .c-itemList.c-itemList--col4 > *:nth-child(4n) {
    margin-right: 0;
  }
}

/*----------------------------------
Table Style
----------------------------------*/
table {
  width: 100%;
}

.c-table {
  font-size: 15px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .c-table {
    font-size: 1.2rem;
  }
}

.c-table tbody tr:nth-child(2n) {
  background-color: #f2f2f2;
}

.c-table tr > * {
  border-right: 1px solid #fff;
  padding: 10px;
}

.c-table tr > *:last-child {
  border-right: none;
}

.c-table th {
  background-color: #a0a0a0;
  color: #fff;
  text-align: center;
}

.c-table a {
  color: #333;
}

.c-defTable {
  table-layout: fixed;
  font-size: 15px;
  font-size: 1.5rem;
}

@media only screen and (max-width: 768px) {
  .c-defTable {
    font-size: 1.2rem;
  }
}

.c-defTable tbody tr:nth-child(2n) {
  background-color: #f2f2f2;
}

.c-defTable tr > * {
  border-right: 1px solid #fff;
  padding: 10px;
}

.c-defTable tr > *:last-child {
  border-right: none;
}

@media only screen and (max-width: 768px) {
  .c-defTable tr > *:last-child {
    display: none;
  }
}

.c-defTable th {
  background-color: #a0a0a0;
  color: #fff;
  text-align: center;
}

.c-defTable th:first-child {
  width: 500px;
}

@media only screen and (max-width: 768px) {
  .c-defTable th:first-child {
    width: 50%;
  }
}

.c-defTable a {
  color: #333;
}
.c-defTable a .sub_strong {
  font-weight: bold;
}

.c-calenderTable {
  table-layout: fixed;
  text-align: center;
  border-top: 2px solid #1a1a1a;
  font-size: 12px;
  font-size: 1.2rem;
}

.c-calenderTable thead {
  font-weight: bold;
}

.c-calenderTable thead tr td, .c-calenderTable thead tr th {
  padding-top: 18px;
  padding-bottom: 18px;
}

.c-calenderTable tbody tr > *:nth-child(1), .c-calenderTable tbody tr > *:nth-child(2) {
  padding-top: 10px;
  padding-bottom: 10px;
}

.c-calenderTable tr {
  border-left: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  font-weight: bold;
}

.c-calenderTable tr > *:nth-child(1) {
  width: 235px;
}

@media only screen and (max-width: 768px) {
  .c-calenderTable tr > *:nth-child(1) {
    width: 50%;
  }
}

.c-calenderTable tr > *:nth-child(2) {
  width: 135px;
}

@media only screen and (max-width: 768px) {
  .c-calenderTable tr > *:nth-child(2) {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .c-calenderTable tr > :nth-child(n+3) {
    display: none;
  }
}

.c-calenderTable tr > *:nth-child(1), .c-calenderTable tr > *:nth-child(2) {
  padding-left: 15px;
  padding-right: 15px;
}

.c-calenderTable th, .c-calenderTable td {
  border-right: 1px solid #dcdcdc;
}

.c-calenderTable .c-calenderTable_red {
  background: #f9eced;
  color: #c34349;
}

.c-calenderTable .c-calenderTable_blue {
  background: #e6f0f7;
  color: #076baf;
}

.c-calenderTable .c-calenderTable_line {
  position: relative;
  background-color: #7434ea;
  margin-left: -2px;
  margin-right: -2px;
  height: 9px;
}

.c-calenderTable .c-calenderTable_line p {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 3px;
  color: #333 !important;
  white-space: nowrap;
}

.c-calenderTable dl {
  text-align: left;
}

.c-calenderTable dl dt {
  margin-bottom: 5px;
}

.c-calenderTable dl dd {
  font-size: 10px;
  font-size: 1rem;
  color: #666;
  font-weight: normal;
}

.c-calenderTable.c-calenderTable--blue .c-calenderTable_line {
  background-color: #29b6f6;
}

.c-calenderTable.c-calenderTable--purple .c-calenderTable_line {
  background-color: #7434ea;
}

.c-calenderTable.c-calenderTable--green .c-calenderTable_line {
  background-color: #4fbe4e;
}

.c-calenderTable.c-calenderTable--yellow .c-calenderTable_line {
  background-color: #efdd10;
}

.c-calenderTable.c-calenderTable--red .c-calenderTable_line {
  background-color: #e40001;
}

.c-calenderTable.c-calenderTable--darkPurple .c-calenderTable_line {
  background-color: #4b4183;
}

.c-downloadTable .c-downloadTable_num {
  width: 65px;
}

.c-downloadTable .c-downloadTable_type {
  width: 135px;
}

.c-downloadTable .c-downloadTable_download {
  width: 160px;
}

@media only screen and (max-width: 768px) {
  .c-downloadTable colgroup {
    display: none;
  }
}

.c-downloadTable th, .c-downloadTable td {
  padding: 10px 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 768px) {
  .c-downloadTable th, .c-downloadTable td {
    display: block;
    border-right: none;
  }
}

.c-downloadTable th {
  color: #fff;
  background-color: #1a1a1a;
  text-align: center;
  font-weight: bold;
}

.c-downloadTable td {
  background-color: #f2f2f2;
}

.c-downloadTable a[href$=".pdf"], .c-downloadTable a[href$=".xlsx"], .c-downloadTable a[href$=".xls"], .c-downloadTable a[href$=".doc"], .c-downloadTable a[href$=".docx"] {
  text-decoration: none;
  color: #333;
}

.c-downloadTable a[href$=".pdf"]:after, .c-downloadTable a[href$=".xlsx"]:after, .c-downloadTable a[href$=".xls"]:after, .c-downloadTable a[href$=".doc"]:after, .c-downloadTable a[href$=".docx"]:after {
  content: " ";
  display: inline-block;
  background-image: url(/assets/images/common/icon-pdf.svg);
  background-repeat: no-repeat;
  width: 18px;
  height: 24px;
  vertical-align: middle;
  background-size: cover;
  margin-left: 5px;
}

@media only screen and (max-width: 768px) {
  .c-downloadTable a[href$=".pdf"]:after, .c-downloadTable a[href$=".xlsx"]:after, .c-downloadTable a[href$=".xls"]:after, .c-downloadTable a[href$=".doc"]:after, .c-downloadTable a[href$=".docx"]:after {
    width: 9px;
    height: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .c-tableSpScroll {
    overflow: auto;
  }
}

@media only screen and (max-width: 768px) {
  .c-tableSpScroll > table {
    width: 800px;
  }
}

/*----------------------------------
Form Style
----------------------------------*/
button {
  font-family: Arial, "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS UI Gothic", Helvetica, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  background-color: #fff;
  border: none;
}

input[type="text"], input[type="email"], select {
  height: 40px;
  line-height: 40px;
}

input[type="text"].c-inputMiddle, input[type="email"].c-inputMiddle, select.c-inputMiddle {
  width: 280px;
}

@media only screen and (max-width: 768px) {
  input[type="text"].c-inputMiddle, input[type="email"].c-inputMiddle, select.c-inputMiddle {
    width: 100%;
  }
}

select {
  background-repeat: no-repeat;
  background-position: right 19px top 50%;
  background-image: url(/assets/imagescommon/select-arrow.svg);
}

textarea {
  height: 120px;
}

/*----------------------------------
Media Style
----------------------------------*/
@media only screen and (min-width: 769px) {
  .u-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

/*----------------------------------
Visual Style
----------------------------------*/
/*----------------------------------
Program Style
----------------------------------*/
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.is-modal {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.js-menu {
  display: none;
}

.js-spAccordion .js-spAccordion_body {
  display: none;
}

.js-inview {
  transition: all 1.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-rotate {
  transform: rotateY(180deg) translateY(50px);
  opacity: 0;
}

.js-rotate.is-animeted {
  transform: rotateY(0) translateY(0);
  opacity: 1;
}

.js-rotateRev {
  transform: rotateY(-180deg) translateY(50px);
  opacity: 0;
}

.js-rotateRev.is-animeted {
  transform: rotateY(0) translateY(0);
  opacity: 1;
}

.js-fadeUp {
  -ms-transform: translateY(50px);
      transform: translateY(50px);
  opacity: 0;
}

.js-fadeUp.is-animeted {
  -ms-transform: translateY(0);
      transform: translateY(0);
  opacity: 1;
}

.js-tab .js-tab_body .js-tab_body_item {
  display: none;
}

.js-tab .js-tab_body .js-tab_body_item > *:last-child {
  margin-bottom: 0 !important;
}

.js-tab .js-tab_body .js-tab_body_item:first-child {
  display: block;
}

.js-calender_tables .js-calender_tables_items > *:last-child {
  margin-bottom: 0 !important;
}

.js-calender_tables .js-calender_tables_items .js-calender_tables_items_child {
  display: none;
}

.js-calender_tables .js-calender_tables_items .js-calender_tables_items_child.is-active {
  display: block;
}

.column-p-box{
	background-color: #D0D0D0;
	border: thin #868484;
	margin: 25px;
	padding: 25px;
}