@charset "UTF-8";
/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-family: 'Rounded M+ 1c';
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: black;
  line-height: 1.45;
  font-weight: 500;
}

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-title {
  text-align: center;
  font-size: 3em;
}

.section-sub-title {
  text-align: center;
  margin-top: 10px;
  font-size: 2em;
  font-family: sans-serif;
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  -webkit-box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
          box-shadow: 5px 6px 16px rgba(96, 96, 96, 0.16);
}

.header-inner {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.header-left {
  font-size: 2em;
}

.header-title img {
  width: 50px;
  height: 50px;
}

.header-nav {
  margin-left: auto;
}

@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav-items {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-nav-item {
  font-size: 1.6em;
}

.header-nav-item:not(:first-child) {
  margin-left: 24px;
}

.header-nav-item a {
  color: #000;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-nav-item a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-nav-item a:hover {
  opacity: .7;
}

.header-nav-item a:hover::after {
  background: #86690a;
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 16px;
  z-index: 300;
  display: none;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon:hover {
  cursor: pointer;
  opacity: .7;
}

.drawer-icon.is-active {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
}

.drawer-icon-bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #000;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 200;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content-item {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-bottom: skyblue solid 1px;
}

.drawer-content-item a {
  padding: 20px;
  display: block;
  color: #000;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 199;
  display: none;
}

.drawer-background.is-active {
  display: block;
}

.top {
  margin-top: 69px;
}

.top-inner {
  position: relative;
}

.top-img {
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.top-img img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.16);
}

.top-text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 4em;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .top-text-box {
    font-size: 3em;
  }
}

.introduce {
  padding-top: 100px;
}

@media (max-width: 767px) {
  .introduce {
    padding-top: 0;
  }
}

.introduce-inner {
  padding: 0 60px 0;
}

@media (max-width: 767px) {
  .introduce-inner {
    padding: 60px 20px;
  }
}

.introduce-content {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .introduce-content {
    display: block;
  }
}

.introduce-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.introduce-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  font-size: 2em;
  margin-left: 30px;
  line-height: 2;
}

@media (max-width: 767px) {
  .introduce-text {
    margin: 20px 0 0;
  }
}

.goods {
  margin-top: 40px;
  background: #F9F9F9;
}

@media (max-width: 767px) {
  .goods {
    margin-top: 0;
  }
}

.goods-inner {
  padding: 60px 20px;
}

.goods-items {
  margin: 0 auto;
  margin-top: 60px;
  max-width: 1000px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 50px;
  grid-column-gap: 50px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .goods-items {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .goods-items {
    display: block;
  }
}

.goods-item {
  max-width: 224px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .goods-item:not(:first-child) {
    margin-top: 40px;
  }
}

.goods-img img {
  height: 275px;
}

.goods-name {
  margin-top: 20px;
  font-size: 2rem;
}

.goods-name span {
  font-size: 1.4rem;
  vertical-align: middle;
}

.goods-text {
  margin-top: 20px;
  font-size: 1.6rem;
  letter-spacing: 1.4px;
}

.order {
  padding: 60px 0 0;
}

@media (max-width: 767px) {
  .order {
    padding: 30px 20px 60px;
  }
}

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

.order-text {
  margin-top: 20px;
  font-size: 1.8em;
  text-align: center;
}

.order-message {
  margin-top: 30px;
  font-size: 1.8em;
}

.order-btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .order-btn-container {
    display: block;
    text-align: center;
  }
}

.order-btn {
  font-size: 1.4em;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px;
  min-width: 200px;
}

.order-btn a {
  color: #fff;
}

.order-btn:hover {
  cursor: pointer;
}

.order-btn:hover a {
  color: #fff;
}

a.btn--red.btn--cubic {
  border-bottom: 5px solid #9f000c;
  background: #dd424f;
  padding: 10px 20px;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
}

a.btn--red.btn--cubic:hover {
  border-bottom: 2px solid #9f000c;
  margin-top: 3px;
  -webkit-transform: translateY(-3%);
          transform: translateY(-3%);
}

a.btn--radius {
  border-radius: 100vh;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - .5em);
  right: 1rem;
}

.flow-inner {
  padding: 100px 40px 60px;
  background: #F9F9F9;
}

@media (max-width: 767px) {
  .flow-inner {
    padding-top: 60px;
  }
}

.flow-items {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .flow-items {
    display: block;
  }
}

@media (max-width: 767px) {
  .flow-items {
    display: block;
  }
}

.flow-item {
  width: 360px;
}

@media (min-width: 1200px) {
  .flow-item:not(:first-child) {
    margin-left: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .flow-item {
    margin: 60px auto 0;
  }
}

@media (max-width: 767px) {
  .flow-item {
    margin: 60px auto 0;
    width: 300px;
  }
}

.flow-img {
  background: #d3f3f8;
  border-radius: 20px;
  padding: 20px 10px;
  height: 260px;
  position: relative;
}

.flow-img img {
  height: 220px;
}

.f-img1::before {
  position: absolute;
  content: '01';
  font-size: 4rem;
  color: #64629D;
  font-weight: bold;
  left: -15px;
  top: -30px;
  font-family: Futura;
}

.f-img1::after {
  content: '';
  position: absolute;
  background: url(/img/right.png) no-repeat center center/cover;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -70px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .f-img1::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .f-img1::after {
    display: none;
  }
}

.f-img2::before {
  position: absolute;
  content: '02';
  font-size: 4rem;
  color: #64629D;
  font-weight: bold;
  left: -15px;
  top: -30px;
  font-family: Futura;
}

.f-img2::after {
  content: '';
  position: absolute;
  background: url(/img/right.png) no-repeat center center/cover;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -70px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .f-img2::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .f-img2::after {
    display: none;
  }
}

.f-img3::before {
  position: absolute;
  content: '03';
  font-size: 4rem;
  color: #64629D;
  font-weight: bold;
  left: -15px;
  top: -30px;
  font-family: Futura;
}

.flow-text {
  margin-top: 20px;
  font-size: 1.6em;
}

.concept-inner {
  position: relative;
}

.concept-img {
  width: 100%;
  height: 500px;
  background: url(/img/concept.png) no-repeat center center/cover;
  z-index: -1;
}

.concept-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.16);
}

.concept-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 50px;
  color: #fff;
  font-size: 1.8em;
  width: 40%;
  line-height: 1.6;
  letter-spacing: 1px;
}

.concept-text span {
  text-align: center;
  font-size: 1.6em;
}

@media (max-width: 767px) {
  .concept-text {
    line-height: 1;
    position: absolute;
    right: 20px;
  }
}

.infomation {
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 100px;
  background: #F9F9F9;
}

@media (max-width: 767px) {
  .infomation {
    margin-top: 0;
  }
}

.infomation-inner {
  padding: 0 20px 0;
}

.infomation-items {
  margin: 0 auto;
  margin-top: 60px;
  max-width: 600px;
}

.infomation-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6em;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.infomation-item:not(:first-child) {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .infomation-item {
    display: block;
  }
}

.infomation-top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .infomation-top-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.infomation-date {
  font-size: 1em;
  white-space: nowrap;
}

.infomation-item-title {
  margin-left: 24px;
  background-color: aquamarine;
  padding: 3px;
  white-space: nowrap;
  border-radius: 4px;
}

.infomation-item-detail {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .infomation-item-detail {
    margin-left: 0;
    margin-top: 10px;
  }
}

.infomation-message {
  text-align: center;
  font-size: 1.6em;
}

.contact {
  padding-top: 60px;
  background: #F9F9F9;
}

.contact-form {
  background: #F9F9F9;
  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;
  padding: 60px;
}

@media (max-width: 767px) {
  .contact-form {
    margin-top: 40px;
    display: block;
    padding: 20px;
    padding-bottom: 40px;
  }
}

.contact-img {
  width: 50%;
}

.contact-img img {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .contact-img img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .contact-img {
    width: 100%;
    height: 300px;
  }
}

.contact-right {
  width: 50%;
  margin-left: 50px;
}

@media (max-width: 767px) {
  .contact-right {
    width: 100%;
    margin-left: 0;
  }
}

.contact-items {
  margin-top: 30px;
}

.contact-form-item {
  width: 100%;
}

.c-email {
  margin-left: 24px;
}

@media (max-width: 767px) {
  .c-email {
    margin-left: 0;
    margin-top: 30px;
  }
}

.c-text {
  margin-top: 30px;
}

.contact-item-label {
  font-size: 1.6em;
}

.contact-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .contact-df {
    display: block;
  }
}

.contact-item-input [type="text"] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  width: 100%;
  background: #F9F9F9;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
}

.contact-item-input [type="text"]:hover {
  border-bottom: 1px solid blue;
}

@media (max-width: 767px) {
  .contact-item-input [type="text"] {
    padding: 0;
    padding-bottom: 5px;
  }
}

.contact-item-input [type="email"] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-bottom: 1px solid #000;
  background: #F9F9F9;
  padding: 10px 0;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
}

.contact-item-input [type="email"]:hover {
  border-bottom: 1px solid blue;
}

@media (max-width: 767px) {
  .contact-item-input [type="email"] {
    padding: 0;
    padding-bottom: 5px;
  }
}

.contact-item-input textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-bottom: 1px solid #000;
  background: #F9F9F9;
  padding: 10px 0;
  height: 100px;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
}

.contact-item-input textarea:hover {
  border-bottom: 1px solid blue;
}

@media (max-width: 767px) {
  .contact-item-input textarea {
    padding: 0;
    padding-bottom: 5px;
  }
}

@media (max-width: 767px) {
  .contact-item-input {
    margin-top: 30px;
  }
}

.contact-submit {
  margin-top: 50px;
  text-align: center;
}

.contact-submit [type="submit"] {
  background: #F9F9F9;
  border: 1px solid #000;
  padding: 10px;
  width: 200px;
  display: inline-block;
}

.contact-submit [type="submit"]:hover {
  opacity: 0.7;
  cursor: pointer;
}

.contact-submit-btn {
  color: #000;
}

.contact-bottom {
  font-size: 1.6em;
}

.contact-text-box {
  margin-top: 40px;
  text-align: center;
}

.contact-address {
  margin-bottom: 8px;
}

.contact-tel {
  margin-bottom: 8px;
}

.contact-mail {
  margin-top: 8px;
  margin-bottom: 8px;
}

.contact-map {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .contact-map {
    height: 240px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact-map {
    height: 200px;
  }
}

.contact-map iframe {
  width: 100%;
  max-height: 400px;
}

@media (max-width: 767px) {
  .contact-map iframe {
    height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .contact-map iframe {
    height: 200px;
  }
}

.contact-message {
  text-align: center;
  font-size: 1.4em;
  margin-top: 40px;
  display: none;
  border: 1px solid #7ed872;
  padding: 8px 20px;
}

#js-error {
  color: red;
}

.law {
  margin-top: 69px;
  padding: 100px;
}

@media (max-width: 767px) {
  .law {
    padding: 20px;
  }
}

.law .section-title {
  font-size: 2.4em;
}

.law-table {
  margin-top: 60px;
  font-size: 1.6em;
  border: 1px solid #000;
}

@media (max-width: 767px) {
  .law-table {
    margin-top: 40px;
  }
}

.law-table tr {
  border: 1px solid #000;
  padding: 10px;
}

.law-table th {
  border: 1px solid #000;
  padding: 10px;
  width: 140px;
  text-align: center;
}

.law-table td {
  padding: 10px;
}

.privacy {
  margin-top: 69px;
  padding: 100px;
  font-size: 1.6em;
}

@media (max-width: 767px) {
  .privacy {
    padding: 60px 20px;
  }
}

.privacy .section-title {
  font-size: 2em;
}

.privacy-sub-text {
  margin-top: 30px;
}

.privacy-content {
  margin-top: 60px;
}

.privacy-item {
  margin-top: 20px;
}

.privacy-item-title {
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  font-size: 1.6em;
}

.privacy-list-item {
  margin-top: 10px;
}

.footer {
  background: #000;
}

.footer-inner {
  padding: 20px;
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-list-item {
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
}

.footer-list-item a {
  color: #fff;
}

.footer-list-item:hover {
  opacity: .8;
  border-bottom: 1px solid #fff;
}

.footer-list-item:not(:first-child) {
  margin-left: 24px;
}

.footer-text {
  color: #fff;
  margin-top: 10px;
  text-align: center;
}
