@charset "UTF-8";
/* Scss Document */
/*-----------------------------------------
	共通
-----------------------------------------*/
html {
  font-size: 1px; }

body {
  background-color: #F4F5F7;
  color: #141414;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1rem;
  font-size: 16rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin: 0; }

a {
  box-sizing: border-box;
  color: #FFF;
  text-decoration: none; }

ol, ul, li {
  list-style-type: none; }

button {
  background-color: transparent;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none; }

  input,
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none; }
    
  textarea {
    resize: vertical; }

  input[type='checkbox'],
  input[type='radio'] {
    /* display: none;  */
    opacity: 0;
  }

  input[type='submit'],
  label {
    cursor: pointer; }

.wrap {
  overflow: hidden; }

.inner {
  max-width: 1024px;
  margin: 0 auto; }

.c-inner {
  margin: 0 auto;
  width: 90%; }

.dot {
  position: relative; }
  .dot:before {
    background: #F08300;
    border-radius: 50%;
    content: '';
    display: block;
    height: 4px;
    left: 6px;
    top: -6px;
    position: absolute;
    width: 4px; }

.en {
  font-family: 'Lato', sans-serif;
  font-weight: 700; }

.section-ttl {
  color: #333;
  margin-top: 120px;
  text-align: center; }
  .section-ttl span {
    color: #EAAB65;
    display: block;
    font-size: 40rem;
    letter-spacing: 0.12em;
    margin-bottom: -8px; }

.section-sub-ttl {
  color: #333;
  font-size: 24rem;
  font-weight: bold;
  margin-top: 80px;
  text-align: center; }
  .section-sub-ttl span {
    color: #EAAB65;
    display: block;
    font-size: 16rem;
    letter-spacing: 0.15em;
    margin-bottom: -8px; }

.section-sub-txt {
  margin: 40px auto;
  max-width: 90%;
  text-align: center; }

.page-hero {
  background: #F08300;
  height: 424px;
  margin-bottom: 120px;
  padding-top: 72px;
  position: relative;
  width: 100%; }
  .page-hero .hero__inner {
    align-items: center;
    display: flex;
    margin-top: 64px;
    position: relative; }
    .page-hero .hero__inner .hero-img {
      width: 80%; }
      .page-hero .hero__inner .hero-img img {
        width: 100%; }
    .page-hero .hero__inner .page-ttl {
      color: #FFF;
      font-size: 16rem;
      margin-left: 8px;
      position: absolute;
      z-index: 1; }
      .page-hero .hero__inner .page-ttl span {
        display: block;
        font-size: 64rem;
        letter-spacing: 0.15em;
        margin-bottom: -16px; }
    .page-hero .hero__inner .right {
      margin-left: -40px;
      right: 8px;
      text-align: right; }

.content {
  margin-top: 40px; }
  .content p {
    margin: 40px auto; }

.btn-more {
  margin-bottom: 16px;
  height: 48px;
  overflow: hidden;
  width: 200px; }
  .btn-more a {
    background: #F08300;
    color: #FFF;
    display: block;
    font-size: 14rem;
    letter-spacing: 0.2em;
    line-height: 48px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2; }
    .btn-more a:before {
      background: #1D2238;
      content: '';
      position: absolute;
      top: 0;
      transition: all 0.2s linear;
      left: -100%;
      z-index: -1;
      height: 100%;
      width: 100%; }
    .btn-more a:hover:before {
      left: 0; }

.btn-area {
  position: relative; }
  .btn-area .btn-more {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); }

.breadcrumb {
  color: #FFF;
  font-size: 12rem;
  padding-left: 8px; }
  .breadcrumb a:hover {
    color: #1D2238; }
  .breadcrumb img {
    margin: 0 4px; }

.list {
  width: 100%; }
  .list li {
    display: flex;
    justify-content: space-between;
    vertical-align: top; }
    .list li p {
      margin: 0 auto;
      padding: 24px 8px; }
      .list li p.item {
        border-bottom: 1px solid #1D2238;
        font-weight: bold;
        width: 28%; }
      .list li p.txt {
        border-bottom: 1px solid #999;
        margin-left: 2%;
        width: 70%; }

/*-----------------------------------------
	ヘッダー
-----------------------------------------*/
header {
  background: #F08300;
  color: #FFF;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100; }
  header .inner {
    align-items: center;
    display: flex;
    height: 72px;
    padding-left: 8px;
    padding-right: 8px; }
    header .inner .logo-area h1 {
      height: 32px; }
      header .inner .logo-area h1 a img {
        width: 100%; }
    header .inner .logo-area p {
      font-size: 8rem;
      margin: 0 0 -4px 44px; }
    header .inner nav {
      margin-left: auto; }
      header .inner nav ul {
        align-items: center;
        display: flex; }
        header .inner nav ul li {
          margin-left: 16px;
          text-align: center; }
          header .inner nav ul li a {
            color: #FFF;
            display: block;
            font-size: 8rem; }
            header .inner nav ul li a span {
              display: block;
              font-size: 14rem;
              font-weight: bold;
              margin-bottom: -4px; }
            header .inner nav ul li a:hover {
              color: #1D2238;
              transition: all 0.6s; }
          header .inner nav ul li.current a {
            color: #1D2238;
            position: relative; }
            header .inner nav ul li.current a:after {
              background: #1D2238;
              border-radius: 50%;
              content: '';
              display: block;
              height: 8px;
              margin-top: 4px;
              position: absolute;
              top: 95%;
              left: 50%;
              transform: translateX(-50%);
              -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              width: 8px; }

/*-----------------------------------------
	フッター
-----------------------------------------*/
footer {
  background: #1D2238;
  color: #FFF;
  padding-top: 40px;
  text-align: center; }
  footer .inner .logo-area {
    align-items: center;
    display: flex;
    justify-content: center; }
    footer .inner .logo-area h2 {
      height: 28px; }
    footer .inner .logo-area p {
      font-size: 12rem;
      font-weight: bold;
      margin-left: 8px; }
  footer .inner .adress {
    margin-top: 24px;
    line-height: 1.5; }
  footer .inner .banner{
    margin-top: 28px;}
    footer .inner .banner a{
      display: block;
      height: auto;
      margin: 0 auto;
      width: 320px;}
      footer .inner .banner a:hover{
        opacity: 0.8;
          transition: all 0.3s;}
      footer .inner .banner a img{
        height: auto;
        width: 100%;}
  footer .inner nav ul {
    display: flex;
    justify-content: center;
    margin-top: 32px; }
    footer .inner nav ul li {
      border-left: 1px solid #FFF;
      font-size: 14rem;
      font-weight: bold;
      margin-left: 24px;
      padding-left: 24px; }
      footer .inner nav ul li a {
        color: #FFF;
        font-size: 12rem; }
        footer .inner nav ul li a:hover,
        footer .footer__bottom .inner li a:hover{
          opacity: 0.7;
          transition: 0.3s; }
      footer .inner nav ul li:first-child {
        border-left: none; }
  footer .footer__bottom {
    background: #1D2238;
    margin-top: 20px;
    width: 100%; }
    footer .footer__bottom .inner {
      display: flex;
      justify-content: space-between;
      padding: 12px 8px; }
      footer .footer__bottom .inner li {
        text-align: left;
        font-size: 12rem; }
        footer .footer__bottom .inner li a{
         text-decoration: underline; }
          footer .footer__bottom .inner li a:last-child{
            margin-left: 16px; }

/*-----------------------------------------
	トップページ
-----------------------------------------*/
.top section {
  margin-top: 120px; }
.top .section-ttl {
  margin-top: 0; }
.top .c-txt {
  position: relative;
  width: 48%; }
  .top .c-txt .content {
    padding: 0 8px 0 48px; }
  .top .c-txt .tategaki__txt {
    opacity: 0.8;
    position: absolute;
    z-index: -1;
    width: 80px; }
.top .c-img {
  position: relative;
  width: 48%; }
  .top .c-img img {
    position: absolute; }
.top .hero {
  background: #F08300;
  height: 80vh;
  margin-top: 72px;
  position: relative; }
  .top .hero .hero__txt-area {
    position: relative;
    height: 100%;
    max-width: 1024px;
    margin: 0 auto;
    z-index: 1; }
    .top .hero .hero__txt-area .txt {
      left: 8px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%); }
      .top .hero .hero__txt-area .txt h2 {
        align-items: center;
        color: #FFF;
        display: flex;
        font-size: 24rem;
        font-weight: bold;
        margin-top: 8px; }
        .top .hero .hero__txt-area .txt h2:before {
          background: #FFF;
          content: '';
          display: block;
          height: 2px;
          margin-right: 8px;
          width: 120px; }
  .top .hero .mainvisual {
    background: url("../img/mainvisual.jpg") no-repeat center right/cover;
    height: 80vh;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 70%;
    z-index: 0; }
.top .animate .c-txt .section-ttl {
  position: relative;
  left: 24px;
  transition: all 0.6s;
  opacity: 0; }
.top .animate .c-txt.moving .section-ttl {
  opacity: 1;
  left: 0; }
.top .s1 {
  align-items: center;
  background: #1D2238;
  display: flex;
  margin: -40px auto 0;
  max-width: 960px;
  padding: 16px 20px;
  position: relative;
  z-index: 2; }
  .top .s1 .section-ttl {
    color: #FFF;
    font-size: 14rem;
    text-align: left; }
    .top .s1 .section-ttl span {
      color: #FFF;
      font-size: 24rem; }
  .top .s1 .latest-news {
    align-items: center;
    display: flex;
    width: 100%; }
    .top .s1 .latest-news ul {
      color: #FFF;
      padding: 0 16px;
      width: 80%; }
      .top .s1 .latest-news ul .txt{
        line-height: 1.5; }
      .top .s1 .latest-news ul li:nth-child(3),
      .top .s1 .latest-news ul li:nth-child(5){
        margin-top: 12px; }
        .top .s1 .latest-news ul .txt a:hover{
          text-decoration: underline; }
        .top .s1 .latest-news ul .txt a::after{
          content: url(../img/icon-to-link_white.svg);
          display: inline-block;
          height: 16px;
          padding-left: 4px;
          width: 16px; }
          .top .s1 .latest-news ul .txt a.no-icon::after{
            display: none; }
    .top .s1 .latest-news .btn-news {
      width: 20%; }
      .top .s1 .latest-news .btn-news a {
        border: 1px solid #FFF;
        color: #FFF;
        display: inline-block;
        height: 48px;
        line-height: 48px;
        text-align: center;
        width: 100%; }
        .top .s1 .latest-news .btn-news a:hover {
          background: rgba(255, 255, 255, 0.2);
          border: none;
          transition: all 0.2s; }
.top .s2 {
  background: rgba(234, 171, 101, 0.2);
  padding-bottom: 96px;
  padding-top: 40px;
  text-align: center; }
  .top .s2 .content h4 {
    background: linear-gradient(transparent 70%, #EAAB65 0%);
    display: inline;
    font-size: 32rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 2.2;
    margin-bottom: 40px;
    padding: 0 2px 4px; }
  .top .s2 .content p {
    margin: 48px auto;
    width: 80%; }
  .top .s2.animate .section-ttl,
  .top .s2.animate .content {
    position: relative;
    top: 40px;
    transition: all 0.6s;
    opacity: 0; }
    .top .s2.animate .section-ttl.moving,
    .top .s2.animate .content.moving {
      opacity: 1;
      top: 0; }
.top .s3 {
  display: flex;
  justify-content: center;
  margin-top: 144px; }
  .top .s3 .section-ttl {
    margin-left: 48px;
    text-align: left; }
  .top .s3 .c-txt .tategaki__txt {
    left: -8px;
    top: -24px; }
  .top .s3 .c-img .service-img {
    margin-top: -64px; }
    .top .s3 .c-img .service-img img {
      right: -24px;
      width: 100%; }
.top .s4 {
  margin-top: 160px;
  position: relative; }
  .top .s4 .content {
    display: flex;
    justify-content: space-around; }
    .top .s4 .content dl {
      background: #FFF;
      padding: 16px 8px;
      text-align: center;
      width: 22%; }
      .top .s4 .content dl dt {
        color: #F08300;
        font-size: 12rem; }
        .top .s4 .content dl dt span {
          display: block;
          font-size: 32rem;
          margin-top: -8px; }
      .top .s4 .content dl .head {
        font-size: 18rem;
        font-weight: bold;
        line-height: normal;
        vertical-align: middle;
        min-height: 48px; }
      .top .s4 .content dl .icon {
        margin-top: 16px; }
    .top .s4 .content:after {
      background: rgba(234, 171, 101, 0.5);
      content: '';
      display: block;
      height: 280px;
      position: absolute;
      bottom: -96px;
      width: 100%;
      z-index: -1; }
  .top .s4 .animate dl {
    opacity: 0;
    position: relative;
    text-decoration: 120px; }
    .top .s4 .animate dl:first-child {
      transition: all 0.5s; }
    .top .s4 .animate dl:nth-child(2n) {
      transition: all 1.0s; }
    .top .s4 .animate dl:nth-child(3n) {
      transition: all 1.5s; }
    .top .s4 .animate dl:nth-child(4n) {
      transition: all 2.0s; }
    .top .s4 .animate dl.moving {
      opacity: 1;
      top: 0; }
.top .s5 {
  display: flex;
  justify-content: center;
  padding-top: 136px; }
  .top .s5 .section-ttl {
    margin-left: 48px;
    text-align: left; }
  .top .s5 .c-txt {
    z-index: 3; }
    .top .s5 .c-txt .tategaki__txt {
      left: 0;
      top: -24px; }
  .top .s5 .c-img .careers-img {
    margin-top: -56px; }
    .top .s5 .c-img .careers-img img {
      left: -24px;
      width: 100%; }
.top .s6 {
  background: url("../img/top__contact.jpg") no-repeat center right/cover;
  height: 440px;
  margin-top: calc(120px + 24px);
  position: relative;
  width: 100%; }
  .top .s6 .inner {
    color: #FFF;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
    .top .s6 .inner p {
      font-size: 20rem; }
    .top .s6 .inner ul {
      margin-top: 48px; }
      .top .s6 .inner ul li button {
        border: solid 2px #FFF;
        color: #FFF;
        font-weight: bold;
        letter-spacing: 0.1em;
        margin: 0;
        height: 88px;
        width: 480px; }
        .top .s6 .inner ul li button p img {
          margin-right: 4px;
          vertical-align: middle; }
        .top .s6 .inner ul li button:hover {
          background: rgba(255, 255, 255, 0.4);
          border: none;
          transition: all 0.2s; }
      .top .s6 .inner ul .tel {
        margin-top: 24px; }
        .top .s6 .inner ul .tel button .number {
          font-size: 24rem;
          letter-spacing: 0.1em; }
        .top .s6 .inner ul .tel button .txt {
          font-size: 12rem;
          font-weight: normal; }

/*-----------------------------------------
	事業紹介
-----------------------------------------*/
.service .s1 {
  text-align: center; }
.service .s2 .customers {
  margin: 64px auto 24px;
  text-align: center; }
  .service .s2 .customers img {
    margin: 0 16px;
    mix-blend-mode: multiply; }
.service .s2 .notes {
  padding-right: 8px;
  text-align: right; }
.service .s3 .works {
  margin: 80px auto 40px;
  width: 90%; }
  .service .s3 .works .item {
    background: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    padding: 32px; }
    .service .s3 .works .item h4 {
      border-left: 4px solid #F08300;
      font-size: 24rem;
      font-weight: bold;
      letter-spacing: 0.15em;
      padding-left: 8px; }
      .service .s3 .works .item h4 a {
        color: #141414; }
        .service .s3 .works .item h4 a:hover {
          opacity: 0.6;
          transition: all 0.2s; }
    .service .s3 .works .item p {
      line-height: 1.5;
      margin-top: 16px; }
    .service .s3 .works .item .item__inner {
      display: flex;
      margin-top: 24px; }
      .service .s3 .works .item .item__inner .left {
        width: 48%; }
        .service .s3 .works .item .item__inner .left img {
          width: 90%; }
      .service .s3 .works .item .item__inner .feature {
        height: auto;
        margin-top: 8px;
        width: 90%; }
        .service .s3 .works .item .item__inner .feature p {
          background: #F2F2F2;
          color: #333;
          display: inline-block;
          font-weight: bold;
          letter-spacing: normal;
          margin-top: 8px;
          padding: 2px 8px; }
          .service .s3 .works .item .item__inner .feature p span {
            color: #EAAB65; }
      .service .s3 .works .item .item__inner .right {
        width: 52%; }
        .service .s3 .works .item .item__inner .right dl {
          border-bottom: 1px solid #999;
          display: flex;
          padding-bottom: 16px;
          padding-top: 16px; }
          .service .s3 .works .item .item__inner .right dl dt {
            font-weight: bold;
            padding-left: 8px;
            width: 40%; }
          .service .s3 .works .item .item__inner .right dl ul li {
            border-bottom: none;
            padding-bottom: 4px;
            padding-top: 4px; }
            .service .s3 .works .item .item__inner .right dl ul li:before {
              background: url(../img/icon-check.svg) no-repeat;
              content: '';
              display: inline-block;
              height: 16px;
              margin: 4px 8px 0 0;
              width: 16px; }
          .service .s3 .works .item .item__inner .right dl:last-child {
            background: #F2F2F2;
            border-bottom: none;
            border-radius: 10px;
            margin-top: 16px; }
    .service .s3 .works .item:last-child {
      margin-bottom: 80px; }

/*-----------------------------------------
	会社情報
-----------------------------------------*/
.company .page-hero .hero__inner .hero-img {
  margin-left: auto; }
.company .company__anker ul {
  background: #FFF;
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
  text-align: center; }
  .company .company__anker ul li {
    margin: 0 40px; }
    .company .company__anker ul li a {
      color: #141414;
      display: block;
      font-weight: bold;
      position: relative; }
      .company .company__anker ul li a span {
        color: #EAAB65;
        display: block;
        font-size: 12rem; }
      .company .company__anker ul li a img {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        display: block;
        width: 16px; }
      .company .company__anker ul li a:hover > img {
        padding-top: 2px;
        transition: all 0.3s; }
.company #message .content h4 {
  font-size: 32rem;
  text-align: center; }
.company #message .content .flexbox {
  align-items: center;
  display: flex;
  margin: 80px auto 0;
  width: 98%; }
  .company #message .content .flexbox .c-img {
    position: relative;
    width: 40%; }
    .company #message .content .flexbox .c-img img {
      margin-left: -24px;
      width: 100%; }
    .company #message .content .flexbox .c-img .name {
      align-items: center;
      background: #F08300;
      color: #FFF;
      display: flex;
      font-size: 24rem;
      font-weight: bold;
      height: 80px;
      justify-content: center;
      margin: -64px 0 0 auto;
      position: relative;
      width: 320px; }
      .company #message .content .flexbox .c-img .name span {
        font-size: 16rem;
        margin-right: 16px; }
  .company #message .content .flexbox .c-txt {
    padding-left: 32px;
    width: 60%; }
.company #message .biography {
  background: rgba(234, 171, 101, 0.2);
  margin: 80px auto 40px;
  padding-bottom: 40px;
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 16px; }
  .company #message .biography .section-sub-ttl {
    margin-top: 40px; }
.company #profile section .c-inner .logo-area {
  background: #FFF;
  border-radius: 20px;
  height: 324px;
  margin-top: 40px;
  position: relative;
  width: 100%; }
  .company #profile section .c-inner .logo-area img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); }
.company #profile section .c-inner .logo-txt {
  margin: 48px auto 64px;
  text-align: left;
  width: 100%; }
  .company #profile section .c-inner .logo-txt a {
    color: #141414;
    text-decoration: underline; }
.company #history .c-inner {
  margin: 24px auto 80px; }
.company #access .c-inner {
  display: flex;
  margin: 80px auto; }
  .company #access .c-inner iframe {
    border: none;
    height: 360px;
    width: 50%; }
  .company #access .c-inner .access-info {
    padding-left: 24px;
    padding-top: 24px;
    width: 50%; }
    .company #access .c-inner .access-info h4 {
      font-size: 20rem;
      font-weight: bold;
      margin-bottom: 16px; }
    .company #access .c-inner .access-info a {
      color: #141414; }

/*-----------------------------------------
	採用情報
-----------------------------------------*/
.careers .inner .lead {
  margin: 0 auto;
  width: 90%; }
.careers .data {
  background: rgba(234, 171, 101, 0.2); }
  .careers .data .bg-wrapper {
    background: url("../img/careers__data-bg.png") no-repeat center; }
    .careers .data .bg-wrapper .section-ttl {
      padding-top: 24px; }
    .careers .data .bg-wrapper .content {
      align-content: space-around;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding-bottom: 40px;
      width: 90%; }
      .careers .data .bg-wrapper .content dl {
        background: rgba(255, 255, 255, 0.6);
        margin: 16px auto;
        padding: 16px 0;
        text-align: center;
        width: 32%; }
        .careers .data .bg-wrapper .content dl dt {
          font-size: 20rem;
          font-weight: bold; }
          .careers .data .bg-wrapper .content dl dt:after {
            background: #141414;
            content: '';
            display: block;
            height: 2px;
            margin: 8px auto 16px;
            width: 24px; }
        .careers .data .bg-wrapper .content dl dd {
          margin: 0 auto;
          width: 94%; }
          .careers .data .bg-wrapper .content dl dd.graph {
            align-items: center;
            display: flex;
            justify-content: center;
            height: 200px;
            width: 100%; }
            .careers .data .bg-wrapper .content dl dd.graph img {
              width: 100%; }
          .careers .data .bg-wrapper .content dl dd.txt {
            font-size: 14rem;
            margin-top: 40px;
            text-align: left; }
.careers .kankyou .benefit .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 16px; }
  .careers .kankyou .benefit .content dl {
    width: 22%; }
    .careers .kankyou .benefit .content dl dt img {
      height: 100%;
      width: 100%; }
    .careers .kankyou .benefit .content dl dd {
      font-size: 14rem;
      margin: 16px auto;
      min-height: 120px;
      width: 96%; }
.careers .kankyou .office {
  background: rgba(234, 171, 101, 0.2); }
  .careers .kankyou .office .section-sub-ttl {
    padding-top: 24px; }
  .careers .kankyou .office .swiper-custom-parent {
    position: relative; }
    .careers .kankyou .office .swiper-custom-parent .swiper-container {
      height: auto;
      padding-bottom: 80px;
      width: 90%; }
      .careers .kankyou .office .swiper-custom-parent .swiper-container .swiper-slide {
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0px 6px rgba(0, 0, 0, 0.15);
        padding-top: 16px;
        text-align: center; }
        .careers .kankyou .office .swiper-custom-parent .swiper-container .swiper-slide img {
          margin: 0 auto;
          width: 92%; }
        .careers .kankyou .office .swiper-custom-parent .swiper-container .swiper-slide p {
          font-weight: bold;
          padding-bottom: 16px;
          padding-top: 8px; }
    .careers .kankyou .office .swiper-custom-parent .swiper-button-prev,
    .careers .kankyou .office .swiper-custom-parent .swiper-button-next {
      width: 24px;
      height: 24px;
      background-size: 24px 24px; }
    .careers .kankyou .office .swiper-custom-parent .swiper-button-prev {
      background: url(../img/icon-swiper-prev.svg); }
    .careers .kankyou .office .swiper-custom-parent .swiper-button-next {
      background: url(../img/icon-swiper-next.svg); }
    .careers .kankyou .office .swiper-custom-parent .swiper-button-prev,
    .careers .kankyou .office .swiper-custom-parent .swiper-button-next {
      position: absolute;
      top: 50%;
      width: calc(var(--swiper-navigation-size) / 44 * 27);
      height: var(--swiper-navigation-size);
      margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--swiper-navigation-color, var(--swiper-theme-color));
      width: 24px;
      height: 24px;
      background-size: 24px 24px; }
.careers .saiyou .wanted {
  padding-bottom: 40px; }
  .careers .saiyou .wanted .c-inner {
    margin: 80px auto 0;
    width: 78%; }
    .careers .saiyou .wanted .c-inner ul {
      text-indent: -1em; }
      .careers .saiyou .wanted .c-inner ul li {
        font-size: 24rem;
        font-weight: bold;
        margin-bottom: 16px;
        margin-left: 2em; }
        .careers .saiyou .wanted .c-inner ul li span {
          color: #F08300;
          margin-left: -1em;
          margin-right: 8px; }
        .careers .saiyou .wanted .c-inner ul li .dot {
          color: #141414;
          margin: 0; }
.careers .saiyou .guidelines .c-inner {
  margin-top: 64px;
  padding-bottom: 40px; }
.careers .saiyou .process {
  margin-bottom: 80px; }
  .careers .saiyou .process .content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 80px auto 120px; }
    .careers .saiyou .process .content dl {
      width: 22%; }
      .careers .saiyou .process .content dl dt {
        color: #F08300;
        font-weight: bold;
        text-align: center; }
        .careers .saiyou .process .content dl dt.lead {
          font-size: 40rem; }
          .careers .saiyou .process .content dl dt.lead span {
            display: block;
            font-size: 12rem;
            margin-bottom: -16px; }
        .careers .saiyou .process .content dl dt.item {
          border-bottom: 2px solid #F08300;
          box-sizing: border-box;
          display: inline-block;
          padding-bottom: 32px;
          position: relative;
          width: 100%; }
          .careers .saiyou .process .content dl dt.item:before, .careers .saiyou .process .content dl dt.item:after {
            content: "";
            left: 50%;
            position: absolute;
            top: 100%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
          .careers .saiyou .process .content dl dt.item:before {
            border: solid 12px transparent;
            border-top: solid 12px #F08300; }
          .careers .saiyou .process .content dl dt.item:after {
            border: solid 14px transparent;
            border-top: solid 14px #F4F5F7;
            margin-top: -5px; }
      .careers .saiyou .process .content dl dd {
        font-size: 14rem;
        margin: 24px auto 0;
        min-height: 120px;
        width: 96%; }
        .careers .saiyou .process .content dl dd a {
          color: #141414;
          font-weight: bold;
          text-decoration: underline;
          transition: all 0.3s;
        }
        .careers .saiyou .process .content dl dd a:hover{
          color: #F08300;
        }
/*-----------------------------------------
	お知らせ
-----------------------------------------*/
.news .page-hero {
  background: #FFF;
  height: 320px; }
  .news .page-hero .breadcrumb {
    color: #141414; }
    .news .page-hero .breadcrumb a {
      color: #141414; }
  .news .page-hero .hero__inner {
    align-items: baseline;
    justify-content: center; }
    .news .page-hero .hero__inner .page-ttl {
      color: #141414;
      text-align: center; }
      .news .page-hero .hero__inner .page-ttl span {
        color: #F08300; }
.news .content p {
  margin: 0; }
.news .content .c-inner {
  margin-bottom: 80px;
  width: 100%; }
  .news .content .c-inner li {
    border-bottom: 1px solid #333;
    display: flex;
    margin-top: 32px;
    padding-bottom: 32px; }
    .news .content .c-inner li .date {
      padding-left: 8px;
      width: 20%; }
    .news .content .c-inner li .txt {
      width: 80%; }
      .news .content .c-inner li .txt a {
        color: #141414; }
      .news .content .c-inner li .txt a:hover{
        text-decoration: underline; }
      .news .content .c-inner li .txt a::after{
        content: url(../img/icon-to-link.svg);
        display: inline-block;
        height: 16px;
        padding-left: 4px;
        width: 16px; }
        .news .content .c-inner li .txt a.no-icon::after{
          display: none; }

/*-----------------------------------------
	お問い合わせ
-----------------------------------------*/
.contact .page-hero {
  background: #FFF;
  height: 320px;
  margin-bottom: 0; }
  .contact .page-hero .breadcrumb {
    color: #141414; }
    .contact .page-hero .breadcrumb a {
      color: #141414; }
  .contact .page-hero .hero__inner {
    align-items: baseline;
    justify-content: center; }
    .contact .page-hero .hero__inner .page-ttl {
      color: #141414;
      text-align: center; }
      .contact .page-hero .hero__inner .page-ttl span {
        color: #F08300; }
.contact .contact__inner{
  max-width: 800px;
  margin: 0 auto;
  width: 90%; }
  .contact .contact__inner .lead{
    font-weight: bold;
    line-height: 1.6;
    margin-top: 48px; }
  .contact .contact__inner .contact-notes{
    background: rgba(234, 171, 101, 0.2);
    border-radius: 10px;
    margin: 40px 0;
    padding: 32px 40px;}
  .contact .contact__inner .contact-notes h3{
    font-weight: bold;
    margin-bottom: 12px; }
  .contact .contact__inner .contact-notes p{
    font-size: 14rem;
    line-height: 1.6; }
    .contact .contact__inner .contact-notes p a{
      border-bottom: 1px solid #141414;
      color: #141414;
      padding: 0 0 2px 0;
      transition: all 0.3s;}
        .contact .contact__inner .contact-notes p a:hover{
          opacity: 0.7; }
  .contact .contact__inner .form__wrapper{
    background: #FFF;
    border-radius: 10px;
    margin-bottom: 80px;
    padding: 16px 0; }
    .contact .contact__inner .form__wrapper form{
      margin: 0 auto;
      max-width: 640px;
      width: 85%; }
      .contact .contact__inner .form__wrapper form dl{
        margin-top: 40px; }
        .contact .contact__inner .form__wrapper form dl dt{
          align-items: center;
          display: flex;
          font-weight: bold;
          line-height: 1;
          margin-bottom: 12px; }
          .contact .contact__inner .form__wrapper form dl dt .required{
            background: #FFF;
            border: 1px solid #F08300;
            box-sizing: border-box;
            border-radius: 4px;
            color: #F08300;
            font-size: 12rem;
            font-weight: bold;
            line-height: 1;
            margin-left: 8px;
            padding: 4px 6px;}
        .contact .contact__inner .form__wrapper form dl dd input,
        .contact .contact__inner .form__wrapper form dl dd textarea{
          border: 1px solid #DDD;
          border-radius: 4px;
          box-shadow: none;
          box-sizing: border-box;
          font-size: 14rem;
          letter-spacing: 0.05em;
          padding: 8px 12px;
          transition: all 0.4s;
          width: 100%; }
          .contact .contact__inner .form__wrapper form dl dd input:focus,
          .contact .contact__inner .form__wrapper form dl dd textarea:focus{
            border: 1px solid #F08300;
            box-shadow: 0 3px 6px 0 rgba(0,0,0,0.1); }
        .contact .contact__inner .form__wrapper form dl dd .input__small{
          width: 400px;}
          .contact .contact__inner .form__wrapper form dl dd ul{
            margin-top: 24px; }
            .contact .contact__inner .form__wrapper form dl dd ul li,
            .contact .contact__inner .form__wrapper form dl dd ul li .where_know-3-text{
              margin-top: 12px; }
          .contact .contact__inner .form__wrapper form dl dd .radio-label,
          .contact .contact__inner .form__wrapper form .form__agree label{
            font-weight: bold;
            padding-left: 24px;
            position: relative; }
          .contact .contact__inner .form__wrapper form dl dd .radio-label::before,
          .contact .contact__inner .form__wrapper form .form__agree label:before{
            border-radius: 50%;
            border: 2px solid #DDD;
            bottom: 0;
            box-sizing: border-box;
            content: '';
            display: inline-block;
            height: 16px;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: 16px; }
          .contact .contact__inner .form__wrapper form dl dd input[type="radio"]:checked + label::before{
            border: 2px solid #F08300; }
          .contact .contact__inner .form__wrapper form dl dd input[type="radio"]:checked + label::after{
            background: #F08300;
            border-radius: 50%;
            content: '';
            height: 8px;
            left: 4px;
            position: absolute;
            top: 4px;
            width: 8px; }
      .contact .contact__inner .form__wrapper form .form__agree{
        margin-top: 40px; }
        .contact .contact__inner .form__wrapper form .form__agree label:before{
          border-radius: 4px; }
          .contact .contact__inner .form__wrapper form .form__agree input[type="checkbox"]:checked + label::before{
            background: #F08300;
            border: none;}
          .contact .contact__inner .form__wrapper form .form__agree input[type="checkbox"]:checked + label::after{
            background: url(../img/icon-checked.svg) center center;
            content: '';
            height: 6px;
            left: 4px;
            position: absolute;
            top: 5px;
            width: 8px;}
        .contact .contact__inner .form__wrapper form .form__agree p{
          font-size: 14rem;
          margin-top: 12px; }
      .contact .contact__inner .form__wrapper form .btn-area {
        margin: 56px auto;
        height: 48px;
        width: 200px; }
        .contact .contact__inner .form__wrapper form .btn-area button#submit {
          background: #F08300;
          color: #FFF;
          display: block;
          font-size: 14rem;
          letter-spacing: 0.2em;
          line-height: 48px;
          position: relative;
          text-align: center;
          width: 100%;
          z-index: 2; }
          .contact .contact__inner .form__wrapper form .btn-area button#submit:disabled {
            background: #696969;
            cursor: not-allowed; }
/*-----------------------------------------
	お問い合わせ（サンクスページ）
-----------------------------------------*/
.contact_thanks .page-hero {
  background: #FFF;
  height: 320px;
  margin-bottom: 0; }
  .contact_thanks .page-hero .breadcrumb {
    color: #141414; }
    .contact_thanks .page-hero .breadcrumb a {
      color: #141414; }
  .contact_thanks .page-hero .hero__inner {
    align-items: baseline;
    justify-content: center; }
    .contact_thanks .page-hero .hero__inner .page-ttl {
      color: #141414;
      text-align: center; }
      .contact_thanks .page-hero .hero__inner .page-ttl span {
        color: #F08300; }
.contact_thanks .contact_thanks__inner{
  background: #FFF;
  border-radius: 10px;
  margin: 64px auto;
  max-width: 640px;
  width: 85%; }
  .contact_thanks .contact_thanks__inner .contents{
    margin: 0 auto;
    padding: 64px 0;
    text-align: center;
    width: 90%; }
    .contact_thanks .contact_thanks__inner .contents span{
      align-items: center;
      color: #F08300;
      display: flex;
      font-size: 12rem;
      justify-content: center; }
      .contact_thanks .contact_thanks__inner .contents span::before,
      .contact_thanks .contact_thanks__inner .contents span::after{
        background: #F08300;
        content: '';
        display: block;
        height: 12px;
        width: 2px; }
      .contact_thanks .contact_thanks__inner .contents span::before{
        margin-right: 16px;
        transform: rotate(-30deg); }
      .contact_thanks .contact_thanks__inner .contents span::after{
        margin-left: 16px;
        transform: rotate(30deg); }
      .contact_thanks .contact_thanks__inner .contents h3{
        color: #F08300;
        font-size: 24rem;
        margin-top: 8px; }
    .contact_thanks .contact_thanks__inner .contents .txt{
      margin-top: 32px; }
  .contact_thanks .btn-more{
    margin: 0 auto 80px; }
/*-----------------------------------------
	プライバシーポリシー
-----------------------------------------*/
.privacy{
  font-size: 14rem;
  letter-spacing: 0.05em; }
.privacy .page-hero {
  background: none;
  height: auto;
  margin-bottom: 80px; }
  .privacy .page-hero .breadcrumb {
    color: #141414; }
    .privacy .page-hero .breadcrumb a {
      color: #141414; }
.privacy__inner {
  padding: 0 40px;
  width: 80%; }
  .privacy__inner .page-ttl {
    font-size: 32rem; }
    .privacy__inner a {
      color: #F08300;}
      .privacy__inner a:hover{
        text-decoration: underline; }
      .privacy__inner a img {
        height: 12px;
        padding-right: 8px;
        width: 12px;}
  .privacy__inner .lead {
    margin-top: 24px; }
  .privacy__inner__box h3 {
    align-items: center;
    border-left: 4px solid #F08300;
    display: flex;
    font-size: 24rem;
    font-weight: bold;
    margin-top: 48px;
    padding-left: 16px; }
  .privacy__inner__box .txt {
    margin-top: 16px;
    padding-left: 1em;
    text-indent: -1em; }
  .privacy__inner__box .privacy-list {
    margin-top: 16px;
    padding-left: 1em;
    text-indent: 1em; }
    .privacy__inner__box .privacy-list li {
      margin-top: 4px;
      padding-left: 1em;
      text-indent: -1em; }
  .privacy__inner__box .privacy-list__inner {
    list-style-position: outside;
    margin: 8px 0;
    padding-left: 24px; }
    .privacy__inner__box .privacy-list__inner li {
      list-style-type: disc;
      margin-top: 0;
      padding-left: 4px;
      text-indent: 0; }
      .privacy__inner__box .privacy-list__address{
        text-indent: 0!important; }
        .privacy__inner__box .privacy-list__address .bold{
          font-weight: bold;
          margin: 8px 0 0; }
  .privacy__inner__bottom {
    margin: 80px 0 40px;
    text-align: right; }
/*-----------------------------------------
	サイト利用規約
-----------------------------------------*/
.terms{
  font-size: 14rem;
  letter-spacing: 0.05em;
}
.terms .page-hero {
  background: none;
  height: auto;
  margin-bottom: 80px; }
  .terms .page-hero .breadcrumb {
    color: #141414; }
    .terms .page-hero .breadcrumb a {
      color: #141414; }
.terms__inner {
  padding: 0 40px 64px; }
  .terms__inner .page-ttl {
    font-size: 32rem; }
  .terms__inner .lead {
    margin-top: 32px; }
    .terms__inner .lead a {
      border-bottom: 1px solid #141414;
      color: #141414;
      padding: 0 0 2px 0; }
  .terms__inner__box h3 {
    align-items: center;
    border-left: 4px solid #F08300;
    display: flex;
    font-size: 24rem;
    font-weight: bold;
    margin-top: 64px;
    padding-left: 16px; }
    .terms__inner__box .terms-list {
      list-style-position: outside;
      margin: 16px 0;
      padding-left: 24px; }
      .terms__inner__box .terms-list li {
        list-style-type: disc;
        margin-top: 0;
        padding-left: 1em;
        text-indent: 0; }
    .terms__inner__box .terms-table{
      background: #FFF;
      border-radius: 10px;
      display: flex;
      justify-content: space-around;
      margin: 32px 0; 
      padding: 28px 28px 40px 28px;
      width: calc(100% - 56px); }
      .terms-table__item {
        width: 48%; }
        .terms-table__item h4{
          font-weight: bold;
          margin: 0 0 12px 16px;
          position: relative; }
        .terms-table__item h4:before{
          background: #F08300;
          border-radius: 50%;
          bottom: 0;
          content: '';
          display: block;
          height: 8px;
          left: -16px;
          margin: auto;
          position: absolute;
          top: 0;;
          width: 8px; }
        .terms-table__item table{
          border-collapse: collapse;
          border-spacing: 0;
          font-size: 14rem;
          width: 100%; }
          .terms-table__item table,
          .terms-table__item table tr,
          .terms-table__item table th,
          .terms-table__item table td{
            border: 1px solid #F2F2F2; }
          .terms-table__item table th{
            background: rgba(234, 171, 101, 0.2);
            height: 40px;
            line-height: 40px;
            padding-left: 12px;
            text-align: left; }
          .terms-table__item table td{
            height: 64px;
            padding-left: 12px;
            vertical-align: middle;}  
          .terms-table__item table th:nth-child(1),
          .terms-table__item table th:nth-child(2),
          .terms-table__item table td:nth-child(1),
          .terms-table__item table td:nth-child(2){
            width: 30%;}