@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #857264;
  --gray: #444444;
  --l-gray: #EEEEEE;
  --blue: #0163E0;
  --font: 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --cormorant: "Cormorant", serif;
  --mincho: "Zen Old Mincho", serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
          animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
          animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
            clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
            clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}
.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
          animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
.header.-is-fixed {
  z-index: 999;
  padding: 0;
  background: #FF9194;
  transition: all 0.5s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: min(100%, 500px);
  padding: 10px 0 10px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .header {
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .header {
    left: 0;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 32px;
}

.header__nav_toggle_bar::after {
  width: 32px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 5px;
  width: 4em;
  white-space: nowrap;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 30px;
}

.header__logo {
  z-index: 10;
}

.header.-is-open .header__nav_contents {
  background: #FF9194;
  height: 100%;
  padding-top: 70px;
}
.header.-is-open .header__nav_wrap {
  height: auto;
}
.header.-is-open .header__nav_wrap {
  background: url(../img/top/menu_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  border-radius: 10px 10px 20px 20px;
  margin: 15px;
  padding: 40px 20px;
  margin-top: 0;
}

.header .header__nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 6;
  transition: 0.5s;
}

.header.-is-open .header__nav {
  height: 100vh;
  position: absolute;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.header__nav_contents {
  padding: 0;
  position: relative;
  top: 100%;
  transform: translateY(-100%);
  opacity: 0;
}

.header.-is-open .header__nav_contents {
  opacity: 1;
  top: 35%;
  transform: translateY(-35%);
}

.header .header__nav_item a {
  display: flex;
  opacity: 0;
  visibility: hidden;
}

.header.-is-open .header__nav_item a {
  opacity: 1;
  visibility: visible;
  transition: all 1.5s ease;
}

.header__nav_list {
  counter-reset: number 0;
}

.header__nav_item a {
  font-size: 21px;
  font-family: var(--cormorant);
  letter-spacing: 0.08em;
  display: flex;
  gap: 10px;
  line-height: 1.4;
  padding: 10px 0;
  background: #857264;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}
.header__nav_item a::before {
  counter-increment: number 1;
  content: "0" counter(number);
  font-size: 18px;
  line-height: 1.2;
}
.header__nav_item a:hover {
  background: linear-gradient(193deg, #E9BAD8, #FF9194, #FFB292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__nav_item.current a {
  background: linear-gradient(193deg, #E9BAD8, #FF9194, #FFB292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__under_box {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.sns_link {
  background: linear-gradient(193deg, #E9BAD8, #FF9194, #FFB292);
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.sns_link i {
  color: #fff;
}

.header__under_list {
  gap: 20px;
}

.header__under_item a {
  font-size: 12px;
  color: #50393F;
}

/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.lity-container {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .lity-container {
    width: 50%;
  }
}

.tel_list {
  background: var(--white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tel_list a {
  border: 1px solid #857264;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  font-family: var(--mincho);
  letter-spacing: 0.05em;
}
.tel_list a i {
  color: #FF9194;
  font-size: 20px;
}
.tel_list a:hover {
  background: #FF9194;
  border: 1px solid #FF9194;
  color: var(--white);
}
.tel_list a:hover i {
  color: var(--white);
  font-size: 20px;
}

/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  font-family: "Montserrat Alternates", serif;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #38ACEF;
  opacity: 1;
  border-radius: 50%;
}
@media screen and (min-width: 1101px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 60px;
    height: 60px;
    line-height: 4;
    font-size: 16px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 4.5;
}

.wp-pagenavi span.current {
  color: #38ACEF;
  cursor: default;
  background: #E6F8FF;
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }
  .wp-pagenavi .extend + .larger {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .wp-pagenavi a,
.wp-pagenavi span {
    width: 40px;
  }
}
.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}
/***************************

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}
.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}
.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}
.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}
@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}
@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  background: linear-gradient(270deg, #E9BAD8, #FF9194, #FFB292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-family: var(--cormorant);
  letter-spacing: 0.08em;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 450px) {
  .title01 {
    font-size: 80px;
  }
}
.title01 span {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  background: #857264;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--mincho);
}
@media screen and (min-width: 450px) {
  .title01 span {
    font-size: 24px;
  }
}

.title02 {
  color: #857264;
  font-family: var(--mincho);
  font-weight: 600;
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.12em;
  line-height: 1.3;
}
.title02 span {
  background: linear-gradient(270deg, #E9BAD8, #FF9194, #FFB292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  line-height: 1.2;
}
@media screen and (min-width: 450px) {
  .title02 span {
    font-size: 56px;
  }
}
.title02 span::after {
  content: "";
  background: linear-gradient(270deg, #E9BAD8, #FF9194, #FFB292);
  width: 100%;
  max-width: 265px;
  margin: 0 auto;
  height: 2px;
  display: block;
  margin-bottom: 10px;
}
@media screen and (min-width: 450px) {
  .title02 {
    font-size: 38px;
  }
}

.title03 {
  background: linear-gradient(270deg, #E9BAD8, #FF9194, #FFB292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--mincho);
  font-size: 18px;
  left: 0.04em;
  text-align: center;
  padding: 5px;
  position: relative;
}
@media screen and (min-width: 450px) {
  .title03 {
    font-size: 20px;
  }
}
.title03::after {
  content: "";
  width: 19px;
  height: 15px;
  display: block;
  background: url(../img/top/fukudashi_center.png);
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.title-border-block {
  background: linear-gradient(270deg, #E9BAD8, #FF9194, #FFB292);
  border-radius: 50px;
  padding: 2px;
}

.title-border-content {
  background: #ffffff;
  border-radius: 50px;
  padding: 1px;
}

.text {
  font-size: 16px;
  line-height: 2.1;
  font-family: var(--mincho);
}
@media screen and (min-width: 450px) {
  .text {
    font-size: 18px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container_l {
  max-width: 500px;
  margin: 0 auto;
  padding-right: 8px;
  padding-left: 8px;
}

.container_m {
  max-width: 420px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 500px) {
  .container_m {
    padding-right: 0;
    padding-left: 0;
  }
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  border-radius: 36px;
  background-color: #FF9194;
  border: 1px solid transparent;
  padding: 15px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--mincho);
}
.btn01:hover {
  color: #FF9194;
  background-color: #fff;
  border: 1px solid #FF9194;
}

.btn02 {
  font-size: 18px;
  color: #38ACEF;
  border-radius: 36px;
  font-weight: 500;
  background-color: #fff;
  border: 3px solid #38ACEF;
  padding: 13px 40px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.btn02.is_blue {
  background-color: #38ACEF;
  color: #fff;
}
.btn02.is_blue::before {
  content: "";
  background: url(../img/common/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
  transform: scale(-1, 1);
}
.btn02.is_blue:hover {
  color: #fff;
}
@media screen and (max-width: 450px) {
  .btn02 {
    width: 100%;
    justify-content: space-between;
  }
}
.btn02::before {
  content: "";
  background: url(../img/common/arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
  transform: scale(-1, 1);
}
.btn02:hover {
  color: #38ACEF;
}
.btn02:hover::before {
  -webkit-animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideInBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(-32px);
    opacity: 0;
  }
  50% {
    transform: translateX(32px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(-32px);
    opacity: 0;
  }
  50% {
    transform: translateX(32px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(24px);
    opacity: 0;
  }
  50% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(24px);
    opacity: 0;
  }
  50% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.btn_unit {
  position: relative;
}

.btn03 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  border-radius: 51px;
  background: #38ACEF;
  gap: 10px;
  padding: 30px 60px;
}
@media screen and (min-width: 769px) {
  .btn03 {
    padding: 30px 80px;
  }
}
.btn03 .wpcf7-submit {
  background: url(../img/common/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center right 20px;
  color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.btn03:hover {
  color: #fff;
}
.btn03:hover .wpcf7-submit {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/***************************

object/component/_form.scss

***************************/
/***************************

object/object/project/_home.scss

***************************/
.section {
  padding-top: 20px;
  margin-top: -20px;
}

.scroll-contetns {
  width: min(100%, 500px);
  order: 2;
  margin: 0 auto;
  background: #FF9194;
}

@media screen and (max-width: 490px) {
  .scroll-contetns {
    width: 100%;
  }
}
@media screen and (max-width: 1300px) {
  .layout__inner_block.-right {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .layout__inner_block.-left {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .layout__inner_block {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    flex: 1;
    padding: 0 15px;
  }
  .logo_left {
    padding: 30px;
    position: relative;
    z-index: 2;
  }
  .title_left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding: 30px;
  }
  .layout__inner_block.-right {
    order: 3;
    z-index: 0;
    height: 100vh;
  }
  .layout__inner_block.-right .header__nav {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .layout__inner_block.-right .header__under_box {
    position: absolute;
    bottom: 25px;
    right: 20px;
  }
  .title_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
  }
}
.header__nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.header__under_box {
  margin-top: 180px;
}

.mv_contents {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.mv_contents .img-slide {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 120px;
  background-image: url(../img/common/bg_text.png);
  background-repeat: repeat-x;
  background-size: auto 80px;
  -webkit-animation: loop-txt 35s linear infinite;
  animation: loop-txt 35s linear infinite;
  transition: 0.4s;
}
@media screen and (min-width: 450px) {
  .mv_contents .img-slide {
    background-size: auto 120px;
    bottom: 50px;
  }
}

.mv_side {
  position: absolute;
  bottom: 10px;
  left: 20px;
  z-index: 5;
  width: 80px;
}
@media screen and (min-width: 350px) {
  .mv_side {
    width: 100px;
  }
}
@media screen and (min-width: 450px) {
  .mv_side {
    width: auto;
    bottom: 10px;
    left: 30px;
  }
}

.img-slide_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/common/main_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.img-slide {
  position: absolute;
  bottom: 92px;
  left: 0;
  width: 100%;
  height: 166px;
  background-image: url(../img/common/bg_text.png);
  background-repeat: repeat-x;
  background-size: auto 166px;
  -webkit-animation: loop-txt 35s linear infinite;
  animation: loop-txt 35s linear infinite;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .img-slide {
    height: 80px;
    background-size: auto 80px;
  }
}
@-webkit-keyframes loop-txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}
@keyframes loop-txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}
.layout__outer_block {
  z-index: 1;
}

.sec_problem {
  margin-top: -1px;
  position: relative;
  padding-top: 0;
}
.sec_problem .sec_01_inner {
  background: url(../img/top/sec01_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-top: 90px;
  position: relative;
  z-index: 5;
  padding-bottom: 140px;
}

.problem_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
}
@media screen and (min-width: 450px) {
  .problem_list {
    gap: 10px;
  }
}
.problem_list.is_pink .problem_item {
  background: #FFDCD2;
}
.problem_list.is_pink .problem_item.-right::after {
  content: "";
  width: 19px;
  height: 18px;
  display: block;
  background: url(../img/top/fukudashi_right-p.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -12px;
  right: 20px;
}
.problem_list.is_pink .problem_item.-left::after {
  content: "";
  width: 19px;
  height: 18px;
  display: block;
  background: url(../img/top/fukudashi_left-p.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -12px;
  left: 20px;
}

.problem_item {
  border: 1px solid #857264;
  color: #857264;
  font-size: 18px;
  letter-spacing: 0.12em;
  border-radius: 12px;
  padding: 20px;
  font-family: var(--mincho);
  width: 100%;
  max-width: 320px;
  line-height: 1.2;
  background: #fff;
  position: relative;
}
.problem_item:nth-child(odd) {
  margin-left: auto;
}
.problem_item.-right::after {
  content: "";
  width: 19px;
  height: 18px;
  display: block;
  background: url(../img/top/fukudashi_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -12px;
  right: 20px;
}
.problem_item.-left::after {
  content: "";
  width: 19px;
  height: 18px;
  display: block;
  background: url(../img/top/fukudashi_left.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -12px;
  left: 20px;
}

.line_yellow {
  background-image: linear-gradient(transparent 40%, #FFEFB0 40%);
}

.sec_problem02 {
  margin-top: -100px;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 180px;
}

.sec_problem02_contents {
  background: url(../img/top/sec01_bg02.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
}
.sec_problem02_contents .title-border-block {
  margin-top: 50px;
  margin-bottom: 30px;
}

.line_pink {
  color: #FF6D72;
  border-bottom: 1px solid #FF6D72;
}

.check_box {
  padding-top: 90px;
}
@media screen and (min-width: 450px) {
  .check_box {
    padding-top: 110px;
  }
}

.check_wrap {
  border: 1px dotted #F3C9D2;
  border-radius: 15px;
  padding: 20px;
  padding-top: 50px;
  position: relative;
}
.check_wrap::after {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  background: url(../img/top/ico_point.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  right: 20px;
}

.check_title {
  background: #FF9194;
  color: #fff;
  border-radius: 23px;
  font-size: 16px;
  text-align: center;
  padding: 5px;
  font-family: var(--mincho);
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 450px) {
  .check_title {
    font-size: 20px;
    max-width: 340px;
    margin: 0 auto;
    margin-bottom: -30px;
  }
}
.check_title::before {
  content: "";
  width: 200px;
  height: 100%;
  background: url(../img/top/check.png);
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  text-align: center;
  top: -24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
@media screen and (min-width: 450px) {
  .check_title::before {
    width: 280px;
    top: -33px;
  }
}

.check_text {
  color: #857264;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--mincho);
  border-bottom: 1px solid #CBC4BE;
  padding: 5px 0;
}
.check_text:last-child {
  border-bottom: none;
}
.check_text::before {
  content: "";
  width: 20px;
  height: 14px;
  display: inline-block;
  background: url(../img/top/ico_check.png);
  margin-right: 5px;
}
@media screen and (min-width: 450px) {
  .check_text {
    font-size: 18px;
  }
}

.sec_merits {
  position: relative;
  background: url(../img/top/sec_merits_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-top: 90px;
  padding-bottom: 160px;
}
.sec_merits::after {
  content: "";
  background: url(../img/top/star01.png);
  width: 20px;
  height: 23px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 40px;
  left: 15px;
}
.sec_merits::before {
  content: "";
  background: url(../img/top/sec_merits_bg-deco.png);
  width: 100%;
  height: 30px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -19px;
  left: 0;
}
@media screen and (min-width: 450px) {
  .sec_merits::before {
    top: -28px;
  }
}
.sec_merits .title01 {
  background: linear-gradient(250deg, #E9BAD8, #FFFFFF, #FFB292);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
}
.sec_merits .title01 span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.sec_merits .swiper_container {
  position: relative;
}
.sec_merits .swiper_container::before {
  content: "";
  background: url(../img/top/star02.png);
  width: 6px;
  height: 7px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;
  right: 5px;
}
.sec_merits .swiper_container::after {
  content: "";
  background: url(../img/top/star03.png);
  width: 11px;
  height: 13px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -40px;
  left: 15px;
}

.swiper_container {
  position: relative;
  padding-top: 50px;
  padding-bottom: 80px;
}

.merits_box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.merits_box img {
  width: 100%;
  -o-object-fit: none;
     object-fit: none;
}

.swiper-pagination,
.swiper-staff-pagination {
  bottom: 0 !important;
  color: #fff;
  font-family: var(--cormorant);
  font-size: 24px;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: auto !important;
  bottom: 0 !important;
  z-index: 15;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #FF9194;
  font-size: 15px;
  font-weight: bold;
}

.swiper-button-next {
  right: 60px !important;
}
@media screen and (min-width: 450px) {
  .swiper-button-next {
    right: 100px !important;
  }
}

.swiper-button-prev {
  left: 60px !important;
}
@media screen and (min-width: 450px) {
  .swiper-button-prev {
    left: 100px !important;
  }
}

.sec_course {
  position: relative;
  padding: 90px 0;
  background: url(../img/top/sec_course_bg.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
}
.sec_course::before {
  content: "";
  background: url(../img/top/sec_course_bg-deco.png);
  width: 100%;
  height: 41px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -26px;
  left: 0;
}
@media screen and (min-width: 460px) {
  .sec_course::before {
    top: -37px;
  }
}
.sec_course::after {
  content: "";
  background: url(../img/top/sec_course_bg-deco.png);
  width: 100%;
  height: 41px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -22px;
  left: 0;
  transform: rotate(180deg);
}

.course_item {
  padding-top: 60px;
}

.course_img_wrap {
  position: relative;
}
.course_img_wrap .course_num {
  position: absolute;
  top: -30px;
  left: -8px;
  width: 80px;
  z-index: 2;
}
@media screen and (min-width: 450px) {
  .course_img_wrap .course_num {
    width: auto;
    top: -30px;
    left: -25px;
  }
}

.worry_contents {
  padding-top: 20px;
  text-align: center;
}
.worry_contents p {
  font-size: 20px;
}

.worry_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.worry_list .text {
  padding: 0 20px;
}

.course_contents {
  margin: 20px 0 50px;
}
.course_contents.active {
  border-radius: 39px 39px 19px 19px;
  border: 1px solid #FF9194;
  background: #FCF9F8;
}

.contents_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.course_contents_title {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.03em;
  font-family: var(--mincho);
  background: #FF9194;
  border-radius: 36px;
  padding: 20px 40px;
  padding-right: 60px;
  position: relative;
  cursor: pointer;
}
.course_contents_title::before {
  content: "";
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 31px;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.course_contents_title::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 42px;
  width: 2px;
  height: 24px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

.course_contents_title.active {
  border-radius: 36px 36px 0 0;
}
.course_contents_title.active::after {
  opacity: 0;
}

.course_contents_item {
  display: none;
}

.course_contents_item {
  padding: 40px 20px;
}
@media screen and (min-width: 450px) {
  .course_contents_item {
    padding: 60px 25px;
  }
}

.contents_item {
  border-bottom: 1px dotted #CBC4BE;
  padding: 30px 0;
}
.contents_item:first-child {
  padding-top: 0;
}
.contents_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contents_img {
  width: 100%;
  max-width: 143px;
}
.contents_img img {
  width: 100%;
  border-radius: 14px;
}

.contents_textbox {
  width: 100%;
  max-width: 210px;
}

.contents_title {
  font-size: 20px;
  color: #FF9193;
  font-weight: 600;
  font-family: var(--mincho);
  line-height: 1.2;
  padding-bottom: 20px;
}
@media screen and (min-width: 450px) {
  .contents_title {
    font-size: 24px;
  }
}

.contents_text {
  font-size: 16px;
  font-family: var(--mincho);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.sec_voice {
  background: #fff;
}
.sec_voice .sec__bg {
  background: url(../img/top/sec_voice_bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 180px;
}

.sec_staff {
  background: #fff;
  padding-top: 40px;
  position: relative;
}
.sec_staff .sec__bg {
  background: url(../img/top/sec_staff_bg.jpg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: repeat-x;
  padding-bottom: 180px;
}
.sec_staff::before {
  content: "";
  background: url(../img/top/staff_bg-deco.png);
  width: 100%;
  height: 90px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -40px;
  left: 0;
}
.sec_staff .swiper_container {
  position: relative;
  padding-bottom: 0;
}
.sec_staff .swiper-staff-pagination {
  color: #FF9193;
  text-align: center;
  padding-top: 40px;
}
.sec_staff .swiper-button-next,
.sec_staff .swiper-button-prev {
  background: #FF9193;
  bottom: 0 !important;
}
.sec_staff .swiper-button-next:after,
.sec_staff .swiper-button-prev:after {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.staff_img {
  padding-bottom: 20px;
}

.staff_name {
  text-align: center;
  font-size: 24px;
  color: #FF9193;
  font-weight: 600;
  font-family: var(--mincho);
  line-height: 1.2;
  letter-spacing: 0.12;
  padding-bottom: 20px;
}

.sec_faq {
  background: #fff;
  padding-top: 40px;
  position: relative;
}
.sec_faq .sec__bg {
  background: url(../img/top/sec_faq_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 180px;
}
.sec_faq::before {
  content: "";
  background: url(../img/top/staff_bg-deco.png);
  width: 100%;
  height: 90px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -40px;
  left: 0;
}

.faq_wrap {
  padding-top: 50px;
}

.faq_title {
  font-size: 18px;
  line-height: 2.1;
  font-family: var(--mincho);
  font-weight: bold;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.faq_title span {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--cormorant);
  color: #E9B9D8;
}

.faq_contents {
  padding: 20px 0;
  border-top: 1px solid #CBC4BE;
}
.faq_contents:last-child {
  border-bottom: 1px solid #CBC4BE;
}

.faq_title,
.faq_text_wrap {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
}

.faq_text_box {
  display: none;
}
.faq_text_box span {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--cormorant);
  color: #FF9193;
}
.faq_text_box p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  font-family: var(--mincho);
}

.sec_salon {
  background: #fff;
  padding-top: 40px;
  position: relative;
}
.sec_salon .container_l {
  background: url(../img/top/sec_voice_bg.jpg);
  background-position: bottom center;
  background-size: cover;
  background-repeat: repeat-x;
  padding-bottom: 180px;
}
.sec_salon::before {
  content: "";
  background: url(../img/top/staff_bg-deco.png);
  width: 100%;
  height: 90px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -40px;
  left: 0;
}

.salon_list {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.salon_title {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-family: var(--mincho);
}

.salon_address {
  font-size: 18px;
  letter-spacing: 0.12em;
  font-family: var(--mincho);
}

.sec_contact {
  background: #fff;
  padding-top: 40px;
  position: relative;
}
.sec_contact .container_l {
  padding-bottom: 120px;
}
.sec_contact::before {
  content: "";
  background: url(../img/top/staff_bg-deco.png);
  width: 100%;
  height: 90px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -40px;
  left: 0;
}

.form_container {
  padding-top: 50px;
}

.required {
  font-size: 18px;
  color: #fff;
  font-family: var(--mincho);
  background: #FF9594;
  border-radius: 15px;
  padding: 1px 10px;
  margin-right: 5px;
  letter-spacing: 0.12em;
}
.required.--gray {
  background: #ccc;
}

.contact-dt {
  font-size: 18px;
  letter-spacing: 0.12em;
  font-weight: bold;
  font-family: var(--mincho);
  margin-bottom: 10px;
}

select {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input,
select,
textarea {
  border: 1px solid #CBC4BE;
  border-radius: 6px;
  padding: 20px 20px;
  width: 100%;
}

.top-main__search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/top/contact_arrow.jpg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: right 17px center;
  font-family: var(--mincho);
  color: #857264;
}

::-moz-placeholder {
  font-family: var(--mincho);
  color: #CBC4BE;
  font-size: 18px;
  letter-spacing: 0.12em;
}

::placeholder {
  font-family: var(--mincho);
  color: #CBC4BE;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.contact-unit {
  padding-bottom: 30px;
}

input[type=date] {
  width: 100%;
  max-width: 290px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--mincho);
  color: #857264;
}

.contact-dd .flexbox {
  gap: 10px;
  width: 100%;
}

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

.b-select-wrap {
  width: 100%;
  max-width: 120px;
}

.privacypolicy-check {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 450px) {
  .privacypolicy-check {
    max-width: 350px;
  }
}

.wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-family: var(--mincho);
  font-weight: bold;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 450px) {
  .wpcf7-checkbox .wpcf7-list-item-label {
    gap: 10px;
    font-size: 18px;
  }
}

.link_pink {
  color: #FF7F7F;
  text-decoration: underline;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #CBC4BE;
  content: "";
  display: block;
  border-radius: 3px;
  left: 5px;
  width: 24px;
  height: 24px;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(50deg);
  width: 6px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #FF7F7F;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.contact-form_wrap .wpcf7-form-control {
  margin: 0 auto;
  margin-top: 60px;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  border-radius: 45px;
  background-color: #FF7F7F;
  border: 1px solid transparent;
  padding: 30px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--mincho);
  width: 100%;
  max-width: 370px;
  transition: all 0.5s;
  cursor: pointer;
}
.contact-form_wrap .wpcf7-form-control:hover {
  color: #FF7F7F;
  background-color: #fff;
  border: 1px solid #FF7F7F;
}

.footer {
  background: #FFDEE2;
  padding: 60px 10px;
  padding-bottom: 100px;
}

.footer_nev_item:has(.sns_link) {
  width: 100%;
}
@media screen and (min-width: 450px) {
  .footer_nev_item:has(.sns_link) {
    width: auto;
  }
}

.footer_nev_list {
  gap: 5px 30px;
  margin: 10px 0;
}
@media screen and (min-width: 450px) {
  .footer_nev_list {
    gap: 5px 30px;
  }
}
.footer_nev_list .sns_link {
  background: #FFB6B9;
  width: 37px;
  height: 37px;
}

.footer_nev_link {
  font-size: 14px;
  font-weight: 500;
  color: #503940;
  position: relative;
}
.footer_nev_link::before {
  content: "";
  background: #50393F;
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: -15px;
  top: 0;
}
@media screen and (min-width: 450px) {
  .footer_nev_link::before {
    left: -10px;
  }
}

.footer_nev_item:first-child .footer_nev_link::before,
.header__under_item:first-child .footer_nev_link::before {
  background: transparent;
}

small {
  font-size: 14px;
  font-weight: 500;
  color: #503940;
}

.sec_thanks {
  background: #fff;
  margin-top: 100px;
  margin: 100px 0;
  padding: 100px 0;
}

.floating_list {
  width: 100%;
  max-width: 500px;
  padding: 0 10px;
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .floating_list {
    left: auto;
  }
}
@media screen and (min-width: 1301px) {
  .floating_list {
    left: 0;
  }
}
.floating_list .floating_item {
  width: 100%;
  max-width: calc(50% - 10px);
}
.floating_list .btn01 {
  font-size: 14px;
  padding: 15px 20px;
  box-shadow: 4px 4px 8px rgba(213, 142, 169, 0.37);
}
.floating_list .btn01:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .floating_list .btn01 {
    padding: 15px 20px;
    font-size: 18px;
  }
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }
  .t-left_pc {
    text-align: left;
  }
  .t-right_pc {
    text-align: right;
  }
}
.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--black);
}

.fc--black {
  color: var(--black);
}

.fc--red {
  color: red;
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}
/*# sourceMappingURL=style.css.map */