@charset "UTF-8";
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

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

/*------------------------------------------------------------
	clearfix（float解除）
  ------------------------------------------------------------*/
  .clearfix {
    *zoom: 1;
  }

  .clearfix:after {
    display: block;
    clear: both;
    content: "";
  }

/*------------------------------------------------------------
    Default
    ------------------------------------------------------------*/
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    abbr, address, cite, code,
    del, dfn, em, img, ins, kbd, q, samp,
    small, strong, sub, sup, var,
    b, i,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, dialog, figure, footer, header, button,
    hgroup, menu, nav, section,
    time, mark, audio, video {
      margin: 0;
      padding: 0;
      border: 0;
      outline: 0;
      font-size: 1em;
    }

    html {
      font-size: 62.5%;
    }

    * {
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }

    body, table,
    input, textarea, select, option, button,
    h1, h2, h3, h4, h5, h6 {
      line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: 600;
    }

    table,
    input, textarea, select, option {
      line-height: 1.1;
    }

    ol, ul {
      list-style: none;
    }

    blockquote, q {
      quotes: none;
    }

    :focus {
      outline: 0;
    }

    ins {
      text-decoration: none;
    }

    del {
      text-decoration: line-through;
    }

    img {
      vertical-align: top;
      max-width: 100%;
    }

    iframe {
      width: 100%;
      height: 100%;
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    a {
      color: #363636;
      display: inline-block;
      text-decoration: none;
    }

    a:hover,
    a:hover img {
      opacity: 0.80;
      filter: alpha(opacity=80);
      -ms-filter: "alpha(opacity=80)";
    }

    .u-bgcover {
      -webkit-background-size: cover !important;
      background-size: cover !important;
      background-position: center !important;
      background-repeat: no-repeat !important;
    }

    .u-pd70 {
      padding: 70px 0;
    }

    @media screen and (max-width: 767px) {
      .u-pd70 {
        padding: 50px 0;
      }
    }

    .u-bd {
      position: relative;
    }

    .u-bd:before {
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
      content: "";
      width: 1px;
      height: 60px;
      margin: 0 auto;
      background: #C6C6C6;
      position: absolute;
    }

    @media screen and (max-width: 767px) {
      .u-bd:before {
        height: 35px;
      }
    }

    .u-df {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }

    @media screen and (max-width: 767px) {
      .u-df {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
      }
    }

    .u-df .f-left, .u-df .f-right {
      width: 50%;
    }

    .price .u-df .f-left, .price .u-df .f-right {
      width: 100%;
    }

    @media screen and (max-width: 767px) {
      .u-df .f-left, .u-df .f-right {
        width: 100%;
      }
    }

/* .fadein
------------------------------------------------------------*/
.u-fadein {
  opacity: 0;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}

.u-fadein.on {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/*------------------------------------------------------------
	Layout
  ------------------------------------------------------------*/
  body {
    color: #1F1F1F;
    min-width: 768px;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    font-family: ryo-gothic-plusn, sans-serif;
    font-style: normal;
  }

  @media screen and (max-width: 767px) {
    body {
      min-width: auto;
      font-size: 1.3rem;
    }
  }

  .details {
    z-index: 1;
    position: relative;
  }

  .l-container {
    margin: 0 auto;
    width: 1240px;
  }

  .l-container2 {
    margin: 0 auto;
    width: 1125px;
  }

  @media screen and (max-width: 1240px) {
    .l-container, .l-container2 {
      width: 94%;
      margin: 0 auto;
    }
  }

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.c-header {
  position: relative;
}

.c-header__nav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: #fff;
  padding: 16px 20px;
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .c-header__nav {
    padding: 1.3vw;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav {
    padding: 12px;
    height: 48px;
  }
}

.c-header__nav .nav-logo {
  /* width: 35%; */
  display: flex;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.c-header__nav .nav-logo p {
  padding-left: 16px;
}

.c-header__nav .nav-menu {
  /* width: 100%; */
}
@media screen and (max-width: 1240px) and (min-width: 768px) {
  .c-header__nav .nav-logo a {
    width: 12vw;
  }
  .c-header__nav .nav-logo p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .c-header__nav .nav-logo a {
    width: 35%;
  }
  .c-header__nav .nav-logo p {
    font-size: 1rem;
    padding-left: 8px;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 48px;
    width: 100%;
    left: 0;
    z-index: 2;
    height: calc(100vh - 48px);
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.85);
  }
}

.c-header__nav .nav-menu .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu .menu-list {
    display: block;
    background: #fff;
  }
}

.c-header__nav .nav-menu li {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu li {
    border-top: 1px solid #000;
  }
}

.c-header__nav .nav-menu li.store {
  margin-left: 15px;
}
.c-header__nav .nav-menu li.last {
  width: 12%;
  width: 120px;
  border: 1px solid #000;
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .c-header__nav .nav-menu li.last {
    width: 10vw;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu li.store {
    margin-left: 0;
  }
  .c-header__nav .nav-menu li.last {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
}

.c-header__nav .nav-menu li.last + .last {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu li.last + .last {
    margin-left: 0;
  }
}

.c-header__nav .nav-menu a {
  display: block;
  height: 100%;
  padding: 0 15px;
  font-weight: bold;
  text-align: center;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .c-header__nav .nav-menu a {
    font-size: 1.2vw;
    padding: 0 1.2vw;
  }
}

@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu a {
    padding: 8px 0;
  }
}

.c-header__nav .nav-menu li:not(:last-child) a:before {
  content: "";
  top: -33px;
  left: 0;
  right: 0;
  width: 3px;
  height: 25px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu li:not(:last-child) a:before {
    content: none;
  }

}

@media screen and (max-width: 767px) {
  .c-header__nav .menu-btn {
    width: 35px;
    height: 20px;
    cursor: pointer;
    position: relative;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .c-header__nav .menu-btn span {
    right: 0;
    width: 35px;
    height: 2px;
    position: absolute;
    background-color: #000;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .c-header__nav .menu-btn span:nth-child(1) {
    top: 0;
  }
  .c-header__nav .menu-btn span:nth-child(2) {
    top: 10px;
  }
  .c-header__nav .menu-btn span:nth-child(3) {
    top: 20px;
  }
  .c-header__nav .is-open.menu-btn {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .c-header__nav .is-open.menu-btn span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .c-header__nav .is-open.menu-btn span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .c-header__nav .is-open.menu-btn span {
    top: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.c-header__nav.nav-fixed, .c-header__nav.nav-sp {
  -webkit-transition: 500ms;
  transition: 500ms;
  background: rgba(255, 255, 255, 0.9) !important;
  -webkit-box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
  box-shadow: 0 0 15px 5px rgba(153, 153, 153, 0.5);
}

.c-header__nav.nav-fixed .menu-btn span, .c-header__nav.nav-sp .menu-btn span {
  background: #000;
}

.c-header__nav.nav-sp {
  background: rgba(0, 0, 0, 0.7);
}


@media screen and (min-width: 768px) {
  .c-header__nav .nav-menu .nav-drop {
    position: relative;
  }
  .c-header__nav .nav-menu .nav-drop ul {
    list-style-type: none;
    display: block;
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 76px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    max-width: 200px;
  }
  .c-header__nav .nav-menu .nav-drop li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 500ms;
    transition: all 500ms;
    padding: 0;
  }
  .c-header__nav .nav-menu .nav-drop li + li a {
    border-top: 1px solid #fff;
  }
  .c-header__nav .nav-menu .nav-drop li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*padding: 10px 15px;*/
    text-align: left;
    font-size: 12px;
  }
  .c-header__nav .nav-menu .nav-drop li a:hover {
    opacity: .8;
  }
  .c-header__nav .nav-menu .nav-drop li {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
    width: 100%;
  }
  .c-header__nav .nav-menu .nav-drop:hover li {
    height: 40px;
  }
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .c-header__nav .nav-menu .nav-drop ul {
    top: 6vw;
  }
}


@media screen and (max-width: 767px) {
  .c-header__nav .nav-menu .nav-drop ul {
    display: none;
  }
  .c-header__nav .nav-menu .nav-drop ul li {
    border-top: 1px solid #C3C3C3;
  }
  .c-header__nav .nav-menu .nav-drop ul li a {
    font-size: 1.1rem;
    padding: 6px 0;
  }
}

  /*drop-sp*/
 .c-header__nav .nav-menu .nav-drop {
  position: relative;
}
.c-header__nav .nav-menu .nav-drop .drop-sp {
  padding: 0;
  width: 37px;
  height: 37px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1050;
}
.c-header__nav .nav-menu .nav-drop .drop-sp .button {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-height: 999999px;
}
.c-header__nav .nav-menu .nav-drop .drop-sp .button:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg) translateZ(1px);
  border-bottom: 2px solid #001e62;
  border-right: 2px solid #001e62;
}

.c-header__nav .nav-menu .nav-drop .drop-sp.active .button {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}



/*------------------------------------------------------------
	footer
	------------------------------------------------------------*/
/*------------------------------------------------------------
c-title
------------------------------------------------------------*/
.c-title01 {
  font-size: 45px;
  text-align: center;
  margin-bottom: 30px;
}

.c-title01.news_single {
	max-width: 745px;
    font-size: 26px;
    text-align: left;
    margin: auto;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .c-title01 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

.c-title02 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

/*------------------------------------------------------------
c-btn
------------------------------------------------------------*/
.c-btn01 {
  display: block;
  max-width: 200px;
  padding: 5px 0;
  text-align: center;
  margin: 50px auto 0;
  border: 1px solid #2E2D32;
}

@media screen and (max-width: 767px) {
  .c-btn01 {
    padding: 6px 0;
    max-width: 160px;
    padding: 3px 0;
    margin: 40px auto 0;
  }
}

/*------------------------------------------------------------
c-list
------------------------------------------------------------*/
.c-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .c-list01 {
    display: block;
  }
}

.c-list01 li {
  width: calc((100% - 9%) / 4);
}
@media screen and (min-width: 768px) {
  .c-list01 li {
  margin-top: 50px;
}
.c-list01 li:nth-child(-n+4) {
  margin-top: 0;
}
}

@media screen and (max-width: 767px) {
  .c-list01 li {
    width: 100% !important;
  }
}

@media screen and (min-width: 768px) {
  .c-list01 li:not(:nth-child(4n)) {
    margin-right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .c-list01 li:not(:last-child) {
    margin-bottom: 35px;
  }
}

.c-list01 li a {
  display: block;
}

.c-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-list02 > li {
  width: calc((100% - 8%) / 3);
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .c-list02 > li {
    margin-top: 30px;
    width: calc((100% - 6%) / 3);
  }
}

.c-list02 > li:not(:nth-child(3n)) {
  margin-right: 4%;
}

@media screen and (max-width: 767px) {
  .c-list02 > li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
}

.c-list02 > li a {
  display: block;
}

.c-list02__img {
  height: 20vw;
  max-height: 280px;
}

.c-list02 .img01 {
  background: url(../image/works/img01.jpg);
}

.c-list02__txt {
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  .c-list02__txt {
    padding-top: 6px;
  }
  .c-list02__txt p {
    font-size: 1.2rem;
  }
}

.c-list02__txt h3 {
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .c-list02__txt h3 {
    font-size: 1.3rem;
  }
}

.c-tabs {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.c-tabs li {
  display: inline-block;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .c-tabs li {
    margin-bottom: 10px;
  }
}

.c-tabs li + li {
  margin-left: 5px;
}

.c-tabs li.current a {
  color: #fff;
  background: #4D4D4D;
}

.c-tabs a, .c-tabs span {
  width: 120px;
  display: block;
  cursor: pointer;
  color: #4D4D4D;
  font-size: 15px;
  padding: 3px 0;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #4D4D4D;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .c-tabs a, .c-tabs span {
    width: 100px;
    padding: 2px 0;
    font-size: 1.3rem;
  }
}

.tab-content {
  display: none;
}

.tab-content.current {
  display: inherit;
}

/*------------------------------------------------------------
  pagination
  ------------------------------------------------------------*/
  .c-pagination {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 60px;
  }

  @media screen and (max-width: 767px) {
    .c-pagination {
      padding-top: 40px;
    }
  }

  .c-pagination a,
  .c-pagination span {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 10px;
  }

  @media screen and (max-width: 767px) {
    .c-pagination a,
    .c-pagination span {
      margin-left: 7px;
      font-size: 1.1rem;
    }
  }

  .c-pagination a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .c-pagination a:hover {
    filter: alpha(opacity=50);
    opacity: 0.5;
  }

  .c-pagination a:first-child {
    margin-left: 0;
  }

  .c-pagination span.current {
    color: #fff;
    background-color: #4D4D4D;
    border: none;
  }

  .c-pagination span.dots {
    border: none;
    padding: 0;
  }

  .c-pagination .page-numbers {
    width: 40px;
    height: 40px;
    border: 1px solid #4D4D4D;
  }

  @media screen and (max-width: 767px) {
    .c-pagination .page-numbers {
      width: 30px;
      height: 30px;
    }
  }

  .c-pagination .next.page-numbers,
  .c-pagination .prev.page-numbers {
    color: #4D4D4D;
    background: none;
    border: none;
    width: auto;
  }

  .c-pagination .next.page-numbers {
    margin-left: 23px;
  }

  .c-pagination .prev.page-numbers {
    margin-right: 23px;
  }

  @media screen and (max-width: 767px) {
    .c-pagination .next.page-numbers {
      margin-left: 15px;
    }
    .c-pagination .prev.page-numbers {
      margin-right: 15px;
    }
  }

/*------------------------------------------------------------
	c-other
  ------------------------------------------------------------*/
  #main_slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  #main_slider .slide {
    overflow: hidden;
    position: relative;
    opacity: 1 !important;
    height: 43vh;
  }

  #main_slider .slide .c-mainvisual__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: transparent no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
    opacity: 0;
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: 0s;
    transition: 0s;
  }

    @media screen and (max-width: 767px) {
      #main_slider .slide .c-mainvisual__img {
        background-position: right 20% center;
      }
    }

    #main_slider .slide .c-mainvisual__img:after {
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      /*background-color: rgba(248,240,214,0.39);*/
    }

  #main_slider .slide.slick-start .c-mainvisual__img {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: ease 0s;
    transition: ease 0s;
  }

  #main_slider .slide.slick-active .c-mainvisual__img {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: ease 8s;
    transition: ease 8s;
  }

  #main_slider .slide.slick-continue .c-mainvisual__img {
    opacity: 0;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: ease 8s;
    transition: ease 8s;
  }

/* --------------------------------------------------
	 7. Slick
   -------------------------------------------------- */
   .slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }

  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }

  .slick-list:focus {
    outline: none;
  }

  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }

  .slick-slider .slick-track,
  .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .slick-track::before,
  .slick-track::after {
    content: "";
    display: table;
  }

  .slick-track::after {
    clear: both;
  }

  .slick-loading .slick-track {
    visibility: hidden;
  }

  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
  }

  [dir="rtl"] .slick-slide {
    float: right;
  }

  .slick-slide img {
    display: block;
  }

  .slick-slide.slick-loading img {
    display: none;
  }

  .slick-slide.dragging img {
    pointer-events: none;
  }

  .slick-initialized .slick-slide {
    display: block;
  }

  .slick-loading .slick-slide {
    visibility: hidden;
  }

  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }

  .slick-arrow.slick-hidden {
    display: none;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 10px;
  }

  .slick-prev,
  .slick-next {
    display: block;
    overflow: hidden;
    color: transparent;
    text-decoration: none;
    text-indent: 110%;
    white-space: nowrap;
    font-size: 0;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    padding: 0;
    line-height: 0;
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 1;
    opacity: .8;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }

  .slick-prev:hover,
  .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    opacity: 1;
  }

  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: .25;
  }

  .slick-prev::before,
  .slick-next::before {
    position: absolute;
    top: 20px;
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    opacity: .75;
  }

  .slick-prev {
    left: 20px;
  }

  .slick-prev::before {
    left: 20px;
    border-top: 5px solid #000;
    border-left: 5px solid #000;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .slick-next {
    right: 20px;
  }

  .slick-next::before {
    left: 15px;
    border-top: 5px solid #000;
    border-right: 5px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 15px;
    list-style: none;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 2;
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 15px;
    width: 15px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
  }

  .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    width: 15px;
    height: 15px;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    cursor: pointer;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover::before,
  .slick-dots li button:focus::before {
    background-color: #15b7db;
  }

  .slick-dots li button::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 15px;
    height: 15px;
    background-color: #dcdcdc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button::before {
    background-color: #393939;
  }

  @media screen and (max-width: 767px) {
    .slick-dots li, .slick-dots li button, .slick-dots li button::before {
      width: 10px;
      height: 10px;
    }
    .slick-dots li {
      margin: 0 6px;
    }
  }

/* c-breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  padding: 10px 25px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 10px 12px;
  }
  .c-breadcrumb:before {
    content: none;
  }
}

.c-breadcrumb ul li {
  display: inline-block;
}

.c-breadcrumb ul li img {
  vertical-align: -2px;
}

.c-breadcrumb ul li a {
  font-size: 13px;
}

.c-breadcrumb ul li:after {
  content: "〉";
  color: #302D2C;
  margin-left: 10px;
  font-size: 11px;
}

.c-breadcrumb ul li:last-of-type:after {
  content: none;
}

/* c-mainvisual
------------------------------------------------------------*/
.c-mainvisual {
  width: 100%;
  position: relative;
  -webkit-background-size: cover !important;
  background-size: cover !important;
}

.c-mainvisual__inner {
  margin-top: 76px;
  height: 420px;
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .c-mainvisual__inner {
    margin-top: 6vw;
  }
}

@media screen and (max-width: 767px) {
  .c-mainvisual__inner {
    margin-top: 48px;
    height: 220px;
  }
}

.c-mainvisual__text {
  top: 50%;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-weight: 500;
}

.c-mainvisual__text h1 {
  font-size: 56px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text {
    width: 94%;
  }
  .c-mainvisual__text h1 {
    font-size: 4.5rem;
  }
}

.c-mainvisual__text p {
  font-size: 32px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .c-mainvisual__text p {
    font-size: 2rem;
  }
}

/* s-descript
------------------------------------------------------------*/
.s-descript__txt {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .s-descript__txt {
    font-size: 1.4rem;
  }
}

.s-descript__txt p + p {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .s-descript__txt p + p {
    padding-top: 20px;
  }
}

.s-descript__img {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.s-descript__img img {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  display: inline-block;
}


.s-descript .s-descript__img + .s-descript__txt,
.s-descript .s-descript__txt + .s-descript__img {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .s-descript .s-descript__img + .s-descript__txt,
  .s-descript .s-descript__txt + .s-descript__img {
    margin-top: 30px;
  }
}
.s-descript__subimg{
  display: flex;
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  height: 120px;
}

.s-descript__subimg::-webkit-scrollbar {
  height: 10px
}

.s-descript__subimg::-webkit-scrollbar-track {
  background: var(--hcb-color--scrollbar-track,hsla(0, 0%, 21%, 0.1));
  border: none
}

.s-descript__subimg::-webkit-scrollbar-thumb {
  background: var(--hcb-color--scrollbar-thumb,hsla(0,0%,59%,.25));
  border-radius: 3px
}

.s-descript__item{
  width: calc(100% /4);
  min-width: 180px;
  margin-right: 5px;
  /* object-fit: cover; */
  cursor: pointer;
  opacity: 0.5;
  position: relative;
}

.s-descript__item::before{
  content: "";
  display: block;
  font-size: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  border: 8px solid rgba(255,255,255,0.80);
}
.s-descript__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-descript__item.is-show{
  opacity: 1;
}
.s-descript__subimg img:hover{
  opacity: 0.7;
}
.s-descript__video {
  height: 525px;
  max-width: 930px;
  margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
  .s-descript__video {
    height: 53vw;
    margin: 30px auto 0;
  }
}

.s-descript__btn {
  display: block;
  font-size: 16px;
  max-width: 517px;
  padding: 20px 0;
  text-align: center;
  margin: 45px auto 0;
  border: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .s-descript__btn {
    font-size: 1.4rem;
    padding: 10px 0;
    margin: 30px auto 0;
  }
}

.s-descript dl dd {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .s-descript dl dd {
    margin-top: 8px;
    padding-top: 8px;
  }
}

.s-descript__table {
  max-width: 745px;
  margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
  .s-descript__table {
    margin: 30px auto 0;
  }
}

.s-descript__table tr {
  border-top: 1px solid #707070;
}

.s-descript__table tr:first-child {
  border-top: 0;
}

.s-descript__table td {
  font-size: 16px;
  padding: 15px 0;
  line-height: 1.5;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .s-descript__table td {
    font-size: 1.3rem;
    padding: 10px 0;
  }
}

.s-descript__table td:first-child {
  width: 25%;
  min-width: 20px;
}

.s-descript__table a {
  color: #08AAB7;
  margin-left: 10px;
}

/* s-contact
------------------------------------------------------------*/
.s-common01 {
  background: #D8EFDD;
}

@media screen and (max-width: 767px) {
  .s-common01 .details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.s-common01 .f-left {
  background: #FFF6B4;
  position: relative;
}

.s-common01 .f-left .inner {
  white-space: nowrap;
  padding: 50px 0 50px 7%;
}

@media screen and (max-width: 767px) {
  .s-common01 .f-left .inner {
    padding: 30px 15px;
    white-space: normal;
    text-align: center;
  }
}

.s-common01 .f-left h2 span {
  color: #fff;
  display: table;
  padding: 4px 5%;
  font-size: 47px;
  background: #000;
}

@media screen and (max-width: 767px) {
  .s-common01 .f-left h2 span {
    font-size: 2rem;
    padding: 2px 12px;
    margin: 0 auto;
  }
}

.s-common01 .f-left h2 span + span {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .s-common01 .f-left h2 span + span {
    margin-top: 5px;
  }
}

.s-common01 .f-left h3 {
  font-size: 59px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .s-common01 .f-left h3 {
    font-size: 3rem;
  }
}

.s-common01 .f-left h2 {
  padding-bottom: 10px;
}
.s-common01 .f-left p {
  font-size: 21px;
}

@media screen and (max-width: 767px) {
  .s-common01 .f-left p {
    font-size: 1.6rem;
  }
}

.s-common01 .f-left a {
  color: #fff;
  display: block;
  font-size: 32px;
  padding: 10px 0;
  max-width: 500px;
  margin: 40px 0 0 0;
  text-align: center;
  background: #348D72;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .s-common01 .f-left a {
    width: 100%;
    margin: 20px auto 0;
    font-size: 2.3rem;
    padding: 7px 0;
    white-space: normal;
  }
}

.s-common01 .f-right {
  background-image: url(../image/common/bg_contact.jpg);
}

@media screen and (max-width: 767px) {
  .s-common01 .f-right {
    height: 65vw;
  }
}

/* s-contact
------------------------------------------------------------*/
.s-common02 .f-left {
  background: url(../image/common/bg_faq.jpg);
}

@media screen and (max-width: 767px) {
  .s-common02 .f-left {
    height: 65vw;
  }
}

.s-common02 .f-right {
  padding: 7%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s-common02 .f-right {
    padding: 40px 12px 50px;
    text-align: center;
  }
}

.s-common02 .f-right .inner {
  max-width: 480px;
}

.s-common02 .f-right h2 {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .s-common02 .f-right h2 {
    font-size: 1.7rem;
  }
}

.s-common02 .f-right p {
  line-height: 2;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .s-common02 .f-right p {
    padding-top: 18px;
  }
}

.s-common02 .f-right .boxtext {
  background: #FDFDFD;
  padding: 25px 15px;
  margin-top: 40px;
  border: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  .s-common02 .f-right .boxtext {
    padding: 16px 10px;
    margin-top: 25px;
  }
}

.s-common02 .f-right .boxtext h3 {
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .s-common02 .f-right .boxtext h3 {
    font-size: 1.6rem;
  }
}

.s-common02 .f-right .boxtext dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.s-common02 .f-right .boxtext dt {
  min-width: 25px;
}

.s-common02 .f-right .boxtext dd {
  font-size: 12px;
  text-align: left;
}

/* s-access
------------------------------------------------------------*/
.s-common03 {
  color: #fff;
  background: #212121;
}

.s-common03__title {
  text-align: center;
  padding-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .s-common03__title {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .s-common03__title h2 img {
    max-width: 52%;
  }
}

.s-common03__title p {
  font-size: 20px;
  padding-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .s-common03__title p {
    font-size: 1.6rem;
  }
}

.s-common03__title h2 {
    background-color: #fff;
    display: inline-block;
    padding: 15px;
    border-radius: 15px;
}

.s-common03__inner {
  line-height: 2;
}

.s-common03__inner p + p {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .s-common03__inner p + p {
    padding-top: 20px;
  }
}

.s-common03__inner a {
  color: #fff;
}
.s-common03__inner a + p {
  padding-top: 20px;
}

.s-common03__inner ul {
  padding-top: 50px;
}
.s-common03__inner ul a {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .s-common03__inner ul {
    padding-top: 35px;
  }
  .s-common03__inner iframe {
    height: 50vw;
  }
}

.s-common03 .details {
  padding: 50px 0 20px;
}
.s-common03__copyright {
  font-size: 11px;
  text-align: center;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .s-common03 .details {
    padding: 40px 0 13px;
  }
  .s-common03__copyright {
    padding-top: 30px;
    font-size: 1rem;
  }
}

/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.page-top .c-header__nav {
  background: none;
}

.page-top .c-mainvisual,
.page-top #main_slider .slide {
  height: 97vh;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual,
  .page-top #main_slider .slide {
    height: 67vh;
  }
}

.page-top .c-mainvisual__text {
  top: 49%;
}

@media screen and (max-width: 1240px) and (min-width: 768px) {
  .page-top .c-mainvisual__text {
    padding: 0 10%;
  }
  .c-mainvisual__text h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__text {
    padding: 0 7%;
  }
}

.page-top .c-mainvisual__text h1 {
  color: #fff;
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__text h1 {
    font-size: 2.2rem;
    margin-top: 7px;
  }
}

.page-top .c-mainvisual__text h1 span {
  display: table;
  margin: 0 auto;
  background: #000;
  padding: 4px 25px;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__text h1 span {
    padding: 2px 10px;
  }
}

.page-top .c-mainvisual__text h1 span + span {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__text h1 span + span {
    margin-top: 5px;
  }
}

.page-top .c-mainvisual__text p {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.4;
  color: #000;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__text p {
    font-size: 1.6rem;
    margin-top: 12px;
  }
}

.page-top .c-mainvisual__text p span {
  display: inline-block;
  margin: 0 auto;
  background: #fff;
  padding: 4px 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__text p span {
	  font-size: 11px;
	  padding: 2px 6px;
	  margin-bottom: 4px;
  }
}


.page-top .c-mainvisual__list {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__list {
    bottom: 8px;
  }
}

.page-top .c-mainvisual__list li + li {
  padding-left: 15px;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__list li + li {
    padding-left: 7px;
  }
}

.page-top .c-mainvisual__list li p {
  color: #fff;
  font-size: 18px;
  letter-spacing: 3px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__list li p {
    font-size: 1.4rem;
  }
}

.page-top .c-mainvisual__list li span {
  width: 48px;
  height: 48px;
  font-size: 49px;
  background: #fff;
  border: 3px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .page-top .c-mainvisual__list li span {
    width: 26px;
    height: 26px;
    font-size: 2.5rem;
    border: 1.5px solid #000;
  }
}

.s-news .u-df, .s-common03 .u-df {
  position: relative;
}

.s-news .f-left, .s-common03 .f-left {
  padding-right: 4%;
}

@media screen and (max-width: 767px) {
  .s-news .f-left, .s-common03 .f-left {
    padding-right: 0;
  }
}

.s-news .f-right, .s-common03 .f-right {
  padding-left: 4%;
}

@media screen and (max-width: 767px) {
  .s-news .f-right, .s-common03 .f-right {
    padding-left: 0;
    border-left: 0;
    position: relative;
    padding-top: 40px;
    margin-top: 30px;
  }
}

.s-news .f-right:before, .s-common03 .f-right:before {
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  position: absolute;
  background-color: #E2E2E2;
}

@media screen and (max-width: 767px) {
  .s-news .f-right:before, .s-common03 .f-right:before {
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
  }
}

.s-news__list .banner {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .s-news__list .banner {
    margin-top: 8px;
  }
}

.p-top {
  /* section-news
  ------------------------------------------------------------*/
  /* section-feature
  ------------------------------------------------------------*/
  /* section-works
  ------------------------------------------------------------*/
  /* section-pickup
  ------------------------------------------------------------*/
}
.p-top .s-news {
  background-color: #FFF8ED;
}
.p-top .s-news__title {
  font-size: 26px;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top span.top_shop {
	font-size: 100%;
	font-weight: bold;
	display: block;
	margin-top: 15px;
	/*margin-bottom: 10px;*/
}

@media screen and (max-width: 1200px) {
  .p-top .s-news__title {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-top .s-news__title {
    font-size: 2rem;
    padding-bottom: 6px;
  }
}

.p-top .s-news__title .c-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 78%;
}

@media screen and (max-width: 1200px) {
  .p-top .s-news__title .c-tabs {
    width: 100%;
    padding-top: 20px;
  }
}

.p-top .s-news__title .c-tabs li {
  width: 25%;
}

.p-top .s-news__title .c-tabs li a {
  width: 100%;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .p-top .s-news__title .c-tabs li a {
    font-size: 1.3vw;
  }
}

.p-top .s-news__list a {
  color: #484848;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 10px 0;
  font-size: 15px;
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .p-top .s-news__list a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .p-top .s-news__list a {
    font-size: 1.3rem;
    padding: 5px 0;
  }
}

.p-top .s-news__list a .date {
  margin-right: 10px;
}

@media screen and (max-width: 1240px) and (min-width: 767px) {
  .p-top .s-news__list a .text {
    padding-top: 4px;
  }
}

@media screen and (max-width: 767px) {
  .p-top .s-news__list a .text {
    padding-top: 4px;
  }
}

.p-top .s-news .f-right p {
  font-size: 18px;
	/*margin-top: 10px;*/
}
.p-top .s-news .f-right h3 {
  font-size: 59px;
  line-height: 1;
	margin-bottom: 4px;
}
.p-top .s-news .f-right a {
  color: #fff;
  display: block;
  font-size: 32px;
  padding: 11px 0;
  text-align: center;
  max-width: 504px;
  margin: 35px 0 0;
  background-color: #348D72;
}
@media screen and (max-width: 767px) {
  .p-top .s-news .f-right {
    text-align: center;
  }
  .p-top .s-news .f-right p {
    font-size: 1.7rem;
  }
  .p-top .s-news .f-right h3 {
    font-size: 3.7rem;
  }
  .p-top .s-news .f-right a {
    font-size: 2.3rem;
    padding: 7px 0;
    max-width: 504px;
    margin: 25px auto 0;
    background-color: #348D72;
  }
}
.p-top .s-introduce .s-introduce__item:not(:last-child) {
  box-shadow: 0px 5px 10px rgb(0 0 0 / 7%);
    margin-bottom: 12px;
}

.p-top .s-introduce .item01 .s-introduce__item--boximg {
  background-image: url(../image/top/introduce_img01.jpg);
}
.p-top .s-introduce .s-introduce__item--boxtxt {
  padding: 5%;
}
.p-top .s-introduce .s-introduce__item--boxtxt h2 {
  font-size: 54px;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top .s-introduce .s-introduce__item:not(:last-child) {
  }
  .p-top .s-introduce .item01 .s-introduce__item--boximg {
    height: 75vw;
  }
  .p-top .s-introduce .s-introduce__item--boxtxt {
    padding: 35px 4% 45px;
  }
  .p-top .s-introduce .s-introduce__item--boxtxt h2 {
    font-size: 3rem;
  }
}
.p-top .s-introduce .s-introduce__item--boxtxt h3 span {
  font-size: 25px;
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  background-image: linear-gradient(to bottom, transparent 60%, #FFF500 0%);
}
.p-top .s-introduce .s-introduce__item--boxtxt p {
  font-size: 16px;
  padding-top: 40px;
}
.p-top .s-introduce .c-btn01 {
  color: #fff;
  font-size: 19px;
  padding: 11px 0;
  max-width: 270px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .p-top .s-introduce .s-introduce__item--boxtxt h3 span {
    font-size: 1.7rem;
    padding: 0 5px;
  }
  .p-top .s-introduce .s-introduce__item--boxtxt p {
    font-size: 1.4rem;
    padding-top: 30px;
  }
  .p-top .s-introduce .c-btn01 {
    font-size: 1.7rem;
    padding: 7px 0;
  }
}

.p-top .s-introduce .item02 .s-introduce__item--boximg {
  background-image: url(../image/top/introduce_img02.jpg);
}
.p-top .s-introduce .s-introduce__item ul {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
.p-top .s-introduce .s-introduce__item ul li + li {
  padding-left: 4%;
}
.p-top .s-introduce .s-introduce__item ul h4 {
  font-size: 17px;
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top .s-introduce .s-introduce__item ul h4 {
    font-size: 1.4rem;
    padding-top: 12px;;
  }
}

.p-top .s-feature {
  color: #fff;
  background-image: url(../image/top/feature_bg.jpg);
  background-color: rgba(255, 255, 255, 0.65);
}

.p-top .s-feature .details {
  z-index: 1;
  position: relative;
  padding: 86px 0 50px;
}

@media screen and (max-width: 767px) {
  .p-top .s-feature .details {
    padding: 55px 0;
  }
}

.p-top .s-feature:after {
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 197px;
  margin: 0 auto;
  background: #88C7CC;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-top .s-feature:after {
    height: 160px;
  }
}

.p-top .s-feature__textarea {
  max-width: 640px;
  margin: 0 auto 90px;
}

.p-top .s-feature__textarea h4,
.p-top .s-feature__textarea a {
  font-size: 19px;
  text-align: center;
  display: block;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-top .s-feature__textarea h4,
  .p-top .s-feature__textarea a {
    font-size: 1.4rem;
  }
}

.p-top .s-feature__textarea--label1 {
  padding: 10px 0;
  max-width: 628px;
  margin: 0 auto;
  background: #01B8C7;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .p-top .s-feature__textarea--label1 {
    padding: 5px 0;
  }
}

.p-top .s-feature__textarea--title {
  font-size: 40px;
  text-align: center;
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-top .s-feature__textarea--title {
    font-size: 2.5rem;
  }
}

.p-top .s-feature__textarea--text {
  font-size: 16px;
  padding-top: 27px;
}

@media screen and (max-width: 767px) {
  .p-top .s-feature__textarea--text {
    font-size: 1.4rem;
  }
}

.p-top .s-feature__textarea--label2 {
  max-width: 270px;
  padding: 12px 0;
  margin: 40px auto 0;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.39);
}

@media screen and (max-width: 767px) {
  .p-top .s-feature__textarea--label2 {
    padding: 9px 0;
  }
}

.s-common04 .c-list01__img {
  height: 153px;
}

.s-common04 .c-list01__img.img01 {
  background: url(../image/top/feature_img01.jpg);
}

.s-common04 .c-list01__img.img02 {
  background: url(../image/top/feature_img02.jpg);
}

.s-common04 .c-list01__img.img03 {
  background: url(../image/top/feature_img03.jpg);
}

.s-common04 .c-list01__img.img04 {
  background: url(../image/top/feature_img04.jpg);
}

.s-common04 .c-list01__text {
  color: #000;
  padding: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .s-common04 .c-list01__text {
    padding: 6px 0;
  }
}

.s-common04 .c-list01__text h3 {
  font-size: 25px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .s-common04 .c-list01__text h3 {
    font-size: 1.8rem;
  }
}

.s-common04 .c-list01__text p {
  font-size: 16px;
  margin-top: -3px;
}

@media screen and (max-width: 767px) {
  .s-common04 .c-list01__text p {
    font-size: 1.4rem;
  }
}
.p-top .s-works {
  color: #fff;
  background-color: #2F2F2F;
}
.p-top .s-works__title {
  font-size: 29px;
  text-align: center;
  padding-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .p-top .s-works__title {
    font-size: 2.5rem;
    padding-bottom: 30px;
  }
}

.p-top .s-works .c-list01 {
  z-index: 1;
  position: relative;
}
.p-top .s-works .c-list01 a {
  color: #fff;
}

.p-top .s-works .c-list01__img {
  height: 236px;
}

.p-top .s-works .c-list01__img.img01 {
  background: url(../image/top/works_img01.jpg);
}

.p-top .s-works .c-list01__img.img02 {
  background: url(../image/top/works_img02.jpg);
}

.p-top .s-works .c-list01__img.img03 {
  background: url(../image/top/works_img03.jpg);
}

.p-top .s-works .c-list01__img.img04 {
  background: url(../image/top/works_img04.jpg);
}

.p-top .s-works .c-list01__text {
  padding-top: 16px;
}

@media screen and (max-width: 767px) {
  .p-top .s-works .c-list01__text {
    padding-top: 12px;
  }
}

.p-top .s-works .c-list01__text span, .p-top .s-works .c-list01__text p {
  font-size: 12px;
}

.p-top .s-works .c-list01__text span {
  color: #505050;
  display: block;
  padding: 2px 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid #BFBDBD;
}

.p-top .s-works .c-list01__text h3 {
  font-size: 16px;
  padding: 10px 0 7px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-top .s-works .c-list01__text h3 {
    font-size: 1.4rem;
    padding: 8px 0 4px;
  }
}

.p-top .s-pickup {
  background: #F2FEFF;
}

.p-top .s-pickup__items {
  margin-bottom: 25px;
}

.p-top .s-pickup__items .f-left {
  color: #fff;
  padding: 47px 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup__items .f-left {
    padding: 30px 12px;
  }
}

.p-top .s-pickup__items .f-right {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.p-top .s-pickup__label {
  font-size: 19px;
  padding-bottom: 7px;
}

.p-top .s-pickup__boxtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top .s-pickup__boxtext h2 {
  font-size: 29px;
  margin-right: 30px;
  padding-right: 10px;
  letter-spacing: 8px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  border-right: 3px solid #fff;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup__boxtext h2 {
    font-size: 2.5rem;
    padding-right: 6px;
    margin-right: 15px;
    border-right: 1.5px solid #fff;
  }
}

.p-top .s-pickup__boxtext--textarea {
  margin-top: -10px;
}

.p-top .s-pickup__boxtext--top h3 {
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup__boxtext--top h3 {
    font-size: 2.8rem;
  }
}

.p-top .s-pickup__boxtext--top p {
  font-size: 21px;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup__boxtext--top p {
    font-size: 1.6rem;
  }
}

.p-top .s-pickup__boxtext--bottom {
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid #fff;
}

.p-top .s-pickup__boxtext--bottom h3 {
  font-size: 33px;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup__boxtext--bottom h3 {
    font-size: 2.2rem;
  }
}

.p-top .s-pickup .item01 .f-left {
  background: #17BFF2;
}

.p-top .s-pickup .item01 .s-pickup__boxtext--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top .s-pickup .item01 .s-pickup__boxtext--top .txt {
  width: 70%;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup .item01 .s-pickup__boxtext--top .logo {
    zoom: 60%;
  }
}

.p-top .s-pickup .item01 .f-right {
  background: url(../image/top/pickup01_bg.jpg);
}

.p-top .s-pickup .item02 .f-left {
  color: #000;
  background: #F7DB68;
}

.p-top .s-pickup .item02 .s-pickup__boxtext h2 {
  border-right: 3px solid #000;
}

@media screen and (max-width: 767px) {
  .p-top .s-pickup .item02 .s-pickup__boxtext h2 {
    border-right: 1.5px solid #000;
  }
}

.p-top .s-pickup .item02 .s-pickup__boxtext--bottom {
  border-top: 1px solid #000;
}

.p-top .s-pickup .item02 .f-right {
  background: url(../image/top/pickup02_bg.jpg);
}

.p-top .s-pickup .item03 .f-left {
  background: #5BD58A;
}

.p-top .s-pickup .item03 .f-right {
  background: url(../image/top/pickup03_bg.jpg);
}

/*------------------------------------------------------------
p-glass
------------------------------------------------------------*/
.visual-glass .c-mainvisual__inner {
  background: url(../image/glass/mainvisual.jpg);
}

/*------------------------------------------------------------
p-glass_introduce
------------------------------------------------------------*/
.p-glass {
  /* section-descript
  ------------------------------------------------------------*/
  /* section-introduce
  ------------------------------------------------------------*/
  /* section-fire
  ------------------------------------------------------------*/
  /* section-wood
  ------------------------------------------------------------*/
  /* section-materials
  ------------------------------------------------------------*/
}

.p-glass .s-introduce {
  background: url(../image/glass/introduce/introduce_bg.jpg);
}

.p-glass .s-feature {
  position: relative;
}

.p-glass .s-feature:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.64);
}

.p-glass .s-feature .f-left {
  background: url(../image/glass/introduce/feature_img.jpg);
}

.p-glass .s-feature .f-right {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-feature .f-right {
    margin-left: 0;
  }
}

.p-glass .s-feature .f-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-glass .s-feature .f-right ul li {
  width: 170px;
  height: 120px;
  color: #fff;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 21px;
  text-align: center;
  background: #121010;
  width: calc((100% - 40px) / 3);
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-feature .f-right ul li {
    height: 20vw;
    margin-top: 3%;
    font-size: 1.6rem;
    width: calc((100% - 6%) / 3);
  }
}

.p-glass .s-feature .f-right ul li:not(:nth-child(3n)) {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-feature .f-right ul li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
}

.p-glass .s-feature .f-right ul li:nth-child(-n + 3) {
  margin-top: 0;
}

.p-glass .s-uses, .p-glass .s-application {
  position: relative;
  padding-top: 1px;
}

.p-glass .s-uses h2, .p-glass .s-application h2 {
  z-index: 1;
  color: #fff;
  font-size: 23px;
  padding: 10px;
  display: block;
  text-align: center;
  position: relative;
  margin: -28px auto 0;
  background: #3B0F0F;
  max-width: 408px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-uses h2, .p-glass .s-application h2 {
    font-size: 1.7rem;
    max-width: 264px;
    padding: 6px;
    margin: -18px auto 0;
  }
}

.p-glass .s-uses__list, .p-glass .s-application__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-glass .s-uses__list img, .p-glass .s-application__list img {
  width: 100%;
}

.p-glass .s-uses__list li, .p-glass .s-application__list li {
  width: calc((100% - 60px) / 4);
}

@media screen and (min-width: 768px) {
  .p-glass .s-uses__list li:not(:nth-child(4n)), .p-glass .s-application__list li:not(:nth-child(4n)) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-glass .s-uses__list li, .p-glass .s-application__list li {
    margin-top: 30px;
    width: calc((100% - 3%) / 2);
  }
  .p-glass .s-uses__list li:not(:nth-child(2n)), .p-glass .s-application__list li:not(:nth-child(2n)) {
    margin-right: 3%;
  }
  .p-glass .s-uses__list li:nth-child(-n + 2), .p-glass .s-application__list li:nth-child(-n + 2) {
    margin-top: 0;
  }
}

.p-glass .s-application .c-list01__text {
  background: #EAEAEA;
}


.p-glass .s-uses__textarea, .p-glass .s-application__textarea {
  font-size: 16px;
  max-width: 745px;
  line-height: 2;
  margin: 45px auto 0;
}

@media screen and (max-width: 767px) {
  .p-glass .s-uses__textarea, .p-glass .s-application__textarea {
    font-size: 1.4rem;
    margin: 30px auto 0;
  }
}

.p-glass .s-uses {
  color: #fff;
}

.p-glass .s-uses:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
  position: absolute;
  background: rgba(59, 15, 15, 0.64);
}

.p-glass .s-uses__list--txt p {
  font-size: 17px;
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-uses__list--txt p {
    font-size: 1.4rem;
    padding-top: 5px;
  }
}

.p-glass .s-companies {
  background: #E6F4E7;
}
.p-glass .s-companies__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-glass .s-companies__list {
    padding-top: 35px;
  }
}

.p-glass .s-companies__list img {
  width: 100%;
}

.p-glass .s-companies__list li {
  width: calc((100% - 12%) / 5);
}

@media screen and (min-width: 768px) {
  .p-glass .s-companies__list li:not(:nth-child(5n)) {
    margin-right: 3%;
  }
}

@media screen and (max-width: 767px) {
  .p-glass .s-companies__list li {
    margin-top: 30px;
    width: calc((100% - 6%) / 3);
  }
  .p-glass .s-companies__list li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .p-glass .s-companies__list li:nth-child(-n + 3) {
    margin-top: 0;
  }
}

.p-glass .s-companies__list--txt h3 {
  font-size: 21px;
  padding-top: 16px;
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
  .p-glass .s-companies__list--txt h3 {
    font-size: 1.7vw;
  }
}

@media screen and (max-width: 767px) {
  .p-glass .s-companies__list--txt h3 {
    padding-top: 8px;
  }
}

@media screen and (max-width: 767px) and (min-width: 426px) {
  .p-glass .s-companies__list--txt h3 {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 425px) {
  .p-glass .s-companies__list--txt h3 {
    font-size: 3.5vw;
  }
}

.p-glass .s-companies__btn,
.p-top .s-works__btn {
  color: #fff;
  display: block;
  font-size: 19px;
  max-width: 270px;
  padding: 11px 0;
  text-align: center;
  margin: 48px auto 0;
  background: rgba(0, 0, 0, 0.39);
}

@media screen and (max-width: 767px) {
  .p-glass .s-companies__btn,
  .p-top .s-works__btn {
    padding: 6px 0;
    font-size: 1.6rem;
    max-width: 165px;
    margin: 40px auto 0;
  }
}



.p-glass .s-application__list--txt {
  color: #000;
  padding: 16px 0 12px;
  background: #EAEAEA;
}

@media screen and (max-width: 767px) {
  .p-glass .s-application__list--txt {
    padding: 10px 0 6px;
  }
}

.p-glass .s-application__list--txt h3 {
  font-size: 24px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-glass .s-application__list--txt h3 {
    font-size: 1.8rem;
  }
}

.p-glass .s-application__list--txt p {
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-application__list--txt p {
    font-size: 1.3rem;
  }
}

.p-glass .s-fire {
  color: #fff;
  background: url(../image/glass/introduce/fire_bg.jpg);
}

.p-glass .s-wood {
  background: url(../image/glass/introduce/wood_bg.jpg);
}

.p-glass .s-materials {
  background: #EEE5FF;
}

/*------------------------------------------------------------
p-glass_catalog
------------------------------------------------------------*/
.p-glass {
  /* section-catalog
  ------------------------------------------------------------*/
}

.p-glass .s-catalog {
  background: url(../image/glass/catalog/catalog_bg.jpg);
}

.p-glass .s-catalog:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
}

.p-glass .s-catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-glass .s-catalog__item {
  padding: 40px 0;
  width: calc((100% - 24%) / 4);
}

@media screen and (min-width: 768px) {
  .p-glass .s-catalog__item:not(:nth-child(4n)) {
    margin-right: 8%;
  }
}

@media screen and (max-width: 767px) {
  .p-glass .s-catalog__item {
    padding: 20px 0;
    width: calc((100% - 3%) / 2);
  }
  .p-glass .s-catalog__item:not(:nth-child(2n)) {
    margin-right: 3%;
  }
}

.p-glass .s-catalog__item--img img {
  width: 100%;
}

.p-glass .s-catalog__item--txt {
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-catalog__item--txt {
    padding-top: 10px;
  }
}

.p-glass .s-catalog__item--txt a {
  color: #fff;
  display: block;
  font-size: 19px;
  padding: 6px 0;
  text-align: center;
  background: #121010;
}

@media screen and (max-width: 767px) {
  .p-glass .s-catalog__item--txt a {
    font-size: 1.5rem;
    padding: 3px 0;
  }
}

.p-glass .s-catalog__item--txt p {
  font-size: 18px;
  line-height: 1.5;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-catalog__item--txt p {
    font-size: 1.4rem;
    padding-top: 10px;
  }
}


.p-glass .s-catalog__banner {
  padding: 120px 0 220px;
}
@media screen and (max-width: 767px) {
  .p-glass .s-catalog__banner {
    padding: 80px 0 100px;
  }
}

/*------------------------------------------------------------
p-glass_company
------------------------------------------------------------*/
.p-glass {
  /* section-company
  ------------------------------------------------------------*/
}

.p-glass .s-company {
  background: #E6F4E7;
}

.p-glass .s-company__item {
  padding: 50px 0;
}

@media screen and (max-width: 767px) {
  .p-glass .s-company__item {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .p-glass .s-company__item .f-left {
    height: 60vw;
  }
}

.p-glass .s-company__item .f-right {
  margin-left: 6%;
  -ms-flex-item-align: center;
  align-self: center;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .p-glass .s-company__item .f-right {
    margin-left: 0;
    padding: 20px 0;
  }
}

.p-glass .s-company__item .f-right h3 {
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-company__item .f-right h3 {
    font-size: 2rem;
    text-align: center;
  }
}

.p-glass .s-company__item .f-right p {
  font-size: 16px;
  padding-top: 20px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-glass .s-company__item .f-right p {
    font-size: 1.4rem;
    padding-top: 15px;
  }
}

.p-glass .s-company ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.p-glass .s-company ul li {
  margin-top: 55px;
  width: calc((100% - 3%) / 2);
}
.p-glass .s-company ul li:nth-child(-n+2) {
  margin-top: 0;
}
.p-glass .s-company ul li:not(:nth-child(2n)) {
  margin-right: 3%;
}
.p-glass .s-company ul li h3 {
  font-size: 20px;
  padding-top: 15px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-company ul {
    padding-top: 15px;
  }
  .p-glass .s-company ul li {
    margin-top: 30px;
  }
  .p-glass .s-company ul li h3 {
    font-size: 1.5rem;
    padding-top: 6px;
  }
}



.p-glass .s-company .item01 .f-left {
  background: url(../image/glass/company/item01.jpg);
}

.p-glass .s-company .item02 .f-left {
  background: url(../image/glass/company/item02.jpg);
}

.p-glass .s-company .item03 .f-left {
  background: url(../image/glass/company/item03.jpg);
}

.p-glass .s-company .item04 .f-left {
  background: url(../image/glass/company/item04.jpg);
}

.p-glass .s-company .item05 .f-left {
  background: url(../image/glass/company/item05.jpg);
}

/*------------------------------------------------------------
p-glass_company
------------------------------------------------------------*/
.p-glass {
  /* section-faq
  ------------------------------------------------------------*/
}

.p-glass .s-faq {
  background: #F4E6E6;
}

.p-glass .s-faq__item {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .p-glass .s-faq__item {
    padding: 10px 0;
  }
}

.p-glass .s-faq__item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-glass .s-faq__item dl + dl {
  border-top: 1px solid #707070;
}

.p-glass .s-faq__item dl dt {
  font-size: 80px;
  min-width: 100px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-faq__item dl dt {
    font-size: 4rem;
    min-width: 40px;
  }
}

.p-glass .s-faq__item dl dd h3 {
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-faq__item dl dd h3 {
    font-size: 1.8rem;
  }
}

.p-glass .s-faq__item dl dd p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-glass .s-faq__item dl dd p {
    font-size: 1.4rem;
  }
}

.p-glass .s-faq__item--answer {
  padding-top: 16px;
}

@media screen and (max-width: 767px) {
  .p-glass .s-faq__item--answer {
    padding-top: 10px;
  }
}

/*------------------------------------------------------------
p-about
------------------------------------------------------------*/
.visual-about .c-mainvisual__inner {
  background: url(../image/about/mainvisual.jpg);
}

.p-about {
  /* section-career
  ------------------------------------------------------------*/
  /* section-profile
  ------------------------------------------------------------*/
  /* section-access
  ------------------------------------------------------------*/
}

.p-about .s-table {
  background-color: #F1FAEC;
}

.p-about .s-career {
  background: #D8DEEF;
}

.p-about .s-descript dl {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-about .s-descript dl {
    padding-top: 15px;
  }
}

.p-about .s-history {
  background: #FAF7EC;
}

.p-about .s-business {
  background: #E8E6F4;
}


.p-about .s-company {
  background: #F4E6E6;
}

.p-about .s-company__item {
  margin: 50px 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .p-about .s-company__item {
    margin: 30px 0;
    flex-direction: column-reverse;
  }
}

.p-about .s-company__item .f-right {
    height: 350px;
  }

@media screen and (max-width: 767px) {
  .p-about .s-company__item .f-right {
    height: 60vw;
  }
}

.p-about .s-company__item .f-left {
  padding: 3%;
}

@media screen and (max-width: 767px) {
  .p-about .s-company__item .f-left {
    padding: 20px 4% 30px;
  }
}

.p-about .s-company__item .f-left h3 {
  font-size: 36px;
}
.p-about .s-company__item .f-left h3 span {
  font-size: 21px;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-about .s-company__item .f-left h3 {
    font-size: 3rem;
    text-align: center;
  }
  .p-about .s-company__item .f-left h3 span {
    font-size: 1.7rem;
  }
}

.p-about .s-company__item .f-left p {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .p-about .s-company__item .f-left p {
    font-size: 1.4rem;
    margin-top: 15px;
    padding-top: 15px;
  }
}

.p-about .s-company .item01 .f-right {
  background: url(../image/about/company_img01.jpg);
}

.p-about .s-company .item02 .f-right {
  background: url(../image/about/company_img02.jpg);
}

.p-about .s-company .item03 .f-right {
  background: url(../image/about/company_img03.jpg);
}

.p-about .s-company .item04 .f-right {
  background: url(../image/about/company_img04.jpg);
}

.p-about .s-company .item05 .f-right {
  background: url(../image/about/company_img05.jpg);
}


.p-about .s-greeting .s-descript__img img {
  width: 100%;
}
.p-about .s-greeting .s-descript__txt {
  max-width: 100%;
}

.p-about .s-greeting .s-greeting__item {
  padding-top: 70px;
}
.p-about .s-greeting .s-greeting__item .f-left {
  margin-right: 5%;
}
.p-about .s-greeting .s-greeting__item h3 {
  font-size: 26px;
  padding-bottom: 20px;
}
.p-about .s-greeting .s-greeting__item .s-greeting__item--img {
  height: 335px;
}
.p-about .s-greeting .item1 .s-greeting__item--img {
  background: url(../image/about/greeting_img01.jpg);
}
.p-about .s-greeting .item2 .s-greeting__item--img {
  background: url(../image/about/greeting_img02.jpg);
}
.p-about .s-greeting .item3 .s-greeting__item--img {
  background: url(../image/about/greeting_img03.jpg);
}
.p-about .s-greeting .item4 .s-greeting__item--img {
  background: url(../image/about/greeting_img04.jpg);
}
.p-about .s-greeting .item5 .s-greeting__item--img {
  background: url(../image/about/greeting_img05.jpg);
}

@media screen and (max-width: 767px) {
  .p-about .s-greeting .s-greeting__item {
    padding-top: 40px;
  }
  .p-about .s-greeting .s-greeting__item .f-left {
    margin-right: 0;
  }
  .p-about .s-greeting .s-greeting__item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .p-about .s-greeting .s-greeting__item:nth-child(odd) .f-left {
    margin-bottom: 16px;
  }
  .p-about .s-greeting .s-greeting__item:nth-child(even) .f-left {
    margin-top: 16px;
  }
  .p-about .s-greeting .s-greeting__item h3 {
    font-size: 1.8rem;
    padding-bottom: 12px;
  }
  .p-about .s-greeting .s-greeting__item .s-greeting__item--img {
    height: 60vw;
  }
}


/*------------------------------------------------------------
p-news
------------------------------------------------------------*/
.visual-news .c-mainvisual__inner {
  background: url(../image/news/mainvisual.jpg);
}

.p-news {
  /* section-news
  ------------------------------------------------------------*/
}

.p-news .s-news h3 {
  font-size: 21px;
  text-align: center;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .p-news .s-news h3 {
    font-size: 1.7rem;
  }
}

.p-news .s-news ul.list {
  max-width: 745px;
  margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
  .p-news .s-news ul.list {
    margin: 30px auto 0;
  }
}

.p-news .s-news ul.list li {
  border-bottom: 1px solid #707070;
}

.p-news .s-news ul.list li .cat.all {
  color: #4D4D4D;
  border: 1px solid #4D4D4D;
}

.p-news .s-news ul.list li .cat.news {
  color: #0AACDD;
  border: 1px solid #0AACDD;
}

.p-news .s-news ul.list li .cat.publication {
  color: #06C14E;
  border: 1px solid #06C14E;
}

.p-news .s-news ul.list li .cat.exhibition {
  color: #FA960D;
  border: 1px solid #FA960D;
}

.p-news .s-news ul.list a {
  color: #484848;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 26px 0;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .p-news .s-news ul.list a {
    font-size: 1.4rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 16px 0;
  }
}

.p-news .s-news ul.list a .date {
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .p-news .s-news ul.list a .date {
    margin-right: 8px;
  }
}

.p-news .s-news ul.list a .cat {
  color: #fff;
  text-align: center;
  display: block;
  min-width: 120px;
  font-size: 12px;
  padding: 5px 0;
  margin-right: 15px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .p-news .s-news ul.list a .cat {
    padding: 3px 0;
    min-width: 100px;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-news .s-news ul.list a .text {
    padding-top: 4px;
  }
}

/*------------------------------------------------------------
  p-news_details
  ------------------------------------------------------------*/
  .s-news__single {
    max-width: 745px;
    margin: 0 auto;
    font-size: 16px;
  }

  @media screen and (max-width: 767px) {
    .s-news__single {
      font-size: 1.4rem;
    }
  }

  .s-news__single--label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #C3C3C3;
    border-bottom: 1px solid #C3C3C3;
  }

  @media screen and (max-width: 767px) {
    .s-news__single--label {
      padding: 6px 0;
    }
  }

  .s-news__single--txt {
    padding-top: 45px;
    line-height: 2.0;
  }

  @media screen and (max-width: 767px) {
    .s-news__single--txt {
      padding-top: 30px;
    }
  }

.s-news__single--txt p {
	margin: 1em 0;
}

.s-news__single--txt blockquote {
	margin-left: 1em;
}

  .s-news__single--img {
    height: 425px;
    margin-top: 45px;
    background: url(../image/news/news_img.jpg);
  }

  @media screen and (max-width: 767px) {
    .s-news__single--img {
      height: 57vw;
      margin-top: 30px;
    }
  }

/*------------------------------------------------------------
p-office
------------------------------------------------------------*/
.visual-office .c-mainvisual__inner {
  background: url(../image/office/mainvisual.jpg);
}

.p-office {
  /* section-office
  ------------------------------------------------------------*/
  /* section-list
  ------------------------------------------------------------*/
  /* section-detail
  ------------------------------------------------------------*/
}

.p-office .s-office__table {
  overflow-y: hidden;
}

.p-office .s-office__table thead {
  color: #fff;
  background: #4D4D4D;
}

.p-office .s-office__table th, .p-office .s-office__table td {
  padding: 20px 1.5%;
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-office .s-office__table th, .p-office .s-office__table td {
    font-size: 1.3rem;
    padding: 15px 1.5%;
  }
}

.p-office .s-office__table tbody td {
  border-bottom: 1px solid #707070;
}

.p-office .s-office__table .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-office .s-office__table .col2 {
    display: block;
  }
  .p-office .s-office__table .col2 p {
    padding-bottom: 10px;
  }
}

.p-office .s-office__table .col2 a {
  color: #08AAB7;
}

.p-office .s-office__table .col2 .cat {
  color: #fff;
  text-align: center;
  display: block;
  min-width: 120px;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .p-office .s-office__table .col2 .cat {
    padding: 3px 0;
    min-width: 80px;
    margin-right: 0;
  }
}

.p-office .s-office__table .col2 .cat.hokkaido {
  color: #707070;
  border: 1px solid #707070;
}

.p-office .s-office__table .col2 .cat.tohoku {
  color: #0AACDD;
  border: 1px solid #0AACDD;
}

.p-office .s-office__table .col2 .cat.kanto {
  color: #06C14E;
  border: 1px solid #06C14E;
}

.p-office .s-office__table .col2 .cat.chubu {
  color: #FA960D;
  border: 1px solid #FA960D;
}

.p-office .s-office__table .col2 .cat.kinki {
  color: #E856D7;
  border: 1px solid #E856D7;
}

.p-office .s-office__table .col2 .cat.all {
  color: #FF4545;
  border: 1px solid #FF4545;
}

.p-office .s-office__table .col2 .cat.shikoku {
  color: #3535D9;
  border: 1px solid #3535D9;
}

.p-office .s-office__table .col2 .cat.kyushu {
  color: #9BB126;
  border: 1px solid #9BB126;
}

.p-office .s-office .c-tabs {
  margin-bottom: 40px;
}

.p-office .s-area {
  /*background: #F5F5F5;*/
}

.p-office .s-descript__table tr {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

/*------------------------------------------------------------
p-works
------------------------------------------------------------*/
.visual-works .c-mainvisual__inner {
  background: url(../image/works/mainvisual.jpg);
}

.p-works {
  /* section-works
  ------------------------------------------------------------*/
}

.p-works .s-works .c-title02 {
  padding-top: 50px;
}

.p-works .s-works .c-list02.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-works .s-works .c-tabs {
  padding-top: 15px;
}

.p-works .s-works .c-tabs a {
  width: 100px;
}

/*------------------------------------------------------------
p-contact
------------------------------------------------------------*/
.visual-contact .c-mainvisual__inner {
  background: url(../image/contact/mainvisual.jpg);
}

.p-contact {
  /* section-contact
  ------------------------------------------------------------*/
  /* section-form
  ------------------------------------------------------------*/
}

.blue {
  color: #08AAB7;
}

.p-contact .s-contact__list .f-right {
  margin-left: 5%;
}
.p-contact .s-contact__list + .s-contact__list {
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__list .f-right {
    margin-left: 0;
    margin-top: 50px;
  }
  .p-contact .s-contact__list + .s-contact__list {
    padding-top: 50px;
  }
}

.p-contact .s-contact__list a {
  display: block;
}

.p-contact .s-contact__list--img {
  height: 335px;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__list--img {
    height: 60vw;
  }
}

.p-contact .s-contact__list--img.img01 {
  background: url(../image/contact/contact_img01.jpg) center no-repeat;
}

.p-contact .s-contact__list--img.img02 {
  background: url(../image/contact/contact_img02.jpg) center no-repeat;
}

.p-contact .s-contact__list--img.img03 {
  background: url(../image/contact/contact_img03.jpg) center no-repeat;
}

.p-contact .s-contact__list--txt {
  text-align: center;
}

.p-contact .s-contact__list--txt h3 {
  font-size: 26px;
  padding-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__list--txt h3 {
    font-size: 2rem;
    padding-top: 16px;
  }
}

.p-contact .s-contact__list--txt p {
  font-size: 16px;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__list--txt p {
    font-size: 1.4rem;
    padding-top: 12px;
  }
}

.p-contact .s-contact__list--txt .c-btn01 {
  margin: 20px auto 0;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__list--txt .c-btn01 {
    margin: 12px auto 0;
  }
}

.p-contact .s-contact__label {
  font-size: 16px;
}

.p-contact .s-contact__descript {
  color: #FF4D2C;
  font-size: 16px;
  padding: 20px 5%;
  line-height: 1.8;
  margin-top: 35px;
  border: 1px solid #FF4D2C;
}

@media screen and (max-width: 767px) {
  .p-contact .s-contact__descript {
    font-size: 1.4rem;
    padding: 10px 15px;
    margin-top: 25px;
  }
}

.p-contact .s-company {
  background: #E6F4E7;
}

.p-contact .s-personal {
  background: #FFF8ED;
}

.p-contact .s-application {
  background: #F4E6E6;
}
.p-contact .s-application__inner {
  justify-content: space-between;
  padding-bottom: 50px;
}

.p-contact .s-application .f-left,
.p-contact .s-application .f-right {
  width: 47%;
}
.p-contact .s-application .f-left {
  background: url(../image/contact/contact_img03.jpg);
  height: 335px;
}
.p-contact .s-application .f-right {
  padding-top: 25px;
}
.p-contact .s-application .f-right h3 {
  font-size: 26px;
}
.p-contact .s-application .f-right p {
  font-size: 16px;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-contact .s-application .f-left,
  .p-contact .s-application .f-right {
    width: 100%;
  }
  .p-contact .s-application .f-left {
    height: 65vw;
  }
  .p-contact .s-application .f-right {
    padding-top: 20px;
  }
  .p-contact .s-application .f-right h3 {
    font-size: 2rem;
  }
  .p-contact .s-application .f-right p {
    font-size: 1.4rem;
    padding-top: 10px;
  }
}

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.group-num .piece {
  display: inline-flex;
  vertical-align: sub;
  padding-left: 10px;
}
.group-num .number-input {
    display: inline-flex;
    background: #F5F5F5;
    padding: 5px;
}

.group-num .number-input,
.group-num .number-input * {
    box-sizing: border-box;
}

.group-num .number-input button {
    outline:none;
    -webkit-appearance: none;
    background-color: #F5F5F5;
    border: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    cursor: pointer;
    margin: 0;
    position: relative;
    padding:0;
}

.group-num .number-input button:after {
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  border-style: solid;
  border-width: 6px 10px 6px 0;
  border-color: transparent #B1B1B1 transparent transparent;
  transform: translate(-50%, -50%);
  position: absolute;
}
.group-num .number-input button.plus:after {
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #B1B1B1;
}

.group-num .number-input input[type=number] {
    font-family: sans-serif;
    max-width: 4.5rem;
    padding: .5rem;
    text-align: center;
    outline:none;
    height: 30px;
}


.s-form dl {
  width: 100%;
  display: table;
  margin-bottom: 20px;
}

.s-form dl dt, .s-form dl dd {
  font-size: 16px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .s-form dl dt, .s-form dl dd {
    font-size: 1.4rem;
    display: block;
  }
}

.s-form dl dt {
  width: 21%;
}

@media screen and (max-width: 767px) {
  .s-form dl dt {
    width: 100%;
    margin-bottom: 4px;
  }
}

.s-form .group-email dd p {
  padding-bottom: 4px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .s-form .group-email dd p {
    font-size: 1.3rem;
    margin-top: -4px;
  }
}

.s-form dl dd input, .s-form dl dd textarea, .s-form dl dd select {
  color: rgb(133, 133, 133);
  width: 100%;
  height: 50px;
  padding: 8px 18px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #707070;
  background: #fff;
  vertical-align: middle;
  resize: none;
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -webkit-transition: border linear .2s, -webkit-box-shadow linear .2s;
  transition: border linear .2s, -webkit-box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s, -webkit-box-shadow linear .2s;
}

@media screen and (max-width: 767px) {
  .s-form dl dd input, .s-form dl dd textarea, .s-form dl dd select {
    font-size: 1.4rem;
    width: 100%;
    height: 38px;
    padding: 8px;
  }
}

.s-form dl dd input[type=radio] {
  width: auto;
  height: auto;
  vertical-align: baseline;
}

.s-form dl dd textarea {
  width: 100%;
  height: 520px;
}

@media screen and (max-width: 767px) {
  .s-form dl dd textarea {
    height: 60vw;
  }
}

.s-form dl dd select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #707070;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  border-radius: 5px;
  max-height: 38px;
  max-width: 200px;
  background: #EAEAEA;
  background-image: url(../image/workshop/ic_select.png);
  background-repeat: no-repeat;
  background-position: center right 13px;
}

@media screen and (max-width: 767px) {
  .s-form dl dd select {
    background-position: center right 8px;
  }
}

.s-form dl dd input:focus, .s-form dl dd textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

.s-form dl.group-email dt {
  /*padding-top: 35px;*/
}

@media screen and (max-width: 767px) {
  .s-form dl.group-email dt {
    padding-top: 0;
  }
}

.s-form dl p.blue {
	padding-top: 10px;
	font-size: 90%;
}

.s-form dl.group-inquiry dt, .s-form dl.group-check dt {
  padding-top: 10px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .s-form dl.group-inquiry dt, .s-form dl.group-check dt {
    padding-top: 0;
  }
}

.s-form dl ::-webkit-input-placeholder {
  color: #7E7E7E;
}

.s-form dl :-ms-input-placeholder {
  color: #7E7E7E;
}

.s-form dl ::-ms-input-placeholder {
  color: #7E7E7E;
}

.s-form dl ::placeholder {
  color: #7E7E7E;
}

.s-form .group-accept {
  text-align: center;
  margin: 50px auto 0;
}

@media screen and (max-width: 767px) {
  .s-form .group-accept {
    margin: 30px auto 0;
  }
}

.s-form .group-accept p {
  padding: 24px 5px;
  background-color: #FFF6B4;
}

@media screen and (max-width: 767px) {
  .s-form .group-accept p {
    padding: 18px 5px;
  }
}

.s-form .group-accept .checkbox {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .s-form .group-accept .checkbox {
    padding-top: 15px;
  }
}

.s-form .group-accept label {
  font-size: 21px;
  line-height: 2;
  color: #383838;
}

@media screen and (max-width: 767px) {
  .s-form .group-accept label {
    font-size: 16px;
  }
}

.s-form .group-accept input {
  width: 17px;
  height: 17px;
  margin: 0 22px 0 0;
  border: 1px solid #191919;
}

@media screen and (max-width: 767px) {
  .s-form .group-accept input {
    margin-right: 12px;
  }
}

.s-form .form-submit input, .s-form .form-confirm input {
  width: 100%;
  height: 100%;
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  padding: 25px 0;
  margin: 50px auto 0;
  background: #08AAB7;
  border: none;
}

@media screen and (max-width: 767px) {
  .s-form .form-submit input, .s-form .form-confirm input {
    font-size: 15px;
    padding: 10px 0;
    min-height: 36px;
    margin: 30px auto 0;
  }
}

.s-form .form-submit input {
  width: 540px;
  display: block;
}

@media screen and (max-width: 767px) {
  .s-form .form-submit input {
    width: 180px;
  }
}

.s-form .form-confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.s-form .form-confirm input {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .s-form .form-confirm input {
    width: 45%;
  }
}

.s-form div.wpcf7 .ajax-loader {
  position: absolute;
}

.s-form span.wpcf7-list-item.first {
  margin: 0 !important;
}


.s-form .seminar {
  display: table;
}
.s-form .seminar input {
  border: none;
  background: none;
  width: 120px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .s-form .seminar input {
    width: 105px;
  }
}

.s-form .seminar input:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}


/*------------------------------------------------------------
p-privacy
------------------------------------------------------------*/
.visual-privacy .c-mainvisual__inner {
  background: url(../image/privacy/mainvisual.jpg);
}

.p-privacy .s-policy {
  background: #ECF9FC;
}

.p-privacy .s-policy__item {
  padding: 40px 0;
}

.p-privacy .s-policy__item--tit {
  font-size: 26px;
}
.p-privacy .s-policy__item--txt {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #707070;
}
.p-privacy .s-policy__item--txt p {
  font-size: 16px;
  line-height: 2;
}
.p-privacy .s-policy__item--txt p + p {
  padding-top: 30px;
}

.p-privacy .s-policy__item--info {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border: 1px solid #F5D3D3;
}
.p-privacy .s-policy__item--info h4 {
  font-size: 20px;
}
.p-privacy .s-policy__item--info p {
  padding-left: 36px;
  border-left: 1px solid #707070;
}

@media screen and (max-width: 767px) {
  .p-privacy .s-policy__item {
    padding: 20px 0;
  }
  .p-privacy .s-policy__item--tit {
    font-size: 2rem;
  }
  .p-privacy .s-policy__item--txt {
    margin-top: 20px;
    padding-top: 10px;
  }
  .p-privacy .s-policy__item--txt p {
    font-size: 1.4rem;
  }
  .p-privacy .s-policy__item--txt p + p {
    padding-top: 15px;
  }

  .p-privacy .s-policy__item--info {
    padding: 15px;
    display: block;
  }
  .p-privacy .s-policy__item--info h4 {
    font-size: 1.7rem;
    text-align: center;
  }
  .p-privacy .s-policy__item--info p {
    padding-left: 0;
    border-left: 0;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #707070;
  }
}


/*------------------------------------------------------------
p-workshop
------------------------------------------------------------*/
.visual-workshop .c-mainvisual__inner {
  background: url(../image/workshop/mainvisual.jpg);
}

.p-workshop .s-flow {
  background: #FAF7EC;
}
.p-workshop .s-flow__item {
  padding-bottom: 40px;
}
.p-workshop .s-flow__item.price {
	margin-top: 50px;
  background-color: #E6E0C9;
}
.p-workshop .s-flow__item.price strong {
	font-size: 120%;
}
.p-workshop .s-flow__item:nth-child(2):after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  margin: 68px auto 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 68px solid #E6E0C9;
}
.p-workshop .s-flow__item .f-left {
  height: 380px;
  margin-top: 30px;
}
.p-workshop .s-flow__item.item01 .f-left {
  background: url(../image/workshop/img01.jpg);
}
.p-workshop .s-flow__item.item02 .f-left {
  background: url(../image/workshop/img02.jpg);
}
.p-workshop .s-flow__item .f-right {
  margin-left: 5%;
}
.p-workshop .s-flow__item.price .f-right {
  margin-right: 5%;
}
.p-workshop .s-flow__item .title {
  font-size: 26px;
  padding: 25px 0;
  background: #fff;
  margin-bottom: 30px;
  text-align: center;
}
.p-workshop .s-flow__item--label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #707070;
}
.p-workshop .s-flow__item--label h3 {
  font-size: 26px;
}
.p-workshop .s-flow__item--label span {
  width: 190px;
  font-size: 22px;
  padding: 16px 0;
  text-align: center;
  background: #E6E0C9;
}
.p-workshop .s-flow__item p {
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
}
.p-workshop .s-flow__item--tit {
  font-size: 22px;
  padding: 18px 0;
  text-align: center;
  background: #E6E0C9;
  margin-top: 50px;
}
.p-workshop .s-flow__item--list {
  margin-top: 12px;
}
.p-workshop .s-flow__item--list a {
  color: #29A59C;
  padding: 17px  0;
  text-decoration: underline;
  border-top: 1px solid #CCC4A2;
}
.p-workshop .s-flow__item--list li:last-child a {
  border-bottom: 1px solid #CCC4A2;
}

@media screen and (max-width: 767px) {
  .p-workshop .s-flow__item {
    padding-bottom: 20px;
  }
  .p-workshop .s-flow__item:not(:last-child):after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    margin: 35px auto 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid #E6E0C9;
  }
  .p-workshop .s-flow__item .f-left {
    height: 60vw;
    margin-top: 0;
  }
  .p-workshop .s-flow__item .f-right {
    margin-left: 0;
  }
  .p-workshop .s-flow__item .title {
    font-size: 2rem;
    padding: 12px 0;
    margin-bottom: 20px;
  }
  .p-workshop .s-flow__item--label h3 {
    font-size: 2rem;
  }
  .p-workshop .s-flow__item--label span {
    width: 130px;
    font-size: 1.8rem;
    padding: 8px 0;
  }
  .p-workshop .s-flow__item p {
    font-size: 1.4rem;
    margin-top: 15px;
  }
  .p-workshop .s-flow__item--tit {
    font-size: 1.8rem;
    padding: 10px 0;
    margin-top: 30px;
  }
  .p-workshop .s-flow__item--list {
    margin-top: 12px;
  }
  .p-workshop .s-flow__item--list a {
    padding: 10px  0;
  }
}

.p-workshop .s-infor {
  background: #E6F4E7;
}

.p-workshop .s-descript__video {
  max-width: 100%;
}
.p-workshop .s-infor .s-descript__txt {
  margin: 50px auto 0;
  max-width: 100%;
}
.p-workshop .s-descript__txt .c-title02 {
  text-align: left;
}

.p-workshop .s-step01 {
  background: #FAF7EC;
}

.p-workshop .s-step01 .group-check .item-check {
  background: #FFFEF7;
  padding: 25px 16px;
}
.p-workshop .s-step01 .group-check .item-check + .item-check {
  margin-top: 10px;
}
.p-workshop .s-step01 .group-check .item-check .label-check {
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
}
.p-workshop .s-step01 .group-check .item-check .year-check {
  padding: 0 4%;
}
.p-workshop .s-step01 .group-check .item-check .year-check + .year-check {
  margin-top: 20px;
}
.p-workshop .s-step01 .group-check .item-check .year-check h3 {
  color: #939393;
  font-size: 21px;
  padding-bottom: 10px;
}
.p-workshop .s-step01 .group-check .item-check .year-check .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-workshop .s-step01 .group-check .item-check .wpcf7-list-item {
  margin: 0 0 0 4em;
}
.p-workshop .s-step01 .group-check .item-check .year-check .wpcf7-form-control .wpcf7-list-item {
  width: calc((100% - 4em) / 2);
  padding-bottom: 15px;
}
.p-workshop .s-step01 .group-check .item-check .year-check .wpcf7-form-control .wpcf7-list-item:nth-child(odd) {
  margin-left: 0;
}
.p-workshop .s-step01 .group-check .item-check .txt {
  padding-top: 15px;
}
.p-workshop .s-step01 .group-check input[type="checkbox"] {
  width: 19px;
  height: 19px;
}
@media screen and (max-width: 767px) {
  .p-workshop .s-step01 .group-check .item-check {
    background: #FFFEF7;
    padding: 20px 12px;
  }
  .p-workshop .s-step01 .group-check .item-check + .item-check {
    margin-top: 10px;
  }
  .p-workshop .s-step01 .group-check .item-check .label-check {
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #707070;
  }
  .p-workshop .s-step01 .group-check .item-check .year-check {
    padding: 0;
  }
  .p-workshop .s-step01 .group-check .item-check .year-check + .year-check {
    margin-top: 15px;
  }
  .p-workshop .s-step01 .group-check .item-check .year-check h3 {
    font-size: 1.7rem;
    padding-bottom: 8px;
  }
  .p-workshop .s-step01 .group-check .item-check .year-check .wpcf7-form-control {
    display: block;
  }
  .p-workshop .s-step01 .group-check .item-check .wpcf7-list-item {
    margin: 0;
  }
  .p-workshop .s-step01 .group-check .item-check .year-check .wpcf7-form-control .wpcf7-list-item {
    width: 100%;
    padding-bottom: 7px;
  }
  .p-workshop .s-step01 .group-check .item-check .txt {
    padding-top: 8px;
  }
  .p-workshop .s-step01 .group-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    vertical-align: -2px;
  }
}

.p-workshop .s-step02 {
  background: #E8E6F4;
}

.p-workshop .s-form .s-descript__txt {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-workshop .s-form .s-descript__txt {
    margin-bottom: 35px;
  }
}

.p-workshop .txtcenter {
  text-align: center;
}


/*------------------------------------------------------------
p-agents
------------------------------------------------------------*/
.visual-agents .c-mainvisual__inner {
  background: url(../image/agents/mainvisual.jpg);
}

.p-agents .s-step__list {
  display: flex;
  margin-top: 50px;
  justify-content: center;
}
.p-agents .s-step__list li {
  border: 1px solid #000;
  font-size: 12px;
  position: relative;
  width: calc((100% - 12%) / 3);
}
.p-agents .s-step__list li:not(:last-child) {
  margin-right: 6%;
}
.p-agents .s-step__list li:not(:last-child):after {
  content: "";
  width: 0;
  height: 0;
  right: -13%;
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #707070;
}
.p-agents .s-step__list--label {
  color: #fff;
  display: block;
  padding: 2px 0;
  text-align: center;
  background: #000;
}
.p-agents .s-step__list--txt {
  padding: 12px 12px 20px 12px;
}
.p-agents .s-step__list h3 {
  font-size: 16px;
  padding-bottom: 5px;
}
.p-agents .s-step__view {
  display: block;
  width: 500px;
  font-size: 32px;
  padding: 20px 0;
  max-width: 500px;
  margin: 50px auto 0;
  text-align: center;
  background: #FDAF2A;
}

.p-agents .s-agency {
  background: url(../image/agents/agency_bg.jpg);
}
.p-agents .s-agency .s-descript__txt,
.p-agents .s-feature .s-descript__txt {
  max-width: 100%;
}
.p-agents .s-agency .s-descript__img img,
.p-agents .s-feature .s-descript__img img,
.p-agents .s-recruit .s-descript__img img {
  width: 100%;
}
.p-agents .s-feature__app {
  padding: 28px;
  display: flex;
  align-items: center;
  background: #F4F4F4;
  margin-top: 50px;
}
.p-agents .s-feature__app h4 {
  font-size: 20px;
}
.p-agents .s-feature__app p {
  padding-left: 36px;
  margin-left: 36px;
  font-size: 16px;
  border-left: 1px solid #707070;
}

.p-agents .s-recruit {
  background: #F4E6E6;
}
.p-agents .s-recruit .s-descript__img {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-agents .s-step__list {
    display: block;
    margin-top: 30px;
  }
  .p-agents .s-step__list li {
    width: 100%;
  }
  .p-agents .s-step__list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .p-agents .s-step__list li:not(:last-child):after {
    right: 0;
    left: 0;
    top: auto;
    bottom: -30px;
    margin: 0 auto;
    transform: none;
    border-width: 12px 8px 0 8px;
    border-color: #707070 transparent transparent transparent;
  }
  .p-agents .s-step__list--txt {
    padding: 12px 12px 20px 12px;
  }
  .p-agents .s-step__list h3 {
    font-size: 1.4rem;
    padding-bottom: 5px;
  }
  .p-agents .s-step__view {
    width: 100%;
    margin: 35px auto 0;
    font-size: 2.3rem;
    padding: 10px 0;
  }

  .p-agents .s-feature__app {
    padding: 15px;
    display: block;
  }
  .p-agents .s-feature__app h4 {
    font-size: 1.7rem;
    text-align: center;
  }
  .p-agents .s-feature__app p {
    padding: 18px 0 0;
    margin: 18px 0 0;
    border-left: 0;
    border-top: 1px solid #707070;
  }

}

/*------------------------------------------------------------
p-sitemap
------------------------------------------------------------*/
.visual-sitemap .c-mainvisual__inner {
  background: url(../image/sitemap/mainvisual.jpg);
}

.p-sitemap .s-sitemap__item + .s-sitemap__item {
  padding-top: 60px;
}
.p-sitemap .s-sitemap__item .c-title02 {
  color: #fff;
  text-align: left;
  padding: 12px 20px;
  background: #4d4d4d;
}

@media screen and (min-width: 768px) {
  .p-sitemap .s-sitemap__list {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
  }
  .p-sitemap .s-sitemap__list li {
    width: calc((100% - 2.5%) / 2);
    margin-top: 2%;
    margin-right: 2.5%;
  }
  .p-sitemap .s-sitemap__list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .p-sitemap .s-sitemap__list li:nth-child(2n) {
    margin-right: 0;
  }
}
.p-sitemap .s-sitemap__list a {
  display: block;
  color: #2E2E2E;
  font-size: 16px;
  padding: 15px;
  position: relative;
  border: 1px solid #9B9B9B;
}
.p-sitemap .s-sitemap__list li a:after {
  content: "〉";
  position: absolute;
  right: 10px;
  top: 50%;
  font-weight: bold;
  transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 767px) {
  .p-sitemap .s-sitemap__item + .s-sitemap__item {
    padding-top: 40px;
  }
  .p-sitemap .s-sitemap__item .c-title02 {
    padding: 10px 12px;
  }
  .p-sitemap .s-sitemap__list a {
    font-size: 1.4rem;
    padding: 10px;
  }
  .p-sitemap .s-sitemap__list li a:after {
    right: 5px;
  }
  .p-sitemap .s-sitemap__list li:not(:last-child) {
    margin-bottom: 12px;
  }
}


/*お問い合わせ確認画面*/
.wpcf7c-conf {
	background-color: #e4e4e4 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
	padding: 30px;
	text-align: center;
	background-color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
	padding: 30px;
	text-align: center;
	background-color: #FFEBCC;
}

.acf-map {
    width: 100%;
    height: 400px;
}
.acf-map img {
   max-width: inherit !important;
}