@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@700&display=swap");
/*----------------------------------------------------------------------------
	section
----------------------------------------------------------------------------*/
.section_title {
  display: grid;
  grid-template-rows: auto auto;
  place-content: center;
  place-items: center;
}
.section_title h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 400;
  color: #987034;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 9.067vw;
    margin-bottom: 1.333vw;
  }
}
.section_title span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .section_title span {
    font-size: 4vw;
  }
}
.section_caption {
  text-align: center;
}
.section_caption span {
  display: inline-block;
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .section_caption span {
    font-size: 5.333vw;
  }
}

/*----------------------------------------------------------------------------
	common
----------------------------------------------------------------------------*/
.common_date span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .common_date span {
    font-size: 3.733vw;
  }
}
.common_heading span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .common_heading span {
    font-size: 4.8vw;
    line-height: 1.5556;
  }
}
.common_link {
  width: 324px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .common_link {
    width: 86.4vw;
  }
}
.common_link a {
  position: relative;
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  align-items: center;
  height: 57px;
  border-radius: 34px;
}
@media screen and (max-width: 767px) {
  .common_link a {
    height: 15.2vw;
    border-radius: 9.067vw;
  }
}
.common_link a span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  width: 100%;
  text-align: center;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .common_link a span {
    font-size: 4.267vw;
  }
}
.common_link a span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .common_link a span::before {
    right: 9.333vw;
    width: 4.267vw;
    height: 4.267vw;
  }
}
.common_link a span::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  right: 39px;
  width: 8px;
  height: 6px;
  background-image: url(../images/common/arrow_short.svg);
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .common_link a span::after {
    right: 10.4vw;
    width: 2.133vw;
    height: 1.6vw;
  }
}

/*----------------------------------------------------------------------------
	hero
----------------------------------------------------------------------------*/
.hero_slider{
  position: relative;
}

.hero_slider .prev-arrow,
.hero_slider .next-arrow {
  content: '';
  display: block;
  width: 8.5%;
  background: rgba(0, 0, 0, 0);
  transition: all .3s ease;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .hero_slider .prev-arrow,
  .hero_slider .next-arrow {
    width: 0;
  }
}

.hero_slider .prev-arrow {
  transform: rotate(180deg);
  left: 0;
  right: auto;
}

.hero_slider .prev-arrow::before,
.hero_slider .next-arrow::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(152, 152, 152, 0.8);
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -68%);
}

@media screen and (max-width: 767px) {
  .hero_slider .prev-arrow::before,
  .hero_slider .next-arrow::before {
    width: 10vw;
    height: 10vw;
  }
  .hero_slider .prev-arrow::before {
    transform: translate(-50%, 145%);
  }
  .hero_slider .next-arrow::before {
    transform: translate(-50%, -243%);
  }
}

.hero_slider .prev-arrow::after,
.hero_slider .next-arrow::after{
  position:absolute;
  content: "";
  width:20px;
  height:20px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(-20%, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .hero_slider .prev-arrow::after,
  .hero_slider .next-arrow::after{
    width:2.5vw;
    height:2.5vw;
  }
  .hero_slider .prev-arrow::after {
    transform: translate(-11.5vw, 19.2vw) rotate(45deg);
  }
  .hero_slider .next-arrow::after {
    transform: translate(-11.5vw, -19.2vw) rotate(45deg);
  }
}


.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}
.slick-slide:not(.slick-current):hover{
  opacity: 1 !important;
}
.slick-slide:not(.slick-current) a {
  pointer-events: none;
  cursor: default;
}
.hero_slider .slick-slide {
  background-image: url(../images/index/hero_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .hero_slider .slick-slide {
    background-image: url(../images/index/sp/hero_bg.jpg);
  }
}
.hero_slider .slick-slide {
  transition: opacity 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  .hero_slider .slick-slide:hover {
    opacity: 0.65;
  }
}
.hero_contents {
  padding-top: 95px;
/*  padding-bottom: 83px;*/
}
@media screen and (max-width: 767px) {
  .hero_contents {
    padding-top: 11.2vw;
/*    padding-bottom: 16vw;*/
  }
}
.hero_logo {
  text-align: center;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .hero_logo {
    margin-bottom: 8.533vw;
  }
}
.hero_logo img {
  width: 292px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero_logo img {
    width: 56.533vw;
  }
}
.hero_copy {
  text-align: center;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .hero_copy {
    margin-bottom: 8vw;
  }
}
.hero_copy img {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero_copy img {
    width: 85.333vw;
  }
}
.hero_copy p{
  font-size: 54px;
  margin-top: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero_copy p{
    font-size: 8.6vw;
    margin-top: 4vw;
  }
}

.hero_text {
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .hero_text {
    padding-bottom: 14.667vw;
  }
}
.hero_text p {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 2.05;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .hero_text p {
    font-size: 3.733vw;
    line-height: 1.5714;
    font-feature-settings: normal;
  }
}
.hero_caption {
  text-align: center;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  .hero_caption {
    position: relative;
    margin-bottom: 9.333vw;
  }
}
@media screen and (max-width: 767px) {
  .hero_caption::before {
    content: "";
    position: absolute;
    bottom: -1.333vw;
    left: 13.333vw;
    width: 1px;
    height: 12vw;
    background-color: #fff;
    transform: rotate(-30deg);
  }
}
@media screen and (max-width: 767px) {
  .hero_caption::after {
    content: "";
    position: absolute;
    bottom: -1.333vw;
    right: 13.333vw;
    width: 1px;
    height: 12vw;
    background-color: #fff;
    transform: rotate(30deg);
  }
}
.hero_caption span {
  display: inline-block;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .hero_caption span {
    font-size: 5.867vw;
    line-height: 1.5455;
  }
}
.hero_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 23px;
       column-gap: 23px;
  counter-reset: hero;
}
@media screen and (max-width: 767px) {
  .hero_box {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 8.8vw;
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
.hero_item {
  counter-increment: hero;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #987034;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero_item {
    padding-top: 6.4vw;
    padding-bottom: 6.4vw;
  }
}
.hero_item::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.47;
  mix-blend-mode: multiply;
}
.hero_item::after {
  display: grid;
  place-content: center;
  place-items: center;
  content: counter(hero);
  position: absolute;
  z-index: 2;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  top: -18px;
  left: 50%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding-top: 5px;
  background-color: #987034;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .hero_item::after {
    top: -4.8vw;
    width: 9.6vw;
    height: 9.6vw;
    font-size: 6.933vw;
    padding-top: 1.333vw;
  }
}
.hero_item:first-child::after {
  padding-right: 2px;
}
@media screen and (max-width: 767px) {
  .hero_item:first-child::after {
    padding-top: 0.533vw;
  }
}
.hero_item span {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.7222;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .hero_item span {
    font-size: 4.8vw;
    line-height: 1.7222;
  }
}

/*----------------------------------------------------------------------------
	carousel
----------------------------------------------------------------------------*/
.carousel {
  padding-top: 17px;
}
.carousel .slider-item {
  width: 16.6666666667%;
}
.carousel .slider-item img {
  width: 100%;
}

.slick-slide {
  margin-right: 1px;
}

/*----------------------------------------------------------------------------
	campaign
----------------------------------------------------------------------------*/
.campaign .inner {
  padding-top: 108px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .campaign .inner {
    padding-top: 15.467vw;
    padding-bottom: 5.333vw;
  }
}
.campaign_title span {
  color: #000;
}

/*----------------------------------------------------------------------------
	benefit
----------------------------------------------------------------------------*/
.benefit {
  background-image: url(../images/index/benefit_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
}
.benefit.benefit-2 {
  background-image: url(../images/index/benefit_bg-2.jpg);
}
.benefit.benefit-3 {
  background-image: url(../images/index/benefit_bg-3.png);
}
.benefit.benefit-4 {
  background-image: url(../images/index/benefit_bg-4.png);
}
.benefit.benefit-5 {
  background-image: url(../images/index/benefit_bg-5.png);
}
.benefit.benefit-6 {
  background-image: url(../images/index/benefit_bg-6.jpg);
}
.benefit.benefit-7 {
  background-image: url(../images/index/benefit_bg-7.jpg);
}
.benefit.benefit-8 {
  background-image: url(../images/index/benefit_bg-8.jpg);
}
.benefit.benefit-9 {
  background-image: url(../images/index/benefit_bg-9.jpg);
}
@media screen and (max-width: 767px) {
  .benefit {
    background-image: url(../images/index/sp/benefit_bg.jpg);
  }
  .benefit.benefit-2 {
    background-image: url(../images/index/sp/benefit_bg-2.jpg);
  }
  .benefit.benefit-4 {
    background-image: url(../images/index/sp/benefit_bg-4_sp.png);
  }
  .benefit.benefit-5 {
    background-image: url(../images/index/sp/benefit_bg-5_sp.png);
  }
  .benefit.benefit-6 {
    background-image: url(../images/index/sp/benefit_bg-6_sp.jpg);
  }
  .benefit.benefit-7 {
    background-image: url(../images/index/sp/benefit_bg-7_sp.jpg);
  }
  .benefit.benefit-8 {
    background-image: url(../images/index/sp/benefit_bg-8_sp.jpg);
  }
  .benefit.benefit-9 {
    background-image: url(../images/index/sp/benefit_bg-9_sp.jpg);
  }

}
.benefit .inner {
/*  padding-top: 108px;*/
  padding-top: 30px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .benefit .inner {
    padding-top: 4vw;
    padding-right: 0vw;
    padding-bottom: 0vw;
    padding-left: 3vw;
  }
}
.benefit.benefit-3 .inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-3 .inner {
    padding-top: 9.333vw;
    padding-right: 4vw;
    padding-bottom: 4vw;
    padding-left: 4vw;
  }
}
.benefit.benefit-4 .inner {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-4 .inner {
    padding-top: 18vw;
    padding-right: 6vw;
    padding-bottom: 20vw;
    padding-left: 6vw;
  }
}
.benefit.benefit-5 .inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-5 .inner {
    padding-top: 5vw;
    padding-right: 6vw;
    padding-bottom: 4vw;
    padding-left: 6vw;
  }
}
.benefit.benefit-7 .inner {
  padding-top: 30px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-7 .inner {
    padding-top: 6vw;
    padding-right: 0vw;
    padding-bottom: 0vw;
    padding-left: 0;
  }
}
.benefit.benefit-8 .inner {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-8 .inner {
    padding-top: 0;
    padding-right: 4vw;
    padding-bottom: 0vw;
    padding-left: 4vw;
  }
}
.benefit.benefit-8 .inner .benefit_content {
  position: relative;
  left: -110px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-8 .inner .benefit_content {
    position: relative;
    left: 0;
  }
}
.benefit.benefit-9 .inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-9 .inner {
    padding-top: 5vw;
    padding-right: 4vw;
    padding-bottom: 5vw;
    padding-left: 4vw;
  }
}
.benefit.benefit-9 .inner .benefit_content {
  position: relative;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-9 .inner .benefit_content {
    position: relative;
    left: 0;
  }
}
.benefit .benefit_link{
  width: 550px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .benefit .benefit_link{
    width: 100%;
    margin: 5vw auto 0;
/*    padding-right: 3vw;*/
  }
}
.benefit.benefit-7 .benefit_link{
  width: 550px;
  margin: 20px auto 0;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-7 .benefit_link{
    width: 100%;
    margin: 4vw auto 0;
    padding: 0 6.5vw 8vw;
  }
}
.benefit.benefit-8 .benefit_link{
  width: 450px;
  margin: 20px auto 0;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .benefit.benefit-8 .benefit_link{
    width: 100%;
    margin: 3vw auto 0;
    padding: 0 4.5vw 8vw;
  }
}


.benefit_headline {
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .benefit_headline {
    margin-bottom: 4.533vw;
  }
}
.benefit_headline img {
  width: 327px;
}
@media screen and (max-width: 767px) {
  .benefit_headline img {
    width: 70.933vw;
  }
}
.benefit_title {
  text-align: center;
  margin-bottom: 54px;
}
@media screen and (max-width: 767px) {
  .benefit_title {
    margin-bottom: 5.6vw;
  }
}
.benefit_title img {
  width: 495px;
}
@media screen and (max-width: 767px) {
  .benefit_title img {
    width: 63.2vw;
  }
}
.benefit_box {
  counter-reset: benefit;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  grid-template-rows: 108px;
  row-gap: 30px;
}
@media screen and (max-width: 767px) {
  .benefit_box {
    grid-template-columns: 1fr;
    grid-auto-rows: 21.067vw;
    grid-template-rows: 21.067vw;
    row-gap: 5.333vw;
    margin-bottom: 2.933vw;
  }
}
.benefit_item {
  counter-increment: benefit;
  display: grid;
  grid-template-columns: 72px 1fr;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media screen and (max-width: 767px) {
  .benefit_item {
    grid-template-columns: 13.8666666667vw 1fr;
    -moz-column-gap: 2.4vw;
         column-gap: 2.4vw;
  }
}
.benefit_item-headline {
  position: relative;
  padding-top: 11px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .benefit_item-headline {
    padding-top: 3.2vw;
  }
}
.benefit_item-headline::before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 0;
  left: 0;
  width: 72px;
  height: 108px;
  background-image: url(../images/index/benefit_flag.svg);
}
@media screen and (max-width: 767px) {
  .benefit_item-headline::before {
    width: 13.867vw;
    height: 21.067vw;
  }
}
.benefit_item-headline::after {
  content: counter(benefit);
  position: absolute;
  z-index: 2;
  top: 43px;
  left: 50%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 41px;
  font-size: 4.1rem;
  font-weight: 400;
  color: #000;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .benefit_item-headline::after {
    top: 9.333vw;
    font-size: 8.267vw;
  }
}
.benefit_item-headline span {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .benefit_item-headline span {
    font-size: 4.533vw;
  }
}
.benefit_item-body {
  display: grid;
  grid-template-columns: 225px 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 15px;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .benefit_item-body {
    grid-template-columns: 43.7333333333vw 1fr;
    -moz-column-gap: 1.6vw;
         column-gap: 1.6vw;
  }
}
.benefit_item-content {
  text-align: center;
}
.benefit_item-content img {
  width: 225px;
}
@media screen and (max-width: 767px) {
  .benefit_item-content img {
    width: 43.733vw;
  }
}
.benefit_item-free img {
  width: 148px;
}
@media screen and (max-width: 767px) {
  .benefit_item-free img {
    width: 28vw;
  }
}
.benefit_item-discount img {
  width: 147px;
}
@media screen and (max-width: 767px) {
  .benefit_item-discount img {
    width: 28vw;
  }
}
.benefit_item-development {
  grid-column: span 2;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 2px solid #fffe55;
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .benefit_item-development {
    width: 100%;
    padding-top: 1.867vw;
    padding-bottom: 1.6vw;
    margin-right: 0;
    margin-bottom: 6.667vw;
  }
}
.benefit_item-development img {
  width: 315px;
}
@media screen and (max-width: 767px) {
  .benefit_item-development img {
    width: 84vw;
  }
}
.benefit_item:first-child .benefit_item-headline::after {
  padding-right: 3px;
}
@media screen and (max-width: 767px) {
  .benefit_item:first-child .benefit_item-headline::after {
    padding-right: 0.8vw;
  }
}
.benefit_item:nth-child(3) .benefit_item-body {
  align-self: flex-start;
  padding-top: 21px;
}
@media screen and (max-width: 767px) {
  .benefit_item:nth-child(3) .benefit_item-body {
    align-self: center;
    padding-top: 0;
  }
}
.benefit_item:last-child .benefit_item-body {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .benefit_item:last-child .benefit_item-body {
    padding-top: 0;
  }
}
.benefit_item:last-child .benefit_item-content img {
  width: 225px;
}
@media screen and (max-width: 767px) {
  .benefit_item:last-child .benefit_item-content img {
    width: 43.733vw;
  }
}
.benefit_text p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8571;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .benefit_text p {
    font-size: 3.733vw;
    font-weight: 500;
    line-height: 1.8571;
  }
}
.benefit_date {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  align-items: center;
  width: 384px;
  border-radius: 46px;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-right: auto;
  margin-bottom: 23px;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .benefit_date {
    -moz-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding-top: 2.933vw;
    padding-bottom: 2.933vw;
    border-radius: 14.667vw;
    margin-bottom: 4.8vw;
  }
}
.benefit_date-text {
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .benefit_date-text {
    margin-right: 0;
    margin-bottom: 3.2vw;
  }
}
.benefit_date-text img {
  width: 302px;
}
@media screen and (max-width: 767px) {
  .benefit_date-text img {
    width: 64.533vw;
  }
}
.benefit_date-content img {
  width: 344px;
}
@media screen and (max-width: 767px) {
  .benefit_date-content img {
    width: 69.333vw;
  }
}
.benefit_date-development img {
  width: 259px;
}
@media screen and (max-width: 767px) {
  .benefit_date-development img {
    width: 60.8vw;
  }
}

/*----------------------------------------------------------------------------
	worries
----------------------------------------------------------------------------*/
.worries {
  background-image: url(../images/index/worries_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .worries {
    background-image: url(../images/index/sp/worries_bg.jpg);
  }
}
.worries .inner {
  padding-top: 94px;
  padding-bottom: 101px;
}
@media screen and (max-width: 767px) {
  .worries .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.worries_title {
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .worries_title {
    margin-bottom: 6.667vw;
  }
}
.worries_title span {
  display: inline-block;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .worries_title span {
    font-size: 6.667vw;
    line-height: 1.52;
  }
}
.worries_box {
  position: relative;
  width: 680px;
  border: 2px solid #987034;
  border-radius: 15px;
  margin-right: auto;
  margin-bottom: 70px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .worries_box {
    width: 100%;
    border-radius: 4vw;
    margin-bottom: 13.333vw;
  }
}
.worries_box::after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  width: 54px;
  height: 29px;
  background-color: #987034;
  transform: translate(-50%, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .worries_box::after {
    bottom: -7.733vw;
    width: 14.4vw;
    height: 7.733vw;
  }
}
.worries_list {
  padding-top: 30px;
  padding-right: 60px;
  padding-bottom: 30px;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .worries_list {
    padding-top: 9.333vw;
    padding-right: 5.333vw;
    padding-bottom: 9.333vw;
    padding-left: 7.2vw;
  }
}
.worries_list-item {
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .worries_list-item {
    padding-left: 8.8vw;
  }
}
.worries_list-item:not(:last-child) {
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .worries_list-item:not(:last-child) {
    margin-bottom: 3.2vw;
  }
}
.worries_list-item::before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 0;
  left: 0;
  width: 23px;
  height: 20px;
  background-image: url(../images/common/icon_check.svg);
}
@media screen and (max-width: 767px) {
  .worries_list-item::before {
    top: 0.533vw;
    width: 6.133vw;
    height: 5.333vw;
  }
}
.worries_list-item span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .worries_list-item span {
    font-size: 4vw;
    line-height: 1.6667;
  }
}
.worries_item-headline {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .worries_item-headline {
    margin-bottom: 5.333vw;
  }
}
.worries_item-headline span {
  display: inline-block;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: 600;
  color: #fff;
  padding-top: 7px;
  padding-right: 26px;
  padding-bottom: 8px;
  padding-left: 26px;
  letter-spacing: 0.05em;
  background-color: #987034;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .worries_item-headline span {
    font-size: 5.067vw;
    padding-top: 1.867vw;
    padding-right: 6.133vw;
    padding-bottom: 2.133vw;
    padding-left: 6.133vw;
  }
}
.worries_item-body {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
  -moz-flex-direction: column;
  flex-direction: column;
}
.worries_item-body span {
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .worries_item-body span {
    font-size: 6.4vw;
  }
}
.worries_item-body span:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .worries_item-body span:not(:last-child) {
    margin-bottom: 5.333vw;
  }
}
.worries_item-body span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -0.25em;
  width: calc(100% + 0.5em);
  height: 3px;
  background-color: #987034;
}
@media screen and (max-width: 767px) {
  .worries_item-body span::after {
    bottom: -2.133vw;
    height: 2px;
  }
}

/*----------------------------------------------------------------------------
	reason
----------------------------------------------------------------------------*/
.reason {
  background-color: #fff;
}
.reason .inner {
  padding-top: 118px;
  padding-bottom: 101px;
}
@media screen and (max-width: 767px) {
  .reason .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.reason_title {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .reason_title {
    margin-bottom: 5.333vw;
  }
}
.reason_title_content {
  position: relative;
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  -moz-align-items: baseline;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .reason_title_content {
    flex-wrap: wrap;
    -moz-align-items: flex-start;
    align-items: flex-start;
  }
}
.reason_title_content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.25em;
  width: calc(100% + 0.5em);
  height: 3px;
  background-color: #987034;
}
@media screen and (max-width: 767px) {
  .reason_title_content::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
  }
}
.reason_title_content span {
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .reason_title_content span {
    font-size: 6.667vw;
    width: 100%;
    text-align: center;
    margin-bottom: 0.15em;
  }
}
.reason_title_content em {
  font-family: "Bebas Neue", sans-serif;
  font-size: 69px;
  font-size: 6.9rem;
  font-weight: 400;
  font-style: normal;
  color: #05a499;
  margin-left: -0.1em;
}
@media screen and (max-width: 767px) {
  .reason_title_content em {
    font-size: 16.8vw;
    margin-left: 0;
  }
}
.reason_title_content strong {
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #05a499;
  margin-left: 3px;
}
@media screen and (max-width: 767px) {
  .reason_title_content strong {
    font-size: 6.667vw;
    margin-top: 1em;
    margin-left: 0.15em;
  }
}
.reason ul {
  max-width: 1000px;
  width: 89.3vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 1.5rem
}
.reason ul li {
  background-color: #2f2f2f;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  min-height: 290px;
  border-left: solid 3px #01b2a9
}
@media screen and (max-width: 599px) {
  .reason ul li {
    padding: 0 2.4rem;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    border-left: none;
    border-top: solid 2px #01b2a9;
    position: relative
  }
  .reason ul li:after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 2.5rem;
    background-image: url("../images/common/three-dots.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: .25rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 20
  }
}
.reason ul li>div:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(50% - 2rem);
  padding: 1.5rem 0;
  padding-right: 3rem;
  position: relative
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(1) {
    width: 100%;
    padding: 2rem 0 0 0 !important
  }
}
.reason ul li>div:nth-of-type(1) img {
  display: block;
  width: 100%;
  aspect-ratio: 430/235
}
.reason ul li>div:nth-of-type(1):after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  background-image: url("../images/common/three-dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  transform: rotate(90deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: .5rem;
  margin: auto 0
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(1):after {
    display: none
  }
}
.reason ul li>div:nth-of-type(2) {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: stretch
}
@media screen and (max-width: 980px) {
  .reason ul li>div:nth-of-type(2) {
    row-gap: 2rem
  }
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2) {
    width: 100%;
    row-gap: 0
  }
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(1) {
  flex: 1 .25 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 0
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(1) {
    align-items: center
  }
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(1) h3 {
  min-width: 85%;
  color: #ff5;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1em
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(1) h3 {
    font-weight: 500;
    text-align: center;
    font-size: 4.2vw;
    line-height: 1.25;
    padding: .8em 0
  }
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(1) {
    padding: 0;
    flex: 0 1 auto
  }
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2) {
  flex: 3 1.75 auto;
  min-height: 128px;
  padding-top: 3rem;
  padding-left: 7rem;
  position: relative;
  z-index: 10
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(2) {
    flex: 0 1 auto;
    min-height: 6rem;
    padding: 2.5rem 0 3rem 3.5rem !important;
  }
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00625A 50%, transparent 100%);
  border-top: solid 2px dimgray;
  border-left: solid 2px dimgray;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2):after {
  content: "";
  width: 1.85rem;
  height: 80%;
  background-image: url("../images/index/reason_vertical.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  z-index: -1
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(2):after {
    width: 1.75rem
  }
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2) span {
  font-size: 100px;
  font-family: "Bebas Neue", sans-serif;
  color: dimgray;
  font-style: italic
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(2) span {
    font-size: 14.6vw
  }
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2) span>span {
  line-height: 1;
  position: absolute;
  top: -0.5em
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2) span>span:nth-of-type(1) {
  left: -0.25em;
  z-index: 0;
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2) span>span:nth-of-type(2) {
  left: .1em;
  z-index: 1
}
.reason ul li>div:nth-of-type(2)>div:nth-of-type(2) p {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .reason ul li>div:nth-of-type(2)>div:nth-of-type(2) p {
    font-size: 3.2vw
  }
}
.reason ul li:nth-of-type(odd)>div:nth-of-type(1) {
  order: 2;
  padding-left: 1.5rem;
  padding-right: 0
}
@media screen and (max-width: 599px) {
  .reason ul li:nth-of-type(odd)>div:nth-of-type(1) {
    order: 0;
    padding-left: 0
  }
}
.reason ul li:nth-of-type(odd)>div:nth-of-type(1):after {
  left: 0;
  right: auto;
  transform: rotate(90deg) scaleY(-1)
}
.reason ul li:nth-of-type(odd)>div:nth-of-type(2) {
  order: 1
}
@media screen and (max-width: 599px) {
  .reason ul li:nth-of-type(odd)>div:nth-of-type(2) {
    order: 0
  }
}
.reason ul li:nth-of-type(odd)>div:nth-of-type(2)>div {
  margin-left: 2rem;
  padding-right: 0
}
@media screen and (max-width: 599px) {
  .reason ul li:nth-of-type(odd)>div:nth-of-type(2)>div {
    margin-left: 0
  }
}

/*----------------------------------------------------------------------------
	about
----------------------------------------------------------------------------*/
.about {
  background-image: url(../images/index/about_bg.jpg?230929);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .about {
    background-image: url(../images/index/sp/about_bg.jpg?230929);
  }
}
.about .inner {
  padding-top: 220px;
  padding-bottom: 218px;
}
@media screen and (max-width: 767px) {
  .about .inner {
    padding-top: 12vw;
    padding-bottom: 13.333vw;
  }
}
.about_title {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about_title::after {
    content: "";
    position: absolute;
    bottom: -2.133vw;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #987034;
  }
}
.about_title span {
  position: relative;
  display: inline-block;
  font-size: 38px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about_title span {
    font-size: 6.667vw;
    line-height: 1.4;
  }
}
.about_title span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -0.25em;
  width: calc(100% + 0.5em);
  height: 3px;
  background-color: #987034;
}
@media screen and (max-width: 767px) {
  .about_title span::after {
    bottom: -2.133vw;
    height: 2px;
  }
}

/*----------------------------------------------------------------------------
	concept
----------------------------------------------------------------------------*/
.concept {
  background-color: #000;
}
.concept .inner {
  padding-top: 104px;
  padding-bottom: 71px;
}
@media screen and (max-width: 767px) {
  .concept .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 7.467vw;
    padding-left: 4vw;
  }
}
.concept_title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .concept_title {
    margin-bottom: 12vw;
  }
}
.concept_title span {
  color: #fff;
}
.concept_heading {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .concept_heading {
    margin-bottom: 10.667vw;
  }
}
.concept_heading p {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.7857;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .concept_heading p {
    font-size: 5.333vw;
    line-height: 1.8;
  }
}
.concept_caption {
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .concept_caption {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }
}
.concept_caption p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 2.2143;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .concept_caption p {
    font-size: 3.733vw;
    line-height: 2.2143;
  }
}
.concept_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .concept_box {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    /*top: -13.333vw;
    margin-bottom: -13.333vw;*/
  }
}
.concept_photo:first-child {
  grid-column: span 2;
}
@media screen and (max-width: 767px) {
  .concept_photo:first-child {
    grid-column: auto;
  }
}
.concept_photo:first-child img {
  width: 1000px;
}
@media screen and (max-width: 767px) {
  .concept_photo:first-child img {
    width: 92vw;
  }
}
.concept_photo:not(:first-child) img {
  width: 495px;
}
@media screen and (max-width: 767px) {
  .concept_photo:not(:first-child) img {
    width: 92vw;
  }
}
.concept_note {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .concept_note {
    padding-top: 2.133vw;
  }
}
.concept_note span {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .concept_note span {
    font-size: 3.2vw;
  }
}
.concept_note span::before {
  content: "※";
}

/*----------------------------------------------------------------------------
	practice
----------------------------------------------------------------------------*/
.practice .inner {
  padding-top: 101px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .practice .inner {
    padding-top: 12vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.practice_heading {
  text-align: center;
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  .practice_heading {
    position: relative;
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .practice_heading::after {
    content: "";
    position: absolute;
    bottom: -2.133vw;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #866140;
  }
}
.practice_heading span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .practice_heading span {
    font-size: 6.667vw;
    line-height: 1.28;
  }
}
.practice_heading span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -0.5em;
  width: calc(100% + 1em);
  height: 3px;
  background-color: #866140;
}
@media screen and (max-width: 767px) {
  .practice_heading span::after {
    content: none;
  }
}
.practice .field {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 36px;
       column-gap: 36px;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .practice .field {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.333vw;
  }
}
.practice_box {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #987034;
  background-color: #2f2f2f;
}
@media screen and (max-width: 767px) {
  .practice_box {
    padding-top: 5.333vw;
    padding-right: 5.333vw;
    padding-bottom: 5.333vw;
    padding-left: 5.333vw;
    border-left-width: 2px;
  }
}
.practice_photo {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .practice_photo {
    margin-bottom: 4vw;
  }
}
.practice_photo img {
  width: 442px;
}
@media screen and (max-width: 767px) {
  .practice_photo img {
    width: 81.333vw;
  }
}
.practice_item-headline {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .practice_item-headline {
    margin-bottom: 4vw;
  }
}
.practice_item-headline span {
  display: inline-block;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .practice_item-headline span {
    font-size: 5.867vw;
  }
}
.practice_item-body p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .practice_item-body p {
    font-size: 3.733vw;
  }
}

/*----------------------------------------------------------------------------
	machine
----------------------------------------------------------------------------*/
.machine {
  background-color: #000;
}
.machine .inner {
  padding-top: 104px;
  padding-bottom: 93px;
}
@media screen and (max-width: 767px) {
  .machine .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 8vw;
    padding-left: 4vw;
  }
}
.machine_title {
  margin-bottom: 118px;
}
@media screen and (max-width: 767px) {
  .machine_title {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 767px) {
  .machine_title h2 {
    letter-spacing: 0.35em;
    margin-right: -0.35em;
  }
}
.machine_title span {
  color: #fff;
}
.machine_box {
  display: -moz-flex;
  display: flex;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border: 2px solid #fff;
  background-color: #232323;
}
@media screen and (max-width: 767px) {
  .machine_box {
    display: block;
    padding-top: 3.733vw;
    padding-right: 3.733vw;
    padding-bottom: 3.733vw;
    padding-left: 3.733vw;
  }
}
.machine_box.is-vip {
  position: relative;
}
.machine_box.is-vip::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: -18px;
  left: -26px;
  width: 115px;
  height: 115px;
  background-image: url(../images/index/machine_icon.svg);
}
@media screen and (max-width: 767px) {
  .machine_box.is-vip::after {
    top: -1.333vw;
    left: -1.867vw;
    width: 22.4vw;
    height: 22.4vw;
  }
}
.machine_box:not(:last-child) {
  margin-bottom: 102px;
}
@media screen and (max-width: 767px) {
  .machine_box:not(:last-child) {
    margin-bottom: 5.333vw;
  }
}
.machine_photo {
  -moz-flex: 0 0 470px;
  flex: 0 0 470px;
  margin-right: 28px;
}
@media screen and (max-width: 767px) {
  .machine_photo {
    margin-right: 0;
    margin-bottom: 5.333vw;
  }
}
.machine_photo img {
  width: 470px;
}
@media screen and (max-width: 767px) {
  .machine_photo img {
    width: 84.533vw;
  }
}
.machine_about {
  -moz-flex: 1;
  flex: 1;
}
.machine_recommend {
  width: 360px;
  background-color: #696969;
  padding-top: 10px;
  padding-right: 9px;
  padding-bottom: 12px;
  padding-left: 9px;
  border: 2px solid #fff;
  margin-right: auto;
  margin-bottom: 41px;
}
@media screen and (max-width: 767px) {
  .machine_recommend {
    width: 100%;
    padding-top: 1.333vw;
    padding-right: 1.333vw;
    padding-bottom: 2.667vw;
    padding-left: 1.333vw;
    margin-bottom: 7.2vw;
  }
}
.machine_recommend_heading {
  text-align: center;
  padding-bottom: 7px;
  border-bottom: 1px solid #fff;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .machine_recommend_heading {
    width: 100%;
    padding-bottom: 1.867vw;
    margin-bottom: 2.133vw;
  }
}
.machine_recommend_heading span {
  display: inline-block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .machine_recommend_heading span {
    font-size: 3.2vw;
  }
}
.machine_recommend_list {
  display: grid;
  place-content: center;
}
.machine_recommend_list-item:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .machine_recommend_list-item:not(:last-child) {
    margin-bottom: 2.133vw;
  }
}
.machine_recommend_list-item span {
  display: inline-block;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .machine_recommend_list-item span {
    font-size: 3.467vw;
  }
}
.machine_recommend_list-item span::before {
  content: "●";
}
.machine_name {
  display: -moz-flex;
  display: flex;
  margin-bottom: 21px;
}
@media screen and (max-width: 767px) {
  .machine_name {
    margin-bottom: 4.267vw;
  }
}
.machine_name span {
  align-self: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 9px;
  margin-right: 14px;
  background-color: #987034;
}
@media screen and (max-width: 767px) {
  .machine_name span {
    font-size: 2.667vw;
    padding-top: 1.067vw;
    padding-right: 2.667vw;
    padding-bottom: 1.067vw;
    padding-left: 2.4vw;
    margin-right: 2.667vw;
  }
}
.machine_name strong {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #987034;
  letter-spacing: 0.06em;
  margin-right: -0.06em;
}
@media screen and (max-width: 767px) {
  .machine_name strong {
    font-size: 5.867vw;
  }
}
.machine_item-headline {
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .machine_item-headline {
    margin-bottom: 2.4vw;
  }
}
.machine_item-headline span {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.6667;
}
@media screen and (max-width: 767px) {
  .machine_item-headline span {
    font-size: 4.267vw;
    line-height: 1.6875;
  }
}
.machine_item-body p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8571;
}
@media screen and (max-width: 767px) {
  .machine_item-body p {
    font-size: 3.733vw;
  }
}

/*----------------------------------------------------------------------------
	service
----------------------------------------------------------------------------*/
.service {
  background-color: #000;
}
.service .inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .service .inner {
    padding-right: 9.333vw;
    padding-bottom: 13.333vw;
    padding-left: 9.333vw;
  }
}
.service_title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .service_title {
    margin-bottom: 5.333vw;
  }
}
.service_title span {
  display: inline-block;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service_title span {
    font-size: 6.667vw;
  }
}
.service_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  -moz-column-gap: 42px;
       column-gap: 42px;
  row-gap: 89px;
}
@media screen and (max-width: 767px) {
  .service_box {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 7.467vw;
  }
}
.service_item {
  padding-left: 12px;
  border-left: 3px solid #987034;
}
@media screen and (max-width: 767px) {
  .service_item {
    padding-top: 1.333vw;
    padding-bottom: 1.333vw;
    padding-left: 3.2vw;
  }
}
.service_item-headline {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .service_item-headline {
    margin-bottom: 2.667vw;
  }
}
.service_item-headline span {
  display: inline-block;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .service_item-headline span {
    font-size: 5.067vw;
    line-height: 1.7368;
  }
}
.service_item-body p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8571;
}
@media screen and (max-width: 767px) {
  .service_item-body p {
    font-size: 3.733vw;
  }
}

/*----------------------------------------------------------------------------
	professional
----------------------------------------------------------------------------*/
.professional .inner {
  padding-top: 104px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .professional .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.professional_title {
  margin-bottom: 53px;
}
@media screen and (max-width: 767px) {
  .professional_title {
    margin-bottom: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .professional_title h2 {
    letter-spacing: 0.17em;
    margin-right: -0.17em;
  }
}
.professional_caption {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .professional_caption {
    margin-bottom: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .professional_caption span {
    line-height: 1.55;
  }
}
.professional .field {
  display: grid;
  grid-template-columns: repeat(auto-fit, 489px);
  place-content: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
  row-gap: 22px;
}
@media screen and (max-width: 767px) {
  .professional .field {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.333vw;
  }
}
.professional_box {
  border-top: 7px solid #987034;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .professional_box {
    border-top-width: 5px;
  }
}
.professional_photo img {
  width: 489px;
}
@media screen and (max-width: 767px) {
  .professional_photo img {
    width: 92vw;
  }
}
.professional_category {
  padding-top: 20px;
  padding-left: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .professional_category {
    padding-top: 5.333vw;
    padding-left: 6.4vw;
    margin-bottom: 4vw;
  }
}
.professional_category span {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  background-color: #987034;
}
@media screen and (max-width: 767px) {
  .professional_category span {
    font-size: 4.267vw;
    padding-top: 1.6vw;
    padding-right: 1.6vw;
    padding-bottom: 1.6vw;
    padding-left: 1.6vw;
  }
}
.professional_item {
  padding-right: 24px;
  padding-bottom: 25px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .professional_item {
    padding-right: 6.4vw;
    padding-bottom: 6.667vw;
    padding-left: 6.4vw;
  }
}
.professional_item-headline {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .professional_item-headline {
    margin-bottom: 4vw;
  }
}
.professional_item-headline span {
  display: inline-block;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .professional_item-headline span {
    font-size: 5.867vw;
  }
}
.professional_item-body p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8571;
}
@media screen and (max-width: 767px) {
  .professional_item-body p {
    font-size: 3.733vw;
  }
}
.professional_item-body p:first-child {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 767px) {
  .professional_item-body p:first-child {
    font-size: 4.267vw;
  }
}

/*----------------------------------------------------------------------------
	comparison
----------------------------------------------------------------------------*/
.comparison {
  background-image: url(../images/index/comparison_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .comparison {
    background-image: url(../images/index/sp/comparison_bg.jpg);
  }
}
.comparison .inner {
  padding-top: 104px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .comparison .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.comparison_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .comparison_title {
    margin-bottom: 12.8vw;
  }
}
.comparison_title span {
  color: #fff;
}
.comparison_caption {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .comparison_caption {
    position: relative;
    margin-bottom: 13.333vw;
  }
}
@media screen and (max-width: 767px) {
  .comparison_caption::before {
    content: "スクロール";
    position: absolute;
    bottom: -10.667vw;
    right: 0;
    font-size: 11px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    padding-right: 13.333vw;
  }
}
@media screen and (max-width: 767px) {
  .comparison_caption::after {
    content: "";
    position: absolute;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    bottom: -10.133vw;
    right: 0;
    width: 12.267vw;
    height: 1.6vw;
    background-image: url(../images/common/icon_scroll.svg);
  }
}
.comparison_caption span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .comparison_wrap {
    position: relative;
    overflow-x: scroll;
  }
}
.comparison_table {
  display: grid;
  grid-template-columns: 214px 1fr 1fr;
  grid-template-rows: 72px;
  grid-auto-rows: 90px;
  -moz-column-gap: 3px;
       column-gap: 3px;
  row-gap: 3px;
}
@media screen and (max-width: 767px) {
  .comparison_table {
    white-space: nowrap;
    grid-template-columns: 26.6666666667vw 64.5333333333vw 64.5333333333vw;
    grid-template-rows: 12vw;
    grid-auto-rows: 14.933vw;
    -moz-column-gap: 0.533vw;
         column-gap: 0.533vw;
    row-gap: 0.533vw;
  }
}
.comparison_table-header {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
}
.comparison_table-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6a6a6a;
  mix-blend-mode: multiply;
}
.comparison_table-header span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .comparison_table-header span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.4167;
    text-align: center;
  }
}
.comparison_table-header:first-child::before {
  content: none;
}
.comparison_table-data {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
}
.comparison_table-data span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .comparison_table-data span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.4167;
  }
}
.comparison_table-data::before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 0.2;
}
.comparison_table-data.is-specific {
  background-color: rgba(152, 112, 52, 0.9);
}
.comparison_table-data.is-specific::before {
  left: 17px;
  width: 45px;
  height: 45px;
  background-image: url(../images/index/comparison_circle.svg);
}
@media screen and (max-width: 767px) {
  .comparison_table-data.is-specific::before {
    left: 3.733vw;
    width: 7.467vw;
    height: 7.467vw;
  }
}
.comparison_table-data.is-specific:nth-child(2)::before {
  content: none;
}
.comparison_table-data.is-general {
  background-color: rgba(108, 108, 108, 0.9);
}
.comparison_table-data.is-triangle::before {
  left: 16px;
  width: 51px;
  height: 45px;
  background-image: url(../images/index/comparison_triangle.svg);
}
@media screen and (max-width: 767px) {
  .comparison_table-data.is-triangle::before {
    left: 2.667vw;
    width: 8.533vw;
    height: 7.467vw;
  }
}
.comparison_table-data.is-cross::before {
  left: 18px;
  width: 46px;
  height: 46px;
  background-image: url(../images/index/comparison_cross.svg);
}
@media screen and (max-width: 767px) {
  .comparison_table-data.is-cross::before {
    left: 3.2vw;
    width: 7.467vw;
    height: 7.467vw;
  }
}

/*----------------------------------------------------------------------------
	choose
----------------------------------------------------------------------------*/
.choose .inner {
  padding-top: 100px;
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .choose .inner {
    padding-top: 13.333vw;
    padding-bottom: 13.333vw;
  }
}
.choose_heading {
  text-align: center;
  margin-bottom: 61px;
}
@media screen and (max-width: 767px) {
  .choose_heading {
    padding-right: 4vw;
    padding-left: 4vw;
    margin-bottom: 8vw;
  }
}
.choose_heading span {
  position: relative;
  display: inline-block;
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .choose_heading span {
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
  }
}
.choose_heading span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -0.5em;
  width: calc(100% + 1em);
  height: 3px;
  background-color: #866140;
}
@media screen and (max-width: 767px) {
  .choose_heading span::after {
    left: 0;
    width: 100%;
    height: 2px;
  }
}
.choose_box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 4px;
       column-gap: 4px;
  margin-bottom: 63px;
}
@media screen and (max-width: 767px) {
  .choose_box {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 18.667vw;
  }
}
.choose_box::after {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 50%;
  width: 54px;
  height: 29px;
  background-color: #987034;
  transform: translate(-50%, 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 767px) {
  .choose_box::after {
    bottom: -13.333vw;
    width: 14.4vw;
    height: 7.733vw;
  }
}
.choose_item {
  padding-top: 34px;
  padding-right: 32px;
  padding-bottom: 55px;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .choose_item {
    padding-top: 8vw;
    padding-right: 8.533vw;
    padding-bottom: 8vw;
    padding-left: 8.533vw;
  }
}
.choose_item:first-child {
  background-color: #987034;
}
.choose_item:last-child {
  background-color: #232323;
}
.choose_item-headline {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 2px solid #fff;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .choose_item-headline {
    padding-top: 4.533vw;
    padding-bottom: 4.533vw;
    margin-bottom: 6.667vw;
  }
}
.choose_item-headline span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .choose_item-headline span {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.choose_list-item {
  text-align: center;
}
.choose_list-item:not(:last-child) {
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .choose_list-item:not(:last-child) {
    margin-bottom: 4.267vw;
  }
}
.choose_list-item span {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .choose_list-item span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.choose_list-item span::before {
  content: "●";
}
.choose_result {
  display: -moz-flex;
  display: flex;
  -moz-align-items: center;
  align-items: center;
  -moz-flex-direction: column;
  flex-direction: column;
}
.choose_result span {
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .choose_result span {
    font-size: 24px;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
}
.choose_result span:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .choose_result span:not(:last-child) {
    margin-bottom: 4vw;
  }
}
.choose_result span::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -0.25em;
  width: calc(100% + 0.5em);
  height: 3px;
  background-color: #987034;
}
@media screen and (max-width: 767px) {
  .choose_result span::after {
    bottom: -1.6vw;
    height: 2px;
  }
}

/*----------------------------------------------------------------------------
	voice
----------------------------------------------------------------------------*/
.voice {
  background-color: #efefef;
}
.voice .inner {
  padding-top: 108px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .voice .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 8vw;
    padding-left: 4vw;
  }
}
.voice_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .voice_title {
    margin-bottom: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .voice_title h2 {
    letter-spacing: 0.25em;
    margin-right: -0.25em;
  }
}
.voice .field {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(329px, auto);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
}
@media screen and (max-width: 767px) {
  .voice .field {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.333vw;
  }
}
.voice_item {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .voice_item {
    padding-top: 5.333vw;
    padding-right: 5.333vw;
    padding-bottom: 5.333vw;
    padding-left: 5.333vw;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
  }
}
.voice_item-headline {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .voice_item-headline {
    margin-bottom: 4vw;
  }
}

.voice_photo {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .voice_photo {
    margin-bottom: 4vw;
  }
}

.voice_item-headline strong {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.58;
  background-color: #05a499;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .voice_item-headline strong {
    font-size: 6.667vw;
    padding-right: 3.2vw;
    padding-left: 3.2vw;
  }
}
.voice_item-body p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  line-height: 1.8571;
}
@media screen and (max-width: 767px) {
  .voice_item-body p {
    font-size: 3.733vw;
  }
}
.voice_person {
  display: -moz-flex;
  display: flex;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .voice_person {
    margin-bottom: 4vw;
  }
}
.voice_person span {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 767px) {
  .voice_person span {
    font-size: 4.267vw;
  }
}
.voice_person span:first-child {
  margin-right: 1em;
}

/*----------------------------------------------------------------------------
	price
----------------------------------------------------------------------------*/
.price {
  background-color: #000;
}
.price .inner {
  padding-top: 104px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .price .inner {
    padding-top: 13.333vw;
    padding-right: 4vw;
    padding-bottom: 8vw;
    padding-left: 4vw;
  }
}
.price_title {
  margin-bottom: 73px;
}
@media screen and (max-width: 767px) {
  .price_title {
    margin-bottom: 6.667vw;
  }
}
.price_title span {
  color: #fff;
}
.price_caption {
  margin-bottom: 61px;
}
@media screen and (max-width: 767px) {
  .price_caption {
    margin-bottom: 6.667vw;
  }
}
.price_caption span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .price_caption span {
    line-height: 1.55;
  }
}
.price_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 13px;
       column-gap: 13px;
  margin-bottom: 93px;
}
@media screen and (max-width: 767px) {
  .price_box {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 4vw;
    margin-bottom: 4vw;
  }
}
.price_item {
  padding-top: 23px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  border-width: 2px;
  border-style: solid;
}
@media screen and (max-width: 767px) {
  .price_item {
    padding-top: 4vw;
    padding-right: 5.333vw;
    padding-bottom: 2.667vw;
    padding-left: 5.333vw;
  }
}
.price_item-headline {
  text-align: center;
  padding-top: 12px;
  padding-bottom: 13px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .price_item-headline {
    padding-top: 1.867vw;
    padding-bottom: 2.133vw;
    margin-bottom: 2.667vw;
  }
}
.price_item-headline span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .price_item-headline span {
    font-size: 4.8vw;
  }
}
.price_item-body p {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.8571;
}
@media screen and (max-width: 767px) {
  .price_item-body p {
    font-size: 3.733vw;
  }
}
.price_item:first-child {
  border-color: #05a499;
}
.price_item:first-child .price_item-headline {
  background-color: #05a499;
}
.price_item:nth-child(2) {
  border-color: #7b7b7b;
}
.price_item:nth-child(2) .price_item-headline {
  background-color: #7b7b7b;
}
.price_item:last-child {
  border-color: #987034;
}
.price_item:last-child .price_item-headline {
  background-color: #987034;
}
.price_figure {
  margin-bottom: 17px;
}
.price_figure img {
  width: 1000px;
}
@media screen and (max-width: 767px) {
  .price_figure img {
    width: 92vw;
  }
}
.price_note span {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .price_note span {
    font-size: 3.733vw;
    font-weight: 500;
    line-height: 1.7143;
  }
}

/*----------------------------------------------------------------------------
	links
----------------------------------------------------------------------------*/
.links .inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .links .inner {
    padding-top: 5.333vw;
    padding-right: 4vw;
    padding-bottom: 5.333vw;
    padding-left: 4vw;
  }
}
.links_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media screen and (max-width: 767px) {
  .links_box {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 4vw;
  }
}
.links_item {
  padding-top: 38px;
  padding-bottom: 46px;
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  .links_item {
    padding-top: 5.6vw;
    padding-bottom: 4.533vw;
    border-radius: 1.867vw;
  }
}
.links_item:first-child {
  background-color: #987034;
}
.links_item:last-child {
  background-color: #42a84a;
}
.links_item-headline {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .links_item-headline {
    margin-bottom: 3.733vw;
  }
}
.links_item-headline span {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .links_item-headline span {
    font-size: 6.933vw;
    line-height: 1.6154;
  }
}
.links_item-body a {
  position: relative;
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  align-items: center;
  width: 382px;
  padding-top: 19px;
  padding-bottom: 19px;
  border-radius: 7px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .links_item-body a {
    width: 84.8vw;
    padding-top: 3.467vw;
    padding-bottom: 3.467vw;
    border-radius: 1.867vw;
  }
}
.links_item-body a::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  right: 21px;
  width: 13px;
  height: 11px;
  background-image: url(../images/common/arrow_middle.svg);
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .links_item-body a::after {
    right: 4.533vw;
    width: 2.933vw;
    height: 2.4vw;
  }
}
.links_item-body a span {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .links_item-body a span {
    font-size: 4.8vw;
  }
}
.links_item-body.is-form a::after {
  filter: invert(42%) sepia(75%) saturate(357%) hue-rotate(357deg) brightness(92%) contrast(89%);
}
.links_item-body.is-form a span {
  color: #987034;
}
.links_item-body.is-line a::after {
  filter: invert(52%) sepia(14%) saturate(1913%) hue-rotate(74deg) brightness(104%) contrast(90%);
}
.links_item-body.is-line a span {
  color: #42a84a;
}

/*----------------------------------------------------------------------------
	faq
----------------------------------------------------------------------------*/
.faq {
  background-color: #efefef;
}
.faq .inner {
  padding-top: 110px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .faq .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.faq_title {
  margin-bottom: 53px;
}
@media screen and (max-width: 767px) {
  .faq_title {
    margin-bottom: 13.6vw;
  }
}
.faq_caption {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .faq_caption {
    margin-bottom: 9.333vw;
  }
}
.faq_item {
  border: 2px solid #00625a;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .faq_item {
    border-radius: 2.667vw;
  }
}
.faq_item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .faq_item:not(:last-child) {
    margin-bottom: 5.333vw;
  }
}
.faq_item-headline {
  position: relative;
  background-color: #00625a;
  padding-top: 33px;
  padding-right: 33px;
  padding-bottom: 33px;
  padding-left: 109px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq_item-headline {
    padding-top: 5.867vw;
    padding-right: 10.667vw;
    padding-bottom: 6.4vw;
    padding-left: 18.667vw;
    border-bottom-right-radius: 2.133vw;
    border-bottom-left-radius: 2.133vw;
  }
}
.faq_item-headline::before {
  display: grid;
  place-content: center;
  place-items: center;
  position: absolute;
  top: 18px;
  left: 30px;
  content: "q";
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 400;
  color: #987034;
  width: 49px;
  height: 49px;
  padding-top: 4px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .faq_item-headline::before {
    top: 50%;
    left: 3.733vw;
    width: 10.4vw;
    height: 10.4vw;
    font-size: 6.4vw;
    padding-top: 0;
    transform: translate(0, -50%);
  }
}
.faq_item-headline::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 29px;
  right: 33px;
  width: 26px;
  height: 26px;
  background-image: url(../images/common/icon_close.svg);
  background-image: url(../images/common/icon_open.svg);
}
@media screen and (max-width: 767px) {
  .faq_item-headline::after {
    top: 6.667vw;
    right: 4.8vw;
    width: 4.533vw;
    height: 4.533vw;
  }
}
.faq_item-headline span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .faq_item-headline span {
    font-size: 4vw;
    line-height: 1.2667;
  }
}
.faq_item-headline.is-active::after {
  top: 40px;
  height: 4px;
  background-image: url(../images/common/icon_close.svg);
}
@media screen and (max-width: 767px) {
  .faq_item-headline.is-active::after {
    top: 8.533vw;
    height: 0.8vw;
  }
}
.faq_item-body {
  display: none;
  position: relative;
  padding-top: 25px;
  padding-right: 33px;
  padding-bottom: 25px;
  padding-left: 109px;
}
@media screen and (max-width: 767px) {
  .faq_item-body {
    padding-top: 4.8vw;
    padding-right: 5.867vw;
    padding-bottom: 5.333vw;
    padding-left: 18.667vw;
  }
}
.faq_item-body::before {
  display: grid;
  place-content: center;
  place-items: center;
  position: absolute;
  top: 20px;
  left: 30px;
  content: "a";
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 400;
  color: #fff;
  width: 49px;
  height: 49px;
  padding-top: 4px;
  border-radius: 50%;
  background-color: #00625a;
}
@media screen and (max-width: 767px) {
  .faq_item-body::before {
    top: 3.2vw;
    left: 3.733vw;
    width: 10.4vw;
    height: 10.4vw;
    font-size: 6.4vw;
  }
}
.faq_item-body p {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  line-height: 1.9444;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .faq_item-body p {
    font-size: 4vw;
    line-height: 1.8;
  }
}

/*----------------------------------------------------------------------------
	news
----------------------------------------------------------------------------*/
.news {
  background-color: #232323;
}
.news .inner {
  padding-top: 110px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.news_title {
  margin-bottom: 61px;
}
@media screen and (max-width: 767px) {
  .news_title {
    margin-bottom: 10.933vw;
  }
}
.news_title span {
  color: #fff;
}
.news .field {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .news .field {
    margin-bottom: 13.333vw;
  }
}
.news .field a {
  position: relative;
  display: grid;
  grid-template-columns: 124px 1fr;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .news .field a {
    grid-template-columns: 1fr;
    row-gap: 4vw;
    padding-bottom: 2.667vw;
    border-bottom: 1px solid #987034;
  }
}
.news .field a:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news .field a:not(:last-child) {
    margin-bottom: 8vw;
  }
}
.news .field a::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  right: 0;
  width: 13px;
  height: 11px;
  background-image: url(../images/common/arrow_middle.svg);
  transform: translate(0, -50%);
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(127deg) brightness(105%) contrast(101%);
}
@media screen and (max-width: 767px) {
  .news .field a::after {
    content: none;
  }
}
.news .field a.is-disabled {
  pointer-events: none;
}
.news .field a.is-disabled::after {
  content: none;
}
.news_link a {
  background-color: #05a499;
}

/*----------------------------------------------------------------------------
	instagram
----------------------------------------------------------------------------*/
.instagram .inner {
  padding-top: 110px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .instagram .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.instagram_title {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .instagram_title {
    margin-bottom: 10.133vw;
  }
}
.instagram .field {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
  row-gap: 9px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .instagram .field {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.6vw;
         column-gap: 1.6vw;
    row-gap: 1.6vw;
    margin-bottom: 10.667vw;
  }
}
.instagram_link a {
  background-color: #987034;
}
.instagram_link a::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  left: 32px;
  width: 21px;
  height: 21px;
  background-image: url(../images/common/icon_instagram.svg);
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .instagram_link a::after {
    left: 8.533vw;
    width: 5.6vw;
    height: 5.6vw;
  }
}
.instagram_link a span::after {
  filter: invert(42%) sepia(75%) saturate(357%) hue-rotate(357deg) brightness(92%) contrast(89%);
}

/*----------------------------------------------------------------------------
	blog
----------------------------------------------------------------------------*/
.blog {
  background-color: #232323;
}
.blog .inner {
  padding-top: 110px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .blog .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.blog_title {
  margin-bottom: 61px;
}
@media screen and (max-width: 767px) {
  .blog_title {
    margin-bottom: 10.933vw;
  }
}
.blog_title span {
  color: #fff;
}
.blog .field {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog .field {
    margin-bottom: 13.333vw;
  }
}
.blog .field a {
  position: relative;
  display: grid;
  grid-template-columns: 124px 1fr;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .blog .field a {
    grid-template-columns: 1fr;
    row-gap: 4vw;
    padding-bottom: 2.667vw;
    border-bottom: 1px solid #987034;
  }
}
.blog .field a:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .blog .field a:not(:last-child) {
    margin-bottom: 8vw;
  }
}
.blog .field a::after {
  content: "";
  position: absolute;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  right: 0;
  width: 13px;
  height: 11px;
  background-image: url(../images/common/arrow_middle.svg);
  transform: translate(0, -50%);
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(127deg) brightness(105%) contrast(101%);
}
@media screen and (max-width: 767px) {
  .blog .field a::after {
    content: none;
  }
}
.blog_link a {
  background-color: #05a499;
}

/*----------------------------------------------------------------------------
	maps
----------------------------------------------------------------------------*/
.maps .inner {
  max-width: 100%;
}
.maps_frame iframe {
  width: 100%;
  height: 417px;
}
@media screen and (max-width: 767px) {
  .maps_frame iframe {
    height: 111.2vw;
  }
}

/*----------------------------------------------------------------------------
	access
----------------------------------------------------------------------------*/
.access {
  background-color: #232323;
}
.access .inner {
  padding-top: 108px;
  padding-bottom: 163px;
}
@media screen and (max-width: 767px) {
  .access .inner {
    padding-top: 14.133vw;
    padding-right: 4vw;
    padding-bottom: 13.333vw;
    padding-left: 4vw;
  }
}
.access_title {
  margin-bottom: 52px;
}
@media screen and (max-width: 767px) {
  .access_title {
    margin-bottom: 9.867vw;
  }
}
.access_title span {
  color: #fff;
}
.access_table {
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .access_table {
    margin-bottom: 9.333vw;
  }
}
.access_table-header {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  width: 143px;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .access_table-header {
    font-size: 4vw;
    width: 26.667vw;
  }
}
.access_table-data {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .access_table-data {
    font-size: 4vw;
  }
}
.access_table tr:not(:last-child) th {
  padding-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .access_table tr:not(:last-child) th {
    padding-bottom: 7.2vw;
  }
}
.access_table tr:not(:last-child) td {
  padding-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .access_table tr:not(:last-child) td {
    padding-bottom: 7.2vw;
  }
}
.access_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .access_box {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 4.533vw;
  }
}
.access_item {
  padding-top: 26px;
  padding-right: 40px;
  padding-bottom: 30px;
  padding-left: 40px;
  border: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .access_item {
    padding-top: 5.867vw;
    padding-right: 6.667vw;
    padding-bottom: 6.667vw;
    padding-left: 6.667vw;
  }
}
.access_item-headline {
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .access_item-headline {
    margin-bottom: 5.067vw;
  }
}
.access_item-headline span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
}
@media screen and (max-width: 767px) {
  .access_item-headline span {
    font-size: 4.8vw;
  }
}
.access_item-body p {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.8235;
  letter-spacing: 0.03em;
  margin-right: -0.03em;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 767px) {
  .access_item-body p {
    font-size: 4vw;
    line-height: 2.0667;
  }
}
/*# sourceMappingURL=index.css.map */