@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif, "Noto Sans JP", sans-serif;
}

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

.container {
  position: relative;
  overflow: hidden;
}

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

p {
  line-height: 1.4;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

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

.main_color {
  color: #ff2a2a;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.inner_wrap {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner_wrap {
    padding: 0 20px;
  }
}

section {
  margin-bottom: 100px;
}

/*============================
header
============================*/
.header {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 10;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}

.logo {
  width: 100px;
  margin: 50px auto auto 40px;
}
@media screen and (max-width: 767px) {
  .logo {
    margin: 25px auto auto 25px;
  }
}

.bar {
  width: 100px;
  height: 100px;
  background-color: #ff2a2a;
  position: fixed;
  top: 0;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bar span {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.bar span::before, .bar span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.bar span::before {
  -webkit-transform: translateY(-14px);
          transform: translateY(-14px);
}
.bar span::after {
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
}
.bar.is_active {
  z-index: 20;
}
.bar.is_active span {
  background-color: transparent;
}
.bar.is_active span::before {
  -webkit-transform: translateY(1px) rotate(135deg);
          transform: translateY(1px) rotate(135deg);
}
.bar.is_active span::after {
  -webkit-transform: translateY(0) rotate(-135deg);
          transform: translateY(0) rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .bar {
    width: 75px;
    height: 75px;
  }
  .bar span {
    width: 35px;
  }
}

.nav {
  background-color: #ff2a2a;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.nav.is_active {
  display: block;
  overflow: hidden;
}

.nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 80px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .nav_list {
    padding-top: 100px;
  }
}
.nav_list li {
  -webkit-transition: 1.3s;
  transition: 1.3s;
}
.nav_list li:hover {
  -webkit-text-decoration: underline wavy 2px rgba(255, 255, 255, 0.623);
          text-decoration: underline wavy 2px rgba(255, 255, 255, 0.623);
  text-underline-offset: 13px;
}

.cta_btn__nav {
  display: block;
  margin: 0 auto;
  margin-top: 60px;
}
.cta_btn__nav a {
  display: block;
  width: 350px;
  height: 60px;
  line-height: 59px;
  text-align: center;
  border: solid 1px #fff;
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
.cta_btn__nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: solid 1px rgb(255, 255, 255);
  border-bottom: solid 1px rgb(255, 255, 255);
  position: absolute;
  top: 6px;
  left: 6px;
}
.cta_btn__nav a:hover {
  color: #ff2a2a;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .cta_btn__nav {
    width: 100%;
    padding: 1rem;
  }
  .cta_btn__nav a {
    width: 100%;
  }
}

/*============================
mv
============================*/
.mv {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .mv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}

.slider {
  padding-left: 30%;
  height: 720px;
}
@media screen and (max-width: 767px) {
  .slider {
    padding: 0;
    height: 300px;
  }
}

.slide_item {
  position: relative;
}
.slide_item img {
  height: 720px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .slide_item img {
    height: 300px;
  }
}
.slide_item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: inset 0 0 15px 20px #fff;
          box-shadow: inset 0 0 15px 20px #fff;
}

.text_area {
  position: absolute;
  top: 50%;
  padding-left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .text_area {
    -webkit-transform: none;
            transform: none;
    padding: 1rem;
    position: inherit;
  }
}

.h1 {
  font-size: 4.6rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  -webkit-filter: drop-shadow(0 0 10px rgb(255, 255, 255));
          filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}
@media screen and (max-width: 767px) {
  .h1 {
    font-size: 2.8rem;
  }
}

.cta_btn__mv {
  background-color: #ff2a2a;
  width: 100%;
  height: 60px;
  border-radius: 10px;
  margin-top: 3rem;
  -webkit-filter: drop-shadow(0 6px 0 #771111);
          filter: drop-shadow(0 6px 0 #771111);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta_btn__mv:hover {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.cta_btn__mv a {
  display: block;
  line-height: 60px;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  position: relative;
}
.cta_btn__mv a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-right: solid 3px rgb(255, 255, 255);
  border-top: solid 3px rgb(255, 255, 255);
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .cta_btn__mv {
    margin-top: 1rem;
  }
}

/*============================
バーガーメニューOPEN スクロール制御
============================*/
body.is_active {
  width: 100%;
  height: 100%;
  position: fixed;
}

/*============================
セクションtitle
============================*/
.section_title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 80px;
  position: relative;
}
.section_title::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 3px;
  background-color: #333;
  position: absolute;
  bottom: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 2.8rem;
  }
}

/*============================
reason
============================*/
.reason .section_inner {
  background-color: #ff2a2a;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
  padding: 80px 0;
  height: 600px;
}

.reason_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
  background-color: #fff;
  width: 50%;
  gap: 30px;
  border-radius: 0 20px 20px 0;
  height: 200px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .reason_item {
    width: 90%;
    padding: 1rem;
    height: 180px;
  }
}
.reason_item .icon {
  max-width: 90px;
}
.reason_item .item_text {
  color: #ff2a2a;
  font-size: 2.8rem;
  font-weight: bold;
}
.reason_item .item_text span {
  display: block;
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .reason_item .item_text {
    font-size: 2.4rem;
  }
}
.reason_item__left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.reason_item__right {
  position: absolute;
  right: 0;
  border-radius: 20px 0 0 20px;
  margin-top: 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.reason_item.is_show {
  -webkit-transform: none;
          transform: none;
}

/*============================
voice
============================*/
.voice_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.voice_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  gap: 20px;
  margin: 0 auto;
  opacity: 0;
}
.voice_list_item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: row-reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}
.voice_list_item:nth-child(2) .voice_area::after {
  left: 100%;
}
@media screen and (max-width: 767px) {
  .voice_list_item:nth-child(2) .voice_area::after {
    bottom: -8px;
    left: 50%;
  }
}
.voice_list_item.is_show {
  -webkit-animation: voice_anime 1s ease forwards;
          animation: voice_anime 1s ease forwards;
}
.voice_list_item.is_show:nth-child(2) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.voice_list_item.is_show:nth-child(3) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
@media screen and (max-width: 767px) {
  .voice_list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    width: 100%;
  }
  .voice_list_item:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}

.img_area {
  width: 120px;
  height: 120px;
  background-color: #ccc;
  border-radius: 50%;
}

.img_cap {
  font-size: 1rem;
  text-align: center;
  padding-top: 0.6rem;
}

.voice_area {
  background-color: #e9f1fb;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 22px;
  position: relative;
  border-radius: 15px;
}
.voice_area::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #e9f1fb;
  position: absolute;
  left: 0;
  bottom: 2rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .voice_area::after {
    bottom: -8px;
    left: 50%;
  }
}

@-webkit-keyframes voice_anime {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes voice_anime {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/*============================
summary
============================*/
.summary {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: url(../img/bg.gif);
  padding: 60px 0;
  -webkit-animation: summary_anime 10s linear infinite;
          animation: summary_anime 10s linear infinite;
}
.summary .item_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .summary {
    padding: 30px 10px;
  }
}

.summary_item {
  background-color: white;
  padding: 62px;
  max-width: 400px;
  height: 300px;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .summary_item {
    padding: 30px;
    height: auto;
  }
}

.summary_title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
.summary_title .en {
  display: block;
  font-size: 1.8rem;
  margin: 24px auto;
}
@media screen and (max-width: 767px) {
  .summary_title {
    font-size: 2.4rem;
  }
  .summary_title .en {
    font-size: 1.6rem;
    margin: 1rem auto;
  }
}

@-webkit-keyframes summary_anime {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -700px 700px;
  }
}

@keyframes summary_anime {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -700px 700px;
  }
}
/*============================
cta_area
============================*/
.cta .section_inner {
  max-width: 860px;
  margin: 0 auto;
}

.cta_massage {
  text-align: center;
  font-size: 1.8rem;
}
.cta_massage strong {
  display: block;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .cta_massage {
    font-size: 1.6rem;
  }
  .cta_massage strong {
    font-size: 2.4rem;
  }
}

.cta_btn__cta a {
  margin-top: 40px;
  width: 100%;
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  background-color: #ff2a2a;
  height: 66px;
  line-height: 66px;
  border-radius: 40px;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta_btn__cta a:hover {
  background-color: #fff;
  border: solid 1px #ff2a2a;
  color: #ff2a2a;
}
@media screen and (max-width: 767px) {
  .cta_btn__cta a {
    margin-top: 20px;
    font-size: 2.4rem;
  }
}

/*============================
footer
============================*/
.footer {
  background-color: #ccc;
}
.footer .section_inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0 20px;
}
@media screen and (max-width: 767px) {
  .footer .section_inner {
    padding: 60px 10px 20px;
  }
}

.footer_nav_list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: nowrap;
      -ms-flex-flow: nowrap;
          flex-flow: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_nav_list li {
  width: 22%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer_nav_list {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_nav_list li {
    width: 50%;
  }
}

.nav_list_title {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.nav_list_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
      -ms-flex-flow: column;
          flex-flow: column;
  padding-left: 1rem;
  line-height: 1.4;
  margin-bottom: 60px;
}
.nav_list_item li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .nav_list_item {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.copy {
  font-size: 1rem;
  text-align: center;
}

/*============================
============================*/
/*============================
============================*/
/*============================
mv Slider
============================*/
.slider {
  list-style: none;
  width: 100%; /* スライダーの幅を指定*/
}

/*==//  ここから矢印  //==*/
.slick-arrow {
  z-index: 100;
}

.slick-next {
  right: 25px;
}

.slick-prev {
  left: 0;
}

.slick-prev:before,
.slick-next:before {
  font-family: "Material Icons";
  content: "\e5ce";
  display: inline-block;
  font-size: 24px;
  color: #ff2a2a;
  background-color: #fff;
  border-radius: 50%;
  padding: 0.4rem;
}

.slick-prev:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.slick-next:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}