@charset "UTF-8";
/*
Theme Name: Horse Aroma Project
Version: 1.0
*/
.wf1 {
  font-family: "A1明朝", "A1 Mincho", serif; }

.wf2 {
  font-family: "EB Garamond", serif; }

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5;
  font-size: 14px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  width: 100%; }
  @media (max-width: 599px) {
    body {
      width: 100%; } }
  @media (min-width: 600px) {
    body {
      width: 100%; } }
  @media (min-width: 768px) {
    body {
      width: 100%; } }
  @media (min-width: 600px) and (max-width: 959px) {
    body {
      width: 100%; } }
  @media (min-width: 960px) {
    body {
      width: 100%; } }
  @media (max-width: 959px) {
    body {
      width: 100%; } }
  @media (max-width: 1279px) {
    body {
      width: 100%; } }
  @media (min-width: 1280px) {
    body {
      width: 100%; } }

@media (max-width: 599px) {
  .notsp {
    display: none !important; } }

@media (min-width: 600px) and (max-width: 959px) {
  .nottab {
    display: none !important; } }

@media (min-width: 600px) {
  .sponly {
    display: none !important; } }

@media screen and (min-width: 340px) {
  .ip5only {
    display: none !important; } }

@media (max-width: 599px) {
  .tabonly {
    display: none !important; } }
@media (min-width: 960px) {
  .tabonly {
    display: none !important; } }

@media (min-width: 960px) {
  .mobonly {
    display: none !important; } }

@media (max-width: 959px) {
  .pconly {
    display: none !important; } }

@media (max-width: 1279px) {
  .pcwonly {
    display: none !important; } }

img {
  border: none;
  max-width: 100%;
  height: auto; }

a {
  color: #fff; }

a, a:focus {
  outline: none; }

a:not(.touch-hover):hover {
  color: #fff; }

.btn {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: .2s;
  border: solid 1px #fff;
  margin: 20px auto; }

#loading {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 400; }
  #loading .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
  #loading .ball-pulse-sync > div {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    animation-fill-mode: both;
    display: inline-block; }
  #loading .ball-pulse-sync > div:nth-child(1) {
    background-color: #e75550;
    animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out; }
  #loading .ball-pulse-sync > div:nth-child(2) {
    background-color: #a77fb4;
    animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; }
  #loading .ball-pulse-sync > div:nth-child(3) {
    background-color: #4bb69d;
    animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; }
  #loading .ball-pulse-sync > div:nth-child(4) {
    background-color: #f09400;
    animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; }

header {
  position: absolute;
  z-index: 200; }
  @media (min-width: 600px) {
    header {
      background-color: #fff;
      position: fixed;
      bottom: 0;
      width: 100%;
      height: 90px;
      padding: 20px; } }
  @media (min-width: 960px) {
    header {
      display: flex;
      justify-content: space-between; } }
  header h1 {
    color: #000;
    font-size: 10px; }
    header h1 .tagline {
      display: block;
      font-size: 12px;
      margin-bottom: 7px; }
    header h1 .title {
      width: 260px;
      vertical-align: middle;
      margin-right: 10px;
      margin-left: 2px; }
    header h1 .logo {
      width: 180px;
      vertical-align: -2px;
      margin-left: 5px; }

.menu {
  z-index: 200; }
  @media (max-width: 1279px) {
    .menu {
      position: fixed;
      background-color: #888;
      height: 100%;
      width: 10em;
      top: 0;
      right: 0;
      color: #fff;
      text-align: center;
      padding: 65px 0 0 0;
      transform: translateX(10em); } }
  @media (min-width: 1280px) {
    .menu {
      color: #000;
      display: flex;
      transform: translateX(0) !important; } }
  .menu li .menu_item.current {
    position: relative; }
    .menu li .menu_item.current::after {
      content: "";
      position: absolute;
      z-index: -1;
      width: 30px;
      height: 30px;
      border-radius: 100%;
      top: calc(50% - 15px);
      left: calc(50% - 15px);
      animation: curball .5s; }
@keyframes curball {
  from {
    transform: scale(0); }
  to {
    transform: scale(1); } }
  .menu li:nth-child(1) .menu_item.current::after {
    background-color: #e75550; }
  .menu li:nth-child(2) .menu_item.current::after {
    background-color: #a77fb4; }
  .menu li:nth-child(3) .menu_item.current::after {
    background-color: #4bb69d; }
  .menu li:nth-child(4) .menu_item.current::after {
    background-color: #f09400; }
  @media (min-width: 1280px) {
    .menu a {
      color: #000;
      text-align: center; } }

.btn_mobmenu {
  color: #000;
  display: block;
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 300;
  text-decoration: none;
  padding: 10px 20px 10px 10px; }
  @media (min-width: 600px) {
    .btn_mobmenu {
      top: auto;
      bottom: 25px;
      right: 20px; } }
  @media (min-width: 1280px) {
    .btn_mobmenu {
      display: none; } }
  .btn_mobmenu .icon {
    position: absolute;
    display: block;
    top: 10px;
    right: 0;
    width: 22px;
    height: 17px;
    transition: all .4s; }
  .btn_mobmenu .icon span {
    display: inline-block;
    position: absolute;
    right: 2px;
    width: 12px;
    height: 2px;
    background-color: #000;
    transition: all .4s; }
  .btn_mobmenu .icon span:nth-of-type(1) {
    top: 5px;
    transform: rotate(-45deg); }
  .btn_mobmenu .icon span:nth-of-type(2) {
    top: 13px;
    transform: rotate(45deg); }

.btn_mobmenu.active {
  color: #fff; }
  .btn_mobmenu.active .icon {
    transform-origin: center; }
  .btn_mobmenu.active .icon span {
    background-color: #fff; }
  .btn_mobmenu.active .icon span:nth-of-type(1) {
    transform: rotate(45deg); }
  .btn_mobmenu.active .icon span:nth-of-type(2) {
    transform: rotate(-45deg); }

.menu_item {
  display: block;
  text-decoration: none;
  line-height: 1.2;
  padding: 15px 0;
  margin: 5px auto;
  position: relative; }
  @media (min-width: 1280px) {
    .menu_item {
      padding: 15px 1.5vw;
      width: auto; } }

.pdf_dl {
  position: relative; }
  .pdf_dl::after {
    content: "";
    width: 60px;
    height: 60px;
    background-image: url(images/leaflet2.jpg);
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    top: 5px;
    left: calc(50% - 30px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: .2s; }
    @media (min-width: 1280px) {
      .pdf_dl::after {
        position: absolute;
        top: -60px;
        left: calc(50% - 30px); } }
  .pdf_dl.hover::after {
    transform: translateY(-5px); }
  .pdf_dl .hosoku {
    margin-left: .2em; }

.btn_insta {
  font-size: 30px;
  transition: .2s; }
  .btn_insta.hover {
    transform: scale(1.1); }
  .btn_insta::after {
    content: "";
    display: block;
    background: url("images/insta_w.svg") left top no-repeat;
    position: relative;
    width: 60px;
    height: 20px;
    background-size: contain;
    margin: 0 auto; }
    @media (min-width: 1280px) {
      .btn_insta::after {
        background-image: url("images/insta.svg"); } }
  @media (min-width: 1280px) {
    .btn_insta {
      font-size: 24px;
      top: -12px; }
      .btn_insta.hover {
        transform: scale(1.1) translateY(-3px); } }

footer {
  background-color: #fff;
  padding: 20px 20px 10px;
  color: #000;
  text-align: right;
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  display: none; }
  footer .mark {
    font-size: 16px; }
  footer .logo {
    width: 230px;
    margin-left: 5px;
    vertical-align: text-bottom; }

#fp-nav ul li a span {
  background: #ccc; }

#fp-nav.fp-right {
  right: 2px; }

.fp-tableCell {
  position: relative;
  z-index: 1; }

.section:not(.sec-top) {
  position: relative;
  z-index: 1; }
  .section:not(.sec-top)::before, .section:not(.sec-top)::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 50%;
    display: block;
    background-size: cover;
    opacity: .2;
    mix-blend-mode: multiply; }
    @media (min-width: 600px) {
      .section:not(.sec-top)::before, .section:not(.sec-top)::after {
        height: calc(50% - 45px); } }
    @media (min-width: 960px) {
      .section:not(.sec-top)::before, .section:not(.sec-top)::after {
        width: 50%;
        max-width: 720px; } }
  .section:not(.sec-top)::after {
    top: 50%;
    left: 0; }
    @media (min-width: 600px) {
      .section:not(.sec-top)::after {
        top: calc(50% - 45px); } }
  .section:not(.sec-top) .sec_ttl {
    font-size: 32px;
    text-align: center;
    margin-bottom: 70px;
    position: relative; }
    @media (min-width: 960px) {
      .section:not(.sec-top) .sec_ttl {
        font-size: 48px;
        margin-bottom: 0; }
        .section:not(.sec-top) .sec_ttl span {
          display: block;
          position: absolute;
          top: 50%;
          transform: translateY(-50%); } }

.section:not(.sec-top) .sec_inner {
  padding: 70px 25px 50px;
  max-width: 1440px;
  margin: 0 auto; }
  @media (min-width: 600px) {
    .section:not(.sec-top) .sec_inner {
      margin-bottom: 90px;
      padding: 70px; } }
  @media (min-width: 960px) {
    .section:not(.sec-top) .sec_inner {
      display: flex;
      padding: 0; } }
  @media (min-width: 960px) {
    .section:not(.sec-top) .sec_inner .sec_ttl {
      width: 50%; } }
  @media (min-width: 960px) {
    .section:not(.sec-top) .sec_inner .sec_cont {
      width: 50%;
      padding: 40px 30px; } }
  @media (min-width: 1280px) {
    .section:not(.sec-top) .sec_inner .sec_cont {
      padding: 60px; } }
  @media (min-width: 960px) {
    .section:not(.sec-top) .sec_inner .sec_cont p {
      margin-left: 1em; } }

.cont_ttl {
  font-size: 20px;
  margin-bottom: 20px; }

.sec-top {
  position: relative; }
  .sec-top .sec_inner {
    padding: 0 0 70px; }
    @media (min-width: 600px) {
      .sec-top .sec_inner {
        padding-bottom: 90px; } }
  .sec-top .sec_title {
    color: #000;
    text-align: center;
    font-size: 12px;
    margin: 100px 0 70px; }
    .sec-top .sec_title .hap {
      width: 80%;
      max-width: 300px;
      display: block;
      margin: 10px auto 20px; }
    .sec-top .sec_title .logo {
      width: 60%;
      max-width: 220px;
      display: block;
      margin: 30px auto 0; }
  .sec-top .sec_cont {
    position: relative; }
    .sec-top .sec_cont .copy {
      position: absolute;
      z-index: 10;
      width: 90%;
      top: 50%;
      transform: translate(-50%, -50%);
      left: 50%; }
      @media (min-width: 600px) {
        .sec-top .sec_cont .copy {
          width: 70%;
          max-width: 840px; } }
    @media (min-width: 600px) {
      .sec-top .sec_cont .top_photos {
        display: flex;
        justify-content: space-between;
        align-content: space-between;
        flex-wrap: wrap;
        margin: 0 auto;
        width: 85%;
        max-width: 1200px;
        position: relative;
        z-index: 1;
        height: calc(100vh - 130px);
        max-height: 50vw; } }
    .sec-top .sec_cont .tp_item {
      padding: 10px;
      position: relative;
      display: block; }
      .sec-top .sec_cont .tp_item img {
        border-radius: 100%;
        overflow: hidden;
        display: block; }
      .sec-top .sec_cont .tp_item::before, .sec-top .sec_cont .tp_item::after {
        content: "";
        display: block;
        position: absolute;
        width: calc(100% - 10px * 2);
        height: calc(100% - 10px * 2);
        background-color: #fff;
        border-radius: 100%;
        z-index: -1; }
      .sec-top .sec_cont .tp_item::before {
        top: 5px;
        left: 5px;
        animation: photobg_rotate 3s linear infinite;
        transform-origin: calc(50% + 10px / 2) calc(50% + 10px / 2); }
      .sec-top .sec_cont .tp_item::after {
        bottom: 5px;
        left: 5px;
        animation: photobg_rotate 2s linear infinite;
        transform-origin: calc(50% + 10px / 2) calc(50% - 10px / 2); }
@keyframes photobg_rotate {
  from {
    transform: rotateZ(0); }
  to {
    transform: rotateZ(360deg); } }
      @media (min-width: 600px) {
        .sec-top .sec_cont .tp_item {
          width: 23%; } }
    @media (min-width: 600px) {
      .sec-top .sec_cont .tp_item:nth-child(4n+1)::before {
        background-color: #e75550; }
      .sec-top .sec_cont .tp_item:nth-child(4n+1)::after {
        background-color: rgba(231, 85, 80, 0.7); }
      .sec-top .sec_cont .tp_item:nth-child(4n+2)::before {
        background-color: #a77fb4; }
      .sec-top .sec_cont .tp_item:nth-child(4n+2)::after {
        background-color: rgba(167, 127, 180, 0.7); }
      .sec-top .sec_cont .tp_item:nth-child(4n+3)::before {
        background-color: #4bb69d; }
      .sec-top .sec_cont .tp_item:nth-child(4n+3)::after {
        background-color: rgba(75, 182, 157, 0.7); }
      .sec-top .sec_cont .tp_item:nth-child(4n+4)::before {
        background-color: #f09400; }
      .sec-top .sec_cont .tp_item:nth-child(4n+4)::after {
        background-color: rgba(240, 148, 0, 0.7); }
      .sec-top .sec_cont .tp_item:nth-child(1)::before {
        animation-duration: 4s;
        animation-delay: -1s; }
      .sec-top .sec_cont .tp_item:nth-child(1)::after {
        animation-duration: 2s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(2)::before {
        animation-duration: 5s;
        animation-delay: -2s; }
      .sec-top .sec_cont .tp_item:nth-child(2)::after {
        animation-duration: 4s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(3)::before {
        animation-duration: 4s;
        animation-delay: -2s; }
      .sec-top .sec_cont .tp_item:nth-child(3)::after {
        animation-duration: 3s;
        animation-delay: -2s; }
      .sec-top .sec_cont .tp_item:nth-child(4)::before {
        animation-duration: 4s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(4)::after {
        animation-duration: 3s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(5)::before {
        animation-duration: 3s;
        animation-delay: -2s; }
      .sec-top .sec_cont .tp_item:nth-child(5)::after {
        animation-duration: 2s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(6)::before {
        animation-duration: 3s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(6)::after {
        animation-duration: 2s;
        animation-delay: -1s; }
      .sec-top .sec_cont .tp_item:nth-child(7)::before {
        animation-duration: 5s;
        animation-delay: 0s; }
      .sec-top .sec_cont .tp_item:nth-child(7)::after {
        animation-duration: 4s;
        animation-delay: -1s; }
      .sec-top .sec_cont .tp_item:nth-child(8)::before {
        animation-duration: 4s;
        animation-delay: -1s; }
      .sec-top .sec_cont .tp_item:nth-child(8)::after {
        animation-duration: 3s;
        animation-delay: -2s; } }
    @media (max-width: 599px) {
      .sec-top .sec_cont .slick-slide:nth-child(4n+1) .tp_item::before {
        background-color: #e75550; }
      .sec-top .sec_cont .slick-slide:nth-child(4n+1) .tp_item::after {
        background-color: rgba(231, 85, 80, 0.7); }
      .sec-top .sec_cont .slick-slide:nth-child(4n+2) .tp_item::before {
        background-color: #a77fb4; }
      .sec-top .sec_cont .slick-slide:nth-child(4n+2) .tp_item::after {
        background-color: rgba(167, 127, 180, 0.7); }
      .sec-top .sec_cont .slick-slide:nth-child(4n+3) .tp_item::before {
        background-color: #4bb69d; }
      .sec-top .sec_cont .slick-slide:nth-child(4n+3) .tp_item::after {
        background-color: rgba(75, 182, 157, 0.7); }
      .sec-top .sec_cont .slick-slide:nth-child(4n+4) .tp_item::before {
        background-color: #f09400; }
      .sec-top .sec_cont .slick-slide:nth-child(4n+4) .tp_item::after {
        background-color: rgba(240, 148, 0, 0.7); }
      .sec-top .sec_cont .slick-slide:nth-child(1) .tp_item::before {
        animation-duration: 3s;
        animation-delay: 0s; }
      .sec-top .sec_cont .slick-slide:nth-child(1) .tp_item::after {
        animation-duration: 3s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(2) .tp_item::before {
        animation-duration: 4s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(2) .tp_item::after {
        animation-duration: 3s;
        animation-delay: -1s; }
      .sec-top .sec_cont .slick-slide:nth-child(3) .tp_item::before {
        animation-duration: 3s;
        animation-delay: 0s; }
      .sec-top .sec_cont .slick-slide:nth-child(3) .tp_item::after {
        animation-duration: 3s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(4) .tp_item::before {
        animation-duration: 5s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(4) .tp_item::after {
        animation-duration: 2s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(5) .tp_item::before {
        animation-duration: 5s;
        animation-delay: -1s; }
      .sec-top .sec_cont .slick-slide:nth-child(5) .tp_item::after {
        animation-duration: 4s;
        animation-delay: -1s; }
      .sec-top .sec_cont .slick-slide:nth-child(6) .tp_item::before {
        animation-duration: 3s;
        animation-delay: -1s; }
      .sec-top .sec_cont .slick-slide:nth-child(6) .tp_item::after {
        animation-duration: 4s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(7) .tp_item::before {
        animation-duration: 5s;
        animation-delay: -2s; }
      .sec-top .sec_cont .slick-slide:nth-child(7) .tp_item::after {
        animation-duration: 2s;
        animation-delay: 0s; }
      .sec-top .sec_cont .slick-slide:nth-child(8) .tp_item::before {
        animation-duration: 4s;
        animation-delay: 0s; }
      .sec-top .sec_cont .slick-slide:nth-child(8) .tp_item::after {
        animation-duration: 4s;
        animation-delay: 0s; } }
  .sec-top .bg {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: h-rot 10s infinite; }
@keyframes h-rot {
  0% {
    -webkit-filter: hue-rotate(0deg);
    -moz-filter: hue-rotate(0deg);
    filter: hue-rotate(0deg); }
  100% {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg); } }
.sec-message {
  background-color: #e75550; }
  @media (max-width: 599px) {
    .sec-message::before {
      background: url("images/message_bg1.jpg") center top no-repeat; }
    .sec-message::after {
      background: url("images/message_bg2.jpg") center center no-repeat; } }
  @media (min-width: 960px) {
    .sec-message .sec_ttl span {
      left: 50%;
      transform: translate(-50%, -50%) !important; } }
  .sec-message .cont_ttl {
    font-size: 22px; }
  .sec-message .message_txt {
    text-align: justify;
    margin-bottom: 2em;
    font-size: 16px; }
  .sec-message .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: .2;
    mix-blend-mode: multiply;
    background: url("images/message_bg_pc.jpg") center top no-repeat;
    background-size: cover; }
    @media (min-width: 600px) {
      .sec-message .bg {
        height: calc(100vh - 90px); } }
    @media (min-width: 960px) {
      .sec-message .bg {
        width: 50%;
        max-width: 720px;
        left: 50%;
        transform: translateX(-100%); } }

.prof .prof_head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px; }
.prof .ph_name {
  text-align: right; }
  .prof .ph_name .kata {
    font-size: 12px;
    vertical-align: middle; }
    @media (max-width: 599px) {
      .prof .ph_name .kata {
        display: block; } }
  .prof .ph_name .name {
    font-size: 18px;
    vertical-align: middle;
    margin-left: .5em; }
    @media (max-width: 599px) {
      .prof .ph_name .name {
        display: block; } }
.prof .ph_photo {
  width: 94px;
  height: 94px;
  border-radius: 100%;
  overflow: hidden;
  margin-left: 10px; }
@media (min-width: 960px) {
  .prof .prof_cont {
    margin-left: 3em; } }
@media (min-width: 1280px) {
  .prof .prof_cont {
    margin-left: 10em; } }
.prof .prof_cont .pc_txt {
  font-size: 13px;
  text-align: justify;
  margin-bottom: 10px; }

.sec-service {
  background-color: #a77fb4; }
  .sec-service::before {
    background: url("images/service_bg1.jpg") center top no-repeat; }
  .sec-service::after {
    background: url("images/service_bg2.jpg") center bottom no-repeat; }
  @media (min-width: 960px) {
    .sec-service::before, .sec-service::after {
      left: 50% !important; }
    .sec-service .sec_ttl {
      order: 2; }
      .sec-service .sec_ttl span {
        right: 10%; } }
  .sec-service .btn_counselling {
    background-color: #9c6fab;
    width: calc(14em + 40px);
    margin-bottom: 70px; }
    @media (min-width: 960px) {
      .sec-service .btn_counselling {
        margin-bottom: 40px; } }
    .sec-service .btn_counselling.hover {
      background-color: #915fa1; }
  .sec-service .btn_shop {
    background-color: #9c6fab;
    width: calc(9em + 40px); }
    .sec-service .btn_shop.hover {
      background-color: #915fa1; }

.btn_movie {
  width: 110px;
  display: block;
  border: solid 3px #000;
  position: relative;
  margin: 0 auto 30px; }
  .btn_movie::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5;
    transition: .3s; }
  .btn_movie::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 17.3px;
    border-color: transparent transparent transparent #fff;
    transition: .3s; }
  .btn_movie.hover::before {
    opacity: .7; }
  .btn_movie.hover::after {
    transform: translate(-50%, -50%) scale(1.3); }
  @media (min-width: 960px) {
    .btn_movie {
      position: absolute;
      top: calc(100% - 190px);
      left: calc(50% + 20px); } }

.movie_box {
  position: absolute;
  left: -100%;
  opacity: 0;
  z-index: -1; }

.service_merit {
  margin-top: 30px; }
  @media (min-width: 960px) {
    .service_merit {
      margin-left: 1em; } }
  .service_merit .sm_item {
    margin-left: 40px;
    margin-bottom: 30px;
    position: relative;
    font-size: 13px; }
    .service_merit .sm_item::before {
      display: block;
      width: 30px;
      height: 30px;
      border-radius: 100%;
      font-size: 26px;
      color: #a77fb4;
      background-color: #fff;
      position: absolute;
      top: 10px;
      left: -40px;
      text-align: center;
      line-height: 30px;
      font-family: "A1明朝", "A1 Mincho", serif; }
    .service_merit .sm_item:nth-child(1)::before {
      content: "1"; }
    .service_merit .sm_item:nth-child(2)::before {
      content: "2"; }
    .service_merit .sm_item:nth-child(3)::before {
      content: "3"; }
    .service_merit .sm_item::after {
      content: "";
      width: 32px;
      height: 13px;
      background-image: url(images/merit.svg);
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      top: 0;
      left: -41px; }
    @media (min-width: 960px) {
      .service_merit .sm_item {
        margin-bottom: 20px; } }
  .service_merit .sm_ttl {
    font-size: 16px;
    display: block;
    line-height: 1.2;
    margin-bottom: 5px; }

.sec-comment {
  background-color: #4bb69d; }
  .sec-comment::before {
    background: url("images/user_bg1.jpg") center center no-repeat; }
  .sec-comment::after {
    background: url("images/user_bg2.jpg") center center no-repeat; }
  @media (min-width: 960px) {
    .sec-comment::before, .sec-comment::after {
      left: 50% !important;
      transform: translateX(-100%); } }
  @media (min-width: 960px) {
    .sec-comment .sec_ttl span {
      left: 10%; } }

.cmt_list {
  font-size: 16px;
  font-weight: bold;
  border-top: solid 1px rgba(255, 255, 255, 0.2); }
  @media (min-width: 600px) {
    .cmt_list {
      text-align: center; } }
  @media (min-width: 1280px) {
    .cmt_list {
      font-size: 18px; } }
  .cmt_list .cl_item {
    padding: .5em;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    font-feature-settings: "palt"; }
    @media (min-width: 600px) {
      .cmt_list .cl_item {
        padding: .7em; } }

.sec-contact {
  background-color: #f09400;
  min-height: 100vh; }
  .sec-contact::before {
    background: url("images/contact_bg1.jpg") center center no-repeat; }
  .sec-contact::after {
    background: url("images/contact_bg2_2.jpg") center center no-repeat; }
  @media (min-width: 960px) {
    .sec-contact::before, .sec-contact::after {
      left: 50% !important; }
    .sec-contact .sec_ttl {
      order: 2; }
      .sec-contact .sec_ttl span {
        right: 10%; } }
  .sec-contact .btn_counselling {
    background-color: #d78400;
    max-width: calc(16em + 40px);
    font-size: 16px; }
    @media (min-width: 600px) {
      .sec-contact .btn_counselling {
        max-width: calc(24em + 40px); } }
    .sec-contact .btn_counselling.hover {
      background-color: #bd7500; }
  @media (max-width: 599px) {
    .sec-contact .sec_inner {
      padding-bottom: 130px !important; } }

.contact_counselling {
  margin-bottom: 40px; }
  @media (min-width: 600px) {
    .contact_counselling {
      margin-bottom: 70px; } }

.contact_info {
  text-align: center; }
  .contact_info .phone {
    display: block;
    margin: 20px auto 0;
    letter-spacing: .1em; }
    .contact_info .phone .tel {
      font-size: 22px;
      margin-left: 10px;
      text-decoration: none; }
  .contact_info .mail {
    font-size: 18px;
    text-decoration: none;
    letter-spacing: .1em; }
    .contact_info .mail.hover {
      text-decoration: underline; }
