@charset "UTF-8";
/* CSS Document */
/*==================================================
Foundation
==================================================*/
/*--------------------------------------------------
Font
--------------------------------------------------*/
@font-face {
  font-family: "SourceHanSansJP";
  font-weight: normal;
  src: url("../font/SourceHanSansJP-Regular.otf") format("opentype");
  font-display: swap;
}
.mincho {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
}

.gothic {
  font-family: "SourceHanSansJP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

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

/*--------------------------------------------------
Base
--------------------------------------------------*/
*, ::before, ::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "SourceHanSansJP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  line-height: 2;
  color: #202020;
  position: relative;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  background-color: #f7f3f8;
  background: #f7f3f8 url(../img/common/vegetable_bg.png) repeat-y center;
  overflow-x: hidden;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay.is-active {
  width: 100%;
  height: 100%;
  opacity: 1;
}

a {
  text-decoration: none;
  word-break: break-word;
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

article a {
  text-decoration: underline;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
  max-width: 100%;
  max-height: 100%;
}

input, select, textarea {
  font-size: 16px !important;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

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

img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

video {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

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

/*==================================================
layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  width: 100%;
  padding: 30px 4%;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px 4%;
  }
}
.header.is-fixed {
  background-color: #f7f3f8;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
}
.header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  margin-right: 30px;
}
@media screen and (max-width: 960px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
.header .gnav .gnav-list > li {
  font-size: 16px;
  font-size: clamp(12px, 1.2vw, 16px);
  position: relative;
}
.header .gnav .gnav-list > li > a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li > a:hover {
  color: #702490;
}
.header .gnav .gnav-list > li .arrow {
  font-size: 11px;
  font-weight: bold;
  margin-left: 5px;
}
.header .gnav .gnav-list > li:hover .sub-nav {
  display: block;
}
.header .gnav .sub-nav {
  display: none;
  background-color: #702490;
  border-radius: 20px;
  color: #fff;
  width: 180px;
  padding: 0 15px;
  position: absolute;
  left: -40px;
}
.header .gnav .sub-nav .sub-list > li {
  border-bottom: 1px dashed #fff;
}
.header .gnav .sub-nav .sub-list > li a {
  display: block;
  padding: 15px 15px 15px 30px;
  font-size: 16px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .sub-nav .sub-list > li a::before {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 8px;
  font-weight: bold;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
}
.header .gnav .sub-nav .sub-list > li a:hover {
  opacity: 0.7;
}
.header .gnav .sub-nav .sub-list > li:last-child {
  border-bottom: none;
}
.header .menu-btn {
  background-color: #702490;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .menu-btn {
    display: block;
  }
}
.header .menu-btn > span {
  display: block;
  background-color: #fff;
  width: 20px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .menu-btn > span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.header .menu-btn > span:nth-child(3) {
  top: 32px;
}
.header .menu-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
.header .menu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header .menu-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}
.header .menu {
  background-color: #eae3ed;
  padding: 80px 4%;
  max-width: 100%;
  width: 600px;
  height: 100vh;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  -webkit-transform: translate(600px);
          transform: translate(600px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .header .menu {
    padding: 60px 4%;
  }
}
.header .menu.is-active {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.header .menu-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.header .menu-nav {
  width: 100%;
  height: 100%;
  padding: 15px 4%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #702490 #dcdcdc;
}
.header .menu-nav .menu-list {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.header .menu-nav .menu-list > li {
  border-bottom: 1px solid #cfbad8;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header .menu-nav .menu-list > li {
    font-size: 13px;
  }
}
.header .menu-nav .menu-list > li:last-child {
  border-bottom: 0;
}
.header .menu-nav .menu-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 20px 20px 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header .menu-nav .menu-list > li > a {
    padding: 15px 15px 15px 30px;
  }
}
.header .menu-nav .menu-list > li > a::before {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border-radius: 50%;
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  width: 12px;
  height: 12px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .header .menu-nav .menu-list > li > a::before {
    left: 10px;
  }
}
.header .menu-nav .menu-list > li > a:hover {
  opacity: 0.7;
}
.header .menu-nav .sub-nav .sub-list > li {
  border-top: 1px solid #cfbad8;
}
.header .menu-nav .sub-nav .sub-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 10px 20px 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header .menu-nav .sub-nav .sub-list > li > a {
    padding: 15px 15px 15px 50px;
  }
}
.header .menu-nav .sub-nav .sub-list > li > a::before {
  content: "";
  display: inline-block;
  background-color: #702490;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 34px;
  left: 35px;
}
@media screen and (max-width: 768px) {
  .header .menu-nav .sub-nav .sub-list > li > a::before {
    top: 26px;
    left: 35px;
  }
}
.header .menu-nav .sub-nav .sub-list > li > a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer {
  background-color: #702490;
  color: #fff;
  padding: 60px 4% 40px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 4% 110px;
  }
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
  }
}
.footer .address {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    font-size: 13px;
    text-align: center;
    margin-bottom: 1em;
  }
}
.footer .tel {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .tel {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
  }
}
.footer .tel a {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .footer .tel a {
    font-size: 30px;
  }
}
.footer .tel span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .tel span {
    display: block;
    font-size: 13px;
  }
}
.footer .btn {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .footer .btn {
    display: none;
  }
}
.footer .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #702490;
  border-radius: 99px;
  color: #702490;
  font-size: 16px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  padding: 15px 40px 15px 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .footer .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.footer .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.footer .btn a:hover {
  opacity: 0.7;
}
.footer .nav-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .footer .nav-pc {
    display: none;
  }
}
.footer .nav-pc .nav-list > li {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer .nav-pc .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .nav-pc .sub-nav {
  margin-top: 1em;
}
.footer .nav-pc .sub-nav .sub-list > li {
  margin-bottom: 1em;
  padding-left: 24px;
  position: relative;
}
.footer .nav-pc .sub-nav .sub-list > li::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 12px;
  left: 10px;
}
.footer .nav-pc .sub-nav .sub-list > li:last-child {
  padding-right: 0;
}
.footer .nav-sp {
  display: none;
}
.footer .nav-sp .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .nav-sp .nav-list > li {
  font-size: 16px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  margin-bottom: 0;
  padding: 0 1em;
  position: relative;
}
.footer .nav-sp .nav-list > li::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.footer .nav-sp .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
    margin-top: 40px;
  }
}

.pagetop {
  position: fixed;
  right: 50px;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 20px;
    bottom: 110px;
  }
}

/*--------------------------------------------------
Side
--------------------------------------------------*/
.fixed-order {
  position: fixed;
  top: 200px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .fixed-order {
    background-color: #fff;
    padding: 20px 4%;
    top: auto;
    bottom: 0;
    left: 0;
  }
}
.fixed-order a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border-radius: 20px 0 0 20px;
  -webkit-box-shadow: -4px 4px #e4d6ea;
          box-shadow: -4px 4px #e4d6ea;
  color: #fff;
  font-size: 21px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 75px;
  height: 300px;
  padding: 30px 10px 40px 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fixed-order a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 4px 4px #e4d6ea;
            box-shadow: 4px 4px #e4d6ea;
    border-radius: 99px;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    font-size: 15px;
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 15px;
  }
}
.fixed-order a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 12px;
  font-weight: bold;
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .fixed-order a::after {
    top: 0;
    bottom: 0;
    left: auto;
    right: 15px;
  }
}

/*--------------------------------------------------
Low
--------------------------------------------------*/
.pagehead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../img/common/pagehead.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 350px;
  padding: 40px 4%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagehead {
    min-height: 105px;
    height: auto;
    padding: 30px 18%;
  }
}
.pagehead .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.breadcrumb {
  padding: 30px 4% 100px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 15px 4% 50px;
  }
}
.breadcrumb .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb .breadcrumb-list > li {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb-list > li {
    font-size: 12px;
  }
}
.breadcrumb .breadcrumb-list > li::after {
  content: ">";
  margin: 0 5px;
}
.breadcrumb .breadcrumb-list > li a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-list > li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
}
.breadcrumb .breadcrumb-list > li:last-child::after {
  display: none;
}

/*==================================================
component
==================================================*/
.c-section {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 0 4% 75px;
  }
}
.c-section:last-child {
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .c-section:last-child {
    padding-bottom: 90px;
  }
}

.c-subsection {
  margin: 40px 0 100px;
}
@media screen and (max-width: 768px) {
  .c-subsection {
    margin: 20px 0 60px;
  }
}

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

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

.c-heading {
  font-size: clamp(18px, 4vw, 40px);
  font-weight: bold;
  color: #702490;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 24px;
  }
}
.c-heading::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/ico-nasu.svg) no-repeat center/contain;
  width: 42px;
  height: 50px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .c-heading::before {
    width: 27px;
    height: 29px;
  }
}

.c-subheading {
  background-color: #702490;
  border-radius: 20px;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 10px 35px;
}
@media screen and (max-width: 768px) {
  .c-subheading {
    font-size: 15px;
    margin-bottom: 20px;
    padding: 10px 20px;
  }
}
.c-subheading::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/ico-circle.png) no-repeat center/contain;
  width: 17px;
  height: 17px;
  margin-right: 15px;
}

.c-text-center {
  text-align: center;
}

.c-red {
  color: #dd311a;
}

.c-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border: 1px solid #702490;
  border-radius: 99px;
  -webkit-box-shadow: 4px 4px 0 #e4d6ea;
          box-shadow: 4px 4px 0 #e4d6ea;
  color: #fff;
  font-size: 18px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 13px;
    max-width: 300px;
    padding: 15px;
  }
}
.c-btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.c-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
table
--------------------------------------------------*/
.c-tbl-wrap {
  background-color: #fff;
}
.c-tbl-wrap tr {
  border-top: 1px dashed #bfbfbf;
  border-bottom: 1px dashed #bfbfbf;
}
.c-tbl-wrap th, .c-tbl-wrap td {
  padding: 15px 30px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap th, .c-tbl-wrap td {
    padding: 15px;
  }
}
.c-tbl-wrap th {
  background-color: #eae3ed;
  border-right: 1px dashed #bfbfbf;
  text-align: left;
  vertical-align: top;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap th {
    width: 110px;
  }
}
.c-tbl-wrap a {
  color: #702490;
  text-decoration: underline;
}
.c-tbl-wrap a:hover {
  text-decoration: none;
}

.c-tbl-product table {
  background-color: #fff;
}
.c-tbl-product table thead {
  background-color: #eae3ed;
}
.c-tbl-product table thead tr {
  border-top: 1px dashed #bfbfbf;
  border-bottom: 1px dashed #bfbfbf;
}
.c-tbl-product table thead th, .c-tbl-product table thead td {
  width: 50%;
  padding: 15px;
}
.c-tbl-product table thead th {
  border-right: 1px dashed #bfbfbf;
}
.c-tbl-product table thead th:last-child {
  border: none;
}
.c-tbl-product table tbody {
  text-align: center;
}
.c-tbl-product table tbody tr {
  border-bottom: 1px dashed #bfbfbf;
}
.c-tbl-product table tbody th, .c-tbl-product table tbody td {
  padding: 15px;
}
.c-tbl-product table tbody th {
  font-weight: normal;
  border-right: 1px dashed #bfbfbf;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.c-form {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .c-form {
    margin: 20px 0;
  }
}
.c-form .tbl-wrap {
  background-color: #fff;
}
.c-form .tbl-wrap tr {
  border-top: 1px dashed #bfbfbf;
  border-bottom: 1px dashed #bfbfbf;
}
.c-form .tbl-wrap th, .c-form .tbl-wrap td {
  padding: 15px 30px;
}
@media screen and (max-width: 768px) {
  .c-form .tbl-wrap th, .c-form .tbl-wrap td {
    display: block;
    padding: 15px;
  }
}
.c-form .tbl-wrap th {
  background-color: #eae3ed;
  border-right: 1px dashed #bfbfbf;
  text-align: left;
  vertical-align: top;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-form .tbl-wrap th {
    width: auto;
  }
}
.c-form .tbl-wrap a {
  color: #702490;
  text-decoration: underline;
}
.c-form .tbl-wrap a:hover {
  text-decoration: none;
}
.c-form .order-list li {
  padding: 20px 0;
  border-bottom: 1px dashed #d3d3d3;
}
@media screen and (max-width: 768px) {
  .c-form .order-list li {
    padding: 10px 0;
  }
}
.c-form .order-list li .head {
  font-weight: bold;
  color: #702490;
}
.c-form .order-list li .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .c-form .order-list li .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-form .order-list li .body div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-form .required {
  display: inline-block;
  vertical-align: middle;
  background-color: #dd311a;
  border-radius: 99px;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  text-align: center;
  margin-left: 1em;
  padding: 1px 10px;
}
.c-form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.c-form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.c-form label {
  cursor: pointer;
}
.c-form [type=text], .c-form [type=email], .c-form [type=tel] {
  background-color: #fff;
  border: 1px solid #959595;
  border-radius: 3px;
  max-width: 290px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.c-form [type=number] {
  background-color: #fff;
  border: 1px solid #959595;
  border-radius: 3px;
  max-width: 80px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.c-form select {
  border: 1px solid #959595;
  border-radius: 3px;
  padding: 3px;
}
.c-form textarea {
  background-color: #fff;
  border: 1px solid #959595;
  border-radius: 3px;
  max-width: 840px;
  width: 100%;
  height: 180px;
  padding: 10px;
}
.c-form ::-webkit-input-placeholder {
  color: #ccc;
}
.c-form ::-moz-placeholder {
  color: #ccc;
}
.c-form :-ms-input-placeholder {
  color: #ccc;
}
.c-form ::-ms-input-placeholder {
  color: #ccc;
}
.c-form ::placeholder {
  color: #ccc;
}
.c-form .privacy {
  margin: 2em 0;
}
.c-form .privacy .privacy-head {
  background-color: #eae3ed;
  border-bottom: 1px dashed #bfbfbf;
  font-weight: bold;
  text-align: center;
  padding: 15px 30px;
}
.c-form .privacy .privacy-body {
  background-color: #fff;
  border-bottom: 1px dashed #bfbfbf;
  height: 320px;
  padding: 30px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .c-form .privacy .privacy-body {
    height: 200px;
    padding: 20px;
  }
}
.c-form .privacy dl {
  margin: 2em 0;
}
.c-form .privacy dl div {
  margin-bottom: 2em;
}
.c-form .privacy dl dt {
  font-weight: bold;
  color: #702490;
}
.c-form .agree {
  text-align: center;
  margin: 2em 0;
}
.c-form .btn {
  margin: 2em auto;
}
.c-form .btn button, .c-form .btn input {
  display: block;
  background-color: #702490;
  border: 1px solid #702490;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 240px;
  width: 100%;
  margin: auto;
  padding: 15px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-form .btn button, .c-form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.c-form .btn button:hover, .c-form .btn input:hover {
  opacity: 0.7;
}

div.cf-turnstile {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

/*--------------------------------------------------
Pagination
--------------------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2em;
  line-height: 1;
  padding: 2em 0;
}
.pagination .pagination-last,
.pagination .pagination-first,
.pagination .pagination-next,
.pagination .pagination-prev,
.pagination .pagination-item a,
.pagination .is-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #c9b1cd;
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.5em 0.5em;
  margin: 0 0.2em;
}
.pagination .pagination-last:hover:not(li),
.pagination .pagination-first:hover:not(li),
.pagination .pagination-next:hover:not(li),
.pagination .pagination-prev:hover:not(li),
.pagination .pagination-item a:hover:not(li),
.pagination .is-current:hover:not(li) {
  background: #c9b1cd;
}
.pagination .pagination-list {
  display: none;
}
@media (min-width: 520px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 520px) {
  .pagination .is-current {
    background: #702490;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #ccc;
  padding: 1em;
}
@media (min-width: 520px) {
  .pagination .pagination-page {
    display: none;
  }
}
.pagination .pagination-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 520px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pagination .pagination-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 520px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.pagination .pagination-first {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.pagination .pagination-last {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-last {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pagenav {
  padding: 2em 0;
}
.pagenav .pagenav-list {
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4%;
  padding: 1em 2em;
}
.pagenav .pagenav-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pagenav .pagenav-list > li {
    font-size: 13px;
  }
}
.pagenav .next {
  text-align: right;
}
.pagenav a {
  text-decoration: underline;
  color: #dd3333;
}
.pagenav a:hover {
  text-decoration: none;
}

/*==================================================
project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .hero {
    padding-bottom: 50px;
  }
}
.p-top .hero img {
  width: 100%;
}
.p-top .section01 {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding-bottom: 80px;
  }
}
.p-top .section01 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #702490;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 24px;
  }
}
.p-top .section01 .heading .small {
  display: block;
  font-size: 20px;
  letter-spacing: 5px;
  color: #c5b4cc;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .small {
    font-size: 12px;
  }
}
.p-top .section01 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  margin: 50px 0 60px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    margin: 30px 0;
  }
}
.p-top .section01 .list > li {
  width: 29.4117647059%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li {
    width: auto;
  }
}
.p-top .section01 .list > li .img {
  margin-bottom: 20px;
}
.p-top .section01 .list > li .img img {
  border-radius: 50%;
}
.p-top .section01 .list > li .cap {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #702490;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li .cap {
    font-size: 18px;
  }
}
.p-top .section01 .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border: 1px solid #702490;
  border-radius: 99px;
  -webkit-box-shadow: 4px 4px 0 #e4d6ea;
          box-shadow: 4px 4px 0 #e4d6ea;
  color: #fff;
  font-size: 21px;
  text-align: center;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn a {
    font-size: 13px;
    max-width: 300px;
    padding: 15px;
  }
}
.p-top .section01 .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.p-top .section01 .btn a:hover {
  opacity: 0.7;
}
.p-top .section02 {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding-bottom: 80px;
  }
}
.p-top .section02 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section02 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 30px;
    margin-bottom: 40px;
    overflow: hidden;
  }
}
.p-top .section02 .list > li .img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .img {
    width: auto;
  }
}
.p-top .section02 .list > li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .img img {
    border-radius: 0;
  }
}
.p-top .section02 .list > li .txtarea {
  background-color: #fff;
  border-radius: 0 50px 50px 0;
  width: 50%;
  padding: 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .txtarea {
    border-radius: 0;
    width: auto;
    padding: 30px;
  }
}
.p-top .section02 .list > li .illust {
  position: absolute;
  top: -30px;
  right: 24px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .illust {
    max-width: 100px;
    top: 20px;
  }
}
.p-top .section02 .list > li .heading {
  font-size: 42px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .heading {
    font-size: 24px;
  }
}
.p-top .section02 .list > li .heading .small {
  display: block;
  font-size: 20px;
  letter-spacing: 5px;
  color: #c5b4cc;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .heading .small {
    font-size: 12px;
  }
}
.p-top .section02 .list > li .btn {
  margin-top: 40px;
}
.p-top .section02 .list > li .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border: 1px solid #702490;
  border-radius: 99px;
  -webkit-box-shadow: 4px 4px 0 #e4d6ea;
          box-shadow: 4px 4px 0 #e4d6ea;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  padding: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .btn a {
    font-size: 13px;
    max-width: 180px;
    padding: 15px;
  }
}
.p-top .section02 .list > li .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.p-top .section02 .list > li .btn a:hover {
  opacity: 0.7;
}
.p-top .section02 .list > li:nth-child(even) .img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li:nth-child(even) .img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-top .section02 .list > li:nth-child(even) .img img {
  border-radius: 0 50px 50px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li:nth-child(even) .img img {
    border-radius: 0;
  }
}
.p-top .section02 .list > li:nth-child(even) .txtarea {
  border-radius: 50px 0 0 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li:nth-child(even) .txtarea {
    border-radius: 0;
  }
}
.p-top .section02 .list > li:last-child {
  margin-bottom: 0;
}
.p-top .section03 {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 {
    padding-bottom: 80px;
  }
}
.p-top .section03 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1700px;
  width: 100%;
  height: 500px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .inner {
    display: block;
    height: auto;
  }
}
.p-top .section03 .imgarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 600px;
  width: 100%;
  padding: 0 11.7647058824%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .imgarea {
    gap: 20px;
    position: unset;
    margin-top: 30px;
    padding: 0 12.1126760563%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .section03 .imgarea .item {
    width: 50%;
    position: relative;
  }
}
.p-top .section03 .imgarea .img {
  height: 500px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .imgarea .img {
    height: 180px;
  }
}
.p-top .section03 .imgarea .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .section03 .imgarea .illust01 {
  width: 15.1764705882%;
  position: absolute;
  top: 70px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .imgarea .illust01 {
    width: 31.0447761194%;
    top: 10px;
    left: -43px;
  }
}
.p-top .section03 .imgarea .illust02 {
  width: 17.5294117647%;
  position: absolute;
  top: -30px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .imgarea .illust02 {
    width: 39.7014925373%;
    top: -10px;
    right: -43px;
  }
}
.p-top .section03 .txtarea {
  position: relative;
  z-index: 1;
}
.p-top .section03 .heading {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #702490;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 24px;
  }
}
.p-top .section03 .heading .small {
  display: block;
  font-size: 20px;
  letter-spacing: 5px;
  color: #c5b4cc;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading .small {
    font-size: 12px;
  }
}
.p-top .section03 .btn {
  margin: 40px;
}
.p-top .section03 .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border: 1px solid #702490;
  border-radius: 99px;
  -webkit-box-shadow: 4px 4px 0 #e4d6ea;
          box-shadow: 4px 4px 0 #e4d6ea;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .btn a {
    font-size: 13px;
    max-width: 300px;
  }
}
.p-top .section03 .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.p-top .section03 .btn a:hover {
  opacity: 0.7;
}
.p-top .section04 {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 {
    padding-bottom: 80px;
  }
}
.p-top .section04 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 1700px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .p-top .section04 .illust {
    width: 21.9718309859%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.p-top .section04 .heading {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #702490;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading {
    font-size: 24px;
  }
}
.p-top .section04 .heading .small {
  display: block;
  font-size: 20px;
  letter-spacing: 5px;
  color: #c5b4cc;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading .small {
    font-size: 12px;
  }
}
.p-top .section04 .box {
  background-color: #fff;
  border-radius: 30px;
  width: 79.4117647059%;
  padding: 80px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .box {
    width: auto;
    padding: 30px;
  }
}
.p-top .section04 .list {
  height: 290px;
  padding-right: 50px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list {
    width: auto;
    height: 325px;
    padding-right: 25px;
  }
}
.p-top .section04 .list .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-bottom: 1px dashed #bfbfbf;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list .article {
    display: block;
    padding: 20px;
  }
}
.p-top .section04 .list .article::before {
  content: "";
  display: inline-block;
  background-color: #202020;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 42px;
  left: 5px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list .article::before {
    top: 30px;
  }
}
.p-top .section04 .list .article .ttl {
  color: #702490;
}

/*--------------------------------------------------
about
--------------------------------------------------*/
.p-about .section01 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-about .section01 .row .img {
  width: 54%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .row .img {
    width: auto;
  }
}
.p-about .section01 .row .img img {
  border-radius: 30px;
}
.p-about .section01 .row .txtarea {
  font-size: 21px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .row .txtarea {
    font-size: 1em;
  }
}
.p-about .section01 .row .catch {
  font-size: 30px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .row .catch {
    font-size: 18px;
  }
}
.p-about .section02 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-about .section02 .list > li {
  width: 29.1666666667%;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .list > li {
    width: auto;
  }
}
.p-about .section02 .list > li .img {
  text-align: center;
  margin-bottom: 20px;
}
.p-about .section02 .list > li .img img {
  border-radius: 20px;
}
.p-about .section02 .list > li .ttl {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .list > li .ttl {
    font-size: 21px;
  }
}
.p-about .section02 .list > li .ttl strong {
  font-size: 36px;
  color: #702490;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .list > li .ttl strong {
    font-size: 30px;
  }
}
.p-about .section03 .list {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .list {
    margin-bottom: 50px;
  }
}
.p-about .section03 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  background-color: #fff;
  border-radius: 50px;
  margin-bottom: 60px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 30px;
  }
}
.p-about .section03 .list > li .img {
  text-align: center;
  width: 35.1851851852%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .list > li .img {
    width: auto;
  }
}
.p-about .section03 .list > li .img img {
  border-radius: 30px;
}
.p-about .section03 .list > li .ttl {
  font-size: 30px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .list > li .ttl {
    font-size: 18px;
  }
}
.p-about .section03 .list > li a {
  color: #702490;
  text-decoration: underline;
}
.p-about .section03 .list > li a:hover {
  text-decoration: none;
}

/*--------------------------------------------------
product
--------------------------------------------------*/
.p-product .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  background-color: #fff;
  border-radius: 50px;
  margin-bottom: 80px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .p-product .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 30px;
  }
}
.p-product .list > li .img {
  text-align: center;
  width: 41.6666666667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-product .list > li .img {
    width: auto;
  }
}
.p-product .list > li .img img {
  border-radius: 30px;
}
.p-product .list > li .ttl {
  font-size: 36px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-product .list > li .ttl {
    font-size: 21px;
  }
}
.p-product .list > li .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border: 1px solid #702490;
  border-radius: 99px;
  -webkit-box-shadow: 4px 4px 0 #e4d6ea;
          box-shadow: 4px 4px 0 #e4d6ea;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 250px;
  width: 100%;
  margin: 30px 0 0 auto;
  padding: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product .list > li .btn a {
    max-width: 180px;
    font-size: 13px;
    margin-top: 20px;
    padding: 15px;
  }
}
.p-product .list > li .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #702490;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.p-product .list > li .btn a:hover {
  opacity: 0.7;
}
.p-product .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 3.3333333333%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-product .nav-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px 0;
    margin-bottom: 40px;
  }
}
.p-product .nav-list > li {
  width: 22.5%;
}
@media screen and (max-width: 768px) {
  .p-product .nav-list > li {
    width: 48%;
  }
}
.p-product .nav-list > li a {
  display: block;
  background-color: #fff;
  border: 1px solid #c9b1cd;
  border-radius: 20px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product .nav-list > li a {
    font-size: 13px;
    padding: 15px 20px;
  }
}
.p-product .nav-list > li a::after {
  content: "";
  display: inline-block;
  background-color: #202020;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
}
.p-product .nav-list > li a:hover {
  background-color: #eae3ed;
}
.p-product .nav-list > li a .ico {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-product .nav-list > li a .ico {
    margin-right: 10px;
  }
}
.p-product .nav-list > li a .ico img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-product .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .p-product .btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    margin: 30px auto;
  }
}
.p-product .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-product .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #702490;
  border-radius: 99px;
  color: #702490;
  font-size: 18px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px 20px 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-product .btn a {
    font-size: 13px;
    max-width: 300px;
    padding: 15px;
  }
}
.p-product .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
.p-product .btn a:hover {
  opacity: 0.7;
}
.p-product .c-subheading::before {
  display: none;
}
.p-product .c-subheading .ico {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-product .c-subheading .ico {
    margin-right: 10px;
  }
}
.p-product .c-subheading .ico img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*--------------------------------------------------
wholesale
--------------------------------------------------*/
/*--------------------------------------------------
company
--------------------------------------------------*/
.p-company .section01 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-company .section01 .row .img {
  width: 41.6666666667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .row .img {
    width: auto;
  }
}
.p-company .section01 .row .img img {
  border-radius: 30px;
}
.p-company .section01 .row .txtarea {
  font-size: 18px;
}
.p-company .section01 .row .catch {
  font-size: 24px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .row .catch {
    font-size: 18px;
  }
}
.p-company .section01 .row .name {
  text-align: right;
  margin-top: 1em;
}
.p-company .section03 .map {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .map {
    margin-top: 1em;
  }
}
.p-company .section03 .map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .p-company .section03 .map iframe {
    height: 225px;
  }
}

/*--------------------------------------------------
recruit
--------------------------------------------------*/
.p-recruit .section01 .message-box {
  background: #fff url(../img/recruit/sec01-bg.jpg) no-repeat center/cover;
  border-radius: 50px;
  padding: 80px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .message-box {
    background-image: none;
    padding: 30px;
  }
}
.p-recruit .section01 .message-box .img {
  text-align: center;
  margin-bottom: 20px;
}
.p-recruit .section01 .message-box .img img {
  border-radius: 30px;
}
.p-recruit .section01 .message-box .txtarea {
  width: 69.8113207547%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .message-box .txtarea {
    width: auto;
  }
}
.p-recruit .section01 .message-box .catch {
  font-size: 30px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .message-box .catch {
    font-size: 18px;
  }
}
.p-recruit .section02 .list {
  counter-reset: count 0;
}
.p-recruit .section02 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  background-color: #fff;
  border-radius: 50px;
  margin-bottom: 50px;
  padding: 50px;
  counter-increment: count 1;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px;
  }
}
.p-recruit .section02 .list > li .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #702490;
  border-radius: 50%;
  color: #fff;
  width: 140px;
  height: 140px;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .list > li .img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}
.p-recruit .section02 .list > li .img .num {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .list > li .img .num {
    font-size: 14px;
  }
}
.p-recruit .section02 .list > li .img .num::after {
  content: counter(count, decimal-leading-zero);
  font-size: 24px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .list > li .img .num::after {
    font-size: 21px;
  }
}
.p-recruit .section02 .list > li .img .ico {
  max-width: 50px;
  max-height: 50px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .list > li .img .ico {
    max-width: 45px;
    max-height: 45px;
  }
}
.p-recruit .section02 .list > li .ttl {
  font-size: 30px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .list > li .ttl {
    font-size: 18px;
  }
}
.p-recruit .section03 .disnon {
  display: none;
}
.p-recruit .section03 .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 3.3333333333%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .tab-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px 0;
    margin-bottom: 40px;
  }
}
.p-recruit .section03 .tab-list > li {
  width: 22.5%;
  display: block;
  background-color: #fff;
  border: 1px solid #c9b1cd;
  border-radius: 20px;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .tab-list > li {
    width: 48%;
  }
}
.p-recruit .section03 .tab-list > li.is-current {
  background-color: #702490;
  color: #fff;
}
.p-recruit .section03 .contact-box {
  background: #fff url(../img/recruit/sec03-bg.jpg) no-repeat center/cover;
  border-radius: 50px;
  margin-top: 100px;
  padding: 80px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .contact-box {
    background-image: none;
    margin-top: 50px;
    padding: 30px;
    font-size: 1em;
  }
}
.p-recruit .section03 .contact-box .contact-ttl {
  font-size: 30px;
  font-weight: bold;
  color: #702490;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .contact-box .contact-ttl {
    font-size: 18px;
  }
}
.p-recruit .section03 .contact-box .tel {
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .contact-box .tel {
    font-size: 21px;
  }
}
.p-recruit .section03 .contact-box .tel a {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .contact-box .tel a {
    font-size: 36px;
  }
}
.p-recruit .section03 .contact-box .img {
  text-align: center;
  margin-top: 20px;
}
.p-recruit .section03 .contact-box .img img {
  border-radius: 30px;
}

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