@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@font-face {
  font-family: 'Raleway-Bold';
  src: url(../font/Raleway-Bold.ttf); }
@font-face {
  font-family: 'Raleway-Regular';
  src: url(../font/Raleway-Regular.ttf); }
@font-face {
  font-family: 'DancingScript';
  src: url(../font/DancingScript-Regular.otf); }
body {
  font-family: "NotoSansCJKjp";
  font-size: 15px;
  color: #141314;
  margin: 0px;
  box-sizing: border-box;
  line-height: 1.8em;
  letter-spacing: 0.05em; }
  @media screen and (max-width: 750px) {
    body {
      width: 100%; } }

div {
  margin: 0px;
  padding: 0px; }

a {
  text-decoration: none;
  color: #141314; }
  a img {
    transition: 0.2s; }

ul {
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px; }
  ul li {
    padding-left: 0px;
    list-style: none; }

@media screen and (max-width: 750px) {
  img {
    max-width: 100%;
    height: auto; } }

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

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

.top60 {
  top: -60px; }

/*ヘッダー*/
.header {
  height: 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 750px) {
    .header {
      height: 60px; } }
  .header .box-headerLeft {
    padding-left: 50px; }
    @media screen and (max-width: 750px) {
      .header .box-headerLeft {
        padding-left: 10px; } }
    .header .box-headerLeft h1 {
      margin-top: 10px;
      margin-bottom: 10px; }
      @media screen and (max-width: 750px) {
        .header .box-headerLeft h1 {
          margin-top: 5px;
          margin-bottom: 5px; } }
      .header .box-headerLeft h1 img {
        height: 60px; }
        @media screen and (max-width: 750px) {
          .header .box-headerLeft h1 img {
            height: 50px; } }
    .header .box-headerLeft .logo {
      margin-top: 10px;
      margin-bottom: 10px; }
      @media screen and (max-width: 750px) {
        .header .box-headerLeft .logo {
          margin-top: 5px;
          margin-bottom: 5px; } }
      .header .box-headerLeft .logo img {
        height: 60px; }
        @media screen and (max-width: 750px) {
          .header .box-headerLeft .logo img {
            height: 50px; } }
  .header .box-headerRight .pc-navi {
    display: flex; }
    .header .box-headerRight .pc-navi ul {
      display: flex;
      margin-top: 30px; }
      @media screen and (max-width: 750px) {
        .header .box-headerRight .pc-navi ul {
          display: none; } }
      .header .box-headerRight .pc-navi ul li {
        padding-left: 20px;
        padding-right: 20px; }
        .header .box-headerRight .pc-navi ul li a {
          font-weight: 600;
          transition: 0.2s; }
          .header .box-headerRight .pc-navi ul li a:hover {
            color: #f4c100; }
    .header .box-headerRight .pc-navi .button-entry {
      width: 200px;
      height: 80px;
      font-size: 28px;
      font-family: Raleway-Bold;
      display: table; }
      @media screen and (max-width: 750px) {
        .header .box-headerRight .pc-navi .button-entry {
          height: 60px;
          width: 100px;
          margin-right: 60px;
          font-size: 18px;
          position: fixed;
          top: 0;
          right: 0;
          z-index: 8888; } }
      .header .box-headerRight .pc-navi .button-entry .button {
        position: relative;
        -webkit-perspective: 300px;
        perspective: 300px;
        display: inline-block;
        width: 200px;
        height: 80px; }
        @media screen and (max-width: 750px) {
          .header .box-headerRight .pc-navi .button-entry .button {
            height: 60px;
            width: 100px; } }
        .header .box-headerRight .pc-navi .button-entry .button span {
          display: block;
          position: absolute;
          width: 200px;
          height: 80px;
          text-align: center;
          line-height: 78px;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          -webkit-transition: all .3s;
          transition: all .3s;
          pointer-events: none; }
          @media screen and (max-width: 750px) {
            .header .box-headerRight .pc-navi .button-entry .button span {
              height: 60px;
              width: 100px;
              line-height: 60px; } }
          .header .box-headerRight .pc-navi .button-entry .button span:nth-child(1) {
            background-color: #f4c100;
            color: #fff;
            -webkit-transform: rotateX(180deg);
            -moz-transform: rotateX(180deg);
            transform: rotateX(180deg); }
            @media screen and (max-width: 750px) {
              .header .box-headerRight .pc-navi .button-entry .button span:nth-child(1) {
                display: none; } }
          .header .box-headerRight .pc-navi .button-entry .button span:nth-child(2) {
            background-color: #723183;
            color: #fff;
            -webkit-transform: rotateX(0deg);
            -moz-transform: rotateX(0deg);
            transform: rotateX(0deg);
            opacity: 1; }
        .header .box-headerRight .pc-navi .button-entry .button:hover span:nth-child(1) {
          -webkit-transform: rotateX(0deg);
          -moz-transform: rotateX(0deg);
          transform: rotateX(0deg); }
        .header .box-headerRight .pc-navi .button-entry .button:hover span:nth-child(2) {
          -webkit-transform: rotateX(-180deg);
          -moz-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
          opacity: 0; }
          @media screen and (max-width: 750px) {
            .header .box-headerRight .pc-navi .button-entry .button:hover span:nth-child(2) {
              opacity: 1;
              -webkit-transform: none;
              -moz-transform: none;
              transform: none;
              background-color: #923fa8; } }

.sp-navi .globalNavSP {
  position: fixed;
  z-index: 9998;
  top: 60px;
  right: 0;
  background: #f8f8f8;
  transform: translateY(-150%);
  transition: all 0.6s;
  width: 300px;
  height: calc(100vh - 60px); }
  @media screen and (max-width: 750px) {
    .sp-navi .globalNavSP {
      width: 100%; } }
  .sp-navi .globalNavSP .nav-inner {
    padding-top: 50px; }
    .sp-navi .globalNavSP .nav-inner ul {
      list-style: none;
      padding-left: 0px;
      padding-top: 5px; }
      .sp-navi .globalNavSP .nav-inner ul li {
        color: #000;
        font-size: 18px;
        line-height: 0.7;
        font-weight: 400;
        border-bottom: 1px solid #b5b5b5;
        margin-left: 0px;
        margin-right: 0px; }
        .sp-navi .globalNavSP .nav-inner ul li a {
          color: #723183;
          text-decoration: none;
          padding-left: 20px;
          width: 100%;
          display: inline-block;
          padding-top: 20px;
          padding-bottom: 20px;
          box-sizing: border-box;
          transition: 0.3s; }
          .sp-navi .globalNavSP .nav-inner ul li a:hover {
            color: #923fa8; }
.sp-navi nav.globalNavSP.active {
  transform: translateX(0%); }
.sp-navi .navToggle .navToggle-inner {
  display: block;
  position: fixed;
  /* body?E‘I?μ?A?I?a‘I?E’u?w’e */
  right: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  text-align: center;
  transition-duration: 0.5s;
  background-color: #f4c100; }
  .sp-navi .navToggle .navToggle-inner span {
    display: block;
    position: absolute;
    /* .navToggle?E‘I?μ?A */
    width: 36px;
    border-bottom: solid 4px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 12px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(1) {
      top: 16px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(2) {
      top: 28px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(3) {
      top: 40px; }
.sp-navi .navToggle.active span:nth-child(1) {
  top: 30px;
  left: 11px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 3px #fff; }
.sp-navi .navToggle.active span:nth-child(2), .sp-navi .navToggle.active span:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 3px #fff; }
.sp-navi p {
  font-size: 10px;
  color: #fff; }

.section-mv {
  height: calc(100vh - 80px);
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #f8f8f8 50%, #f8f8f8 100%); }
  @media screen and (max-width: 750px) {
    .section-mv {
      height: 80vh; } }
  .section-mv .slider-mv {
    background-image: url(../img/top/slide_01.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top 0 left 100px;
    height: 100%;
    display: table;
    width: 100%;
    position: relative; }
    @media screen and (max-width: 750px) {
      .section-mv .slider-mv {
        background-position: top 0 right 0;
        background-size: cover; } }
    .section-mv .slider-mv .mv-text-pc {
      width: 1100px;
      margin: 0 auto;
      height: 100%;
      text-align: center;
      display: table-cell;
      vertical-align: middle; }
      @media screen and (max-width: 1350px) {
        .section-mv .slider-mv .mv-text-pc img {
          max-width: 100%;
          padding-left: 110px;
          box-sizing: border-box; } }
      @media screen and (max-width: 750px) {
        .section-mv .slider-mv .mv-text-pc {
          display: none; } }
    .section-mv .slider-mv .mv-text-sp {
      display: none; }
      @media screen and (max-width: 750px) {
        .section-mv .slider-mv .mv-text-sp {
          width: 100%;
          margin: 0 auto;
          height: 100%;
          text-align: center;
          display: table-cell;
          vertical-align: middle; } }
  .section-mv .box-mvFeature {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center; }
    .section-mv .box-mvFeature .tag-wrap ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
      .section-mv .box-mvFeature .tag-wrap ul li {
        background-color: #f4c100;
        color: #fff;
        padding: 5px 30px;
        position: relative;
        margin: 5px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1.2em; }
    .section-mv .box-mvFeature .tag-wrap .lead {
      font-size: 1.8em;
      font-weight: 600;
      margin-top: 20px;
      color: #fff; }
  .section-mv .box-scroll {
    position: absolute;
    left: 10px;
    bottom: 30%;
    animation: scroll 1s forwards;
    animation-delay: 3s;
    opacity: 0; }
    @media screen and (max-width: 750px) {
      .section-mv .box-scroll {
        position: relative;
        left: 0;
        bottom: 0;
        height: calc(20vh - 60px);
        box-sizing: border-box;
        text-align: center;
        animation-delay: 1.5s; } }
    .section-mv .box-scroll .text {
      transform: rotate(90deg);
      font-family: Raleway-Regular;
      font-size: 18px;
      letter-spacing: 0.2em;
      position: relative; }
      @media screen and (max-width: 750px) {
        .section-mv .box-scroll .text {
          transform: unset;
          padding-top: 30px;
          font-size: 13px; } }
      .section-mv .box-scroll .text:after {
        content: "";
        position: absolute;
        height: 1px;
        width: 0px;
        top: 14px;
        left: 121px;
        background-color: #141314;
        animation: scroll-line 2s infinite;
        animation-delay: 4s; }
        @media screen and (max-width: 750px) {
          .section-mv .box-scroll .text:after {
            height: 0px;
            width: 1px;
            left: 50%;
            top: -25px;
            animation-delay: 2.5s;
            animation: scroll-line2 2s infinite; } }

@keyframes scroll {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes scroll-line {
  0% {
    width: 0px; }
  100% {
    width: 70px; } }
@keyframes scroll-line2 {
  0% {
    height: 0px; }
  100% {
    height: 50px; } }
/*トップページ*/
.section-message {
  width: 100%;
  background-color: #f8f8f8;
  padding-top: 100px;
  padding-bottom: 90px;
  display: flex;
  flex-direction: row-reverse; }
  @media screen and (max-width: 750px) {
    .section-message {
      flex-direction: row;
      flex-wrap: wrap;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px; } }
  .section-message .box-content {
    padding-right: 80px;
    padding-top: 50px;
    padding-left: 40px;
    width: 50%;
    box-sizing: border-box;
    position: relative; }
    @media screen and (max-width: 750px) {
      .section-message .box-content {
        width: 100%;
        padding-right: 0px;
        padding-left: 0px; } }
    .section-message .box-content h2 {
      font-size: 24px;
      font-weight: 600;
      margin: 0 auto;
      text-align: center;
      line-height: 1.8em; }
      @media screen and (max-width: 750px) {
        .section-message .box-content h2 {
          font-size: 22px;
          text-align: left; } }
    .section-message .box-content .text {
      margin-top: 45px;
      line-height: 2em; }
    .section-message .box-content .link_message {
      width: 240px;
      height: 50px;
      display: table;
      margin-top: 50px;
      position: relative;
      z-index: 1; }
      @media screen and (max-width: 750px) {
        .section-message .box-content .link_message {
          margin: 30px 0 50px auto; } }
      .section-message .box-content .link_message a {
        width: 200px;
        height: 50px;
        box-sizing: border-box;
        color: #fff;
        background-color: #f4c100;
        display: table-cell;
        vertical-align: middle;
        padding-left: 14px;
        font-weight: 600;
        font-size: 14px;
        position: relative;
        transition: 0.3s; }
        .section-message .box-content .link_message a:before {
          content: "";
          position: absolute;
          width: 50px;
          height: 10px;
          border-bottom: 1px solid #fff;
          top: 18px;
          right: 21px;
          transition: 0.3s; }
        .section-message .box-content .link_message a:after {
          content: "";
          position: absolute;
          width: 18px;
          height: 18px;
          border-right: 1px solid #fff;
          transform: rotate(-45deg);
          top: 19px;
          right: 25px;
          transition: 0.3s; }
        .section-message .box-content .link_message a:hover {
          background-color: #ffcd0f; }
          .section-message .box-content .link_message a:hover:before {
            width: 60px;
            right: 11px; }
          .section-message .box-content .link_message a:hover:after {
            right: 15px; }
    .section-message .box-content .backtext {
      font-family: DancingScript;
      font-size: 150px;
      color: #e9e9e9;
      position: absolute;
      bottom: 25px;
      right: 10px;
      z-index: 0; }
      @media screen and (max-width: 750px) {
        .section-message .box-content .backtext {
          display: none; } }
  .section-message .box-thumbnail {
    padding-right: 50px;
    width: 50%;
    box-sizing: border-box; }
    @media screen and (max-width: 750px) {
      .section-message .box-thumbnail {
        width: 100%;
        padding-right: 0px; } }
    .section-message .box-thumbnail img {
      width: 100%; }

.section-environment {
  width: 100%;
  background-color: #f8f4f9; }
  @media screen and (max-width: 750px) {
    .section-environment {
      width: 100%;
      box-sizing: border-box; } }
  .section-environment .box-h2 {
    width: 100%;
    background-color: #723183;
    color: #e9e9e9; }
    @media screen and (max-width: 750px) {
      .section-environment .box-h2 {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box; } }
    .section-environment .box-h2 .h2-inner {
      width: 1100px;
      margin: 0 auto;
      padding-top: 45px;
      padding-bottom: 45px; }
      @media screen and (max-width: 750px) {
        .section-environment .box-h2 .h2-inner {
          width: 100%; } }
      .section-environment .box-h2 .h2-inner h2 {
        font-size: 28px;
        font-weight: 600;
        margin: 0;
        letter-spacing: 0.3em;
        line-height: 1.4em; }
        .section-environment .box-h2 .h2-inner h2 span {
          font-size: 18px;
          font-family: Raleway-Bold;
          letter-spacing: 0.2em; }
  .section-environment .box-environment {
    width: 1100px;
    margin: 60px auto 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    @media screen and (max-width: 750px) {
      .section-environment .box-environment {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center; } }
    .section-environment .box-environment .card {
      width: 535px;
      box-sizing: border-box;
      background-color: #fff;
      height: 515px;
      display: table;
      padding-right: 35px;
      padding-left: 35px;
      margin-bottom: 35px;
      position: relative;
      box-shadow: 0px 0px 15px rgba(114, 49, 131, 0.2);
      z-index: 5; }
      @media screen and (max-width: 750px) {
        .section-environment .box-environment .card {
          width: 95%;
          mragin: 20px auto;
          padding-right: 20px;
          padding-left: 20px; } }
      .section-environment .box-environment .card .card-inner {
        display: table-cell;
        vertical-align: middle; }
        .section-environment .box-environment .card .card-inner .icon {
          text-align: center; }
          @media screen and (max-width: 750px) {
            .section-environment .box-environment .card .card-inner .icon img {
              width: 100px;
              height: auto; } }
        .section-environment .box-environment .card .card-inner h3 {
          color: #723183;
          text-align: center;
          font-size: 28px; }
          @media screen and (max-width: 750px) {
            .section-environment .box-environment .card .card-inner h3 {
              line-height: 1.5em;
              font-size: 24px; } }
        .section-environment .box-environment .card .card-inner .subtitle {
          font-size: 18px;
          font-weight: 600;
          text-align: center;
          margin-bottom: 20px; }
          @media screen and (max-width: 750px) {
            .section-environment .box-environment .card .card-inner .subtitle {
              text-align: left; } }
      .section-environment .box-environment .card:nth-child(2) {
        top: -120px; }
        @media screen and (max-width: 750px) {
          .section-environment .box-environment .card:nth-child(2) {
            top: 0px; } }
      .section-environment .box-environment .card:nth-child(4) {
        top: -120px; }
        @media screen and (max-width: 750px) {
          .section-environment .box-environment .card:nth-child(4) {
            top: 0px; } }
  .section-environment .link-wrap {
    width: 1100px;
    margin: 60px auto 0px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 750px) {
      .section-environment .link-wrap {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center;
        flex-wrap: wrap; } }
    @media screen and (max-width: 750px) {
      .section-environment .link-wrap .linkbtn {
        width: 100%;
        text-align: center; } }
    .section-environment .link-wrap .linkbtn a {
      width: 520px;
      box-sizing: border-box;
      background-color: #f4c100;
      text-align: center;
      padding-top: 35px;
      padding-bottom: 25px;
      display: inline-block;
      overflow: hidden;
      position: relative; }
      @media screen and (max-width: 750px) {
        .section-environment .link-wrap .linkbtn a {
          width: 100%; } }
      .section-environment .link-wrap .linkbtn a span {
        color: #fff;
        font-size: 28px;
        position: relative;
        letter-spacing: 0.1em;
        z-index: 5; }
        @media screen and (max-width: 750px) {
          .section-environment .link-wrap .linkbtn a span {
            font-size: 20px; } }
      .section-environment .link-wrap .linkbtn a:after {
        content: "";
        position: absolute;
        width: 520px;
        height: 120px;
        background-color: #723183;
        top: -120px;
        left: 0px;
        transition: 0.3s; }
      .section-environment .link-wrap .linkbtn a:hover:after {
        top: 0px; }

.section-staffprofile {
  background-image: url(../img/top/voice_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 50px; }
  @media screen and (max-width: 750px) {
    .section-staffprofile {
      background-position: 28% 50%; } }
  .section-staffprofile .box-h2 {
    width: 1100px;
    margin: 0px auto;
    text-align: right;
    color: #fff;
    padding-top: 110px; }
    @media screen and (max-width: 750px) {
      .section-staffprofile .box-h2 {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;
        padding-top: 120px; } }
    .section-staffprofile .box-h2 h2 {
      font-size: 28px;
      margin: 0;
      letter-spacing: 0.3em;
      line-height: 1.4em; }
      .section-staffprofile .box-h2 h2 span {
        font-size: 18px;
        font-family: Raleway-Bold;
        letter-spacing: 0.2em; }
  .section-staffprofile .box-slide .swiper-container {
    width: 1120px;
    overflow: hidden;
    margin: 50px auto 50px 0 !important; }
    .section-staffprofile .box-slide .swiper-container .swiper-slide {
      width: 260px !important;
      margin-left: 20px; }
      .section-staffprofile .box-slide .swiper-container .swiper-slide a .photo {
        height: 300px;
        background-color: #723183; }
        .section-staffprofile .box-slide .swiper-container .swiper-slide a .photo img {
          width: 260px;
          height: 300px;
          object-fit: cover;
          transition: 0.3s;
          opacity: 1; }
      .section-staffprofile .box-slide .swiper-container .swiper-slide a .belong {
        background-color: #723183;
        color: #fff;
        padding: 10px;
        font-size: 13px;
        box-sizing: border-box; }
      .section-staffprofile .box-slide .swiper-container .swiper-slide a .name-outer {
        background-color: #fff;
        padding: 10px;
        box-sizing: border-box; }
        .section-staffprofile .box-slide .swiper-container .swiper-slide a .name-outer .jpb {
          font-size: 13px; }
        .section-staffprofile .box-slide .swiper-container .swiper-slide a .name-outer .name {
          font-size: 22px; }
      .section-staffprofile .box-slide .swiper-container .swiper-slide a:hover .photo img {
        opacity: 0.6; }

.section-shoplist {
  width: 1100px;
  margin: 0 auto 150px; }
  @media screen and (max-width: 750px) {
    .section-shoplist {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px;
      margin: 70px auto 150px; } }
  .section-shoplist .box-h2 {
    text-align: center;
    margin-bottom: 50px; }
    @media screen and (max-width: 750px) {
      .section-shoplist .box-h2 {
        text-align: left; } }
    .section-shoplist .box-h2 h2 {
      font-size: 28px;
      line-height: 1.5em; }
    .section-shoplist .box-h2 .subtitle {
      font-size: 18px; }
  .section-shoplist .box-area {
    margin-bottom: 50px; }
    .section-shoplist .box-area .unit-h3 {
      display: flex; }
      @media screen and (max-width: 750px) {
        .section-shoplist .box-area .unit-h3 {
          flex-wrap: wrap; } }
      .section-shoplist .box-area .unit-h3 .img {
        width: 50%;
        box-sizing: border-box;
        height: 300px; }
        @media screen and (max-width: 750px) {
          .section-shoplist .box-area .unit-h3 .img {
            width: 100%;
            height: 200px; } }
        .section-shoplist .box-area .unit-h3 .img img {
          width: 100%; }
          @media screen and (max-width: 750px) {
            .section-shoplist .box-area .unit-h3 .img img {
              height: 200px;
              object-fit: cover; } }
      .section-shoplist .box-area .unit-h3 .h3 {
        width: 50%;
        background-color: #723183;
        display: table;
        height: 300px;
        text-align: center;
        box-sizig: border-box; }
        @media screen and (max-width: 750px) {
          .section-shoplist .box-area .unit-h3 .h3 {
            width: 100%;
            height: 100px; } }
        .section-shoplist .box-area .unit-h3 .h3 h3 {
          display: table-cell;
          font-size: 28px;
          color: #fff;
          height: 300px;
          vertical-align: middle; }
          @media screen and (max-width: 750px) {
            .section-shoplist .box-area .unit-h3 .h3 h3 {
              height: 100px; } }
    .section-shoplist .box-area .box-shoplist {
      margin-top: 40px; }
      .section-shoplist .box-area .box-shoplist ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; }
        @media screen and (max-width: 750px) {
          .section-shoplist .box-area .box-shoplist ul {
            justify-content: center; } }
        .section-shoplist .box-area .box-shoplist ul li {
          width: 48%;
          box-sizing: border-box;
          margin-top: 5px;
          margin-bottom: 5px;
          background-color: #f8f8f8;
          border: 1px solid #b5b5b5;
          padding-top: 10px;
          padding-bottom: 10px;
          padding-left: 40px;
          position: relative; }
          @media screen and (max-width: 750px) {
            .section-shoplist .box-area .box-shoplist ul li {
              width: 300px; } }
          .section-shoplist .box-area .box-shoplist ul li a {
            font-size: 17px;
            font-weight: 600;
            position: relative;
            padding-right: 20px;
            transition: 0.2s; }
            .section-shoplist .box-area .box-shoplist ul li a:after {
              content: "";
              position: absolute;
              width: 15px;
              height: 15px;
              background-image: url(../img/top/icon_link.png);
              background-repeat: no-repeat;
              top: 5px;
              right: -5px; }
            .section-shoplist .box-area .box-shoplist ul li a:hover {
              color: #f4c100; }
          .section-shoplist .box-area .box-shoplist ul li:before {
            content: "";
            position: absolute;
            width: 17px;
            height: 17px;
            background-color: #723183;
            top: 14px;
            left: 14px;
            border-radius: 50%; }
          .section-shoplist .box-area .box-shoplist ul li:after {
            content: "";
            position: absolute;
            width: 5px;
            height: 5px;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            transform: rotate(-45deg);
            top: 19px;
            left: 17px; }
        .section-shoplist .box-area .box-shoplist ul:after {
          content: "";
          display: block;
          width: 355px;
          height: 0; }

.section-information {
  width: 100%; }
  .section-information .box-h2 {
    background-color: #723183;
    width: 400px;
    position: relative;
    z-index: 5; }
    @media screen and (max-width: 750px) {
      .section-information .box-h2 {
        width: 100%;
        padding: 45px 10px;
        box-sizing: border-box; } }
    .section-information .box-h2 h2 {
      font-size: 28px;
      margin: 0;
      letter-spacing: 0.2em;
      line-height: 1.4em;
      color: #fff;
      padding: 65px 0px 65px 40px; }
      @media screen and (max-width: 750px) {
        .section-information .box-h2 h2 {
          padding: 0px; } }
      .section-information .box-h2 h2 span {
        font-size: 18px;
        font-family: Raleway-Bold;
        letter-spacing: 0.2em; }
  .section-information .box-informationlist {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    top: -100px; }
    @media screen and (max-width: 1400px) {
      .section-information .box-informationlist {
        top: -30px; } }
    @media screen and (max-width: 750px) {
      .section-information .box-informationlist {
        width: 100%;
        box-sizing: border-box;
        top: 0px; } }
    .section-information .box-informationlist ul {
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 260px;
      background-color: #f8f4f9;
      width: calc(50vw + 550px);
      box-sizing: border-box; }
      @media screen and (max-width: 750px) {
        .section-information .box-informationlist ul {
          width: 100%;
          padding-left: 10px;
          padding-right: 10px; } }
      .section-information .box-informationlist ul li {
        display: flex;
        border-bottom: 1px solid #b5b5b5;
        padding-bottom: 20px;
        margin-right: 100px;
        margin-bottom: 20px;
        margin-top: 20px;
        align-items: flex-start;
        flex-wrap: wrap; }
        @media screen and (max-width: 750px) {
          .section-information .box-informationlist ul li {
            flex-wrap: wrap;
            margin-right: 0px; } }
        .section-information .box-informationlist ul li .date {
          margin-top: 7px; }
        .section-information .box-informationlist ul li .category {
          margin-left: 15px;
          margin-right: 15px;
          padding: 5px 10px;
          background-color: #f4c100;
          color: #fff;
          font-size: 13px;
          width: 120px;
          text-align: center; }
          @media screen and (max-width: 750px) {
            .section-information .box-informationlist ul li .category {
              padding: 5px; } }
        .section-information .box-informationlist ul li .title {
          font-weight: 600;
          margin-top: 7px;
          width: 540px; }
          @media screen and (max-width: 750px) {
            .section-information .box-informationlist ul li .title {
              width: 100%; } }
          .section-information .box-informationlist ul li .title a {
            opacity: 1;
            transition: 0.2s; }
            .section-information .box-informationlist ul li .title a:hover {
              opacity: 0.5; }

.section-inquiry {
  width: 100%;
  background-image: url(../img/top/contact_bg.jpg);
  padding-top: 50px;
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-size: cover; }
  @media screen and (max-width: 750px) {
    .section-inquiry {
      background-position: 10% 50%; } }
  .section-inquiry .inquiry-inner {
    width: 1100px;
    margin: 0px auto; }
    @media screen and (max-width: 750px) {
      .section-inquiry .inquiry-inner {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px; } }
    .section-inquiry .inquiry-inner .box-h2 {
      text-align: center;
      margin-bottom: 50px;
      color: #fff; }
      @media screen and (max-width: 750px) {
        .section-inquiry .inquiry-inner .box-h2 {
          text-align: left; } }
      .section-inquiry .inquiry-inner .box-h2 h2 {
        font-size: 28px; }
      .section-inquiry .inquiry-inner .box-h2 .subtitle {
        font-size: 18px; }
    .section-inquiry .inquiry-inner .box-inquirybutton {
      display: flex;
      justify-content: space-between; }
      @media screen and (max-width: 750px) {
        .section-inquiry .inquiry-inner .box-inquirybutton {
          justify-content: center;
          flex-wrap: wrap; } }
      @media screen and (max-width: 750px) {
        .section-inquiry .inquiry-inner .box-inquirybutton .tel {
          width: 100%;
          text-align: center; } }
      .section-inquiry .inquiry-inner .box-inquirybutton .tel a {
        width: 520px;
        box-sizing: border-box;
        background-color: #f4c100;
        text-align: center;
        padding-top: 35px;
        padding-bottom: 25px;
        display: inline-block;
        padding-left: 45px;
        overflow: hidden;
        position: relative; }
        @media screen and (max-width: 750px) {
          .section-inquiry .inquiry-inner .box-inquirybutton .tel a {
            width: 100%; } }
        .section-inquiry .inquiry-inner .box-inquirybutton .tel a span {
          color: #fff;
          font-size: 32px;
          position: relative;
          letter-spacing: 0.1em;
          z-index: 5; }
          @media screen and (max-width: 750px) {
            .section-inquiry .inquiry-inner .box-inquirybutton .tel a span {
              font-size: 28px; } }
          .section-inquiry .inquiry-inner .box-inquirybutton .tel a span:before {
            content: "";
            position: absolute;
            width: 36px;
            height: 36px;
            background-image: url(../img/top/icon_contact01.png);
            background-size: cover;
            background-repeat: no-repeat;
            top: 3px;
            left: -40px; }
            @media screen and (max-width: 750px) {
              .section-inquiry .inquiry-inner .box-inquirybutton .tel a span:before {
                top: -5px; } }
        .section-inquiry .inquiry-inner .box-inquirybutton .tel a:after {
          content: "";
          position: absolute;
          width: 520px;
          height: 120px;
          background-color: #723183;
          top: -120px;
          left: 0px;
          transition: 0.3s; }
        .section-inquiry .inquiry-inner .box-inquirybutton .tel a:hover:after {
          top: 0px; }
      .section-inquiry .inquiry-inner .box-inquirybutton .tel .reception {
        text-align: right;
        color: #fff; }
      @media screen and (max-width: 750px) {
        .section-inquiry .inquiry-inner .box-inquirybutton .web {
          width: 100%;
          text-align: center;
          margin-top: 30px; } }
      .section-inquiry .inquiry-inner .box-inquirybutton .web a {
        width: 520px;
        box-sizing: border-box;
        background-color: #f4c100;
        text-align: center;
        padding-top: 35px;
        padding-bottom: 25px;
        display: inline-block;
        position: relative;
        padding-left: 60px;
        overflow: hidden; }
        @media screen and (max-width: 750px) {
          .section-inquiry .inquiry-inner .box-inquirybutton .web a {
            width: 100%; } }
        .section-inquiry .inquiry-inner .box-inquirybutton .web a span {
          color: #fff;
          font-size: 28px;
          position: relative;
          letter-spacing: 0.1em;
          z-index: 5; }
          @media screen and (max-width: 750px) {
            .section-inquiry .inquiry-inner .box-inquirybutton .web a span {
              font-size: 23px; } }
          .section-inquiry .inquiry-inner .box-inquirybutton .web a span:before {
            content: "";
            position: absolute;
            width: 40px;
            height: 36px;
            background-image: url(../img/top/icon_contact02.png);
            background-size: cover;
            background-repeat: no-repeat;
            top: 2px;
            left: -48px; }
            @media screen and (max-width: 750px) {
              .section-inquiry .inquiry-inner .box-inquirybutton .web a span:before {
                top: -7px; } }
        .section-inquiry .inquiry-inner .box-inquirybutton .web a:after {
          content: "";
          position: absolute;
          width: 520px;
          height: 120px;
          background-color: #723183;
          top: -120px;
          left: 0px;
          transition: 0.3s; }
        .section-inquiry .inquiry-inner .box-inquirybutton .web a:hover:after {
          top: 0px; }

/*下層ページ共通*/
.section-mv-second {
  height: 400px;
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #f8f8f8 50%, #f8f8f8 100%); }
  @media screen and (max-width: 750px) {
    .section-mv-second {
      height: 300px; } }
  .section-mv-second .box-h1 {
    background-image: url(../img/common/h1_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 0 right 0px;
    height: 300px;
    width: 100%;
    margin-left: 100px;
    box-sizing: border-box; }
    @media screen and (max-width: 750px) {
      .section-mv-second .box-h1 {
        background-position: top 0 right -270px;
        background-size: cover;
        margin-left: 0px; } }
    .section-mv-second .box-h1 h1 {
      margin: 0 auto;
      height: 100%;
      text-align: left;
      display: block;
      font-size: 40px;
      color: #fff;
      line-height: 300px;
      padding-left: 100px;
      box-sizing: border-box; }
      @media screen and (max-width: 750px) {
        .section-mv-second .box-h1 h1 {
          padding-left: 30px;
          font-size: 34px;
          width: 100%;
          box-sizing: border-box; } }
  .section-mv-second .box-subtitle {
    position: absolute;
    left: -35px;
    top: 330px; }
    @media screen and (max-width: 750px) {
      .section-mv-second .box-subtitle {
        display: none; } }
    .section-mv-second .box-subtitle .text {
      transform: rotate(90deg);
      font-family: Raleway-Regular;
      font-size: 18px;
      letter-spacing: 0.2em;
      position: relative; }
      @media screen and (max-width: 750px) {
        .section-mv-second .box-subtitle .text {
          transform: unset;
          padding-top: 30px;
          font-size: 13px; } }

/*募集要項*/
.section-requirement-01 {
  width: 100%;
  background-color: #f8f8f8;
  padding-bottom: 50px; }
  .section-requirement-01 .box-content {
    width: 1100px;
    margin: 0 auto 80px;
    background-image: url(../img/requirement/message_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 20px;
    box-sizing: border-box;
    text-align: center;
    color: #fff; }
    @media screen and (max-width: 750px) {
      .section-requirement-01 .box-content {
        margin-top: 50px;
        width: 100%;
        background-position: 50%;
        text-align: left;
        padding: 50px 20px; } }
    .section-requirement-01 .box-content h2 {
      font-size: 26px;
      line-height: 2.0em;
      letter-spacing: 0.1em;
      margin-top: 0px;
      margin-bottom: 40px; }
      @media screen and (max-width: 750px) {
        .section-requirement-01 .box-content h2 {
          font-size: 20px;
          line-height: 1.8em; } }
    .section-requirement-01 .box-content div {
      font-size: 20px;
      line-height: 2.0em; }
      @media screen and (max-width: 750px) {
        .section-requirement-01 .box-content div {
          font-size: 18px;
          line-height: 1.8em; } }

.section-requirement-02 {
  width: 1100px;
  margin: 120px auto 40px; }
  @media screen and (max-width: 750px) {
    .section-requirement-02 {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px; } }
  .section-requirement-02 h2 {
    width: 100%;
    background-color: #723183;
    color: #fff;
    margin: 0;
    box-sizing: border-box;
    padding: 13px 30px;
    font-size: 20px; }
  .section-requirement-02 .box-content {
    margin-bottom: 60px; }
    .section-requirement-02 .box-content dl {
      margin-top: 3px;
      display: flex;
      margin-bottom: 0px; }
      @media screen and (max-width: 750px) {
        .section-requirement-02 .box-content dl {
          flex-wrap: wrap; } }
      .section-requirement-02 .box-content dl dt {
        box-sizing: border-box;
        width: 250px;
        background-color: #eeeeee;
        padding: 20px 20px 20px 20px;
        font-weight: 600; }
        @media screen and (max-width: 750px) {
          .section-requirement-02 .box-content dl dt {
            width: 100%;
            padding: 15px 10px 15px 10px; } }
      .section-requirement-02 .box-content dl dd {
        box-sizing: border-box;
        width: 850px;
        background-color: #f8f8f8;
        padding: 20px 20px 20px 20px;
        margin-left: 0px; }
        @media screen and (max-width: 750px) {
          .section-requirement-02 .box-content dl dd {
            padding: 15px 10px 15px 10px;
            width: 100%; } }
        .section-requirement-02 .box-content dl dd span {
          margin-top: 50px;
          display: inline-block; }
        .section-requirement-02 .box-content dl dd .shoplist {
          display: flex;
          flex-wrap: wrap; }
          .section-requirement-02 .box-content dl dd .shoplist li {
            width: 48%;
            box-sizing: border-box;
            margin-bottom: 5px;
            padding-left: 26px;
            position: relative; }
            @media screen and (max-width: 750px) {
              .section-requirement-02 .box-content dl dd .shoplist li {
                width: 100%; } }
            .section-requirement-02 .box-content dl dd .shoplist li a {
              font-weight: 600;
              position: relative;
              transition: 0.2s; }
              .section-requirement-02 .box-content dl dd .shoplist li a:after {
                content: "";
                position: absolute;
                width: 15px;
                height: 15px;
                background-image: url(../img/top/icon_link.png);
                background-repeat: no-repeat;
                top: 2px;
                right: -20px; }
              .section-requirement-02 .box-content dl dd .shoplist li a:hover {
                color: #f4c100; }
            .section-requirement-02 .box-content dl dd .shoplist li:before {
              content: "";
              position: absolute;
              width: 17px;
              height: 17px;
              background-color: #723183;
              top: 4px;
              left: 0px;
              border-radius: 50%; }
            .section-requirement-02 .box-content dl dd .shoplist li:after {
              content: "";
              position: absolute;
              width: 5px;
              height: 5px;
              border-right: 2px solid #fff;
              border-bottom: 2px solid #fff;
              transform: rotate(-45deg);
              top: 10px;
              left: 4px; }

.section-requirement-03 {
  width: 1100px;
  margin: 130px auto;
  display: flex; }
  @media screen and (max-width: 750px) {
    .section-requirement-03 {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px;
      display: block;
      margin: 60px auto 120px; } }
  .section-requirement-03 .box-h2 {
    width: 50%;
    background-color: #723183;
    text-align: center; }
    @media screen and (max-width: 750px) {
      .section-requirement-03 .box-h2 {
        width: 100%;
        padding-top: 13px;
        padding-bottom: 13px;
        text-align: left; } }
    .section-requirement-03 .box-h2 h2 {
      font-size: 28px;
      color: #fff;
      line-height: 300px; }
      @media screen and (max-width: 750px) {
        .section-requirement-03 .box-h2 h2 {
          line-height: unset;
          padding-left: 30px;
          font-size: 20px;
          margin: 0; } }
  .section-requirement-03 .content {
    width: 50%;
    box-sizing: border-box;
    padding: 40px;
    background-color: #f8f8f8; }
    @media screen and (max-width: 750px) {
      .section-requirement-03 .content {
        width: 100%;
        padding: 20px 10px; } }
    .section-requirement-03 .content div {
      margin-bottom: 40px; }
      .section-requirement-03 .content div:last-child {
        margin-bottom: 0px; }
      .section-requirement-03 .content div .link {
        margin-bottom: 5px;
        padding-left: 26px;
        position: relative; }
        .section-requirement-03 .content div .link a {
          position: relative;
          transition: 0.2s; }
          .section-requirement-03 .content div .link a:hover {
            color: #f4c100; }
        .section-requirement-03 .content div .link:before {
          content: "";
          position: absolute;
          width: 17px;
          height: 17px;
          background-color: #723183;
          top: 2px;
          left: 0px;
          border-radius: 50%; }
        .section-requirement-03 .content div .link:after {
          content: "";
          position: absolute;
          width: 5px;
          height: 5px;
          border-right: 2px solid #fff;
          border-bottom: 2px solid #fff;
          transform: rotate(-45deg);
          top: 7px;
          left: 4px; }

.section-requirement-04 {
  width: 100%; }
  @media screen and (max-width: 750px) {
    .section-requirement-04 {
      padding-left: 10px;
      padding-right: 10px;
      box-sizing: border-box; } }
  .section-requirement-04 h2 {
    font-size: 28px;
    text-align: center; }
    @media screen and (max-width: 750px) {
      .section-requirement-04 h2 {
        font-size: 24px; } }
  .section-requirement-04 .box-flow {
    width: 550px;
    margin: 40px auto 100px; }
    @media screen and (max-width: 750px) {
      .section-requirement-04 .box-flow {
        width: 100%; } }
    .section-requirement-04 .box-flow .content {
      width: 100%;
      position: relative;
      margin-bottom: 30px; }
      .section-requirement-04 .box-flow .content span {
        font-size: 22px;
        color: #723183;
        position: relative;
        display: inline-block;
        border: #723183 3px solid;
        box-sizing: border-box;
        text-align: center;
        padding: 30px;
        width: 100%;
        height: 100%;
        background-color: #fff; }
        @media screen and (max-width: 750px) {
          .section-requirement-04 .box-flow .content span {
            text-align: left;
            padding: 20px 10px 20px 60px;
            font-size: 18px; } }
      .section-requirement-04 .box-flow .content .number {
        position: absolute;
        z-index: 5;
        color: #fff;
        background-color: #f4c100;
        font-size: 23px;
        padding: 13px;
        top: 18px;
        left: -28px; }
        @media screen and (max-width: 750px) {
          .section-requirement-04 .box-flow .content .number {
            left: 10px;
            top: 12px;
            font-size: 19px;
            padding: 10px; } }
      .section-requirement-04 .box-flow .content:after {
        content: "";
        position: absolute;
        width: 3px;
        height: 50px;
        left: 273px;
        bottom: -40px;
        background-color: #723183;
        z-index: -1; }
        @media screen and (max-width: 750px) {
          .section-requirement-04 .box-flow .content:after {
            left: 50px; } }
      .section-requirement-04 .box-flow .content:last-child:after {
        content: none; }
  .section-requirement-04 .box-entry-link {
    background-color: #f8f8f8;
    padding-top: 100px;
    padding-bottom: 100px; }
    @media screen and (max-width: 750px) {
      .section-requirement-04 .box-entry-link {
        background-color: #fff;
        padding-top: 30px;
        padding-bottom: 100px; } }
    .section-requirement-04 .box-entry-link .link {
      width: 1100px;
      margin: 0 auto; }
      @media screen and (max-width: 750px) {
        .section-requirement-04 .box-entry-link .link {
          width: 100%;
          text-align: center; } }
      .section-requirement-04 .box-entry-link .link a {
        width: 1100px;
        box-sizing: border-box;
        background-color: #f4c100;
        text-align: center;
        padding-top: 60px;
        padding-bottom: 50px;
        display: inline-block;
        padding-left: 45px;
        overflow: hidden;
        position: relative; }
        @media screen and (max-width: 750px) {
          .section-requirement-04 .box-entry-link .link a {
            width: 100%;
            padding-top: 30px;
            padding-bottom: 20px; } }
        .section-requirement-04 .box-entry-link .link a span {
          color: #fff;
          font-size: 30px;
          position: relative;
          letter-spacing: 0.1em;
          z-index: 5; }
          @media screen and (max-width: 750px) {
            .section-requirement-04 .box-entry-link .link a span {
              font-size: 23px; } }
          .section-requirement-04 .box-entry-link .link a span:before {
            content: "";
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: #fff;
            border-radius: 50%;
            top: 6px;
            left: -40px; }
            @media screen and (max-width: 750px) {
              .section-requirement-04 .box-entry-link .link a span:before {
                top: 2px;
                width: 25px;
                height: 25px;
                left: -32px; } }
          .section-requirement-04 .box-entry-link .link a span:after {
            content: "";
            position: absolute;
            width: 12px;
            height: 12px;
            border-right: 3px solid #f4c100;
            border-bottom: 3px solid #f4c100;
            transform: rotate(-45deg);
            top: 14px;
            left: -36px; }
            @media screen and (max-width: 750px) {
              .section-requirement-04 .box-entry-link .link a span:after {
                top: 8px;
                left: -30px; } }
        .section-requirement-04 .box-entry-link .link a:after {
          content: "";
          position: absolute;
          width: 1100px;
          height: 160px;
          background-color: #723183;
          top: -160px;
          left: 0px;
          transition: 0.3s; }
          @media screen and (max-width: 750px) {
            .section-requirement-04 .box-entry-link .link a:after {
              height: 100px;
              top: -100px; } }
        .section-requirement-04 .box-entry-link .link a:hover:after {
          top: 0px; }
      .section-requirement-04 .box-entry-link .link .reception {
        text-align: right;
        color: #fff; }

/*会社概要*/
.section-companyinfo-01 {
  width: 100%;
  background-color: #f8f8f8;
  padding-bottom: 50px; }
  .section-companyinfo-01 .box-content {
    margin: 0px auto 60px;
    width: 1100px; }
    @media screen and (max-width: 750px) {
      .section-companyinfo-01 .box-content {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        margin: 100px auto 60px; } }
    .section-companyinfo-01 .box-content dl {
      margin-top: 3px;
      display: flex;
      margin-bottom: 0px; }
      @media screen and (max-width: 750px) {
        .section-companyinfo-01 .box-content dl {
          flex-wrap: wrap; } }
      .section-companyinfo-01 .box-content dl dt {
        box-sizing: border-box;
        width: 200px;
        background-color: #eeeeee;
        padding: 20px 0px 20px 40px;
        font-weight: 600; }
        @media screen and (max-width: 750px) {
          .section-companyinfo-01 .box-content dl dt {
            width: 100%;
            padding: 15px 10px 15px 10px; } }
      .section-companyinfo-01 .box-content dl dd {
        box-sizing: border-box;
        width: 900px;
        background-color: #fff;
        padding: 20px 20px 20px 20px;
        margin-left: 0px; }
        @media screen and (max-width: 750px) {
          .section-companyinfo-01 .box-content dl dd {
            padding: 15px 10px 15px 10px;
            width: 100%; } }
        .section-companyinfo-01 .box-content dl dd span {
          margin-bottom: 30px;
          display: inline-block; }
        .section-companyinfo-01 .box-content dl dd .googlemap {
          margin-top: 20px; }
      .section-companyinfo-01 .box-content dl:first-child {
        margin-top: 0px; }

.section-companyinfo-02 {
  width: 1100px;
  margin: 150px auto; }
  @media screen and (max-width: 750px) {
    .section-companyinfo-02 {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px; } }
  .section-companyinfo-02 .link-inner {
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 750px) {
      .section-companyinfo-02 .link-inner {
        justify-content: center;
        flex-wrap: wrap; } }
    @media screen and (max-width: 750px) {
      .section-companyinfo-02 .link-inner .requirements {
        width: 100%;
        text-align: center; } }
    .section-companyinfo-02 .link-inner .requirements a {
      width: 520px;
      box-sizing: border-box;
      background-color: #f4c100;
      text-align: left;
      padding-top: 60px;
      padding-bottom: 50px;
      display: inline-block;
      padding-left: 100px;
      overflow: hidden;
      position: relative;
      background-image: url(../img/company-info/button_bg1.jpg); }
      @media screen and (max-width: 750px) {
        .section-companyinfo-02 .link-inner .requirements a {
          width: 100%; } }
      .section-companyinfo-02 .link-inner .requirements a .text {
        color: #fff;
        font-size: 32px;
        position: relative;
        letter-spacing: 0.1em;
        z-index: 5;
        padding-left: 30px; }
        @media screen and (max-width: 750px) {
          .section-companyinfo-02 .link-inner .requirements a .text {
            font-size: 28px; } }
        .section-companyinfo-02 .link-inner .requirements a .text:before {
          content: "";
          position: absolute;
          width: 60px;
          height: 60px;
          background-image: url(../img/company-info/icon_01.png);
          background-size: cover;
          background-repeat: no-repeat;
          top: 3px;
          left: -40px; }
          @media screen and (max-width: 750px) {
            .section-companyinfo-02 .link-inner .requirements a .text:before {
              top: -5px; } }
      .section-companyinfo-02 .link-inner .requirements a .subtext {
        font-size: 15px;
        color: #fff;
        z-index: 5;
        position: relative;
        padding-left: 30px; }
      .section-companyinfo-02 .link-inner .requirements a:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 50px;
        background-image: url(../img/company-info/arrow.gif);
        background-size: cover;
        background-repeat: no-repeat;
        bottom: 0px;
        right: 0px;
        z-index: 5; }
      .section-companyinfo-02 .link-inner .requirements a:after {
        content: "";
        position: absolute;
        width: 520px;
        height: 200px;
        background-color: #f4c100;
        bottom: -200px;
        right: -520px;
        transition: 0.3s; }
      .section-companyinfo-02 .link-inner .requirements a:hover:after {
        bottom: 0px;
        right: 0px; }
    .section-companyinfo-02 .link-inner .requirements .reception {
      text-align: right;
      color: #fff; }
    @media screen and (max-width: 750px) {
      .section-companyinfo-02 .link-inner .entry {
        width: 100%;
        text-align: center;
        margin-top: 30px; } }
    .section-companyinfo-02 .link-inner .entry a {
      width: 520px;
      box-sizing: border-box;
      background-color: #f4c100;
      text-align: left;
      padding-top: 60px;
      padding-bottom: 50px;
      display: inline-block;
      position: relative;
      padding-left: 100px;
      overflow: hidden;
      background-image: url(../img/company-info/button_bg2.jpg); }
      @media screen and (max-width: 750px) {
        .section-companyinfo-02 .link-inner .entry a {
          width: 100%; } }
      .section-companyinfo-02 .link-inner .entry a .text {
        color: #fff;
        font-size: 28px;
        position: relative;
        letter-spacing: 0.1em;
        z-index: 5;
        padding-left: 30px; }
        @media screen and (max-width: 750px) {
          .section-companyinfo-02 .link-inner .entry a .text {
            font-size: 23px; } }
        .section-companyinfo-02 .link-inner .entry a .text:before {
          content: "";
          position: absolute;
          width: 65px;
          height: 65px;
          background-image: url(../img/company-info/icon_02.png);
          background-size: cover;
          background-repeat: no-repeat;
          top: 2px;
          left: -48px; }
          @media screen and (max-width: 750px) {
            .section-companyinfo-02 .link-inner .entry a .text:before {
              top: -7px; } }
      .section-companyinfo-02 .link-inner .entry a .subtext {
        font-size: 15px;
        color: #fff;
        z-index: 5;
        position: relative;
        padding-left: 30px; }
      .section-companyinfo-02 .link-inner .entry a:before {
        content: "";
        position: absolute;
        width: 50px;
        height: 50px;
        background-image: url(../img/company-info/arrow.gif);
        background-size: cover;
        background-repeat: no-repeat;
        bottom: 0px;
        right: 0px;
        z-index: 5; }
      .section-companyinfo-02 .link-inner .entry a:after {
        content: "";
        position: absolute;
        width: 520px;
        height: 200px;
        background-color: #f4c100;
        bottom: -200px;
        right: -520px;
        transition: 0.3s; }
      .section-companyinfo-02 .link-inner .entry a:hover:after {
        bottom: 0px;
        right: 0px; }

.section-companyinfo-03 {
  width: 1100px;
  margin: 150px auto; }
  @media screen and (max-width: 750px) {
    .section-companyinfo-03 {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px; } }
  .section-companyinfo-03 .greet-wrap {
    display: flex; }
    @media screen and (max-width: 750px) {
      .section-companyinfo-03 .greet-wrap {
        flex-wrap: wrap; } }
    .section-companyinfo-03 .greet-wrap .img {
      width: 30%; }
      @media screen and (max-width: 750px) {
        .section-companyinfo-03 .greet-wrap .img {
          width: 100%;
          text-align: center; } }
      .section-companyinfo-03 .greet-wrap .img img {
        width: 100%;
        height: auto; }
    .section-companyinfo-03 .greet-wrap .text {
      width: 70%;
      box-sizing: border-box;
      padding-left: 50px; }
      @media screen and (max-width: 750px) {
        .section-companyinfo-03 .greet-wrap .text {
          width: 100%;
          padding-left: 0; } }
      .section-companyinfo-03 .greet-wrap .text span {
        display: block;
        text-align: right;
        margin-top: 30px; }

/*よくあるご質問*/
.section-qa-01 {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-qa-01 {
      padding-top: 100px; } }
  .section-qa-01 .box-content .box-qa {
    width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .section-qa-01 .box-content .box-qa {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px; } }
    .section-qa-01 .box-content .box-qa .qanda {
      position: relative; }
      @media screen and (max-width: 750px) {
        .section-qa-01 .box-content .box-qa .qanda .question {
          display: flex; } }
      .section-qa-01 .box-content .box-qa .qanda label {
        padding: 15px 15px 10px;
        border-bottom: solid 1px #fff;
        cursor: pointer;
        width: 100%;
        display: inline-block;
        box-sizing: border-box;
        transition: 0.3s; }
        @media screen and (max-width: 750px) {
          .section-qa-01 .box-content .box-qa .qanda label {
            padding: 15px 7px 10px; } }
        .section-qa-01 .box-content .box-qa .qanda label:hover {
          background: #efefef; }
        .section-qa-01 .box-content .box-qa .qanda label .q {
          padding: 5px 14px 7px 14px;
          background-color: #723183;
          color: #fff;
          display: inline-block;
          font-size: 15px;
          margin-right: 8px;
          height: 27px; }
      .section-qa-01 .box-content .box-qa .qanda input {
        display: none; }
      .section-qa-01 .box-content .box-qa .qanda .hidden_show {
        height: 0;
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
        opacity: 0;
        transition: 0.8s;
        background-color: #fff;
        width: 100%;
        box-sizing: border-box; }
        @media screen and (max-width: 750px) {
          .section-qa-01 .box-content .box-qa .qanda .hidden_show {
            padding-left: 13px;
            padding-right: 13px; } }
        .section-qa-01 .box-content .box-qa .qanda .hidden_show p {
          display: flex; }
        .section-qa-01 .box-content .box-qa .qanda .hidden_show .a {
          padding: 5px 14px 7px 14px;
          background-color: #f4c100;
          color: #fff;
          display: inline-block;
          font-size: 15px;
          margin-right: 8px;
          height: 27px; }
        .section-qa-01 .box-content .box-qa .qanda .hidden_show .text {
          padding-left: 10px; }
      .section-qa-01 .box-content .box-qa .qanda input:checked ~ .hidden_show {
        padding: 10px 16px;
        height: auto;
        opacity: 1; }
        @media screen and (max-width: 750px) {
          .section-qa-01 .box-content .box-qa .qanda input:checked ~ .hidden_show {
            padding: 10px 13px; } }
      .section-qa-01 .box-content .box-qa .qanda:after {
        content: ">";
        position: absolute;
        font-size: 20px;
        color: #723183;
        transform: rotate(90deg) scale(0.7, 2);
        top: 24px;
        right: 20px; }
        @media screen and (max-width: 750px) {
          .section-qa-01 .box-content .box-qa .qanda:after {
            content: none; } }

/*スタッフ紹介*/
.section-staffsingle-01 {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-staffsingle-01 {
      padding-top: 150px;
      padding-bottom: 60px; } }
  .section-staffsingle-01 .staffsingle-inner {
    width: 1100px;
    margin: 0 auto;
    position: relative; }
    @media screen and (max-width: 750px) {
      .section-staffsingle-01 .staffsingle-inner {
        width: 100%;
        box-sizing: border-box; } }
    .section-staffsingle-01 .staffsingle-inner .box-h2 {
      width: 850px;
      box-sizing: border-box;
      padding: 60px 20px 55px 275px;
      background-color: #723183;
      margin-left: auto;
      margin-right: 0px; }
      @media screen and (max-width: 750px) {
        .section-staffsingle-01 .staffsingle-inner .box-h2 {
          width: 100%;
          padding: 15px;
          margin: 0; } }
      .section-staffsingle-01 .staffsingle-inner .box-h2 h2 {
        color: #fff;
        font-size: 30px;
        line-height: 1.7em;
        margin: 0; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-01 .staffsingle-inner .box-h2 h2 {
            font-size: 22px; } }
    .section-staffsingle-01 .staffsingle-inner .photo {
      position: absolute;
      top: 60px;
      left: 0px;
      z-index: 5; }
      @media screen and (max-width: 750px) {
        .section-staffsingle-01 .staffsingle-inner .photo {
          position: relative;
          top: unset;
          left: unset;
          padding-left: 0px;
          padding-right: 0px; } }
      .section-staffsingle-01 .staffsingle-inner .photo img {
        width: 450px;
        height: 520px;
        object-fit: cover; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-01 .staffsingle-inner .photo img {
            width: 100%;
            height: auto; } }
    .section-staffsingle-01 .staffsingle-inner .box-profile {
      width: 600px;
      margin-left: auto;
      margin-right: 0;
      padding-left: 30px;
      margin-top: 50px;
      box-sizing: border-box; }
      @media screen and (max-width: 750px) {
        .section-staffsingle-01 .staffsingle-inner .box-profile {
          width: 100%;
          margin-left: 0;
          margin-right: 0;
          padding-left: 10px;
          padding-right: 10px;
          margin-top: 30px; } }
      .section-staffsingle-01 .staffsingle-inner .box-profile .belong {
        font-size: 20px;
        line-height: 1.5em;
        font-weight: 600; }
      .section-staffsingle-01 .staffsingle-inner .box-profile .jpb {
        font-size: 20px;
        color: #723183;
        line-height: 1.5em;
        font-weight: 600; }
      .section-staffsingle-01 .staffsingle-inner .box-profile .name {
        font-size: 32px;
        color: #723183;
        font-weight: 600;
        margin-top: 10px; }
      .section-staffsingle-01 .staffsingle-inner .box-profile .unit-profile {
        font-size: 17px; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-01 .staffsingle-inner .box-profile .unit-profile {
            font-size: 15px; } }
        .section-staffsingle-01 .staffsingle-inner .box-profile .unit-profile .headline {
          padding-top: 35px;
          padding-bottom: 10px;
          border-bottom: 1px solid #141314;
          margin-bottom: 18px; }
        .section-staffsingle-01 .staffsingle-inner .box-profile .unit-profile .profile {
          line-height: 2em; }

.section-staffsingle-02 {
  background: linear-gradient(180deg, #f8f8f8 0%, #f8f8f8 90%, #fff 90%, #fff 100%); }
  @media screen and (max-width: 750px) {
    .section-staffsingle-02 {
      padding-top: 50px; } }
  .section-staffsingle-02 .box-h2 {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    background-color: #723183; }
    .section-staffsingle-02 .box-h2 h2 {
      display: block;
      width: 1100px;
      margin: 0 auto;
      color: #fff;
      font-family: DancingScript;
      text-align: right;
      font-size: 60px;
      line-height: 120px;
      font-weight: 500; }
      @media screen and (max-width: 750px) {
        .section-staffsingle-02 .box-h2 h2 {
          width: 100%;
          text-align: left;
          padding-left: 20px; } }
  .section-staffsingle-02 .box-story {
    width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .section-staffsingle-02 .box-story {
        width: 100%; } }
    .section-staffsingle-02 .box-story .story-inner .unit-card {
      width: 800px;
      box-sizing: border-box;
      padding: 50px;
      margin-left: 0px;
      margin-right: auto;
      background-color: #fff;
      box-shadow: 0px 0px 15px rgba(114, 49, 131, 0.2);
      position: relative;
      top: -40px; }
      @media screen and (max-width: 750px) {
        .section-staffsingle-02 .box-story .story-inner .unit-card {
          width: 100%;
          background-color: #f8f8f8;
          padding: 0;
          margin-left: 0;
          margin-right: 0;
          box-shadow: none;
          top: unset; } }
      .section-staffsingle-02 .box-story .story-inner .unit-card .photo {
        float: left;
        margin-right: 20px; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-02 .box-story .story-inner .unit-card .photo {
            margin-right: 0px; } }
        .section-staffsingle-02 .box-story .story-inner .unit-card .photo img {
          width: 300px;
          height: 350px;
          object-fit: cover; }
          @media screen and (max-width: 750px) {
            .section-staffsingle-02 .box-story .story-inner .unit-card .photo img {
              width: 100%;
              height: auto; } }
      .section-staffsingle-02 .box-story .story-inner .unit-card .text {
        line-height: 2em; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-02 .box-story .story-inner .unit-card .text {
            padding-left: 10px;
            padding-right: 10px;
            padding-bottom: 80px; } }
      .section-staffsingle-02 .box-story .story-inner .unit-card .box-tag {
        width: 100%;
        margin-top: 50px; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-02 .box-story .story-inner .unit-card .box-tag {
            margin-top: 20px;
            margin-bottom: 80px; } }
        .section-staffsingle-02 .box-story .story-inner .unit-card .box-tag ul {
          display: flex;
          flex-wrap: wrap; }
          .section-staffsingle-02 .box-story .story-inner .unit-card .box-tag ul li {
            background-color: #f4c100;
            color: #fff;
            padding: 5px 30px;
            position: relative;
            margin: 5px;
            border-radius: 25px;
            font-weight: 600; }

.section-staffsingle-03 {
  width: 1100px;
  margin: 50px auto 0px;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 750px) {
    .section-staffsingle-03 {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px;
      display: block; } }
  .section-staffsingle-03 .box-schedule {
    width: 520px;
    box-sizing: border-box; }
    @media screen and (max-width: 750px) {
      .section-staffsingle-03 .box-schedule {
        width: 100%; } }
    .section-staffsingle-03 .box-schedule .h2 {
      background-color: #723183;
      color: #fff;
      padding: 20px; }
      .section-staffsingle-03 .box-schedule .h2 h2 {
        margin: 0;
        padding-left: 30px; }
      .section-staffsingle-03 .box-schedule .h2 .oneday {
        position: relative; }
        .section-staffsingle-03 .box-schedule .h2 .oneday:before {
          content: "";
          position: absolute;
          width: 25px;
          height: 25px;
          background-image: url(../img/staff-profile/icon_01.png);
          background-size: cover;
          background-repeat: no-repeat;
          top: 0px;
          left: 0px; }
      .section-staffsingle-03 .box-schedule .h2 .oneweek {
        position: relative; }
        .section-staffsingle-03 .box-schedule .h2 .oneweek:before {
          content: "";
          position: absolute;
          width: 25px;
          height: 25px;
          background-image: url(../img/staff-profile/icon_02.png);
          background-size: cover;
          background-repeat: no-repeat;
          top: 0px;
          left: 0px; }
    .section-staffsingle-03 .box-schedule .schedule {
      margin-top: 0px; }
      .section-staffsingle-03 .box-schedule .schedule table {
        border-collapse: collapse;
        width: 100%; }
        .section-staffsingle-03 .box-schedule .schedule table tr th {
          background-color: #f4c100;
          font-weight: 600;
          color: #fff;
          text-align: center;
          padding-top: 15px;
          padding-bottom: 15px;
          border-top: #fff 2px solid; }
        .section-staffsingle-03 .box-schedule .schedule table tr td {
          background-color: #f8f8f8;
          padding-top: 15px;
          padding-bottom: 15px;
          padding-left: 20px;
          border-top: #fff 2px solid; }
        @media screen and (max-width: 750px) {
          .section-staffsingle-03 .box-schedule .schedule table:first-child {
            margin-bottom: 50px; } }

.section-movie {
  width: 100%; }
  @media screen and (max-width: 750px) {
    .section-movie {
      width: 100%; } }
  .section-movie .box-h2 {
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    background-color: #723183; }
    .section-movie .box-h2 h2 {
      display: block;
      width: 1100px;
      margin: 0 auto;
      color: #fff;
      font-family: DancingScript;
      text-align: right;
      font-size: 60px;
      line-height: 120px;
      font-weight: 500; }
      @media screen and (max-width: 750px) {
        .section-movie .box-h2 h2 {
          width: 100%;
          text-align: left;
          padding-left: 20px; } }
  .section-movie .youtube-wrap {
    width: 700px;
    margin: 80px auto 20px; }
    @media screen and (max-width: 750px) {
      .section-movie .youtube-wrap {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px; } }
    .section-movie .youtube-wrap .box-youtube {
      position: relative;
      width: 100%;
      padding-top: 56.25%; }
      .section-movie .youtube-wrap .box-youtube iframe {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%; }
  .section-movie .movie-wrap {
    width: 700px;
    margin: 80px auto 20px; }
    @media screen and (max-width: 750px) {
      .section-movie .movie-wrap {
        width: 100%; } }
    .section-movie .movie-wrap .box-movie {
      position: relative;
      width: 100%;
      padding-top: 56.25%; }
      .section-movie .movie-wrap .box-movie video {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%; }

.section-staffall {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-staffall {
      padding-top: 150px;
      padding-bottom: 60px; } }
  .section-staffall .box-stafflist {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; }
    @media screen and (max-width: 750px) {
      .section-staffall .box-stafflist {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: center; } }
    .section-staffall .box-stafflist .unit-card {
      width: 260px;
      margin-left: 15px;
      margin-bottom: 50px; }
      @media screen and (max-width: 750px) {
        .section-staffall .box-stafflist .unit-card {
          margin-left: 7px;
          margin-bottom: 50px;
          margin-right: 7px; } }
      .section-staffall .box-stafflist .unit-card a .photo {
        height: 300px;
        background-color: #723183; }
        .section-staffall .box-stafflist .unit-card a .photo img {
          width: 260px;
          height: 300px;
          object-fit: cover;
          transition: 0.3s;
          opacity: 1; }
      .section-staffall .box-stafflist .unit-card a .belong {
        background-color: #723183;
        color: #fff;
        padding: 10px;
        font-size: 13px;
        box-sizing: border-box; }
      .section-staffall .box-stafflist .unit-card a .name-outer {
        background-color: #fff;
        padding: 10px;
        box-sizing: border-box; }
        .section-staffall .box-stafflist .unit-card a .name-outer .jpb {
          font-size: 13px; }
        .section-staffall .box-stafflist .unit-card a .name-outer .name {
          font-size: 22px; }
      .section-staffall .box-stafflist .unit-card a:hover .photo img {
        opacity: 0.6; }

/*採用情報のお知らせ*/
.section-information-single {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-information-single {
      padding-top: 100px;
      padding-bottom: 60px; } }
  .section-information-single .information-inner {
    width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .section-information-single .information-inner {
        width: 100%; } }
    .section-information-single .information-inner .box-title {
      width: 100%;
      padding-right: 50px;
      box-sizing: border-box; }
      @media screen and (max-width: 750px) {
        .section-information-single .information-inner .box-title {
          padding-right: 0px; } }
      .section-information-single .information-inner .box-title .h2 {
        background-color: #723183;
        display: flex;
        justify-content: space-between;
        color: #fff; }
        @media screen and (max-width: 750px) {
          .section-information-single .information-inner .box-title .h2 {
            display: block; } }
        .section-information-single .information-inner .box-title .h2 h2 {
          margin: 0;
          padding: 15px;
          font-size: 20px; }
          @media screen and (max-width: 750px) {
            .section-information-single .information-inner .box-title .h2 h2 {
              padding: 15px 15px 5px 15px; } }
        .section-information-single .information-inner .box-title .h2 .date {
          font-size: 14px;
          padding-right: 20px;
          padding-top: 5px; }
          @media screen and (max-width: 750px) {
            .section-information-single .information-inner .box-title .h2 .date {
              padding-left: 15px;
              padding-bottom: 15px; } }
    .section-information-single .information-inner .category {
      position: relative;
      text-align: right;
      top: -10px; }
      @media screen and (max-width: 750px) {
        .section-information-single .information-inner .category {
          right: 10px; } }
      .section-information-single .information-inner .category span {
        background-color: #f4c100;
        color: #fff;
        padding: 7px 20px; }
    .section-information-single .information-inner .content {
      margin-top: 70px;
      margin-bottom: 70px;
      line-height: 2.2em; }
      @media screen and (max-width: 750px) {
        .section-information-single .information-inner .content {
          padding-left: 10px;
          padding-right: 10px; } }
    .section-information-single .information-inner .unit-link {
      padding-top: 100px;
      padding-bottom: 100px; }
      @media screen and (max-width: 750px) {
        .section-information-single .information-inner .unit-link {
          padding-top: 30px;
          padding-bottom: 100px;
          padding-left: 10px;
          padding-right: 10px;
          box-sizing: border-box; } }
      .section-information-single .information-inner .unit-link .tolist {
        width: 520px;
        margin: 0 auto; }
        @media screen and (max-width: 750px) {
          .section-information-single .information-inner .unit-link .tolist {
            width: 100%;
            text-align: center; } }
        .section-information-single .information-inner .unit-link .tolist a {
          width: 520px;
          box-sizing: border-box;
          background-color: #f4c100;
          text-align: center;
          padding-top: 30px;
          padding-bottom: 25px;
          display: inline-block;
          padding-left: 45px;
          overflow: hidden;
          position: relative; }
          @media screen and (max-width: 750px) {
            .section-information-single .information-inner .unit-link .tolist a {
              width: 100%;
              padding-top: 30px;
              padding-bottom: 20px; } }
          .section-information-single .information-inner .unit-link .tolist a span {
            color: #fff;
            font-size: 28px;
            position: relative;
            letter-spacing: 0.1em;
            z-index: 5; }
            @media screen and (max-width: 750px) {
              .section-information-single .information-inner .unit-link .tolist a span {
                font-size: 23px; } }
            .section-information-single .information-inner .unit-link .tolist a span:before {
              content: "";
              position: absolute;
              width: 30px;
              height: 30px;
              background-color: #fff;
              border-radius: 50%;
              top: 6px;
              left: -40px; }
              @media screen and (max-width: 750px) {
                .section-information-single .information-inner .unit-link .tolist a span:before {
                  top: 2px;
                  width: 25px;
                  height: 25px;
                  left: -32px; } }
            .section-information-single .information-inner .unit-link .tolist a span:after {
              content: "";
              position: absolute;
              width: 12px;
              height: 12px;
              border-right: 3px solid #f4c100;
              border-bottom: 3px solid #f4c100;
              transform: rotate(-45deg);
              top: 14px;
              left: -36px; }
              @media screen and (max-width: 750px) {
                .section-information-single .information-inner .unit-link .tolist a span:after {
                  top: 8px;
                  left: -30px; } }
          .section-information-single .information-inner .unit-link .tolist a:after {
            content: "";
            position: absolute;
            width: 520px;
            height: 130px;
            background-color: #723183;
            top: -130px;
            left: 0px;
            transition: 0.3s; }
            @media screen and (max-width: 750px) {
              .section-information-single .information-inner .unit-link .tolist a:after {
                height: 100px;
                top: -100px; } }
          .section-information-single .information-inner .unit-link .tolist a:hover:after {
            top: 0px; }
        .section-information-single .information-inner .unit-link .tolist .reception {
          text-align: right;
          color: #fff; }

.section-information-all {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-information-all {
      padding-top: 100px;
      padding-bottom: 160px; } }
  .section-information-all .box-informationlist {
    width: 1100px;
    margin: 0 auto;
    position: relative; }
    @media screen and (max-width: 750px) {
      .section-information-all .box-informationlist {
        width: 100%;
        box-sizing: border-box;
        top: 0px; } }
    .section-information-all .box-informationlist ul {
      padding-top: 30px;
      padding-bottom: 30px;
      width: 100%;
      box-sizing: border-box; }
      @media screen and (max-width: 750px) {
        .section-information-all .box-informationlist ul {
          width: 100%;
          padding-left: 10px;
          padding-right: 10px; } }
      .section-information-all .box-informationlist ul li {
        display: flex;
        border-bottom: 1px solid #b5b5b5;
        padding-bottom: 20px;
        margin-bottom: 20px;
        margin-top: 20px; }
        @media screen and (max-width: 750px) {
          .section-information-all .box-informationlist ul li {
            flex-wrap: wrap;
            margin-right: 0px; } }
        .section-information-all .box-informationlist ul li .date {
          margin-top: 7px; }
        .section-information-all .box-informationlist ul li .category {
          margin-left: 15px;
          margin-right: 15px;
          padding: 5px 10px;
          background-color: #f4c100;
          color: #fff;
          font-size: 13px;
          width: 120px;
          text-align: center; }
          @media screen and (max-width: 750px) {
            .section-information-all .box-informationlist ul li .category {
              padding: 5px; } }
        .section-information-all .box-informationlist ul li .title {
          font-weight: 600;
          margin-top: 7px; }
          @media screen and (max-width: 750px) {
            .section-information-all .box-informationlist ul li .title {
              width: 100%; } }
          .section-information-all .box-informationlist ul li .title a {
            opacity: 1;
            transition: 0.2s; }
            .section-information-all .box-informationlist ul li .title a:hover {
              opacity: 0.5; }

/*プライバシーポリシー*/
.section-privacypolicy {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-privacypolicy {
      padding-top: 100px;
      padding-bottom: 160px; } }
  .section-privacypolicy .polivacy-inner {
    width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .section-privacypolicy .polivacy-inner {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px; } }
    .section-privacypolicy .polivacy-inner .box-h2 {
      width: 100%;
      box-sizing: border-box;
      background-color: #723183;
      padding: 15px; }
      .section-privacypolicy .polivacy-inner .box-h2 h2 {
        margin: 0;
        color: #fff;
        font-size: 22px; }
    .section-privacypolicy .polivacy-inner .box-privacypolicy {
      margin-top: 50px;
      margin-bottom: 50px; }
      .section-privacypolicy .polivacy-inner .box-privacypolicy .headline {
        font-weight: 600;
        margin-bottom: 50px; }
      .section-privacypolicy .polivacy-inner .box-privacypolicy h3 {
        margin: 0;
        padding-left: 25px;
        position: relative;
        font-size: 15px;
        font-weight: 600; }
        .section-privacypolicy .polivacy-inner .box-privacypolicy h3:before {
          content: "";
          position: absolute;
          width: 14px;
          height: 14px;
          background-color: #f4c100;
          top: 6px;
          left: 3px; }
      .section-privacypolicy .polivacy-inner .box-privacypolicy .text {
        margin-bottom: 50px; }

/*お問い合わせ*/
.section-contact-01 {
  background-color: #f8f8f8;
  padding-bottom: 70px; }
  @media screen and (max-width: 750px) {
    .section-contact-01 {
      padding-top: 100px;
      padding-bottom: 60px; } }
  .section-contact-01 .contact-inner {
    width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 750px) {
      .section-contact-01 .contact-inner {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px; } }
    .section-contact-01 .contact-inner .attention {
      text-align: center; }
      @media screen and (max-width: 750px) {
        .section-contact-01 .contact-inner .attention {
          text-align: left; } }
      .section-contact-01 .contact-inner .attention h2 {
        font-weight: 600;
        font-size: 17px;
        margin-top: 0;
        margin-bottom: 50px; }
      .section-contact-01 .contact-inner .attention a {
        transition: 0.3s; }
        .section-contact-01 .contact-inner .attention a:hover {
          color: #f4c100; }

.section-contact-02 {
  width: 1100px;
  margin: 0 auto; }
  @media screen and (max-width: 750px) {
    .section-contact-02 {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px; } }
  .section-contact-02 h2 {
    width: 100%;
    margin: 0;
    color: #fff;
    background-color: #723183;
    margin-top: 80px;
    padding: 15px;
    font-size: 22px;
    box-sizing: border-box; }
  .section-contact-02 .attention {
    padding-top: 50px;
    text-align: right; }
    .section-contact-02 .attention span {
      color: #f4c100; }
  .section-contact-02 .box-contactform {
    padding-top: 50px;
    padding-bottom: 100px; }
    @media screen and (max-width: 750px) {
      .section-contact-02 .box-contactform {
        padding-bottom: 160px; } }
    .section-contact-02 .box-contactform table {
      border-collapse: collapse;
      margin: 0 auto; }
      .section-contact-02 .box-contactform table tr th {
        background-color: #eeeeee;
        font-weight: 600;
        text-align: left;
        padding-top: 15px;
        padding-bottom: 15px;
        border-top: #fff 2px solid;
        width: 200px;
        padding-left: 30px;
        box-sizing: border-box; }
        @media screen and (max-width: 750px) {
          .section-contact-02 .box-contactform table tr th {
            display: block;
            width: 100%;
            padding: 15px 10px; } }
        .section-contact-02 .box-contactform table tr th .must {
          position: relative; }
          .section-contact-02 .box-contactform table tr th .must:after {
            content: "※";
            position: absolute;
            color: #f4c100;
            font-size: 9px;
            top: -10px;
            right: -11px; }
      .section-contact-02 .box-contactform table tr td {
        background-color: #f8f8f8;
        padding: 15px 20px;
        border-top: #fff 2px solid;
        width: 900px;
        box-sizing: border-box; }
        @media screen and (max-width: 750px) {
          .section-contact-02 .box-contactform table tr td {
            display: block;
            width: 100%;
            padding: 15px 10px; } }
        .section-contact-02 .box-contactform table tr td .short {
          width: 60%; }
          @media screen and (max-width: 750px) {
            .section-contact-02 .box-contactform table tr td .short {
              width: 100%; } }
        .section-contact-02 .box-contactform table tr td .long {
          width: 100%; }
        .section-contact-02 .box-contactform table tr td .cell {
          height: 30px;
          border: 1px solid #d4d4d4; }
        .section-contact-02 .box-contactform table tr td .cell2 {
          border: 1px solid #d4d4d4; }
        .section-contact-02 .box-contactform table tr td .select {
          padding: 10px;
          border: 1px solid #d4d4d4; }
      @media screen and (max-width: 750px) {
        .section-contact-02 .box-contactform table:first-child {
          margin-bottom: 50px; } }
    .section-contact-02 .box-contactform .link-confirm {
      width: 480px;
      margin: 0 auto;
      margin-top: 50px; }
      @media screen and (max-width: 750px) {
        .section-contact-02 .box-contactform .link-confirm {
          width: 100%; } }
      .section-contact-02 .box-contactform .link-confirm .button {
        width: 480px;
        background-color: #f4c100;
        border: none;
        height: 80px;
        font-size: 20px;
        color: #fff;
        transition: 0.3s;
        cursor: pointer; }
        @media screen and (max-width: 750px) {
          .section-contact-02 .box-contactform .link-confirm .button {
            width: 100%; } }
        .section-contact-02 .box-contactform .link-confirm .button:hover {
          background-color: #ffcd0f; }

/*404*/
.section-404 {
  background-color: #f8f8f8;
  padding-bottom: 130px; }
  @media screen and (max-width: 750px) {
    .section-404 {
      padding-top: 100px;
      padding-bottom: 60px; } }
  .section-404 .inner {
    width: 1100px;
    margin: 0 auto;
    text-align: center; }
    @media screen and (max-width: 750px) {
      .section-404 .inner {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box; } }
    .section-404 .inner .box-title {
      width: 100%;
      font-size: 24px;
      padding-top: 80px; }
      @media screen and (max-width: 750px) {
        .section-404 .inner .box-title {
          font-size: 20px;
          padding-top: 0px;
          padding-bottom: 50px; } }
    .section-404 .inner .unit-link {
      padding-top: 200px;
      padding-bottom: 100px; }
      @media screen and (max-width: 750px) {
        .section-404 .inner .unit-link {
          padding-top: 30px;
          padding-bottom: 100px;
          padding-left: 10px;
          padding-right: 10px;
          box-sizing: border-box; } }
      .section-404 .inner .unit-link .tohome {
        width: 520px;
        margin: 0 auto; }
        @media screen and (max-width: 750px) {
          .section-404 .inner .unit-link .tohome {
            width: 100%;
            text-align: center; } }
        .section-404 .inner .unit-link .tohome a {
          width: 520px;
          box-sizing: border-box;
          background-color: #f4c100;
          text-align: center;
          padding-top: 30px;
          padding-bottom: 25px;
          display: inline-block;
          padding-left: 45px;
          overflow: hidden;
          position: relative; }
          @media screen and (max-width: 750px) {
            .section-404 .inner .unit-link .tohome a {
              width: 100%;
              padding-top: 30px;
              padding-bottom: 20px; } }
          .section-404 .inner .unit-link .tohome a span {
            color: #fff;
            font-size: 28px;
            position: relative;
            letter-spacing: 0.1em;
            z-index: 5; }
            @media screen and (max-width: 750px) {
              .section-404 .inner .unit-link .tohome a span {
                font-size: 23px; } }
            .section-404 .inner .unit-link .tohome a span:before {
              content: "";
              position: absolute;
              width: 30px;
              height: 30px;
              background-color: #fff;
              border-radius: 50%;
              top: 6px;
              left: -40px; }
              @media screen and (max-width: 750px) {
                .section-404 .inner .unit-link .tohome a span:before {
                  top: 2px;
                  width: 25px;
                  height: 25px;
                  left: -32px; } }
            .section-404 .inner .unit-link .tohome a span:after {
              content: "";
              position: absolute;
              width: 12px;
              height: 12px;
              border-right: 3px solid #f4c100;
              border-bottom: 3px solid #f4c100;
              transform: rotate(-45deg);
              top: 14px;
              left: -36px; }
              @media screen and (max-width: 750px) {
                .section-404 .inner .unit-link .tohome a span:after {
                  top: 8px;
                  left: -30px; } }
          .section-404 .inner .unit-link .tohome a:after {
            content: "";
            position: absolute;
            width: 520px;
            height: 130px;
            background-color: #723183;
            top: -130px;
            left: 0px;
            transition: 0.3s; }
            @media screen and (max-width: 750px) {
              .section-404 .inner .unit-link .tohome a:after {
                height: 100px;
                top: -100px; } }
          .section-404 .inner .unit-link .tohome a:hover:after {
            top: 0px; }

/*フッター*/
.section-footer {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 750px) {
    .section-footer {
      width: 100%;
      box-sizing: border-box;
      padding-left: 10px;
      padding-right: 10px;
      display: block; } }
  .section-footer .box-companyinfo {
    margin-top: 50px;
    margin-bottom: 50px; }
    @media screen and (max-width: 750px) {
      .section-footer .box-companyinfo {
        text-align: center; } }
    .section-footer .box-companyinfo .logo img {
      width: 150px; }
    .section-footer .box-companyinfo .info {
      line-height: 2.5em; }
      @media screen and (max-width: 750px) {
        .section-footer .box-companyinfo .info {
          line-height: 1.8em; } }
  .section-footer .footer-nav ul {
    display: flex;
    justify-content: flex-end;
    margin-top: 110px; }
    @media screen and (max-width: 750px) {
      .section-footer .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;
        margin-bottom: 30px; } }
    .section-footer .footer-nav ul li {
      margin-left: 25px; }
      @media screen and (max-width: 750px) {
        .section-footer .footer-nav ul li {
          margin-left: 10px;
          margin-right: 10px; } }
      .section-footer .footer-nav ul li a {
        transition: 0.2s; }
        .section-footer .footer-nav ul li a:hover {
          color: #f4c100; }

.section-bottom {
  width: 100%;
  background-color: #141314;
  color: #fff; }
  .section-bottom .bottom-inner {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 750px) {
      .section-bottom .bottom-inner {
        width: 100%;
        display: block;
        text-align: center; } }
    .section-bottom .bottom-inner .companysite-link {
      margin-top: 30px;
      margin-bottom: 30px; }
      @media screen and (max-width: 750px) {
        .section-bottom .bottom-inner .companysite-link {
          margin: 0px;
          padding-top: 10px;
          padding-bottom: 10px; } }
      .section-bottom .bottom-inner .companysite-link a {
        color: #fff;
        font-weight: 600;
        position: relative;
        transition: 0.2s; }
        .section-bottom .bottom-inner .companysite-link a:after {
          content: "";
          position: absolute;
          width: 15px;
          height: 15px;
          background-image: url(../img/common/icon_link_footer.png);
          background-size: cover;
          background-repeat: no-repeat;
          top: 3px;
          right: -20px; }
        .section-bottom .bottom-inner .companysite-link a:hover {
          opacity: 0.7; }
    .section-bottom .bottom-inner .copyright {
      font-size: 13px;
      margin-top: 30px; }
      @media screen and (max-width: 750px) {
        .section-bottom .bottom-inner .copyright {
          padding-bottom: 10px;
          margin-top: 0px; } }

/*# sourceMappingURL=style.css.map */
