@charset "UTF-8";
.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* FontFamily */
body {
  font-family: "ＤＦ細楷書体", serif;
  color: #4D4D4D;
}

/* font-weight */
/* ten Mincho Regular

font-family: ten-mincho, serif;
font-weight: 400;
font-style: normal;

*/
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

@media (max-width: 375) {
  html {
    font-size: 4.26667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.45455vw;
  }
}

@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.drawer-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: transform .3s ease-in-out;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  z-index: 90;
}

.drawer-menu.is-drawerActive {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-menu__nav {
  margin-left: 30%;
  margin-top: 50px;
}

.drawer-menu__logo-wrap {
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
}

.drawer-menu__logo {
  position: relative;
  padding-top: 151.53061%;
  width: 100%;
}

.drawer-menu__items {
  margin-top: 30px;
}

.drawer-menu__item:nth-child(n + 2) {
  margin-top: 10px;
}

.drawer-menu__item a {
  color: #336633;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 40px;
  line-height: 2.5rem;
  font-weight: 600;
}

.hamburger-btn {
  position: fixed;
  cursor: pointer;
  width: 30px;
  width: 1.875rem;
  height: 29px;
  height: 1.8125rem;
  top: 20px;
  right: 20px;
  z-index: 100;
}

.hamburger-btn span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  height: 2px;
  height: 0.125rem;
  width: 30px;
  width: 1.875rem;
  border-radius: 2px;
  background: #4B4B4B;
}

.hamburger-btn span:nth-child(1) {
  top: 0px;
}

.hamburger-btn span:nth-child(2) {
  top: 10px;
}

.hamburger-btn span:nth-child(3) {
  top: 20px;
}

.hamburger-btn span:nth-child(4) {
  top: 28px;
}

.hamburger-btn.active span:nth-child(1) {
  top: 18px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  top: 30px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
}

.hamburger-btn.active span:nth-child(4) {
  opacity: 0;
}

.footer__inner {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  margin: 77px auto 0;
  margin: 4.8125rem auto 0;
}

@media screen and (min-width: 768px) {
  .footer__inner {
    width: 61.25rem;
  }
}

.l-top {
  padding: 0 20px 78px;
  padding: 0 1.25rem 4.875rem;
}

@media screen and (min-width: 768px) {
  .l-top {
    padding: 0 1.25rem 7.1875rem;
    margin: 13.125rem auto 0;
  }
}

.l-corporate {
  padding: 0 20px 205px;
  padding: 0 1.25rem 12.8125rem;
}

@media screen and (min-width: 768px) {
  .l-corporate {
    padding: 0 2.5rem 7.1875rem 0;
    margin: 7.5rem auto 0;
  }
}

.l-contact {
  padding: 0 20px 205px;
  padding: 0 1.25rem 12.8125rem;
}

@media screen and (min-width: 768px) {
  .l-contact {
    padding: 0 2.5rem 7.1875rem 0;
    margin: 7.5rem auto 0;
  }
}

.footer__wrap {
  border-top: 1px solid #4B4B4B;
  border-top: 0.0625rem solid #4B4B4B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-flow: column-reverse;
          flex-flow: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .footer__wrap {
    border-top: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: initial;
            flex-flow: initial;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .footer__wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 28.75rem;
    height: 0.0625rem;
    content: "";
    background-color: #4B4B4B;
  }
}

.footer__text-wrap {
  text-align: center;
  margin-top: 76px;
  margin-top: 4.75rem;
}

@media screen and (min-width: 768px) {
  .footer__text-wrap {
    text-align: left;
    margin-top: 2.3125rem;
  }
}

.t-top {
  font-size: 20px;
  font-size: 1.25rem;
}

.t-corporate {
  font-size: 14px;
  font-size: 0.875rem;
}

.footer__address {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
}

.footer__address span {
  font-family: Times, serif;
  font-style: italic;
}

.footer__tel {
  font-family: Times, serif;
  font-style: italic;
  font-size: 15px;
  font-size: 0.9375rem;
}

.footer__copy-light {
  margin-top: 184px;
  margin-top: 11.5rem;
  display: block;
  font-family: Times, serif;
  font-style: italic;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .footer__copy-light {
    margin-top: 0.625rem;
  }
}

.footer__logo-wrap {
  width: 72.7px;
  width: 4.54375rem;
  max-width: 100%;
  margin: 80px auto 0;
}

@media screen and (min-width: 768px) {
  .footer__logo-wrap {
    margin: 2.5rem 0 0 0;
  }
}

.footer__logo {
  position: relative;
  padding-top: 151.44429%;
}

.header {
  position: fixed;
  width: 100%;
  height: 80px;
  height: 5rem;
  z-index: 100;
  background-color: #fff;
  top: -80px;
  top: -5rem;
  left: 0;
  opacity: 0;
}

.header__inner {
  width: 960px;
  width: 60rem;
  max-width: 100%;
  padding: 0 30px;
  padding: 0 1.875rem;
  margin: 0 auto;
  height: inherit;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__logo img {
  display: block;
  width: 50px;
  width: 3.125rem;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 150px;
  margin-left: 9.375rem;
}

.header__item:nth-child(n + 2) {
  margin-left: 30px;
  margin-left: 1.875rem;
}

.header__item a {
  display: block;
  line-height: 40px;
  line-height: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
}

.img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.sub-header {
  width: 100%;
  height: 80px;
  height: 5rem;
}

.sub-header__inner {
  width: 960px;
  width: 60rem;
  max-width: 100%;
  padding: 30px 30px 0;
  padding: 1.875rem 1.875rem 0;
  margin: 0 auto;
  height: inherit;
}

.sub-mainview__inner {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sub-mainview__inner {
    padding-top: 0;
  }
}

.sub-mainview__inner--corporate {
  padding-top: 66px;
  padding-top: 4.125rem;
}

@media screen and (min-width: 768px) {
  .sub-mainview__inner--corporate {
    margin-top: 3.8125rem;
  }
}

.sub-mainview__inner--contact {
  padding-top: 79px;
  padding-top: 4.9375rem;
}

@media screen and (min-width: 768px) {
  .sub-mainview__inner--contact {
    margin-top: 3.6875rem;
  }
}

.sub-mainview__title {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  color: #336633;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.3em;
}

.sub-mainview__title--corporate {
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
}

.sub-mainview__title--contact {
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #999999;
  border-bottom: 0.0625rem solid #999999;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.sub-mainview__sub-title {
  font-family: Times, serif;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #999999;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sub-mainview__sub-title--corporate {
  padding-top: 6px;
  padding-top: 0.375rem;
  border-top: 1px solid #999999;
  border-top: 0.0625rem solid #999999;
}

.sub-mainview__sub-title--contact {
  padding-top: 6px;
  padding-top: 0.375rem;
}

.top-attention {
  color: #999999;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 600;
}

.top-contact {
  color: #336633;
  position: relative;
  padding-left: 20px;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: -1px;
  letter-spacing: -0.0625rem;
  font-weight: 600;
}

.top-contact::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background-color: #336633;
  border-radius: 50%;
  left: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-contact::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  background-color: #fff;
  border-radius: 50%;
  left: 4px;
  top: 6.5px;
}

@media screen and (min-width: 768px) {
  .top-contact::after {
    left: 3px;
    top: 5.5px;
  }
}

@media screen and (min-width: 1024px) {
  .top-contact::after {
    left: 4px;
    top: 6.5px;
  }
}

.top-introduce-horizontal {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  color: #336633;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  position: relative;
  z-index: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.1em;
}

.top-introduce-horizontal::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  height: 0.0625rem;
  background: #336633;
  z-index: -1;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (min-width: 768px) {
  .top-introduce-horizontal::after {
    height: 0.125rem;
  }
}

.top-introduce-vertical {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  -ms-flex: 0 0 1.875rem;
      flex: 0 0 1.875rem;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  color: #336633;
  font-size: 24px;
  font-size: 1.5rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  z-index: 1;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 2px;
  letter-spacing: 0.125rem;
  white-space: nowrap;
}

.top-introduce-vertical::after {
  content: '';
  position: absolute;
  width: 1px;
  width: 0.0625rem;
  height: 0%;
  background: #336633;
  z-index: -1;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (min-width: 768px) {
  .top-introduce-vertical::after {
    width: 0.125rem;
  }
}

.top-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-weight: 600;
}

.top-title-bg-wrap {
  width: 100px;
  width: 6.25rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.top-title-bg {
  position: relative;
  padding-top: 300%;
  width: 100%;
}

.top-title__text {
  position: absolute;
  left: 50%;
  top: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 28px;
  font-size: 1.75rem;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  color: #336633;
  letter-spacing: 8px;
  letter-spacing: 0.5rem;
  white-space: nowrap;
}

.top-title__sub-text {
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: Times, serif;
  font-style: italic;
  color: #999999;
  text-align: center;
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .top-title__sub-text {
    position: absolute;
    right: -161px;
    top: 42%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 161px;
    height: 17.3px;
    display: inline-block;
    padding-bottom: 20px;
    border-bottom: 1px solid #999999;
  }
}

.access__inner {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}

@media screen and (min-width: 768px) {
  .access__inner {
    margin: 7.1875rem auto 0;
  }
}

.access__title {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #336633;
}

.access__sub-title {
  font-family: Times, serif;
  font-style: italic;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: #999999;
  margin-top: -5px;
  margin-top: -0.3125rem;
  text-align: center;
}

.access__map-wrap {
  width: 420px;
  width: 26.25rem;
  max-width: 100%;
  margin: 45px auto 0;
  margin: 2.8125rem auto 0;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .access__map-wrap {
    width: 58.83125rem;
    padding: 0;
  }
}

.access__map {
  position: relative;
  padding-top: 75%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .access__map {
    padding-top: 53.11803%;
  }
}

.access__map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

#map {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.confirm__pt {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.contact__bg {
  background-color: #EBF0E6;
  margin-top: 54px;
  margin-top: 3.375rem;
}

@media screen and (min-width: 768px) {
  .contact__bg {
    margin-top: 10rem;
  }
}

.contact__inner {
  max-width: 420px;
  max-width: 26.25rem;
  width: 100%;
  padding: 20px 20px 63px;
  padding: 1.25rem 1.25rem 3.9375rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 2.5625rem 1.25rem 6.1875rem;
    margin: 0 auto;
    max-width: 51.25rem;
  }
}

.contact__bg--white {
  margin-top: 60px;
  margin-top: 3.75rem;
  background-color: #fff;
  padding: 78px 10px 53px;
  padding: 4.875rem 0.625rem 3.3125rem;
}

@media screen and (min-width: 768px) {
  .contact__bg--white {
    margin-top: 3.625rem;
    padding: 4.6875rem 0.625rem 3rem;
  }
}

.contact__bg--white--bottom {
  margin-top: 44px;
  margin-top: 2.75rem;
  background-color: #fff;
  padding: 32px 10px 63px;
  padding: 2rem 0.625rem 3.9375rem;
}

@media screen and (min-width: 768px) {
  .contact__bg--white--bottom {
    margin-top: 2.375rem;
    padding: 2.25rem 0.625rem 4.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__items {
    width: 35rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .contact__items {
    width: 28.75rem;
  }
}

.contact__item:nth-child(2) {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.contact__item:nth-child(3) {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.contact__item:nth-child(4) {
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .contact__item:nth-child(4) {
    margin-top: 0.5rem;
  }
}

.contact__item:nth-child(5) {
  margin-top: 18px;
  margin-top: 1.125rem;
}

.contact__item:nth-child(6) {
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 0.0625rem solid #999999;
    padding-bottom: 0.9375rem;
  }
}

.contact__item2 {
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .contact__item2 {
    margin-top: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0.9375rem;
  }
}

.contact__item3 {
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .contact__item3 {
    margin-top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0.9375rem;
    border-bottom: 0.0625rem dotted #999999;
  }
}

.contact__item4 {
  margin-top: 8px;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .contact__item4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact__item1:nth-child(n + 2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .contact__item1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 0.0625rem dotted #999999;
    padding-bottom: 0.875rem;
  }
}

.contact__item1-1:nth-child(n + 2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .contact__item1-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact__label {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #4B4B4B;
}

@media screen and (min-width: 768px) {
  .contact__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.25rem;
            flex: 0 0 6.25rem;
    padding-top: 0.875rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10rem;
            flex: 0 0 10rem;
  }
}

.contact__address-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .contact__address-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.75rem;
            flex: 0 0 23.75rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .contact__address-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.75rem;
            flex: 0 0 18.75rem;
  }
}

.contact__label--address {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #4B4B4B;
}

@media screen and (min-width: 768px) {
  .contact__label--address {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
    padding-top: 10px;
  }
}

@media screen and (min-width: 1024px) {
  .contact__label--address {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
  }
}

.required {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.required::after {
  position: absolute;
  content: "\0274a";
  top: -4px;
  top: -0.25rem;
  display: block;
  right: -10px;
  right: -0.625rem;
  color: #FF0000;
  font-size: 8px;
  font-size: 0.5rem;
}

@media screen and (min-width: 768px) {
  .required::after {
    right: -0.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .required::after {
    right: -0.625rem;
  }
}

.contact__input {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .contact__input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.75rem;
            flex: 0 0 23.75rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact__input {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 18.75rem;
            flex: 0 0 18.75rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__input-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5rem;
            flex: 0 0 12.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact__input-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.5rem;
            flex: 0 0 7.5rem;
  }
}

.contact__input--address1 {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .contact__input--address1 {
    width: 10rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact__input--address1 {
    width: 8.75rem;
  }
}

.contact__input--address1-1 {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .contact__input--address1-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.25rem;
            flex: 0 0 16.25rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact__input--address1-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13.75rem;
            flex: 0 0 13.75rem;
  }
}

.contact__input--address2 {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .contact__input--address2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.25rem;
            flex: 0 0 16.25rem;
    max-width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .contact__input--address2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13.75rem;
            flex: 0 0 13.75rem;
  }
}

.contact__address-btn {
  margin-top: 7px;
  margin-top: 0.4375rem;
  background-color: #F2F2F2;
  border: 1px solid #999999;
  border: 0.0625rem solid #999999;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  cursor: pointer;
  width: 70px;
  width: 4.375rem;
  height: 35px;
  height: 2.1875rem;
  max-width: 100%;
  font-weight: 600;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .contact__address-btn {
    width: 5.625rem;
    margin-left: 0.4375rem;
  }
}

@media screen and (min-width: 1024px) {
  .contact__address-btn {
    margin-left: 0.625rem;
    width: 4.375rem;
  }
}

[type="text"] {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100%;
  padding: 7px 7px 8px 7px;
  padding: 0.4375rem 0.4375rem 0.5rem 0.4375rem;
  border: 1px solid #999999;
  border: 0.0625rem solid #999999;
}

.zipcode {
  max-width: 140px;
  max-width: 8.75rem;
}

select {
  width: 100%;
  max-width: 140px;
  max-width: 8.75rem;
  padding: 6px 6px 6px 6px;
  padding: 0.375rem 0.375rem 0.375rem 0.375rem;
  border: 1px solid #999999;
  border: 0.0625rem solid #999999;
}

.contact__select-wrap {
  width: 100%;
  max-width: 140px;
  max-width: 8.75rem;
  position: relative;
}

.contact__select-wrap::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  border-style: solid;
  border-width: 6.1px 3.5px 0 3.5px;
  border-color: #4B4B4B transparent transparent transparent;
}

[type="email"] {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100%;
  padding: 7px 7px 8px 7px;
  padding: 0.4375rem 0.4375rem 0.5rem 0.4375rem;
  border: 1px solid #999999;
  border: 0.0625rem solid #999999;
}

[type="tel"] {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100%;
  padding: 7px 7px 8px 7px;
  padding: 0.4375rem 0.4375rem 0.5rem 0.4375rem;
  border: 1px solid #999999;
  border: 0.0625rem solid #999999;
}

.contact__label--textarea {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #4B4B4B;
  margin: 0 auto;
  text-align: center;
}

.contact__input--textarea {
  margin: 29px auto 0;
  margin: 1.8125rem auto 0;
  max-width: 100%;
  width: 300px;
  width: 18.75rem;
  height: 250px;
  height: 15.625rem;
}

@media screen and (min-width: 768px) {
  .contact__input--textarea {
    width: 28.75rem;
    margin: 1.5625rem auto 0;
  }
}

textarea {
  border: 0.25px solid #999999;
  max-width: 100%;
  width: 300px;
  width: 18.75rem;
  height: 250px;
  height: 15.625rem;
}

@media screen and (min-width: 768px) {
  textarea {
    width: 28.75rem;
  }
}

.contact__input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__attention {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #4B4B4B;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .contact__attention {
    width: 35rem;
    max-width: 100%;
    margin: 1.25rem auto 0;
  }
}

@media screen and (min-width: 1024px) {
  .contact__attention {
    width: 28.75rem;
  }
}

.contact__btn {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4B4B4B;
  background-color: #F2F2F2;
  width: 140px;
  width: 8.75rem;
  height: 35px;
  height: 2.1875rem;
  margin: 55px auto 0;
  margin: 3.4375rem auto 0;
  display: block;
  border: 1px solid #999999;
  border: 0.0625rem solid #999999;
  letter-spacing: 5px;
  letter-spacing: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .contact__btn {
    margin: 3.0625rem auto 0;
  }
}

label {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
}

.event__inner {
  margin-top: 282px;
  margin-top: 17.625rem;
}

@media screen and (min-width: 768px) {
  .event__inner {
    margin-top: 20.75rem;
  }
}

.event__img--FullWidth {
  margin-top: 90px;
  margin-top: 5.625rem;
}

@media screen and (min-width: 768px) {
  .event__img--FullWidth {
    margin-top: 15.25rem;
  }
}

.event__img--FullWidth img {
  display: block;
  width: 100%;
}

.event__img--FullWidth-sp {
  margin-top: 135px;
  margin-top: 8.4375rem;
}

.event__img--FullWidth-sp img {
  display: block;
  width: 100%;
}

.event__wrap {
  margin-top: 80px;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .event__wrap {
    margin-top: 6.4375rem;
    margin-left: 2.75rem;
  }
}

.event__introduce {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  -ms-flex: 0 0 1.875rem;
      flex: 0 0 1.875rem;
}

.event__introduce::after {
  right: -7px;
  right: -0.4375rem;
  top: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@media screen and (min-width: 768px) {
  .event__introduce::after {
    right: -0.75rem;
  }
}

.event__introduce.is-active::after {
  height: 95%;
}

.event__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
  -ms-flex: 0 1 13.75rem;
      flex: 0 1 13.75rem;
  margin-left: 40px;
}

@media screen and (min-width: 768px) {
  .event__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 23.625rem;
            flex: 0 1 23.625rem;
    margin-left: 13.75rem;
  }
}

.event__attention {
  margin-top: 22px;
  margin-top: 1.375rem;
}

@media screen and (min-width: 768px) {
  .event__attention {
    margin-top: 22px;
  }
}

.event__contact {
  margin-top: 28px;
  margin-top: 1.75rem;
}

@media screen and (min-width: 768px) {
  .event__contact {
    margin-top: 28px;
  }
}

.funeral__inner {
  margin-top: 218px;
  margin-top: 13.625rem;
}

@media screen and (min-width: 768px) {
  .funeral__inner {
    margin-top: 20.625rem;
  }
}

.funeral__img--FullWidth {
  margin-top: 117px;
  margin-top: 7.3125rem;
}

@media screen and (min-width: 768px) {
  .funeral__img--FullWidth {
    margin-top: 10.3125rem;
  }
}

.funeral__img--FullWidth img {
  display: block;
  width: 100%;
}

.funeral__wrap {
  margin-top: 82px;
  margin-top: 5.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .funeral__wrap {
    margin-top: 5.125rem;
    margin-right: 5rem;
  }
}

@media screen and (min-width: 1024px) {
  .funeral__wrap {
    margin-right: 7.25rem;
  }
}

.funeral__introduce {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  -ms-flex: 0 0 1.875rem;
      flex: 0 0 1.875rem;
  margin-left: 41px;
  margin-left: 2.5625rem;
}

.funeral__introduce::after {
  left: -7px;
  top: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.funeral__introduce.is-active::after {
  height: 95%;
}

@media screen and (min-width: 768px) {
  .funeral__introduce {
    margin-left: 140px;
  }
}

.funeral__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
  -ms-flex: 0 1 13.75rem;
      flex: 0 1 13.75rem;
}

@media screen and (min-width: 768px) {
  .funeral__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 18.75rem;
            flex: 0 1 18.75rem;
    margin-top: 56px;
  }
}

@media screen and (min-width: 768px) {
  .funeral__text {
    width: 18.75rem;
    max-width: 100%;
  }
}

.funeral__attention {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

@media screen and (min-width: 768px) {
  .funeral__attention {
    width: 18.75rem;
    max-width: 100%;
  }
}

.funeral__contact {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (min-width: 768px) {
  .funeral__contact {
    margin-top: 2.125rem;
  }
}

.funeral__img-wrap {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 68px auto 0;
  margin: 4.25rem auto 0;
}

@media screen and (min-width: 768px) {
  .funeral__img-wrap {
    width: 38.75rem;
    margin: 5.5rem auto 0;
  }
}

.funeral__img {
  position: relative;
  padding-top: 100%;
  width: 100%;
}

.greeting__inner {
  max-width: 100%;
  width: 322px;
  width: 20.125rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin: 77px auto 0;
  margin: 4.8125rem auto 0;
}

@media screen and (min-width: 768px) {
  .greeting__inner {
    width: 54.0625rem;
    padding: 0 1.875rem;
    margin: 120px auto 0;
  }
}

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

@media screen and (min-width: 768px) {
  .greeting__wrap {
    margin-left: 66px;
  }
}

.greeting__introduce {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  -ms-flex: 0 0 1.875rem;
      flex: 0 0 1.875rem;
}

.greeting__introduce::after {
  content: '';
  position: absolute;
  right: -7px;
  right: -0.4375rem;
  top: 0;
  width: 1px;
  width: 0.0625rem;
  height: 0%;
  background: #336633;
  z-index: -1;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.greeting__introduce.is-active::after {
  height: 95%;
}

.greeting__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
  -ms-flex: 0 1 13.75rem;
      flex: 0 1 13.75rem;
  margin-left: 33px;
  margin-left: 2.0625rem;
}

@media screen and (min-width: 768px) {
  .greeting__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 38.75rem;
            flex: 0 1 38.75rem;
    margin-left: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting__text-wrap {
    margin-left: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .greeting__text {
    width: 18.75rem;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .greeting__img-warp--pc {
    width: 38.75rem;
    max-width: 100%;
    margin: 2.3125rem auto 0;
  }
}

.greeting__img-warp--sp {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 68px auto 0;
  margin: 4.25rem auto 0;
}

.greeting__img {
  position: relative;
  padding-top: 70%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .greeting__img {
    padding-top: 58.87097%;
  }
}

.infomation__bg {
  background-color: #EBF0E6;
  margin-top: 68px;
  margin-top: 4.25rem;
}

@media screen and (min-width: 768px) {
  .infomation__bg {
    margin-top: 10.625rem;
  }
}

.infomation__inner {
  max-width: 420px;
  max-width: 26.25rem;
  width: 100%;
  padding: 34px 20px 58px;
  padding: 2.125rem 1.25rem 3.625rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .infomation__inner {
    padding: 2.5625rem 1.25rem 8.125rem;
    margin: 0 auto;
    max-width: 61.25rem;
  }
}

.infomation__title {
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.l-infomation__title {
  margin-top: 28px;
  margin-top: 1.75rem;
}

@media screen and (min-width: 768px) {
  .l-infomation__title {
    margin-top: 8.4375rem;
  }
}

.infomation__sub-title {
  font-family: Times, serif;
  font-style: italic;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: #999999;
  margin-top: -5px;
  margin-top: -0.3125rem;
  text-align: center;
}

.infomation__bg--white {
  margin-top: 25px;
  margin-top: 1.5625rem;
  background-color: #fff;
  padding: 38px 10px 32px;
  padding: 2.375rem 0.625rem 2rem;
}

@media screen and (min-width: 768px) {
  .infomation__bg--white {
    margin-top: 3.125rem;
    padding: 3.6875rem 0.625rem 6.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .infomation__items {
    width: 38.75rem;
    max-width: 100%;
    margin: 0 auto;
  }
}

.infomation__item {
  color: #4B4B4B;
  font-size: 15px;
  font-size: 0.9375rem;
  border-bottom: dotted 1px #4B4B4B;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .infomation__item {
    padding-bottom: 1.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.infomation__item:nth-child(n + 2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .infomation__item:nth-child(n + 2) {
    margin-top: 1.25rem;
  }
}

.infomation__item:last-child {
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .infomation__meta {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.0625rem;
            flex: 0 0 9.0625rem;
  }
}

.infomation__text {
  line-height: 28px;
  line-height: 1.75rem;
}

@media screen and (min-width: 768px) {
  .infomation__text span {
    display: inline;
  }
}

.mailto__text {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
}

.mainview__inner {
  position: relative;
}

.mainview__menu-wrap {
  position: absolute;
  left: 20px;
  left: 1.25rem;
  top: 18px;
  top: 1.125rem;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .mainview__menu-wrap {
    left: 10%;
    top: 10%;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

@media screen and (min-width: 1240px) {
  .mainview__menu-wrap {
    left: 13.5%;
    top: 12.5%;
  }
}

.mainview__logo-wrap {
  width: 60px;
  width: 3.75rem;
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .mainview__logo-wrap {
    width: 6.125rem;
  }
}

.mainview__logo {
  position: relative;
  padding-top: 151.53061%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mainview__menu {
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 1240px) {
  .mainview__menu {
    margin-top: 9.25rem;
  }
}

@media screen and (min-width: 768px) {
  .mainview__item:nth-child(n + 2) {
    margin-top: 0.625rem;
  }
  .mainview__item a {
    color: #336633;
    display: block;
    line-height: 1.5;
    font-size: 0.9375rem;
    letter-spacing: 0.4em;
    font-weight: 600;
  }
  .mainview__item a span {
    font-family: Times, serif;
    font-style: italic;
    color: #999999;
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    font-weight: 600;
  }
  .mainview__item a br {
    display: block;
    content: "";
    margin: -0.3125rem;
  }
}

@media screen and (min-width: 1024px) {
  .mainview__item:nth-child(n + 2) {
    margin-top: 1.0625rem;
  }
}

.mainview__img-wrap {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .mainview__img-wrap {
    width: 80rem;
  }
}

.mainview__img {
  position: relative;
  padding-top: 166.66667%;
  width: 100%;
  opacity: 80%;
}

@media screen and (min-width: 768px) {
  .mainview__img {
    padding-top: 62.5%;
    opacity: 1;
  }
}

.plants__inner {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  padding: 0 30px;
  padding: 0 1.875rem;
  margin: 160px auto 0;
}

@media screen and (min-width: 768px) {
  .plants__inner {
    width: 62.5rem;
    padding: 0 1.875rem;
    margin: 21.125rem auto 0;
  }
}

.plants__img-wrap1 {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 215px auto 0;
  margin: 13.4375rem auto 0;
}

@media screen and (min-width: 768px) {
  .plants__img-wrap1 {
    width: 58.75rem;
    margin: 350px auto 0;
  }
}

.plants__img1 {
  position: relative;
  padding-top: 66.66667%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .plants__img1 {
    padding-top: 58.51064%;
  }
}

@media screen and (min-width: 768px) {
  .plants__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.plants__text-wrap {
  margin-top: 71px;
  margin-top: 4.4375rem;
}

@media screen and (min-width: 768px) {
  .plants__text-wrap {
    width: 18.75rem;
    max-width: 100%;
    margin: 5.625rem auto 0;
  }
}

.plants__introduce::after {
  -webkit-transition: all 1s;
  transition: all 1s;
  left: 0;
  bottom: -10px;
  bottom: -0.625rem;
}

.plants__introduce.is-active::after {
  width: 95%;
}

.plants__text {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.plants__text span {
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .plants__text {
    margin-top: 65px;
  }
}

.plants__contact {
  margin-top: 26px;
  margin-top: 1.625rem;
}

.plants__contact2 {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #336633;
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  display: block;
  letter-spacing: -1px;
  letter-spacing: -0.0625rem;
  font-weight: 600;
}

.plants__contact2 span {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  font-weight: 600;
}

.plants__contact2::before {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background-color: #336633;
  border-radius: 50%;
  left: 0;
  top: 2px;
}

.plants__contact2::after {
  position: absolute;
  content: "";
  width: 7px;
  width: 0.4375rem;
  height: 7px;
  height: 0.4375rem;
  background-color: #fff;
  border-radius: 50%;
  left: 4px;
  top: 6.5px;
}

@media screen and (min-width: 768px) {
  .plants__contact2::after {
    left: 3px;
    top: 5.5px;
  }
}

@media screen and (min-width: 1024px) {
  .plants__contact2::after {
    left: 4px;
    top: 6.5px;
  }
}

.plants__img-wrap2 {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 100px auto 0;
}

@media screen and (min-width: 768px) {
  .plants__img-wrap2 {
    margin: 4.5rem 0 0 auto;
  }
}

.plants__img2 {
  position: relative;
  padding-top: 156.66667%;
  width: 100%;
}

.wedding__inner {
  width: 360px;
  width: 22.5rem;
  max-width: 100%;
  padding: 0 30px;
  padding: 0 1.875rem;
  margin: 226px auto 0;
  margin: 14.125rem auto 0;
}

@media screen and (min-width: 768px) {
  .wedding__inner {
    width: 52.5rem;
    padding: 0 1.875rem;
    margin: 344px auto 0;
  }
}

.wedding__wrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  .wedding__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 201px;
  }
}

.wedding__text-wrap {
  margin-top: 73px;
  margin-top: 4.5625rem;
}

@media screen and (min-width: 768px) {
  .wedding__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 18.75rem;
            flex: 0 1 18.75rem;
    margin-top: 12.5rem;
    margin-left: 6.25rem;
  }
}

.wedding__introduce::after {
  -webkit-transition: all 1s;
  transition: all 1s;
  left: 0;
  bottom: -5px;
  bottom: -0.3125rem;
}

.wedding__introduce.is-active::after {
  width: 95%;
}

.wedding__text {
  margin-top: 65px;
  margin-top: 4.0625rem;
}

.wedding__attention {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .wedding__attention {
    margin-top: 1.5rem;
  }
}

.wedding__contact {
  margin-top: 42px;
  margin-top: 2.625rem;
}

@media screen and (min-width: 768px) {
  .wedding__contact {
    margin-top: 2.125rem;
  }
}

.wedding__img-wrap {
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin: 136px auto 0;
  margin: 8.5rem auto 0;
}

@media screen and (min-width: 768px) {
  .wedding__img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23.6875rem;
            flex: 0 0 23.6875rem;
    margin: 136px auto 0;
  }
}

.wedding__img {
  position: relative;
  padding-top: 173.33333%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .wedding__img {
    padding-top: 164.37995%;
  }
}

.test {
  padding: 10px;
  margin: 0 auto;
  color: #f00;
  background-color: #fff;
}

.g-recaptcha {
  margin-right:auto;
  margin-left:auto;
  text-align: center;
  width:300px;
  margin-top:20px;
}

body {
  font-size: 14px;
  font-size: 0.875rem;
}
