@charset "UTF-8";
/*    トップページ、送信完了ページ用css    */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: Arial, Verdana;
  color: #0a0a0a;
  margin: 0;
  background-color: #F6F6F6;
}

p {
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #0a0a0a;
}

a:hover {
  text-decoration: none;
  color: #0a0a0a;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

/*--  共通  -----------------------------------------------------*/
.wrapper {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 480px) {
  .wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 769px) {
  .wrapper {
    padding-left: 8%;
    padding-right: 8%;
  }
}

main {
  background-color: white;
}

@media (min-width: 769px) {
  main {
    min-width: 1000px;
    max-width: 1600px;
    margin: 0 auto;
  }
}

.h2-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  padding: 64px 0 16px;
}

@media (min-width: 769px) {
  .h2-title {
    font-size: 52px;
    padding-top: 100px;
  }
}

.h2-subtitle {
  text-align: center;
  margin-bottom: 64px;
}

.news, .value, .store, .contact {
  border-radius: 50% 50% 0 0 / 32px 32px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#FFFFFF));
  background: linear-gradient(#F6F6F6, #FFFFFF);
}

@media (min-width: 769px) {
  .news, .value, .store, .contact {
    border-radius: 50% 50% 0 0 / 80px 80px 0 0;
  }
}

/*--  main  -----------------------------------------------------*/
.about {
  position: relative;
  padding-top: 96px;
}

.about .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}

.about .text {
  color: #5D5E5D;
  line-height: 2.0;
  margin-bottom: 48px;
}

.about .text br {
  display: none;
}

.about img {
  display: none;
}

@media (min-width: 769px) {
  .about {
    margin-bottom: 120px;
  }
  .about .text {
    text-align: center;
  }
  .about .text br {
    display: block;
  }
  .about img {
    width: 16%;
    display: block;
    position: absolute;
  }
  .about img.img-left {
    top: 48px;
    left: 64px;
  }
  .about img.img-right {
    bottom: -96px;
    right: 64px;
  }
}

.news .news-items li {
  margin-bottom: 48px;
}

.news .news-items li img {
  margin-bottom: 16px;
}

.news .news-items li .tag {
  font-size: 14px;
  color: tomato;
  margin-bottom: 24px;
}

.news .news-items li .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}

.news .news-items li .text {
  color: #5D5E5D;
  margin-bottom: 8px;
}

.news .news-items li .day {
  font-size: 14px;
}

@media (min-width: 769px) {
  .news .news-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news .news-items li {
    width: 30%;
    margin-bottom: 64px;
  }
}

.value .value-items li {
  margin-bottom: 64px;
}

.value .value-items li .subtitle {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
  margin-bottom: 32px;
}

.value .value-items li .subtitle::after {
  width: 0%;
  height: 1px;
  content: '';
  background-color: tomato;
  top: 0;
  bottom: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  margin: auto 0;
}

.value .value-items li .subtitle.active-x::after {
  width: 100%;
}

.value .value-items li .subtitle p {
  font-weight: bold;
  margin: 0 16px;
}

.value .value-items li .img-sp {
  margin-bottom: 16px;
}

.value .value-items li .title {
  margin-bottom: 16px;
}

.value .value-items li .title span {
  font-size: 20px;
  font-weight: bold;
}

.value .value-items li .text {
  color: #5D5E5D;
}

.value .value-items li .img-pc {
  display: none;
}

@media (min-width: 769px) {
  .value .value-items li {
    position: relative;
    margin-bottom: 120px;
  }
  .value .value-items li .content {
    position: absolute;
    width: 55%;
    top: 80px;
    left: 0;
  }
  .value .value-items li .content.left {
    width: 36%;
    left: auto;
    right: 0;
  }
  .value .value-items li .content .subtitle.left::after {
    width: 56%;
    position: absolute;
    left: -60%;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .value .value-items li .content .subtitle.left.active-x::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  .value .value-items li .content .img-sp {
    display: none;
  }
  .value .value-items li .content .title {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .value .value-items li .content .title span {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
  }
  .value .value-items li .img-pc {
    display: block;
    width: 60%;
    margin: 0 -9.53% 0 auto;
  }
  .value .value-items li .img-pc.left {
    margin: 0 0 0 -9.53%;
  }
}

.store .store-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.store .store-items li {
  width: 45%;
  text-align: center;
  margin-bottom: 48px;
}

.store .store-items li .title {
  font-weight: bold;
  margin: 16px 0 8px;
}

.store .store-items li .text {
  color: #5D5E5D;
  font-size: 14px;
}

@media (min-width: 769px) {
  .store .store-items {
    margin-bottom: 64px;
  }
  .store .store-items li {
    width: 21%;
  }
}

.contact .contact-text {
  color: #5D5E5D;
  margin-bottom: 56px;
}

.contact .title {
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}

.contact .title::after {
  width: 64px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #0a0a0a;
  content: '';
  position: absolute;
  bottom: -16px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.contact .contact-form dt {
  margin-bottom: 8px;
}

.contact .contact-form dt .required {
  display: inline-block;
  width: 32px;
  height: 16px;
  border-radius: 3px;
  font-size: 12px;
  color: white;
  background-color: palevioletred;
  text-align: center;
  line-height: 16px;
  margin-right: 8px;
}

.contact .contact-form dd {
  margin: 0 0 48px 0;
}

.contact .contact-form dd input[type="text"] {
  width: 49%;
  height: 40px;
  font-size: 16px;
  padding: 0 8px;
  margin: 0;
}

.contact .contact-form dd select[name="year"], .contact .contact-form dd select[name="month"], .contact .contact-form dd select[name="day"] {
  width: 32%;
  height: 40px;
  font-size: 16px;
  padding: 0 8px;
}

.contact .contact-form dd .gender {
  height: 60px;
  margin-right: 8px;
}

.contact .contact-form dd select[name="state"], .contact .contact-form dd input[type="tel"], .contact .contact-form dd input[type="email"] {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0 8px;
}

.contact .contact-form dd textarea {
  width: 100%;
  font-size: 16px;
  padding: 8px;
}

.contact .contact-form dd .error_blank, .contact .contact-form dd .error_format {
  font-size: 14px;
  color: tomato;
}

.contact .contact-form input[type="button"] {
  display: block;
  width: 160px;
  height: 40px;
  font-size: 16px;
  color: white;
  background-color: palevioletred;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto 64px;
  text-align: center;
}

.contact .contact-form input[type="button"]:hover {
  opacity: 0.7;
}

@media (min-width: 769px) {
  .contact .contact-text {
    text-align: center;
  }
  .contact .contact-form {
    max-width: 1000px;
    margin: 0 auto;
  }
  .contact .contact-form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact .contact-form dl dt {
    width: 32%;
  }
  .contact .contact-form dl dd {
    width: 68%;
  }
}

.under {
  height: 320px;
  background-image: url(img/index-emotion-bg.jpg);
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.under .content {
  width: 100%;
  text-align: center;
  color: white;
}

.under .content .text {
  font-style: italic;
  font-weight: bold;
  font-size: calc(100vw / 7.3 - 3.5px);
  line-height: 1.0;
}

.under .content .subtext {
  font-size: 12px;
  margin-bottom: 16px;
}

.under .content .items li {
  margin-bottom: 8px;
}

.under .content .items li:last-child {
  margin-bottom: 0;
}

.under .content .items li a {
  color: white;
  font-size: 14px;
}

@media (min-width: 769px) {
  .under {
    height: 600px;
    background-attachment: fixed;
  }
  .under .content .subtext {
    margin-bottom: 64px;
  }
  .under .content .items {
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
  .under .content .items li a {
    font-size: 16px;
  }
  .under .content .items li a:hover {
    text-decoration: underline;
  }
}

@media (min-width: 1600px) {
  .under .content .text {
    font-size: 216px;
  }
}

.under-menu {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
}

.under-menu .items {
  height: 60px;
  background-color: #C1272D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.under-menu .items li {
  width: 50%;
}

.under-menu .items li.bg {
  background-color: #846B49;
}

.under-menu .items li a {
  display: block;
  color: white;
  text-align: center;
  padding-top: 6px;
}

.under-menu .items li a .title {
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 769px) {
  .under-menu .items li {
    width: 252px;
  }
  .under-menu .items li:hover {
    opacity: 0.7;
  }
}

.top-btn {
  width: 48px;
  position: fixed;
  right: 24px;
  bottom: 80px;
  display: none;
}

@media (min-width: 769px) {
  .top-btn {
    width: 64px;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .top-btn:hover {
    opacity: 0.7;
  }
}

.scroll-y {
  opacity: 0;
  -webkit-transform: translate(0, 32px);
          transform: translate(0, 32px);
}

.scroll-y.active-y {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.7s;
  transition: 0.7s;
}

/*--  送信完了ページ  -------------------------------------------*/
.thanks {
  height: 100vh;
  text-align: center;
  padding-top: 160px;
}

.thanks .title {
  position: relative;
  margin-bottom: 80px;
}

.thanks .title::after {
  width: 100%;
  max-width: 600px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #0a0a0a;
  content: '';
  position: absolute;
  bottom: -24px;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.thanks .text {
  margin-bottom: 100px;
}

.thanks .btn a {
  display: block;
  width: 120px;
  height: 40px;
  color: white;
  background-color: palevioletred;
  border-radius: 4px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
}

.thanks .btn a:hover {
  opacity: 0.7;
}
/*# sourceMappingURL=style.css.map */