@charset "UTF-8";
@font-face {
  font-family: "Radley";
  src: url("/fonts/Radley-Regular.eot");
  src: url("/fonts/Radley-Regular.woff2") format("woff2"), url("/fonts/Radley-Regular.woff") format("woff");
}

@font-face {
  font-family: "shirayuki";
  src: url("/fonts/shirayuki.woff");
  src: url("/fonts/shirayuki.woff2") format("woff2"), url("/fonts/shirayuki.woff") format("woff");
}

/*==================================================

** Reset
==================================================*/
/*
** sectioning
--------------------------------------------------*/
/*	outline	*/
html {
  font-size: 62.5%;
  /* 10px */
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  /* デザインに合わせて変更する */
  font-weight: 400;
  font-size: 1.6rem;
  /* デザインに合わせて変更する */
}

p,
blockquote,
address,
small,
dt,
dd,
li,
th,
td,
td,
span {
  line-height: 2;
  /* デザインに合わせて変更する */
}

div {
  line-height: 100%;
}

/*	heading	*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  vertical-align: top;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.5;
  /* デザインに合わせて変更する */
}

/*
** link
--------------------------------------------------*/
a {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

/*
** content
--------------------------------------------------*/
/*	text	*/
p,
blockquote {
  margin: 0;
}

address {
  font-style: normal;
}

/*	list	*/
ol,
ul,
dl,
dd {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

/*	table	*/
table {
  border-collapse: collapse;
}

th,
td {
  padding: 0;
}

th {
  font-weight: normal;
}

/*	embed	*/
img {
  vertical-align: bottom;
  border: 0;
}

figure {
  margin: 0;
  padding: 0;
}

/*	semantics	*/
ruby,
rt,
mark,
menu {
  margin: 0;
  padding: 0;
}

small {
  font-size: 100%;
}

em,
cite,
dfn,
i {
  font-style: normal;
}

strong,
b {
  font-weight: normal;
}

ins,
del {
  text-decoration: none;
}

q {
  quotes: none;
}

sup,
sub {
  vertical-align: baseline;
}

ruby,
rt,
mark {
  line-height: 100%;
}

mark {
  background: none;
}

/*
** form
--------------------------------------------------*/
form {
  margin: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  font-size: 1.6rem;
}

select {
  line-height: 100%;
  font-weight: normal;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/*==================================================

** Utility
==================================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  color: #403734;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

p, a, th, td {
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  height: auto;
}

.wrap {
  margin: 0 5%;
}

section:not(:first-child) {
  margin-top: 100px;
}

@media screen and (min-width: 414px) {
  .xsp-none {
    display: none;
  }
}

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

@media screen and (min-width: 768px) {
  .sm-none {
    display: none;
  }
  section:not(:first-child) {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .wrap {
    margin: 0 auto;
    width: 80%;
    max-width: 1000px;
  }
  .md-none {
    display: none;
  }
  section:not(:first-child) {
    margin-top: 140px;
  }
}

@media screen and (min-width: 1280px) {
  .lg-none {
    display: none;
  }
}

/*
** basic
--------------------------------------------------*/
.fz20px {
  font-size: 2rem;
}

.fz16px {
  font-size: 1.6rem;
}

.mt0 {
  margin-top: 0;
}

.mt40 {
  margin-top: 40px;
}

/*
** fadein
--------------------------------------------------*/
.fade-in {
  opacity: 0;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

/*==================================================

** Header
==================================================*/
/*
** header
--------------------------------------------------*/
.header .sitettl {
  border-top: 15px solid #fff262;
  width: 100%;
}

.header .sitettl h1 {
  position: relative;
  margin: -15px 0 0 10px;
  width: 84px;
  z-index: 20;
}

.header .btn-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 64px;
  height: 64px;
  background-color: #99978a;
  border-radius: 50%;
  z-index: 50;
}

.header .btn-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  -webkit-transition-property: "opacity, transform";
  transition-property: "opacity, transform";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.header .btn-menu span:nth-child(1) {
  margin-top: -8px;
}

.header .btn-menu span:nth-child(3) {
  margin-top: 8px;
}

.is-active-gnav .header .btn-menu span:nth-child(1) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -40%) rotate(-45deg);
          transform: translate(-50%, -40%) rotate(-45deg);
}

.is-active-gnav .header .btn-menu span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.is-active-gnav .header .btn-menu span:nth-child(3) {
  margin-top: 0;
  -webkit-transform: translate(-50%, -40%) rotate(45deg);
          transform: translate(-50%, -40%) rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .header .sitettl h1 {
    width: 120px;
  }
  .header .btn-menu {
    display: none;
  }
}

/*
** gnav
--------------------------------------------------*/
.gnav {
  position: fixed;
  display: none;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  padding: 30px;
  background-color: #fff262;
  z-index: 40;
  -webkit-transition-property: "display";
  transition-property: "display";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.gnav__wrap {
  position: absolute;
  top: 40%;
  right: 50%;
  -webkit-transform: translate(50%, -40%);
          transform: translate(50%, -40%);
}

.gnav__ttl {
  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;
}

.gnav__ttl__txt {
  width: 130px;
  color: #403734;
  font-family: "shirayuki", serif;
  line-height: 1;
}

.gnav__ttl__txt p:nth-child(1) {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.gnav__ttl__txt p:nth-child(2) {
  margin-top: -24px;
  font-size: 3.6rem;
  letter-spacing: -0.1em;
}

.gnav__ttl__img {
  margin-left: 10px;
  width: 88px;
}

.gnav__list {
  margin-top: 20px;
}

.gnav__item {
  text-align: center;
}

.gnav__item:not(:first-child) {
  margin-top: 10px;
}

.gnav__item a {
  font-family: "shirayuki", serif;
  font-size: 1.5rem;
  text-decoration: none;
  -webkit-transition-property: "color";
  transition-property: "color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.gnav__item a:hover, .gnav__item a:active {
  color: #c8b700;
}

.gnav__list-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  width: 280px;
}

.gnav__item-cta a {
  width: 135px;
  background-color: #fff;
  text-align: center;
  font-size: 1.4rem;
  -webkit-transition-property: "background-color, color";
  transition-property: "background-color, color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.gnav__item-cta a:hover, .gnav__item-cta a:active {
  background-color: #99978a;
  color: #fff;
}

.is-active-gnav .gnav {
  display: block;
  right: 0;
}

@media screen and (min-width: 1024px) {
  .gnav {
    display: none;
  }
}

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

@media screen and (min-width: 1024px) {
  .gnav-pc {
    margin: 0 auto;
    width: 100%;
  }
  .gnav-pc__wrap {
    position: absolute;
    top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    max-width: 1400px;
  }
  .gnav-pc__ttl {
    display: none;
  }
  .gnav-pc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 40px;
  }
  .gnav-pc__item {
    position: relative;
  }
  .gnav-pc__item::after {
    position: absolute;
    top: 22px;
    display: inline-block;
    content: "/";
    font-size: 1.2rem;
  }
  .gnav-pc__item:first-child::after {
    display: none;
  }
  .gnav-pc__item a {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em 1.1em 1em 1.3em;
    font-family: "shirayuki", serif;
    font-size: 1.4rem;
    letter-spacing: 0;
    -webkit-transition-property: "color";
    transition-property: "color";
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .gnav-pc__item a:hover {
    color: #c8b700;
    text-decoration: none;
  }
  .is-active-header {
    position: fixed;
    top: 0;
    height: 56px;
    background-color: #f2f2f2;
    -webkit-box-shadow: 0px 2px 2px rgba(153, 151, 138, 0.2);
            box-shadow: 0px 2px 2px rgba(153, 151, 138, 0.2);
    border-top: 4px solid #fff262;
    z-index: 100;
  }
  .is-active-header .gnav-pc__wrap {
    top: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .is-active-header .gnav-pc__item::after {
    top: 16px;
  }
  .is-active-header .gnav-pc__item a {
    margin-top: 0;
  }
  .is-active-header .gnav-pc__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 40px;
  }
  .is-active-header .gnav-pc__ttl__img {
    width: 40px;
  }
  .is-active-header .gnav-pc__ttl__txt {
    padding-left: 10px;
    font-family: "shirayuki", serif;
  }
  .is-active-header .gnav-pc__ttl__txt p:nth-child(1) {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .is-active-header .gnav-pc__ttl__txt p:nth-child(2) {
    margin-top: -12px;
    font-size: 1.8rem;
  }
}

/*==================================================

** Aside
==================================================*/
/*
** aside
--------------------------------------------------*/
.aside {
  margin-top: 80px;
  padding: 80px 0;
  background-color: #99978a;
}

.aside__cta {
  padding: 22px 30px 30px 30px;
  background-color: #fff;
  border: 10px solid rgba(255, 242, 98, 0.5);
}

.aside__list-cta {
  margin-top: 22px;
}

.aside__item-cta a {
  position: relative;
  padding: 16px 20px 16px 30px;
  background-color: #fff262;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}

.aside__item-cta a::after {
  position: absolute;
  top: 24px;
  right: 20px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.8rem;
}

.aside__item-cta:not(:first-child) {
  margin-top: 30px;
}

.aside .creema {
  margin: 60px auto 0 auto;
  width: 100%;
  max-width: 320px;
}

.aside .creema__outer {
  position: relative;
  display: block;
  margin: 0 20px 0 30px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  -webkit-transition-property: "background-color, color";
  transition-property: "background-color, color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.aside .creema__outer::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  content: "online shop";
  color: #fff;
  font-size: 14px;
  font-family: "Radley", serif;
  letter-spacing: 0.1em;
  -webkit-transform: rotate(270deg) translateY(-38px) translateX(-50%);
          transform: rotate(270deg) translateY(-38px) translateX(-50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.aside .creema__outer:hover {
  background-color: #fff262;
  color: #99978a;
  text-decoration: none;
}

.aside .creema__txt p {
  text-align: center;
  line-height: 1.5;
}

.aside .creema__txt p:nth-child(2) {
  margin-top: -8px;
  font-size: 5rem;
  font-family: "Radley", serif;
  letter-spacing: 0.1em;
}

.aside .creema__img p:nth-child(1) {
  margin: 4px auto 0 auto;
  width: 90%;
  max-width: 190px;
}

.aside .creema__img p:nth-child(2) {
  margin: 0 20px 0 auto;
  width: 90px;
}

.aside__nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d9d8ce;
  z-index: 100;
}

.aside__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 6px 0;
  width: 100%;
}

.aside__nav__item a {
  display: block;
  width: 100%;
  height: 38px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0;
  line-height: 38px;
  -webkit-transition-property: "background-color";
  transition-property: "background-color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.aside__nav__item a:hover, .aside__nav__item a:active {
  background-color: #fff262;
  text-decoration: none;
}

.aside__nav__item:not(:first-child) {
  border-left: 1px solid #fff;
}

.aside__nav__item:nth-child(1), .aside__nav__item:nth-child(2) {
  -webkit-box-flex: 1.3;
      -ms-flex: 1.3 0 30%;
          flex: 1.3 0 30%;
}

.aside__nav__item:nth-child(3) {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}

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

.aside__nav__item-sns a {
  font-size: 2.8rem;
  padding: 0 0.5em;
  -webkit-transition-property: "color";
  transition-property: "color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.aside__nav__item-sns a:hover, .aside__nav__item-sns a:active {
  background-color: transparent;
  color: #c8b700;
}

.aside__nav-pc {
  display: none;
}

@media screen and (max-width: 375px) {
  .aside__cta {
    padding: 22px 20px 20px 20px;
  }
  .aside__item-cta a::after {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .aside {
    margin-top: 90px;
    padding: 90px 0;
  }
  .aside__cta {
    margin: 0 auto;
    max-width: 800px;
    padding: 32px 40px 40px 40px;
  }
  .aside__list-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .aside__item-cta {
    width: 46.875%;
  }
  .aside__item-cta:not(:first-child) {
    margin-top: 0;
  }
  .aside .creema {
    margin-top: 90px;
    width: 530px;
    max-width: 530px;
  }
  .aside .creema__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 0 20px 0 30px;
  }
  .aside .creema__txt p {
    text-align: left;
  }
  .aside .creema__img {
    width: 220px;
  }
  .aside .creema__img p:nth-child(1) {
    margin: 0 auto 0 0;
  }
  .aside .creema__img p:nth-child(2) {
    margin: 0 0 0 auto;
    width: 90px;
  }
  .aside__nav__item-sns a {
    padding: 0 1em;
  }
}

@media screen and (min-width: 1024px) {
  .aside {
    margin-top: 100px;
    padding: 100px 0;
  }
  .aside .creema {
    margin-top: 100px;
  }
  .aside__nav {
    display: none;
  }
  .aside__nav-pc {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .aside__nav-pc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .aside__nav-pc__item a {
    padding: 1em 0.9em 0.6em 0.9em;
    background-color: #d9d8ce;
    border: 1px solid #f2f2f2;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-transition-property: "color";
    transition-property: "color";
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .aside__nav-pc__item a:hover, .aside__nav-pc__item a:active {
    background-color: #fff262;
    text-decoration: none;
  }
  .aside__nav-pc__item:not(:first-child) {
    margin-top: 10px;
  }
  .aside__nav-pc__item-sns {
    line-height: 1;
  }
  .aside__nav-pc__item-sns a {
    padding: 0.5em;
    background-color: transparent;
    border: none;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0;
    -webkit-transition-property: "color";
    transition-property: "color";
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .aside__nav-pc__item-sns a:hover, .aside__nav-pc__item-sns a:active {
    background-color: transparent;
    color: #c8b700;
  }
}

/*==================================================

** Footer
==================================================*/
/*
** footer
--------------------------------------------------*/
.footer {
  padding: 52px 0 100px;
  text-align: center;
}

.footer__sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto 0 auto;
}

.footer__sns__item a {
  padding: 0.5em;
  font-size: 2.8rem;
  -webkit-transition-property: "color";
  transition-property: "color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.footer__sns__item a:hover, .footer__sns__item a:active {
  text-decoration: none;
  color: #c8b700;
}

.footer__sns__item:not(:first-child) {
  margin-left: 20px;
}

.footer__link {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  -webkit-transition-property: "color";
  transition-property: "color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.footer__link:hover, .footer__link:active {
  text-decoration: none;
  color: #c8b700;
}

.footer__logo {
  margin-top: 12px;
  font-family: "shirayuki", serif;
}

.footer__logo span {
  font-size: 2rem;
}

.footer .copyright {
  padding: 0.2em;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 62px 0;
  }
  .footer__sns__list {
    margin: 20px auto 0 auto;
  }
  .footer__sns__item a {
    padding-left: 34px;
    position: relative;
    font-size: 1.6rem;
  }
  .footer__sns__item a i {
    position: absolute;
    top: 0.1em;
    left: 0;
    font-size: 2.8rem;
  }
  .footer__sns__item a:not(:first-child) {
    margin-left: 40px;
  }
  .footer__logo {
    margin-top: 22px;
  }
  .footer .copyright {
    padding: 0;
  }
}

/*
** pagetop
--------------------------------------------------*/
.pagetop {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: fixed;
  right: 4px;
  bottom: 60px;
  width: 18px;
  padding: 4px;
  background-color: #f2f2f2;
}

@media screen and (min-width: 1024px) {
  .pagetop {
    bottom: 15px;
  }
}

/*==================================================

** Common
==================================================*/
.ttl-asterisk {
  text-align: center;
  font-size: 3rem;
  font-family: "shirayuki", serif;
  line-height: 1.4;
}

.ttl-asterisk span {
  padding-bottom: 0;
  line-height: 1.4;
}

.ttl-asterisk span::before, .ttl-asterisk span::after {
  font-family: "Radley", serif;
}

.ttl-asterisk span::before {
  content: '* ';
}

.ttl-asterisk span::after {
  content: ' *';
}

.ttl-asterisk-en {
  font-family: "Radley", serif;
  letter-spacing: 0.1em;
}

.btn-push {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  padding: 0.8em;
  -webkit-box-shadow: 2px 3px 2px rgba(153, 151, 138, 0.5);
          box-shadow: 2px 3px 2px rgba(153, 151, 138, 0.5);
  border-radius: 4px;
  -webkit-transition-property: "box-shadow, transform";
  transition-property: "box-shadow, transform";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.btn-push:hover, .btn-push:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  text-decoration: none;
}

.btn-form {
  margin: 40px auto 0;
  width: 80%;
  max-width: 280px;
  background-color: #fff262;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

/*==================================================

** Main Common
==================================================*/
.main {
  margin-top: -83px;
}

.main p {
  text-align: justify;
}

.main p + p {
  margin-top: 20px;
}

.main ul {
  margin-top: 40px;
}

.main ul li {
  line-height: 1.5;
}

.main ul li:not(:first-child) {
  margin-top: 0.4em;
}

.main .list-disc {
  padding-left: 2.4rem;
}

.main .list-disc li {
  list-style-type: disc;
}

.main .list-icon li {
  position: relative;
  padding-left: 1.2em;
}

.main .list-icon li:not(:first-child) {
  margin-top: 1em;
}

.main .list-icon li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.main .list-circle li::before {
  top: 0.5em;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.5rem;
}

.main ol {
  margin-top: 20px;
}

.main ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  counter-increment: number;
}

.main ol li::before {
  content: counter(number);
  position: absolute;
  left: 0;
  padding: 1px 6px;
}

.main ol li:not(:first-child) {
  margin-top: 20px;
}

.main table {
  width: 100%;
  max-width: 550px;
  margin: 20px auto 0 auto;
}

.main table th,
.main table td {
  display: block;
  width: 100%;
  line-height: 1.5;
}

.main table th {
  text-align: left;
  padding-top: 1.25em;
  font-weight: 700;
}

.main table td {
  padding-top: 0.5em;
  padding-bottom: 1em;
}

.main .table-border tr {
  border-top: 1px solid #99978a;
}

.main .table-border tr:last-child {
  border-bottom: 1px solid #99978a;
}

.main h2 + * {
  margin-top: 40px;
}

.main h4 {
  font-size: 1.8rem;
}

.main h4 + * {
  margin-top: 20px;
}

.main .pagettl + * {
  margin-top: 60px;
}

.main .pagettl-img {
  margin: 5% 5% 0 5%;
}

.main .pagettl-img__img-box picture {
  position: relative;
}

.main .pagettl-img__img-box picture::after {
  position: absolute;
  left: -5px;
  bottom: -5px;
  content: url(/images/img-deco-lb.svg);
  width: 40px;
  z-index: 10;
}

.main .pagettl-img__txt {
  margin-top: 40px;
}

.main .pagettl-img__txt h1 {
  margin-top: 26px;
}

.main .pagettl-img__txt__img {
  margin: 30px auto 0 auto;
  text-align: center;
}

.main .pagettl-img__subvsl {
  position: relative;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main .pagettl-img__subvsl__img-box {
  width: 49%;
}

.main .pagettl-img__subvsl::before, .main .pagettl-img__subvsl::after {
  position: absolute;
  width: 40px;
}

.main .pagettl-img__subvsl::before {
  content: url(/images/img-deco-rt.svg);
  top: -5px;
  right: -5px;
}

.main .pagettl-img__subvsl::after {
  content: url(/images/img-deco-lb.svg);
  bottom: -5px;
  left: -5px;
}

.main .pagettl-txt {
  position: relative;
  margin: 45px auto 0;
  width: 85%;
  max-width: 550px;
  padding: 58px 0 78px 0;
  background-color: #fff262;
  border: 1px solid #403734;
}

.main .pagettl-txt h1::after {
  position: absolute;
  bottom: 5px;
  right: 30px;
  display: block;
  content: url(/images/logo-all.svg);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 60px;
}

.main .pagettl-txt::before, .main .pagettl-txt::after {
  position: absolute;
  width: 40px;
  z-index: 10;
}

.main .pagettl-txt::before {
  top: -5px;
  right: -5px;
  content: url(/images/img-deco-rt.svg);
}

.main .pagettl-txt::after {
  bottom: -5px;
  left: -5px;
  content: url(/images/img-deco-lb.svg);
}

.main .sec-ttl + * {
  margin-top: 40px;
}

.main .sec-ttl .ttl-asterisk {
  margin-top: 16px;
}

.main .ttl-ribbon {
  margin: 0 auto;
  position: relative;
  padding: 2px 0;
  width: 100%;
  max-width: 360px;
  background-color: #99978a;
}

.main .ttl-ribbon:before, .main .ttl-ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.main .ttl-ribbon:before {
  top: 0;
  left: 0;
  border-width: 18px 0px 18px 9px;
  border-color: transparent transparent transparent #f2f2f2;
  border-style: solid;
}

.main .ttl-ribbon:after {
  top: 0;
  right: 0;
  border-width: 18px 9px 18px 0px;
  border-color: transparent #f2f2f2 transparent transparent;
  border-style: solid;
}

.main .ttl-ribbon span {
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  color: #fff262;
  font-family: "Radley", serif;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.main .ttl-jp-deco {
  font-family: "shirayuki", serif;
  font-size: 2rem;
}

.main .ttl-ico {
  position: relative;
  padding-top: 14px;
  padding-left: 64px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.main .ttl-ico__txt {
  margin: 20px 0 0 20px;
}

.main .ttl-ico::before {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50px;
}

.main .ico-01::before {
  content: url(/images/ico-point-01.svg);
}

.main .ico-02::before {
  content: url(/images/ico-point-02.svg);
}

.main .ico-03::before {
  content: url(/images/ico-point-03.svg);
}

.main .ico-04::before {
  content: url(/images/ico-point-04.svg);
}

.main .btn-arrow {
  margin-top: 40px;
  text-align: right;
}

.main .btn-arrow__txt {
  position: relative;
  bottom: 0;
  right: 50px;
  display: inline-block;
  padding: 0 1em;
  background-color: #fff262;
  text-decoration: none;
  color: #403734;
  font-size: 2rem;
  line-height: 1.6;
  font-family: "Radley", serif;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition-property: "transform", "transform";
  transition-property: "transform", "transform";
  transition-property: "transform";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.main .btn-arrow__txt:after {
  position: absolute;
  display: inline-block;
  right: -50px;
  bottom: 0;
  content: url(/images/btn-triangle.svg);
  width: 50px;
  height: 60px;
}

.main .btn-arrow__txt:hover, .main .btn-arrow__txt:active {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  opacity: 1;
}

.main a {
  text-decoration: underline;
  -webkit-transition-property: "text-decoration, opacity";
  transition-property: "text-decoration, opacity";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.main a:hover, .main a:active {
  text-decoration: none;
  opacity: 0.8;
}

.main .strong-l {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.main .strong-s {
  font-weight: bold;
}

.main .marker {
  display: inline-block;
  padding: 0 0.2em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(153, 151, 138, 0.3)), color-stop(80%, rgba(153, 151, 138, 0.3)), color-stop(80%, transparent));
  background: linear-gradient(transparent 60%, rgba(153, 151, 138, 0.3) 60%, rgba(153, 151, 138, 0.3) 80%, transparent 80%);
}

.main .hushtag {
  color: #99978a;
  font-size: 1.4rem;
  line-height: 1.5;
}

.main .box-c-base {
  padding: 20px;
  background-color: #fff;
}

.main .box-ws {
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  max-width: 550px;
}

.main .box-wl {
  margin-left: auto;
  margin-right: auto;
  width: 90vw;
  max-width: 850px;
}

.main .mail::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.main .map::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.main .angle-right::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.main .intro .box-c-base {
  margin: 0 auto;
  width: 80vw;
  max-width: 550px;
  padding-top: 30px;
}

.main .intro h2 {
  text-align: center;
}

.main .intro p {
  margin-top: 16px;
}

.main .sec-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main .sec-img__img-box {
  width: 49%;
}

.main .sec-img__img-box span {
  position: relative;
  display: block;
}

.main .sec-img__img-box span::before, .main .sec-img__img-box span::after {
  position: absolute;
  width: 40px;
  height: 40px;
}

.main .sec-img-l .sec-img__img-box:nth-child(1) span::before {
  top: -5px;
  left: -5px;
  content: url(/images/img-deco-lt.svg);
}

.main .sec-img-l .sec-img__img-box:nth-child(2) {
  margin-top: 40px;
}

.main .sec-img-l .sec-img__img-box:nth-child(2) span::after {
  bottom: -5px;
  right: -5px;
  content: url(/images/img-deco-rb.svg);
}

.main .sec-img-r .sec-img__img-box:nth-child(1) {
  margin-top: 40px;
}

.main .sec-img-r .sec-img__img-box:nth-child(1) span::before {
  bottom: -5px;
  left: -5px;
  content: url(/images/img-deco-lb.svg);
}

.main .sec-img-r .sec-img__img-box:nth-child(2) span::after {
  top: -5px;
  right: -5px;
  content: url(/images/img-deco-rt.svg);
}

.main .col2__txt {
  margin-top: 30px;
}

.main .sub-txt {
  position: relative;
  margin-left: 4px;
  margin-right: 10px;
  padding-left: 40px;
  border-left: 1px solid #99978a;
}

.main .sub-txt::before {
  position: absolute;
  top: 50%;
  display: inline-block;
  padding: 0 1em;
  content: attr(data-subtxt);
  background-color: #f2f2f2;
  color: #99978a;
  font-family: "Radley", serif;
  letter-spacing: 0.1em;
  -webkit-transform: rotate(270deg) translateY(-50px) translateX(-50%);
          transform: rotate(270deg) translateY(-50px) translateX(-50%);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.main .cta {
  margin-top: 90px;
}

.main .cta__outer {
  display: block;
  margin: 0 auto;
  padding: 40px;
  width: 100%;
  max-width: 650px;
  background-color: #99978a;
  border: 10px solid #fff262;
  text-align: center;
  text-decoration: none;
  color: #fff;
  -webkit-transition-property: "opacity";
  transition-property: "opacity";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.main .cta__outer:hover {
  opacity: 0.8;
}

.main .cta__txt {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}

.main .cta .btn-arrow-txt {
  color: #403734;
}

.main .cta-lesson__img-box {
  margin: 0 auto;
  width: 100px;
}

.main .cta-lesson__txt__p {
  margin-top: 20px;
}

.main .works__outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main .works__outer::before, .main .works__outer::after {
  position: absolute;
  width: 40px;
}

.main .works__outer::before {
  top: -5px;
  left: -5px;
  content: url(/images/img-deco-lt.svg);
}

.main .works__outer::after {
  bottom: 5px;
  right: -5px;
  content: url(/images/img-deco-rb.svg);
}

.main .works__img-box {
  margin-bottom: 10px;
  width: 49%;
}

.main .col2-ico h3 {
  margin-top: 0;
}

@media screen and (max-width: 374px) {
  .main .sub-txt {
    padding-left: 30px;
  }
  .main .sub-txt::before {
    -webkit-transform: rotate(270deg) translateY(-40px) translateX(-50%);
            transform: rotate(270deg) translateY(-40px) translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .main .pagettl-img {
    margin: 0 20px;
  }
  .main .pagettl-img__img-box {
    padding: 20px;
    background-color: #fff;
  }
  .main .pagettl-img__img-box picture::after {
    content: url(/images/img-deco-lb-base.svg);
  }
  .main .pagettl-img__txt {
    margin-top: 60px;
  }
  .main .pagettl-img__txt::before {
    font-size: 5rem;
  }
  .main .pagettl-img__txt span::before, .main .pagettl-img__txt span::after {
    top: 1.6em;
  }
  .main .pagettl-img__subvsl {
    display: none;
  }
  .main .ttl-asterisk {
    font-size: 3.6rem;
  }
  .main .ttl-jp-deco {
    font-family: "shirayuki", serif;
    font-size: 2.4rem;
  }
  .main .ttl-ico {
    font-size: 2rem;
  }
  .main .btn-s {
    width: 90%;
  }
  .main .strong-l {
    font-size: 2.8rem;
  }
  .main .strong-s {
    font-size: 1.8rem;
  }
  .main .intro .box-base {
    padding: 40px;
  }
  .main .intro p {
    margin-top: 26px;
  }
  .main .sec-img-l .sec-img__img-box:nth-child(2) {
    margin-top: 80px;
  }
  .main .sec-img-r .sec-img__img-box:nth-child(1) {
    margin-top: 80px;
  }
  .main .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .main .col2__img-box-outer {
    width: 53%;
  }
  .main .col2__txt {
    margin-top: 0;
    width: calc(100% - 53%);
  }
  .main .col2 .txt-l {
    margin-left: 40px;
  }
  .main .col2 .txt-r {
    margin-right: 40px;
  }
  .main .col2-re {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .main .cta-lesson__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .main .cta-lesson__txt__p {
    text-align: left;
  }
  .main .works__img-box {
    margin-bottom: 1.2%;
    width: 32.5%;
  }
  .main .intro .box-c-base {
    padding: 30px 40px;
  }
}

@media screen and (min-width: 1024px) {
  .main {
    margin-top: -125px;
  }
  .main h3 {
    margin-top: 56px;
  }
  .main .page-ttl + * {
    margin-top: 100px;
  }
  .main .pagettl-img {
    padding: 75px 30px 30px 30px;
    background-color: #fff;
  }
  .main .pagettl-img__outer {
    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;
    margin: 0 auto;
    max-width: 1000px;
  }
  .main .pagettl-img__img-box {
    width: 63%;
    padding: 0px;
  }
  .main .pagettl-img__txt {
    margin-top: 0;
  }
  .main .pagettl-img__txt__ttl-en {
    width: 250px;
  }
  .main .pagettl-img__txt__ttl-en::before {
    border-color: transparent transparent transparent #fff;
  }
  .main .pagettl-img__txt__ttl-en::after {
    border-color: transparent #fff transparent transparent;
  }
  .main .pagettl-txt {
    margin-top: 110px;
  }
  .main .ttl-ico {
    margin-top: 0;
    padding-left: 70px;
    font-size: 2rem;
  }
  .main .ttl-ico::before {
    top: 0px;
  }
  .main .list-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 80px auto 0 auto;
    width: 80%;
    max-width: 680px;
  }
  .main .item-btn {
    width: 50%;
  }
  .main .item-btn:not(:first-child) {
    margin-top: 0;
  }
  .main .strong-s {
    font-size: 2rem;
  }
  .main .intro .box-base {
    padding: 60px;
  }
  .main .sub-txt {
    padding-left: 40px;
  }
  .main .sub-txt::before {
    -webkit-transform: rotate(270deg) translateY(-48px) translateX(-50%);
            transform: rotate(270deg) translateY(-48px) translateX(-50%);
  }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .main .pagettl-img__txt {
    margin-right: 40px;
  }
  .main .pagettl-img__txt__ttl-jp {
    font-size: 3rem;
  }
}

@media screen and (min-width: 1280px) {
  .main h3 {
    margin-top: 56px;
  }
}

/*==================================================

** Top
==================================================*/
#top .mainvsl {
  margin: 5% 5% 0 5%;
}

#top .mainvsl__img-box {
  position: relative;
  position: relative;
}

#top .mainvsl__img-box::after {
  position: absolute;
  left: -5px;
  bottom: -5px;
  content: url(/images/img-deco-lb.svg);
  width: 40px;
  z-index: 10;
}

#top .mainvsl__img-box__copy {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 90%;
  text-align: right;
  font-family: "shirayuki", serif;
  font-size: 2.4rem;
  line-height: 1.5;
}

#top .mainvsl__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}

#top .mainvsl__txt__left {
  width: 43%;
}

#top .mainvsl__txt__right {
  width: 53%;
}

#top .mainvsl__txt__img {
  margin: 20px auto 0 auto;
  width: 60%;
}

#top .mainvsl__subvsl {
  position: relative;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#top .mainvsl__subvsl__img-box {
  width: 49%;
}

#top .mainvsl__subvsl::before, #top .mainvsl__subvsl::after {
  position: absolute;
  width: 40px;
}

#top .mainvsl__subvsl::before {
  content: url(/images/img-deco-rt.svg);
  top: -5px;
  right: -5px;
}

#top .mainvsl__subvsl::after {
  content: url(/images/img-deco-lb.svg);
  bottom: -5px;
  left: -5px;
}

#top .mainvsl__nav__list {
  margin-top: 0;
}

#top .mainvsl__nav__item .btn-push {
  position: relative;
  padding: 0.9em 0.8em 0.7em 0.8em;
  background-color: #fff262;
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.5;
}

#top .mainvsl__nav__item .btn-push::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#top .mainvsl__nav__btn {
  position: relative;
  display: block;
  padding: 0.7em;
  border: 1px solid #403734;
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-transition-property: "background-color";
  transition-property: "background-color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

#top .mainvsl__nav__btn::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#top .mainvsl__nav__btn:hover, #top .mainvsl__nav__btn:active {
  background-color: #fff262;
  color: #403734;
}

#top .mainvsl__nav__btn:not(:first-child) {
  margin-top: 10px;
}

#top .info {
  margin: 88px auto 0 auto;
  width: 96%;
  max-width: 550px;
}

#top .info .box-c-base {
  padding-bottom: 30px;
}

#top .info p {
  margin-top: 4px;
  line-height: 1.8;
}

#top .info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px auto 0 auto;
  max-width: 340px;
}

#top .info__item {
  width: 48%;
}

#top .info__item:not(:first-child) {
  margin-top: 0;
}

#top .info__item .btn-push {
  position: relative;
  padding-left: 2.6em;
  background-color: #fff262;
  text-decoration: none;
  font-size: 1.4rem;
}

#top .info__item .btn-push::before {
  position: absolute;
  left: 1em;
  font-size: 1.6rem;
}

#top .info__item__facebook::before {
  content: "";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

#top .info__item__insta::before {
  content: "";
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

#top .about__txt {
  text-align: center;
}

#top .about__list li:not(:first-child) {
  margin-top: 60px;
}

#top .about__list .col2 .ttl-ico {
  letter-spacing: 0.1em;
}

#top .about__list .col2 p {
  margin-right: 5%;
}

#top .about__list .col2__img-box-outer {
  margin-top: 38px;
}

#top .menu__item:not(:first-child) {
  margin-top: 80px;
}

#top .menu__title {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5px;
  width: 100%;
  max-width: 1010px;
}

#top .menu__title__ttl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

#top .menu__title__ttl span {
  display: inline-block;
  padding: 0em 0.5em;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 8vw;
  line-height: 1.5;
  font-family: "shirayuki", serif;
  letter-spacing: 0.1em;
}

#top .menu__title__ttl span:not(:first-child) {
  margin-top: 8px;
}

#top .menu__title__ttl-r {
  right: 0;
  text-align: right;
}

#top .menu__title__img-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 5% 0 5%;
}

#top .menu__title__img-foot-w {
  margin: 10px 0 0 15%;
}

#top .menu__title__img-box__1st {
  margin-right: 5px;
}

#top .menu__title__img-box__1st span {
  display: block;
  position: relative;
}

#top .menu__title__img-box__1st span::after {
  position: absolute;
  left: -5px;
  bottom: -15px;
  content: url(/images/img-deco-lb.svg);
  width: 40px;
}

#top .menu__title__img-box__2st {
  margin-top: 70px;
  margin-left: 5px;
}

#top .menu__title__img-box__2st span {
  display: block;
  position: relative;
}

#top .menu__title__img-box__2st span::after {
  position: absolute;
  right: -5px;
  bottom: -15px;
  content: url(/images/img-deco-rb.svg);
  width: 40px;
}

#top .menu__title__img-box__w {
  margin-right: 5px;
}

#top .menu__title__img-box__w span {
  display: block;
  position: relative;
}

#top .menu__title__img-box__w span::after {
  position: absolute;
  left: -5px;
  bottom: -15px;
  content: url(/images/img-deco-lb.svg);
  width: 40px;
}

#top .menu__lnav {
  margin-top: 40px;
}

#top .menu__lnav__item:not(:first-child) {
  margin-top: 20px;
}

#top .menu__lnav__item a {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  text-decoration: none;
  -webkit-transition-property: "color";
  transition-property: "color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

#top .menu__lnav__item a::after {
  position: absolute;
  top: 0.3em;
  right: -1.6em;
  padding-left: 0.8em;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
}

#top .menu__lnav__item a:hover, #top .menu__lnav__item a:active {
  color: #c8b700;
}

#top .menu .hushtag {
  margin-top: 28px;
}

#top .company {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #d9d8ce;
}

#top .company .wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}

#top .company .ttl-ribbon {
  width: 85%;
}

#top .company__ttl {
  margin-top: 24px;
  text-align: center;
}

#top .company__ttl span {
  font-family: "shirayuki", serif;
}

#top .company__ttl span:nth-child(1) {
  font-size: 1.8rem;
}

#top .company__ttl span:nth-child(3) {
  font-size: 3rem;
  line-height: 1.5;
}

#top .company__content {
  margin: 0 20px;
}

#top .company__txt {
  margin-top: 24px;
}

#top .company .sub-txt::before {
  background-color: #fff;
}

#top .company__img-outer {
  margin-top: 40px;
}

#top .company__img-outer__txt {
  width: 180px;
}

#top .company__img-outer__imgs {
  margin-top: -10px;
}

#top .company__img-outer__imgs figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
}

#top .sns__instagram__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

#top .sns__facebook {
  margin-top: 80px;
}

#top .sns__facebook__content a {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5em 1.5em 1em 1.5em;
  width: 90%;
  max-width: 450px;
  background-color: #fff;
  border: 1px solid #403734;
  text-decoration: none;
  -webkit-transition-property: "background-color";
  transition-property: "background-color";
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

#top .sns__facebook__content a:hover, #top .sns__facebook__content a:active {
  background-color: #d9d8ce;
}

#top .sns__facebook__content a::before {
  position: absolute;
  top: -10px;
  left: -10px;
  content: url(/images/txt-top-sns.svg);
  width: 100px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

#top .sns__facebook__content p:nth-child(1) {
  line-height: 1.5;
}

#top .sns__facebook__content p:nth-child(2) {
  margin: -6px 0 0 auto;
  width: 100px;
}

@media screen and (max-width: 374px) {
  #top .company__img-outer__txt {
    width: 150px;
  }
}

@media screen and (min-width: 414px) {
  #top .info p {
    text-align: center;
  }
  #top .sns__facebook__content {
    padding: 1.8em 1.5em 1.5em 1.5em;
  }
}

@media screen and (min-width: 576px) {
  #top .mainvsl__txt {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
}

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

@media screen and (min-width: 768px) {
  #top .mainvsl {
    display: none;
  }
  #top .mainvsl-pc {
    margin: 0 20px;
  }
  #top .mainvsl-pc__img-box {
    padding: 20px;
    background-color: #fff;
    position: relative;
  }
  #top .mainvsl-pc__img-box::before, #top .mainvsl-pc__img-box::after {
    position: absolute;
    width: 40px;
  }
  #top .mainvsl-pc__img-box::after {
    content: url(/images/img-deco-lb-base.svg);
    bottom: 15px;
    left: 15px;
  }
  #top .mainvsl-pc__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 60px auto 0 auto;
    width: 80%;
    max-width: 650px;
  }
  #top .mainvsl-pc__txt__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #top .mainvsl-pc__txt__ttl {
    font-family: "shirayuki", serif;
  }
  #top .mainvsl-pc__txt__ttl span {
    display: block;
    text-align: center;
    line-height: 1.2;
  }
  #top .mainvsl-pc__txt__ttl span:nth-child(1) {
    font-size: 3.5rem;
    letter-spacing: 0.1em;
  }
  #top .mainvsl-pc__txt__ttl span:nth-child(2) {
    font-size: 5.4rem;
    letter-spacing: -0.1em;
  }
  #top .mainvsl-pc__txt__logo {
    width: 120px;
  }
  #top .mainvsl-pc__txt__copy {
    margin-top: 24px;
    text-align: center;
    font-size: 2.4rem;
    font-family: "shirayuki", serif;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
  #top .mainvsl-pc__txt__foot {
    width: 33%;
  }
  #top .mainvsl__nav__item:not(:first-child) {
    margin-top: 10px;
  }
  #top .mainvsl__nav__img-box {
    display: none;
    margin-top: 10px;
    width: 200px;
  }
  #top .mainvsl__nav__btn {
    margin-top: 16px;
  }
  #top .mainvsl__nav__btn::after {
    top: 55%;
    -webkit-transform: translateY(-55%);
            transform: translateY(-55%);
  }
  #top .info .box-c-base {
    padding: 30px 40px;
  }
  #top .about__list .col2 p {
    margin-right: 0;
  }
  #top .about__list .col2__img-box-outer {
    margin-top: 0;
  }
  #top .menu__title__ttl {
    top: 8vw;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #top .menu__title__ttl span {
    font-size: 5vw;
  }
  #top .menu__title__ttl-r {
    left: 0;
    text-align: left;
  }
  #top .menu__title__ttl-l {
    right: 0;
    text-align: right;
  }
  #top .menu__title__img-outer {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
  }
  #top .menu__title__img-head {
    margin-left: auto;
    margin-right: 0;
    width: 69%;
  }
  #top .menu__title__img-head-w {
    margin-left: 0;
    margin-right: auto;
    width: 59%;
  }
  #top .menu__title__img-foot {
    position: absolute;
    top: 30vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    width: 30%;
  }
  #top .menu__title__img-foot-w {
    right: 0;
    margin: 0;
    width: 40%;
  }
  #top .menu__title__img-box__1st {
    margin-right: 0;
  }
  #top .menu__title__img-box__2st {
    position: absolute;
    top: 100%;
    right: -100px;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  #top .menu .sub-txt {
    margin: 56px 0 0 auto;
    padding-left: 60px;
    width: 46%;
  }
  #top .menu .sub-txt::before {
    -webkit-transform: rotate(270deg) translateY(-69px) translateX(-50%);
            transform: rotate(270deg) translateY(-69px) translateX(-50%);
  }
  #top .menu .sub-txt-l {
    margin: 56px auto 0 0;
  }
  #top .company__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 40px;
  }
  #top .company__txt, #top .company__img-outer {
    width: 48%;
  }
  #top .sns__instagram .instagram li {
    margin-bottom: 2%;
    width: 32%;
  }
}

@media screen and (min-width: 1024px) {
  #top .mainvsl-pc {
    padding: 75px 30px 30px 30px;
    background-color: #fff;
  }
  #top .mainvsl-pc__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 auto;
    max-width: 1360px;
  }
  #top .mainvsl-pc__img-box {
    width: 64%;
    padding: 0px;
  }
  #top .mainvsl-pc__img-box::before {
    content: url(/images/img-deco-rt-base.svg);
    top: -5px;
    right: -5px;
  }
  #top .mainvsl-pc__img-box::after {
    bottom: -5px;
    left: -5px;
  }
  #top .mainvsl-pc__txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
    padding-right: 10px;
    width: calc(100% - 64% - 4%);
  }
  #top .mainvsl-pc__txt__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #top .mainvsl-pc__txt__ttl span {
    display: none;
  }
  #top .mainvsl-pc__txt__logo {
    margin-top: 20px;
    width: 140px;
  }
  #top .mainvsl-pc__txt__copy {
    font-size: 2vw;
  }
  #top .mainvsl-pc__txt__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2vw;
    width: 100%;
  }
  #top .mainvsl-pc__txt__foot__left {
    width: 46%;
  }
  #top .mainvsl-pc__txt__foot__right {
    width: calc(100% - 46% - 5%);
  }
  #top .mainvsl__nav__item .btn-push {
    padding: 0.7em 0.8em 0.5em 0.8em;
    line-height: 1.3;
  }
  #top .mainvsl__nav__img-box {
    display: block;
    margin: 0 auto;
    width: 140px;
  }
  #top .mainvsl__nav__btn {
    margin-top: 0;
    padding: 1.8em 0.7em 1.6em 0.7em;
  }
  #top .menu__title__ttl {
    top: 10%;
    left: 60px;
  }
  #top .menu__title__ttl span {
    font-size: 5rem;
  }
  #top .menu__title__ttl-l {
    right: 60px;
  }
  #top .menu__title__img-foot {
    top: 320px;
  }
  #top .company__content {
    margin: 0 50px;
  }
  #top .sns__instagram .instagram li {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1280px) {
  #top .mainvsl-pc__img-box {
    width: 66%;
  }
  #top .mainvsl-pc__txt {
    padding-right: 30px;
    width: calc(100% - 66% - 4%);
  }
  #top .mainvsl-pc__txt__ttl span {
    display: block;
  }
  #top .mainvsl-pc__txt__ttl span:nth-child(1) {
    font-size: 3.3rem;
  }
  #top .mainvsl-pc__txt__ttl span:nth-child(2) {
    font-size: 5rem;
  }
  #top .mainvsl-pc__txt__logo {
    margin-top: 10px;
    width: 120px;
  }
  #top .mainvsl-pc__txt__copy {
    margin-top: 16px;
    font-size: 2.2rem;
  }
  #top .mainvsl-pc__txt__foot {
    margin-top: 40px;
  }
  #top .mainvsl__nav__img-box {
    width: 150px;
  }
}

/*==================================================

** Pages
==================================================*/
/*
** wool
--------------------------------------------------*/
#wool .pagettl-img__txt__img {
  width: 240px;
}

#wool .intro .strong-s {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 1.5;
}

#wool .intro .strong-s + p {
  margin-top: 8px;
}

#wool .price__txt p {
  text-align: center;
}

#wool .price__txt p:nth-child(1) {
  margin-top: 20px;
}

#wool .price__txt p:nth-child(2) {
  margin-top: 16px;
}

#wool .price__txt p:nth-child(3) {
  margin-top: 0;
}

/*
** flower
--------------------------------------------------*/
#flower .pagettl-img__txt__img {
  width: 220px;
}

#flower .price__txt p {
  text-align: center;
}

#flower .price__txt p:nth-child(1) {
  margin-top: 20px;
}

#flower .price__txt p:nth-child(2) {
  margin-top: 0;
}

#flower .ambassador .col2__info p:nth-child(2) {
  margin-top: 8px;
}

#flower .ambassador .col2__info p:nth-child(4) {
  margin-top: 20px;
}

#flower .ambassador .col2__info__box {
  margin-top: 30px;
  padding: 20px;
  max-width: 300px;
  background-color: #fff;
}

#flower .ambassador ul {
  margin-top: 0;
}

#flower .ambassador__contact {
  margin: 40px 0 0 auto;
  max-width: 360px;
}

#flower .ambassador__contact p:nth-child(1) {
  width: 168px;
}

#flower .ambassador__contact p:nth-child(2) {
  margin-top: 0;
}

@media screen and (max-width: 375px) {
  #flower .ambassador__contact p:nth-child(2) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 576px) {
  #flower .ambassador__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #flower .ambassador__contact p:nth-child(2) {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  #flower .ambassador .sub-txt {
    margin-top: 60px;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px solid #99978a;
    border-left: none;
  }
  #flower .ambassador .sub-txt::before {
    top: 0;
    left: 50%;
    -webkit-transform: rotate(0deg) translateY(-50%) translateX(-50%);
            transform: rotate(0deg) translateY(-50%) translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  #flower .col2 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #flower .col2__txt {
    width: 42%;
  }
  #flower .col2__info {
    width: 50%;
  }
}

/*
** elder
--------------------------------------------------*/
#elder .pagettl-img__txt__img {
  width: 110px;
}

#elder .works .elder-btn {
  position: relative;
  max-width: 400px;
  margin: 80px auto 0 auto;
  padding: 40px;
  background-color: #d9d8ce;
}

#elder .works .elder-btn::before, #elder .works .elder-btn::after {
  position: absolute;
  content: '';
  background-color: #403734;
  width: 100%;
  height: 1px;
}

#elder .works .elder-btn::before {
  top: 8px;
  left: 0;
}

#elder .works .elder-btn::after {
  bottom: 8px;
  left: 0;
}

#elder .works .elder-btn a {
  text-decoration: none;
}

#elder .works .elder-btn__txt p:nth-child(2) {
  width: 90px;
  margin: 0 0 0 auto;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  #elder .works .elder-btn {
    margin-top: 90px;
  }
}

@media screen and (min-width: 1024px) {
  #elder .works .elder-btn {
    margin-top: 100px;
  }
}

/*
** workshop
--------------------------------------------------*/
#workshop .point__list {
  margin-left: auto;
  margin-right: auto;
  max-width: 550px;
}

#workshop .point__item:not(:first-child) {
  margin-top: 36px;
}

#workshop .works__box {
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  width: 90%;
  background-color: #fff;
}

#workshop .works__ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

#workshop .works__list {
  margin-top: 26px;
}

#workshop .works__item {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}

#workshop .works__item__img-box figcaption {
  margin-top: 4px;
  text-align: center;
}

#workshop .works__item:not(:first-child) {
  margin-top: 50px;
}

#workshop .works__item:not(:first-child)::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: -50px;
  color: #d9d8ce;
  font-size: 3rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#workshop .works__outer {
  margin-top: 28px;
}

#workshop .works__outer::before, #workshop .works__outer::after {
  display: none;
}

#workshop .works__img-box {
  margin-top: 14px;
}

#workshop .works__img-box figcaption {
  margin-top: 8px;
  text-align: center;
}

#workshop .price ul {
  margin-top: 0;
  padding-top: 1.25em;
}

#workshop .price .cta-workshop {
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
}

#workshop .price .cta-workshop p:nth-child(1) {
  text-align: left;
}

@media screen and (max-width: 375px) {
  #workshop .price .cta-workshop__outer p:nth-child(1) {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  #workshop .works__box {
    width: 100%;
  }
  #workshop .works__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #workshop .works__item {
    margin: 0;
    width: 27%;
  }
  #workshop .works__item:not(:first-child) {
    margin-top: 0;
  }
  #workshop .works__item:not(:first-child)::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: -26%;
    color: #d9d8ce;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #workshop .works__outer {
    margin-top: 60px;
  }
  #workshop .works__img-box {
    width: 24%;
  }
  #workshop .price .cta-workshop {
    max-width: 600px;
  }
  #workshop .price .cta-workshop__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  #workshop .works__ttl {
    margin-top: 0;
  }
}

/*
** profile
--------------------------------------------------*/
#profile .prof__name p {
  text-align: center;
}

#profile .prof__name p:nth-child(1) {
  font-family: "shirayuki", serif;
  font-size: 2.4rem;
  line-height: 1.2;
}

#profile .prof__name p:nth-child(2) {
  margin-top: 0;
  font-family: "Radley", serif;
  font-size: 1.4rem;
}

#profile .prof__name p:nth-child(3) {
  margin-top: 0;
  font-family: "shirayuki", serif;
  line-height: 1.2;
}

#profile .prof__img-box {
  margin: 34px auto 0;
  width: 200px;
}

#profile .prof__img-box img {
  border-radius: 50%;
}

#profile .prof .box-ws {
  margin-top: 30px;
}

#profile .prof .box-ws p:nth-child(1) {
  text-align: center;
}

#profile .prof .box-ws p:nth-child(2) {
  margin-top: 24px;
}

#profile .history__table {
  margin-top: 14px;
}

#profile .history__table th {
  padding-top: 26px;
  font-family: "Radley", serif;
  font-weight: 400;
}

#profile .history__table td {
  padding-bottom: 0;
}

#profile .history__txt {
  display: block;
  margin-top: 20px;
  text-align: right;
  color: #99978a;
  font-size: 1.4rem;
  font-family: "Radley", serif;
}

@media screen and (min-width: 768px) {
  #profile .history__table {
    margin-top: 34px;
  }
}

/*
** contact
--------------------------------------------------*/
#contact .note .cta {
  margin-top: 60px;
}

#contact .form {
  padding: 0 !important;
}

#contact .form .box-ws {
  margin-top: 60px;
}

#contact .form .box-ws p {
  line-height: 1.8;
}

#contact .form__txt {
  margin-top: 30px;
}

#contact .form i {
  padding-right: 0.2em;
  color: #99978a;
  font-size: 1.2rem;
}

#contact .form__item {
  margin-top: 30px;
}

#contact .form__item__ttl {
  line-height: 1.5;
}

#contact .form__item__content {
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  #contact .note .cta {
    margin-top: 80px;
  }
}

/*
** thanks
--------------------------------------------------*/
#thanks .pagettl-txt__ttl span {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

#thanks .content {
  margin-top: 60px;
}

/*
** privacy
--------------------------------------------------*/
#privacy .ttl-asterisk {
  font-size: 2rem;
}

#privacy section:not(:first-child) {
  margin-top: 60px;
}

#privacy section p {
  line-height: 1.8;
}

/*==================================================

** Form
==================================================*/
.ico-required::after {
  margin-left: 0.5em;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #99978a;
  font-size: 1.2rem;
}

.form-input-text {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  width: 100%;
  height: 44px;
  padding-left: 1em;
  background-color: #fff;
  border: 1px solid #403734;
  border-radius: 6px;
}

.form-textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
  padding: 1em 1em 0;
  border: 0;
  outline: none;
  background: transparent;
  width: 100% !important;
  min-height: 200px;
  background-color: #fff;
  border: 1px solid #403734;
  border-radius: 4px;
}

.form-input-date {
  position: relative;
  padding-left: 1em;
  text-align: left !important;
}

#mfp_hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .form-input-text {
    width: 320px;
  }
  .form-textarea {
    min-height: 250px;
  }
}
/*# sourceMappingURL=style.css.map */