@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap");
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("./font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("./font/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("./font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.zom {
  font-family: "Zen Old Mincho", serif;
}

.cav {
  font-family: "Caveat", cursive;
}

/*
Theme Name: masu.cut
Theme URL: https://www.masu-cut.com/
Description: masu.cut | 石川県小松市の美容室（プライベートサロン）
Version: 1.0
License: masu.cut
License URI: https://www.masu-cut.com/
*/
/****************************************

_reset.scss リセットCSS

*****************************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /*1em=10px */
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
picture,
menu,
nav,
section,
main {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colors to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colors to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
}

address {
  font-style: normal;
}

/* change border color to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

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

_base.scss body設定(主に書式)

*****************************************/
body {
  min-width: 1200px;
  background: #fff;
  color: #212121;
  font-weight: normal;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック Medium", "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/****************************************

フォント指定

*****************************************/
li,
tt,
tr,
dt,
dd,
p {
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0em;
}

h1 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  li,
  tt,
  tr,
  dt,
  dd,
  p {
    font-size: 1.4rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
}
/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link,
a:visited {
  color: #0098D8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: 0.3s linear;
}

a:hover,
a:active {
  color: #0970C4;
  transition: 0.3s linear;
}

a:hover img.img_opacity {
  opacity: 0.75;
  transition: 0.2s linear;
}

a img.img_opacity {
  transition: 0.2s linear;
}

a:hover img.img_up {
  transform: translateY(-5px);
  transition: 0.3s linear;
}

a img.img_up {
  transition: 0.3s linear;
}

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

ページ共通

*****************************************/
#wrapper {
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

figure a {
  display: block;
  width: 100%;
  height: 100%;
}

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

電話リンク設定

*****************************************/
/* PCやマウス操作環境でクリック無効化 */
@media (pointer: fine) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* タッチ操作環境（スマホなど）では通常通り有効 */
@media (pointer: coarse) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
  }
}
/****************************************

FancyBox

*****************************************/
#fancybox-title {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #fancybox-title {
    font-size: 1.4rem;
  }
}

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

_variable.scss variable 変数

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

_mixin.scss mixin

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

_l-header.scss ヘッダー共通

*****************************************/
.l-header {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
.l-header::before {
  display: block;
  content: "";
  position: absolute;
  width: 62%;
  height: auto;
  aspect-ratio: 1162/698;
  top: 0;
  left: 0;
  background: url(images/slider_bg.png) no-repeat;
  background-size: 100%;
  z-index: -999;
}
.l-header__inner {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  padding: 30px 90px 27px 0;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    display: block;
    padding: 30px 10px;
  }
}
.l-header__logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.2));
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 80px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.l-header__logo a:hover img {
  filter: brightness(0.9);
}

.l-header-right {
  display: flex;
  flex-flow: nowrap row-reverse;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header-right {
    display: none;
  }
}

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

pc用 横ナビ

*****************************************/
@media screen and (max-width: 767px) {
  #g_navi {
    display: none;
  }
}
#g_navi .menu {
  position: relative;
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
}

#g_navi .menu > li {
  position: relative;
}

#g_navi .menu li a {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 0 10px;
  text-align: center;
  text-decoration: none;
}
#g_navi .menu li a .jp {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #94B359;
  letter-spacing: 0.06em;
  line-height: 1;
}
#g_navi .menu li a .en {
  display: block;
  margin-bottom: 10px;
  font-family: "Caveat", cursive;
  font-size: 2.6rem;
  font-weight: 500;
  color: #212121;
  letter-spacing: 0.04em;
  line-height: 1;
}

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

pc用 プルダウンナビ

*****************************************/
#g_navi .menu li ul {
  width: 200px;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

#g_navi .menu li ul li {
  width: 100%;
  border-right: none;
  padding: 0;
}

#g_navi .menu li ul li a {
  width: 100%;
  display: block;
  padding: 15px 5px;
  border-top: 1px solid #ccc;
  font-size: 1.4rem;
  font-weight: normal;
  background: #ABCA73;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
#g_navi .menu li ul li a:is(:link, :visited) {
  color: #fff;
}

#g_navi .menu li ul li a:hover {
  background: #fff;
  color: #ABCA73;
  opacity: 0.6;
  transition: 0.2s linear;
}

#g_navi .menu li:hover ul {
  visibility: visible;
  opacity: 0.9;
}

#g_navi .menu li ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

#g_navi .menu li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

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

pc用 ホバーの下線

*****************************************/
@media print, screen and (min-width: 768px) {
  .menu > li > a {
    padding: 0;
    position: relative;
    display: inline-block;
    transition: 0.6s;
  }
  .menu > li > a:after {
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    height: 2px;
    background-color: #ABCA73;
    transition: 0.6s;
    transform: translateX(0%);
    opacity: 0;
  }
  .menu > li > a:after {
    bottom: 0;
  }
  .menu > li > a:hover:after {
    width: 100%;
    opacity: 1;
  }
}
/****************************************

pcヘッダー

*****************************************/
@media print, screen and (min-width: 768px) {
  #sp_header,
  #sp_navi,
  #toggle {
    display: none;
  }
}
/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
  #toggle {
    position: fixed;
    right: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9999;
    padding: 7px 8px;
    background: #ABCA73;
    border: 1px solid #fff;
    border-radius: 8px;
  }
  #toggle div {
    position: relative;
  }
  #toggle span {
    display: block;
    position: absolute;
    /*#navToggledivに対して*/
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.35s ease-in-out;
  }
  #toggle span:nth-child(1) {
    top: 0;
  }
  #toggle span:nth-child(2) {
    top: 11px;
  }
  #toggle span:nth-child(3) {
    top: 22px;
  }
  .open_navi #toggle span {
    background: #fff;
  }
  /*spanの絶対位置指定の親にします*/
  .open_navi #toggle {
    position: fixed;
  }
  .open_navi #toggle span:nth-of-type(1) {
    transform: translateY(11px) rotate(-315deg);
  }
  .open_navi #toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .open_navi #toggle span:nth-of-type(3) {
    transform: translateY(-11px) rotate(315deg);
  }
  #sp_navi {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    overflow-y: scroll;
    text-align: left;
    background-color: #ABCA73;
    opacity: 0.95;
    z-index: 8888;
    transform: translateY(-100%);
    transition: 0.7s ease-in-out;
  }
  .open_navi #sp_navi {
    transform: translateY(0);
    transition: 0.7s ease-in-out;
  }
  .open_navi #wrapper {
    transform-origin: left center;
    filter: blur(3px);
    transition: 0.7s ease-in-out;
  }
  #sp_navi .menu {
    padding-top: 80px;
    text-align: center;
  }
  #sp_navi .menu .menu-item {
    width: 100%;
    text-align: center;
    border-top: rgba(255, 255, 255, 0.4) 1px solid;
    cursor: pointer;
    color: #fff;
    margin: 0 auto;
    font-size: 1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  #sp_navi .menu .menu-item:last-of-type {
    border-bottom: rgba(255, 255, 255, 0.4) 1px solid;
  }
  #sp_navi .menu-item a,
  #sp_navi .menu-item span {
    display: block;
    padding: 15px 0 14px;
  }
  #sp_navi .menu-item a:link,
  #sp_navi .menu-item a:visited,
  #sp_navi .menu-item a:hover,
  #sp_navi .menu-item a:active {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu {
    width: 100%;
    text-align: center;
    display: none;
  }
  #sp_navi .sub-menu li {
    width: 100%;
    text-align: center;
  }
  #sp_navi .sub-menu li a {
    display: block;
    padding: 11px 0 10px;
    background: rgba(255, 255, 255, 0.3);
  }
  #sp_navi .sub-menu li a:link,
  #sp_navi .sub-menu li a:visited,
  #sp_navi .sub-menu li a:hover,
  #sp_navi .sub-menu li a:active {
    color: #fff;
    text-decoration: none;
  }
  #sp_navi .sub-menu li a:hover {
    color: #ccc;
    background: none;
  }
  #sp_navi .menu-item-has-children {
    position: relative;
  }
  #sp_navi .menu-item-has-children::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 0px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    transform: rotate(135deg);
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 14px;
    right: 20px;
  }
  #sp_navi .menu-item-has-children.menu_open::before {
    transform: rotate(-45deg);
    transition: 0.2s ease-in-out;
    top: 22px;
  }
}
/****************************************

メインビジュアル

*****************************************/
#slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}
#slider .slides {
  position: relative;
  overflow: hidden;
  margin: 0 0 0 auto;
  width: 94.7916666667%;
  border-radius: 20px 0 0 20px;
}
#slider .l-mv-top__pic img {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  #slider .l-mv-top__pic img {
    left: calc(50% - 910px);
    width: 1820px;
  }
}
@media screen and (max-width: 767px) {
  #slider .l-mv-top__pic img {
    position: relative;
    left: -5%;
    width: 110%;
  }
}

.l-mv-page {
  position: relative;
}
.l-mv-page__pic {
  position: relative;
  overflow: hidden;
  max-width: 1820px;
  width: 94.7916666667%;
  margin: 0 0 0 auto;
  border-radius: 20px 0 0 20px;
}
.l-mv-page__pic-img {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1920px) {
  .l-mv-page__pic-img {
    left: calc(50% - 910px);
    width: 1820px;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__pic-img {
    position: relative;
    left: -20%;
    width: 140%;
  }
}
.l-mv-page__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--concept {
    width: auto;
    height: 55px;
    aspect-ratio: 262/121;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--menu {
    width: auto;
    height: 55px;
    aspect-ratio: 189/111;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--wig {
    width: auto;
    height: 55px;
    aspect-ratio: 148/114;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--hair-products {
    width: auto;
    height: 55px;
    aspect-ratio: 161/111;
  }
}
@media screen and (max-width: 767px) {
  .l-mv-page__ttl--salon {
    width: auto;
    height: 55px;
    aspect-ratio: 192/105;
  }
}

.metaslider .flex-control-nav {
  bottom: 40px !important;
}

.metaslider .flexslider {
  margin: 0 !important;
}

@media screen and (max-width: 767px) {
  .metaslider .flex-control-nav {
    bottom: -30px !important;
  }
  .metaslider .flex-control-nav {
    bottom: 15px !important;
  }
}
.metaslider .flex-control-nav {
  position: absolute;
  width: auto;
  transform-origin: left center;
  rotate: 90deg;
  left: 2.5%;
  bottom: 80px !important;
  height: 11px;
}
@media screen and (max-width: 767px) {
  .metaslider .flex-control-nav {
    display: none;
  }
}

.flex-control-paging li a.flex-active {
  background: rgba(0, 0, 0, 0.5) !important;
}

.flex-control-paging li a {
  background: rgba(0, 0, 0, 0.2) !important;
}

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

_l-main.scss メイン共通

*****************************************/
#main-top {
  width: 100%;
  margin-inline: auto;
}

#main-page {
  width: 100%;
  margin-inline: auto;
}

/*---------- 下層ページ ----------*/
.l-main-wrapper {
  max-width: 2560px;
  width: 100%;
  margin-inline: auto;
}
.l-main-wrapper__inner {
  max-width: 1220px;
  width: 100%;
  margin-inline: auto;
  padding: 0 10px 100px;
}
@media screen and (max-width: 767px) {
  .l-main-wrapper__inner {
    padding: 0 10px 60px;
  }
}

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

_l-breadcrumb.scss パンくず

*****************************************/
.breadcrumb_area {
  width: 100%;
  padding: 5px 0 80px;
}
@media screen and (max-width: 767px) {
  .breadcrumb_area {
    padding: 10px 0 60px;
  }
}

.breadcrumb .topicpath {
  font-size: 1.6rem;
  color: #212121;
  letter-spacing: 0em;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .breadcrumb .topicpath {
    text-align: left;
    font-size: 1.2rem;
  }
}

.breadcrumb a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.breadcrumb a:is(:link, :visited) {
  color: #212121;
}
.breadcrumb a:is(:hover, :active) {
  color: #212121;
}

.breadcrumb a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #212121;
  transform-origin: right top;
  transition: transform 0.3s;
  transform: scale(0, 1);
}

.breadcrumb a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

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

_l-bottom.scss ボトム共通

*****************************************/
.l-btm-sec {
  background: url(images/btm_bg.jpg) no-repeat center top;
  background-size: cover;
}
.l-btm-sec__inner {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  align-items: center;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 10px;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__inner {
    flex-flow: nowrap column;
    padding: 50px 10px 60px;
  }
}
.l-btm-sec__left {
  padding-right: 60px;
  width: 340px;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__left {
    display: contents;
  }
}
.l-btm-sec__right {
  padding-left: 60px;
  width: 860px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1220px) {
  .l-btm-sec__right {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-btm-sec__right {
    display: contents;
  }
}
.l-btm-sec__txt01 {
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: 0em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__txt01 {
    order: 2;
  }
}
.l-btm-sec__txt02 {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0;
}
.l-btm-sec__box01 {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__box01 {
    order: 3;
    flex-flow: nowrap column;
    gap: 20px 0;
  }
}
.l-btm-sec__box02 {
  margin-top: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .l-btm-sec__box02 {
    order: 4;
    margin-top: 30px;
  }
}
.l-btm-sec__time {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__time {
    font-size: 1.2rem;
  }
}
.l-btm-sec__tel {
  margin-bottom: 10px;
  width: 409px;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__tel {
    width: 100%;
  }
}
.l-btm-sec__line {
  width: 300px;
}
.l-btm-sec__btn {
  position: relative;
  margin: 45px auto 0;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__btn {
    order: 5;
    margin: 30px auto 0;
  }
}
.l-btm-sec__btn a {
  padding: 11px 10px;
  border: 1px solid #fff;
  border-radius: 50vh;
  background: transparent;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-btm-sec__btn a {
    max-width: 250px;
    padding: 10px;
  }
}
.l-btm-sec__btn a:hover {
  background: #fff;
  color: #ABCA73;
}
.l-btm-sec__btn a:hover::before {
  background: url(images/btn_arrow_green.png) no-repeat;
}
.l-btm-sec__btn a::before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: auto;
  aspect-ratio: 6/10;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(images/btn_arrow_white.png) no-repeat;
  background-size: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.l-btm-sec-ttl {
  display: flex;
  flex-flow: nowrap column;
  align-items: center;
  gap: 5px 0;
}
@media screen and (max-width: 767px) {
  .l-btm-sec-ttl {
    margin-bottom: 25px;
    order: 1;
  }
}
.l-btm-sec-ttl__en {
  font-family: "Caveat", cursive;
  font-size: 6.4rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-btm-sec-ttl__en {
    font-size: 4.2rem;
  }
}
.l-btm-sec-ttl__jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-btm-sec-ttl__jp {
    font-size: 1.6rem;
  }
}

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

_l-footer.scss フッター共通

*****************************************/
.l-footer {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-bottom: 60px;
  }
}
.l-footer__inner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 10px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 40px 10px;
  }
}

.l-footer-pc {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  padding-bottom: 70px;
  border-bottom: 1px solid #CCCCCC;
}
.l-footer-pc__left {
  width: 500px;
}
.l-footer-pc__right {
  width: 600px;
}

.l-footer__logo {
  display: inline-block;
  margin-bottom: 30px;
}
.l-footer__logo a {
  display: block;
}

.l-footer-list {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer-list {
    margin-bottom: 30px;
  }
}
.l-footer-list::after {
  display: block;
  content: "";
  position: absolute;
  width: 120px;
  height: auto;
  aspect-ratio: 120/132;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(images/footer_logo_02.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .l-footer-list::after {
    width: 60px;
    transform: translateY(-20%);
  }
}
.l-footer-list__item {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 25px;
}
@media screen and (max-width: 767px) {
  .l-footer-list__item {
    gap: 0 10px;
  }
}
.l-footer-list__item:not(:first-of-type) {
  margin-top: 10px;
}
.l-footer-list__cat {
  width: 100px;
  height: 24px;
  line-height: 24px;
  background: rgba(171, 202, 115, 0.2);
  border-radius: 3px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ABCA73;
  letter-spacing: 0.04em;
}
.l-footer-list__txt {
  font-size: 1.5rem;
  letter-spacing: 0;
}

.l-footer-info {
  position: relative;
  overflow: hidden;
  padding: 25px 40px 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer-info {
    padding: 30px 15px;
    border-radius: 10px;
  }
}
.l-footer-info::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F3F3F1;
  z-index: -999;
}
.l-footer-info::after {
  display: block;
  content: "";
  position: absolute;
  width: 234px;
  height: auto;
  aspect-ratio: 234/220;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(images/footer_map.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-footer-info::after {
    width: auto;
    height: 100%;
    opacity: 0.7;
  }
}
.l-footer-info__ttl {
  position: relative;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-footer-info__ttl {
    font-size: 1.8rem;
  }
}
.l-footer-info__ttl::before {
  display: block;
  content: "";
  position: absolute;
  width: 30px;
  height: auto;
  aspect-ratio: 30/24;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(images/footer_car.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .l-footer-info__ttl::before {
    width: 25px;
  }
}
.l-footer-info__txt--02 {
  margin-top: 10px;
}

.l-footer-map {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .l-footer-map {
    height: 250px;
  }
}
.l-footer-map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .l-footer-map iframe {
    height: 250px;
  }
}

/* ----------- コピーライト ----------- */
.l-footer-copyright {
  padding: 17px 10px;
  background: #ABCA73;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  overflow-wrap: break-word !important;
  word-break: break-all !important;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    padding: 5px 10px;
    font-size: 1.2em;
  }
}
.l-footer-copyright__txt {
  display: inline-block;
}

/* ----------- ページトップ ----------- */
.pc-float {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-float {
    display: none !important;
    opacity: 0;
  }
}

.pagetop,
.pc-float__tel,
.pc-float__line {
  position: fixed;
  z-index: 9999;
}
.pagetop a,
.pc-float__tel a,
.pc-float__line a {
  display: block;
  width: 100%;
  height: 100%;
}
.pagetop a img,
.pc-float__tel a img,
.pc-float__line a img {
  display: block;
  width: 100%;
  height: 100%;
}

.pc-float__tel,
.pc-float__line {
  right: -210px;
  transition: all 0.7s ease-in-out;
}
.pc-float__tel:is(:hover, :active),
.pc-float__line:is(:hover, :active) {
  right: 0;
}

.pc-float__tel {
  bottom: 260px;
}

.pc-float__line {
  bottom: 180px;
}

.pagetop {
  right: 0;
  bottom: 60px;
}

.l-footer-sitemap {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .l-footer-sitemap {
    display: none;
  }
}
.l-footer-sitemap__page {
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
}
.l-footer-sitemap__page::before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(images/footer_sitemap_arrow.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
.l-footer-sitemap__page a {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.l-footer-sitemap-local__list {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer-sitemap-local__list {
    display: none;
  }
}
.l-footer-sitemap-local__page {
  padding: 0 10px;
  height: 20px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  line-height: 20px;
}
.l-footer-sitemap-local__page a {
  font-size: 1.6rem;
}
.l-footer-sitemap-local__page:first-child {
  border-left: none;
}
.l-footer-sitemap-local__page:last-child {
  border-right: none;
}
.l-footer-sitemap-local__page + .l-footer-sitemap-local__page {
  border-left: none;
}

.l-footer-link a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-footer-link a:is(:link, :visited) {
  color: #212121;
}
.l-footer-link a:is(:hover, :active) {
  color: #ABCA73;
}
.l-footer-link a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #ABCA73;
  transition: all 0.3s ease-in-out;
}
.l-footer-link a:hover::before {
  width: 100%;
}

/* ----------- フローティングバナー----------- */
@media screen and (max-width: 767px) {
  .sp_btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
  }
  .sp_btn_list {
    display: flex;
    height: 60px;
    background: #ABCA73;
    border-top: 1px solid #fff;
  }
  .sp_btn_list_item {
    position: relative;
    width: 25%;
    height: 100%;
    line-height: 1.6;
  }
  .sp_btn_list_item a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 0 5px;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: normal;
  }
  .sp_btn_list_item a:link, .sp_btn_list_item a:visited, .sp_btn_list_item a:hover, .sp_btn_list_item a:active {
    color: #fff;
  }
  .sp_btn_list_item_icon_01,
  .sp_btn_list_item_icon_02,
  .sp_btn_list_item_icon_03,
  .sp_btn_list_item_icon_04 {
    position: relative;
    display: block;
    margin: auto 0 0;
  }
  .sp_btn_list_item_icon_01::after,
  .sp_btn_list_item_icon_02::after,
  .sp_btn_list_item_icon_03::after,
  .sp_btn_list_item_icon_04::after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
  }
  .sp_btn_list_item_icon_01::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_tel.svg);
    background-size: 18px;
  }
  .sp_btn_list_item_icon_02::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_line_bubble.svg);
    background-size: 18px;
  }
  .sp_btn_list_item_icon_03::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_access.svg);
    background-size: 18px;
  }
  .sp_btn_list_item_icon_04::after {
    top: -20px;
    width: 18px;
    height: 18px;
    background-image: url(images/floating_arrow.svg);
    background-size: 18px;
  }
}
/****************************************

_l-single.scss 投稿詳細ページ

*****************************************/
.l-single-sec {
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .l-single-sec {
    margin: 0 auto;
  }
}
.l-single-sec__ttl {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-single-sec__ttl {
    font-size: 1.8rem;
  }
}
.l-single-sec__txt img {
  margin: 15px auto;
  max-width: 100%;
  height: auto;
}

.pager {
  clear: both;
  text-align: center;
  margin: 50px auto 0;
  padding-bottom: 10px;
}
.pager a {
  text-decoration: none;
}
.pager a:is(:link, :visited) {
  color: #ABCA73;
  border: 1px solid #ABCA73;
}
.pager a:is(:hover, :active) {
  color: #fff;
  border: 1px solid #ABCA73;
  background: #ABCA73;
}

a.page-numbers {
  background: #fff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
}

.pager .current {
  border-radius: 5px;
  padding: 5px 8px;
  margin: 0 2px;
  font-size: 1.4rem;
  background: #EBDA76;
  border: solid 1px #EBDA76;
  color: white;
}

@media screen and (max-width: 767px) {
  a.page-numbers,
  .pager .current {
    font-size: 1.3rem;
  }
}

.nav-below {
  margin: 60px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .nav-below {
    margin: 30px 0 20px;
  }
}

.nav-below a {
  position: relative;
  margin: 0 15px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .nav-below a {
    margin: 0 10px;
  }
}
.nav-below a:is(:link, :visited) {
  color: #212121;
}
.nav-below a:is(:hover, :active) {
  color: #ABCA73;
}
.nav-below a::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ABCA73;
  transition: 0.6s;
  left: 0;
}
.nav-below a:hover::before {
  width: 100%;
  opacity: 0.9;
}

.aligncenter {
  display: block;
}

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

_c-button.scss ボタン共通

*****************************************/
/*---------------------button共通*/
.c-btn a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
}

/*---------------------buttonトップ、下層*/
.c-btn01 a {
  position: relative;
  border: 2px solid #ABCA73;
  border-radius: 50vh;
  background: #ABCA73;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-btn01 a {
    padding: 10px;
    font-size: 1.4rem;
  }
}
.c-btn01 a:hover {
  background: #fff;
  color: #ABCA73;
}
.c-btn01 a:hover::before {
  background: url(images/btn_arrow_green.png) no-repeat;
}
.c-btn01 a::before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: auto;
  aspect-ratio: 6/10;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(images/btn_arrow_white.png) no-repeat;
  background-size: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.c-btn01--top-sec02,
.c-btn01--top-sec06 {
  margin: 60px auto 0;
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec02,
  .c-btn01--top-sec06 {
    margin: 40px auto 0;
    max-width: 250px;
  }
}
.c-btn01--top-sec02 a,
.c-btn01--top-sec06 a {
  padding: 16px 10px;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec02 a,
  .c-btn01--top-sec06 a {
    padding: 10px;
  }
}

.c-btn01--top-sec07 {
  margin: 60px 0 0;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec07 {
    order: 3;
    margin: 40px auto 0;
  }
}
.c-btn01--top-sec07 a {
  padding: 10px 10px;
}
@media screen and (max-width: 767px) {
  .c-btn01--top-sec07 a {
    padding: 10px;
  }
}

.c-btn02 a {
  border: 2px solid #ABCA73;
  border-radius: 6px;
  background: #ABCA73;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-btn02 a {
    font-size: 1.4rem;
  }
}
.c-btn02 a:hover {
  color: #ABCA73;
  background: #fff;
}

.c-btn02--menu {
  width: 200px;
}
@media screen and (max-width: 430px) {
  .c-btn02--menu {
    width: calc((100% - 10px) / 2);
  }
}
.c-btn02--menu a {
  padding: 11px 10px;
}

.c-btn02--faq {
  width: 300px;
}
.c-btn02--faq a {
  padding: 11px 10px;
}

.c-btn02--journal {
  margin: auto auto 0;
  width: 200px;
}
.c-btn02--journal a {
  padding: 11px 10px;
}

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

_c-title.scss 見出し共通

*****************************************/
.c-headline {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-headline {
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}
.c-headline::before {
  display: block;
  content: "";
  position: absolute;
  width: 66px;
  height: auto;
  aspect-ratio: 66/58;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: url(images/headline.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .c-headline::before {
    width: 46px;
    top: -40px;
  }
}

.c-ttl01 {
  padding-bottom: 5px;
  border-bottom: 1px dotted #333333;
  font-size: 2rem;
  color: #ABCA73;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-ttl01 {
    font-size: 1.8rem;
  }
}

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

_c-flex.scss 見出し、テキスト、画像のセット

*****************************************/
.c-flex {
  flex-flow: row wrap;
}

.c-flex-r {
  flex-flow: row-reverse wrap;
}

.c-flex,
.c-flex-r {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-flex,
  .c-flex-r {
    flex-flow: column-reverse wrap;
    align-items: center;
  }
}
.c-flex__txt720,
.c-flex-r__txt720 {
  width: 720px;
}
@media screen and (max-width: 767px) {
  .c-flex__txt720,
  .c-flex-r__txt720 {
    margin-top: 10px;
    width: 100%;
  }
}
.c-flex__fig440,
.c-flex-r__fig440 {
  max-width: 440px;
  width: 100%;
}

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

c-flex-order

SP時に見出し、画像、テキストの順に並べる
pタグを<div class="txt-box">で囲む

*****************************************/
.c-flex-order {
  flex-flow: row wrap;
}

.c-flex-r-order {
  flex-flow: row-reverse wrap;
}

.c-flex-order,
.c-flex-r-order {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-flex-order,
  .c-flex-r-order {
    flex-flow: column nowrap;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .c-flex-order__ttl,
  .c-flex-r-order__ttl {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-flex-order__txt-box,
  .c-flex-r-order__txt-box {
    order: 3;
    width: 100%;
  }
}
.c-flex-order__txt720,
.c-flex-r-order__txt720 {
  width: 720px;
}
@media screen and (max-width: 767px) {
  .c-flex-order__txt720,
  .c-flex-r-order__txt720 {
    display: contents;
  }
}
.c-flex-order__fig440,
.c-flex-r-order__fig440 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-width: 440px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-flex-order__fig440,
  .c-flex-r-order__fig440 {
    order: 2;
    margin-bottom: 10px;
  }
}
.c-flex-order__txt780,
.c-flex-r-order__txt780 {
  width: 780px;
}
@media screen and (max-width: 767px) {
  .c-flex-order__txt780,
  .c-flex-r-order__txt780 {
    display: contents;
  }
}
.c-flex-order__fig300,
.c-flex-r-order__fig300 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-flex-order__fig300,
  .c-flex-r-order__fig300 {
    order: 2;
    margin-bottom: 10px;
    max-width: 420px;
  }
}
.c-flex-order__txt840,
.c-flex-r-order__txt840 {
  width: 840px;
}
@media screen and (max-width: 767px) {
  .c-flex-order__txt840,
  .c-flex-r-order__txt840 {
    display: contents;
  }
}
.c-flex-order__fig310,
.c-flex-r-order__fig310 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  max-width: 310px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-flex-order__fig310,
  .c-flex-r-order__fig310 {
    order: 2;
    margin-bottom: 10px;
  }
}

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

_c-column.scss カラム共通

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

_c-post.scss 投稿共通

*****************************************/
.c-post-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 60px 30px;
}
@media screen and (max-width: 767px) {
  .c-post-list {
    gap: 40px 10px;
  }
}
.c-post-list__item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .c-post-list__item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 600px) {
  .c-post-list__item {
    width: calc((100% - 10px) / 2);
  }
}
.c-post-list__fig440 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 440/310;
  margin-bottom: 10px;
}
.c-post-list__fig440 a {
  display: block;
  width: 100%;
  height: 100%;
}
.c-post-list__fig440 a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

_c-table.scss テーブル共通

*****************************************/
.c-table {
  display: table;
  width: 100%;
}
.c-table tbody {
  display: table;
  width: 100%;
}
.c-table tbody th {
  background: #F7F9EA;
  font-weight: normal;
}
.c-table tbody td {
  background: #fff;
}
.c-table tbody th,
.c-table tbody td {
  border: 1px solid #ABCA73;
  padding: 10px 20px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table tbody th,
  .c-table tbody td {
    padding: 10px;
  }
}

/*---------- pages-table ----------*/
.p-overview-table tbody th {
  width: 41.6666666667%;
}
.p-overview-table tbody td {
  width: 58.3333333333%;
}
.p-overview-table tbody th,
.p-overview-table tbody td {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-overview-table tbody th,
  .p-overview-table tbody td {
    display: block;
    width: 100%;
    margin-top: -1px;
    padding: 10px;
  }
}

.p-menu-table tbody th {
  width: 41.6666666667%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-menu-table tbody th {
    width: 65%;
  }
}
.p-menu-table tbody td {
  width: 58.3333333333%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-menu-table tbody td {
    width: 35%;
  }
}

.p-options-table tbody th {
  width: 43.3333333333%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-options-table tbody th {
    width: 60%;
  }
}
.p-options-table tbody td {
  width: 56.6666666667%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-options-table tbody td {
    width: 40%;
  }
}

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

_c-common.scss 全ページ共通

*****************************************/
.c-cmn-box {
  padding: 35px 15px 50px;
  border-radius: 10px;
  background: rgba(200, 216, 107, 0.14);
}
@media screen and (max-width: 767px) {
  .c-cmn-box {
    padding: 20px 15px 30px;
  }
}
.c-cmn-box__ttl {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-shadow: 2px 2px 0px #ffffff, -2px 2px 0px #ffffff, 2px -2px 0px #ffffff, -2px -2px 0px #ffffff, 2px 0px 0px #ffffff, 0px 2px 0px #ffffff, -2px 0px 0px #ffffff, 0px -2px 0px #ffffff;
}
@media screen and (max-width: 767px) {
  .c-cmn-box__ttl {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}
.c-cmn-box__ttl-inner {
  background-image: linear-gradient(transparent 70%, #D2E2B4 0%);
  background-repeat: no-repeat;
  background-size: calc(100% + 12px) 100%;
  /* 下線中央 */
  background-position: -25px 0px;
  /* 左に5pxずらすことで左側を長く見せる */
  padding: 0 12px 2px;
  /* 2pxで、下線を下にずらす */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.c-cmn-box__txt {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-cmn-box__txt {
    text-align: left;
  }
}

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

_p-top.scss トップページ

*****************************************/
.p-top-sec01__inner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 10px 90px;
}
@media screen and (max-width: 767px) {
  .p-top-sec01__inner {
    padding: 30px 10px 60px;
  }
}

.p-top-sec01-flex-order {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order {
    flex-flow: wrap column;
    justify-content: initial;
    align-items: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__ttl {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__txt-box {
    order: 3;
    width: 100%;
  }
}
.p-top-sec01-flex-order__txt500 {
  width: 41.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__txt500 {
    display: contents;
  }
}
.p-top-sec01-flex-order__fig600 {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__fig600 {
    order: 2;
    margin-bottom: 32%;
    width: 80%;
  }
}
.p-top-sec01-flex-order__fig600::after {
  display: block;
  content: "";
  position: absolute;
  width: 300px;
  height: auto;
  aspect-ratio: 300/350;
  bottom: -160px;
  right: -100px;
  background: url(images/top_concept_02.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__fig600::after {
    width: 55%;
    height: auto;
    aspect-ratio: 300/350;
    bottom: -30%;
    right: -25%;
  }
}
.p-top-sec01-flex-order__fig600 img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-sec01-flex-order__btn-box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__btn-box {
    order: 4;
    margin-top: 30px;
  }
}
.p-top-sec01-flex-order__btn {
  max-width: 260px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__btn {
    max-width: 250px;
    margin-inline: auto;
  }
}
.p-top-sec01-flex-order__btn a {
  padding: 16px 10px;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-flex-order__btn a {
    padding: 10px;
  }
}

.p-top-sec01-ttl {
  position: relative;
  display: flex;
  flex-flow: nowrap column;
  gap: 5px 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-ttl {
    gap: 0;
    margin-bottom: 40px;
  }
}
.p-top-sec01-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 40/2;
  bottom: -25px;
  left: 0;
  background: #ABCA73;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-ttl::after {
    bottom: -15px;
  }
}
.p-top-sec01-ttl__en {
  font-size: 6.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-ttl__en {
    font-size: 4.2rem;
  }
}
.p-top-sec01-ttl__jp {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-sec01-ttl__jp {
    font-size: 1.6rem;
  }
}

.p-top-sec02 {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
}
.p-top-sec02__inner {
  position: relative;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 10px 100px;
}
@media screen and (max-width: 767px) {
  .p-top-sec02__inner {
    padding: 60px 10px;
  }
}
.p-top-sec02__inner::before {
  display: block;
  content: "";
  position: absolute;
  width: 1820px;
  height: 100%;
  top: 0;
  left: -250px;
  border-radius: 0 20px 20px 0;
  background: rgba(200, 216, 107, 0.2);
  background-size: 100%;
  z-index: -999;
}

.p-top-sec02-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-list {
    gap: 10px;
  }
}
.p-top-sec02-list__item {
  width: calc((100% - 60px) / 4);
  height: auto;
  aspect-ratio: 335/240;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-list__item {
    width: calc((100% - 10px) / 2);
  }
}
.p-top-sec02-list__item img {
  display: block;
  width: 100%;
  height: 100%;
}

.p-top-sec02-ttl {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-ttl {
    margin-bottom: 30px;
  }
}
.p-top-sec02-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 120px;
  height: auto;
  aspect-ratio: 120/105;
  top: -30px;
  right: -75px;
  background: url(images/top_menu_ttl.png) no-repeat;
  background-size: 100%;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-ttl::after {
    width: 70px;
    top: -20px;
    right: -42px;
  }
}
.p-top-sec02-ttl__en {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 7.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-ttl__en {
    margin-bottom: 5px;
    font-size: 4.2rem;
  }
}
.p-top-sec02-ttl__jp {
  display: block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sec02-ttl__jp {
    font-size: 1.6rem;
  }
}

.p-top-sec03__inner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 110px 10px 100px;
}
@media screen and (max-width: 767px) {
  .p-top-sec03__inner {
    padding: 60px 10px;
  }
}

.p-top-sec03-ttl {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-ttl {
    margin-bottom: 30px;
  }
}
.p-top-sec03-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 92px;
  height: auto;
  aspect-ratio: 92/127;
  top: -55px;
  left: -65px;
  background: url(images/top_blog_ttl.png) no-repeat;
  background-size: 100%;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-ttl::after {
    width: 50px;
    top: -35px;
    left: -35px;
  }
}
.p-top-sec03-ttl__en {
  display: block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 7.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 3px 3px 0px #ffffff, -3px 3px 0px #ffffff, 3px -3px 0px #ffffff, -3px -3px 0px #ffffff, 3px 0px 0px #ffffff, 0px 3px 0px #ffffff, -3px 0px 0px #ffffff, 0px -3px 0px #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-ttl__en {
    margin-bottom: 5px;
    font-size: 4.2rem;
  }
}
.p-top-sec03-ttl__jp {
  display: block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sec03-ttl__jp {
    font-size: 1.6rem;
  }
}

:root {
  --speed: 30s;
}

@media screen and (max-width: 767px) {
  :root {
    --speed: 20s;
  }
}
.p-top-gallery {
  overflow: hidden;
  width: 100%;
}

.p-top-gallery__list {
  display: flex;
  align-items: center;
  animation: scroll var(--speed) linear infinite;
}

.p-top-gallery__item {
  flex: 0 0 auto;
  width: 340px;
  height: auto;
  aspect-ratio: 340/380;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-gallery__item {
    width: 140px;
  }
}

.p-top-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-1 * var(--scroll-width)));
  }
}
.p-top-sec04 {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  padding: 200px 10px 100px 100px;
}
@media screen and (max-width: 1920px) {
  .p-top-sec04 {
    padding: 200px 10px 100px 5.2083333333%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec04 {
    margin-top: 60px;
    padding: 40px 10px 60px;
    background: #F3F3F1;
  }
}
.p-top-sec04__inner {
  max-width: 1480px;
  width: 100%;
  margin: 0 auto 0 0;
}

.p-top-sec04-flex-order {
  display: flex;
  flex-flow: row-reverse wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order {
    flex-flow: wrap column;
    justify-content: initial;
    align-items: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__ttl {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__txt-box {
    order: 3;
    width: 100%;
  }
}
.p-top-sec04-flex-order__txt500 {
  width: 34.2465753425%;
}
@media screen and (max-width: 1400px) {
  .p-top-sec04-flex-order__txt500 {
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__txt500 {
    display: contents;
  }
}
.p-top-sec04-flex-order__fig860 {
  position: relative;
  width: 58.904109589%;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__fig860 {
    order: 2;
    margin-bottom: 10px;
    width: 100%;
  }
}
.p-top-sec04-flex-order__fig860::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 800px;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  background: #F3F3F1;
  background-size: 100%;
  border-radius: 0 20px 20px 0;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__fig860::before {
    display: none;
  }
}
.p-top-sec04-flex-order__fig860 img {
  position: relative;
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__fig860 img {
    position: static;
    object-fit: fill;
    object-position: center top;
  }
}
.p-top-sec04-flex-order__bnr-box {
  display: flex;
  flex-flow: nowrap row;
  align-items: center;
  gap: 0 25px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-flex-order__bnr-box {
    order: 4;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  .p-top-sec04-flex-order__bnr-box {
    flex-flow: wrap row;
    gap: 15px 10px;
  }
}
.p-top-sec04-flex-order__bnr {
  display: flex;
  flex-flow: nowrap column;
  align-items: center;
  gap: 15px 0;
}
.p-top-sec04-flex-order__bnr-pic img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-sec04-flex-order__bnr-txt a {
  position: relative;
  padding-left: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-top-sec04-flex-order__bnr-txt a::after {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 999;
}
.p-top-sec04-flex-order__bnr-txt--service a::after {
  background: url(images/top_wig_care_arrow.png) no-repeat;
  background-size: 100%;
}
.p-top-sec04-flex-order__bnr-txt--flow a::after {
  background: url(images/top_wig_flow_arrow.png) no-repeat;
  background-size: 100%;
}
.p-top-sec04-flex-order__bnr-txt--menu a::after {
  background: url(images/top_wig_menu_arrow.png) no-repeat;
  background-size: 100%;
}

.p-top-sec04-ttl {
  position: relative;
  display: flex;
  flex-flow: nowrap column;
  gap: 5px 0;
  margin-bottom: 50px;
}
.p-top-sec04-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 40/2;
  bottom: -25px;
  left: 0;
  background: #ABCA73;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-ttl::after {
    bottom: -15px;
  }
}
.p-top-sec04-ttl__en {
  font-size: 6.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-ttl__en {
    font-size: 4.2rem;
    line-height: 1;
  }
}
.p-top-sec04-ttl__jp {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-sec04-ttl__jp {
    font-size: 1.6rem;
    line-height: 1;
  }
}

.p-top-sec05 {
  max-width: 1920px;
  width: 100%;
  margin-inline: auto;
  padding: 100px 100px 100px 10px;
}
@media screen and (max-width: 1920px) {
  .p-top-sec05 {
    padding: 200px 5.2083333333% 100px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec05 {
    margin-top: 60px;
    padding: 40px 10px 60px;
    background: rgba(200, 216, 107, 0.2);
  }
}
.p-top-sec05__inner {
  max-width: 1480px;
  width: 100%;
  margin: 0 0 0 auto;
}

.p-top-sec05-flex-order {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order {
    flex-flow: wrap column;
    justify-content: initial;
    align-items: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__ttl {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__txt-box {
    order: 3;
    width: 100%;
  }
}
.p-top-sec05-flex-order__txt500 {
  width: 34.2465753425%;
}
@media screen and (max-width: 1400px) {
  .p-top-sec05-flex-order__txt500 {
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__txt500 {
    display: contents;
  }
}
.p-top-sec05-flex-order__fig860 {
  position: relative;
  width: 58.904109589%;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__fig860 {
    order: 2;
    margin-bottom: 10px;
    width: 100%;
  }
}
.p-top-sec05-flex-order__fig860::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 800px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  background: rgba(200, 216, 107, 0.2);
  background-size: 100%;
  border-radius: 20px 0 0 20px;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__fig860::before {
    display: none;
  }
}
.p-top-sec05-flex-order__fig860 img {
  position: relative;
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__fig860 img {
    position: static;
    object-fit: fill;
    object-position: center top;
  }
}
.p-top-sec05-flex-order__btn-box {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__btn-box {
    order: 4;
    margin-top: 30px;
  }
}
.p-top-sec05-flex-order__btn {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__btn {
    margin-inline: auto;
    width: 350px;
  }
}
.p-top-sec05-flex-order__btn a {
  display: flex;
  flex-flow: nowrap row;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  padding: 21px 10px;
  border: 1px solid #ABCA73;
  border-radius: 100vh;
  background: #fff;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ABCA73;
  letter-spacing: 0.1em;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-flex-order__btn a {
    font-size: 1.6rem;
  }
}
.p-top-sec05-flex-order__btn a:is(:link, :visited) {
  color: #ABCA73;
}
.p-top-sec05-flex-order__btn a:is(:hover, :active) {
  color: #fff;
  background: #ABCA73;
}
.p-top-sec05-flex-order__btn a:is(:hover, :active)::after {
  background: url(images/btn_link_white.png) no-repeat;
  background-size: 100%;
}
.p-top-sec05-flex-order__btn a::after {
  display: block;
  content: "";
  width: 21px;
  height: auto;
  aspect-ratio: 21/20;
  background: url(images/btn_link_green.png) no-repeat;
  background-size: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.p-top-sec05-ttl {
  position: relative;
  display: flex;
  flex-flow: nowrap column;
  gap: 5px 0;
  margin-bottom: 50px;
}
.p-top-sec05-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 40px;
  height: auto;
  aspect-ratio: 40/2;
  bottom: -25px;
  left: 0;
  background: #ABCA73;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-ttl::after {
    bottom: -15px;
  }
}
.p-top-sec05-ttl__en {
  font-size: 6.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-ttl__en {
    font-size: 4.2rem;
    line-height: 1;
  }
}
.p-top-sec05-ttl__jp {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-sec05-ttl__jp {
    font-size: 1.6rem;
    line-height: 1;
  }
}

.p-top-sec06__inner {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 10px 100px;
}
@media screen and (max-width: 767px) {
  .p-top-sec06__inner {
    padding: 60px 10px;
  }
}

.p-top-sec06-list {
  display: flex;
  flex-flow: nowrap row;
  justify-content: flex-start;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list {
    flex-flow: wrap row;
    gap: 30px 10px;
  }
}
.p-top-sec06-list__item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list__item {
    width: calc((100% - 10px) / 2);
  }
}
.p-top-sec06-list__fig {
  position: relative;
  margin-bottom: 10px;
  width: 285px;
  height: 214px;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list__fig {
    width: 100%;
    height: auto;
    aspect-ratio: 285/214;
  }
}
.p-top-sec06-list__fig img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-sec06-list__ttl {
  position: relative;
  margin-bottom: 15px;
  padding-left: 15px;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list__ttl {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.p-top-sec06-list__ttl::before {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: auto;
  aspect-ratio: 6/13;
  top: 7px;
  left: 0;
  background: url(images/top_item_ttl_arrow.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list__ttl::before {
    top: 4px;
  }
}
.p-top-sec06-list__txt {
  margin-bottom: 15px;
}
.p-top-sec06-list__txt p {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list__txt p {
    font-size: 1.2rem;
  }
}
.p-top-sec06-list__price {
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-list__price {
    font-size: 1.2rem;
  }
}

.p-top-sec06-ttl {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-ttl {
    margin-bottom: 30px;
  }
}
.p-top-sec06-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 120px;
  height: auto;
  aspect-ratio: 120/90;
  top: -30px;
  right: -115px;
  background: url(images/top_item_ttlpng.png) no-repeat;
  background-size: 100%;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-ttl::after {
    width: 70px;
    top: -10px;
    right: -68px;
  }
}
.p-top-sec06-ttl__en {
  display: block;
  margin-bottom: 5px;
  text-align: center;
  font-size: 6.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 3px 3px 0px #ffffff, -3px 3px 0px #ffffff, 3px -3px 0px #ffffff, -3px -3px 0px #ffffff, 3px 0px 0px #ffffff, 0px 3px 0px #ffffff, -3px 0px 0px #ffffff, 0px -3px 0px #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-ttl__en {
    margin-bottom: 5px;
    font-size: 4.2rem;
  }
}
.p-top-sec06-ttl__jp {
  display: block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sec06-ttl__jp {
    font-size: 1.6rem;
  }
}

.p-top-sec07 {
  background: #F3F3F1;
}
.p-top-sec07__inner {
  display: flex;
  flex-flow: nowrap row;
  justify-content: space-between;
  align-items: center;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 10px;
}
@media screen and (max-width: 767px) {
  .p-top-sec07__inner {
    flex-flow: nowrap column;
    align-items: flex-start;
    padding: 60px 10px;
  }
}
.p-top-sec07__left {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-top-sec07__left {
    display: contents;
  }
}
.p-top-sec07__right {
  width: 860px;
}
@media screen and (max-width: 767px) {
  .p-top-sec07__right {
    width: 100%;
    order: 2;
  }
}

.p-accordion-box:first-child {
  padding: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .p-accordion-box:first-child {
    padding: 0 0 20px 0;
  }
}

.p-accordion-box {
  padding: 30px 0;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-accordion-box {
    padding: 20px 0;
    width: 100%;
  }
}
.p-accordion-box__ttl {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: nowrap row;
  cursor: pointer;
}
.p-accordion-box__ttl::-webkit-details-marker {
  display: none;
}
.p-accordion-box__ttl::after {
  display: block;
  content: "+";
  position: absolute;
  right: 0px;
  top: 0;
  transition: 0.3s;
  font-size: 3rem;
  /* 記号のサイズ */
  font-weight: normal;
  color: #ABCA73;
}
@media screen and (max-width: 767px) {
  .p-accordion-box__ttl::after {
    font-size: 2.5em;
    /* 記号のサイズ */
    top: -2px;
  }
}
.p-accordion-box__ttl-content {
  padding: 3px 40px 3px 65px;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #212121;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-accordion-box__ttl-content {
    padding: 3px 30px 3px 45px;
    font-size: 1.6rem;
  }
}
.p-accordion-box__ttl-content::before {
  display: block;
  content: "Q";
  position: absolute;
  width: 46px;
  height: 46px;
  line-height: 44px;
  top: 0;
  left: 0;
  background: #ABCA73;
  border-radius: 50%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-accordion-box__ttl-content::before {
    width: 33px;
    height: 33px;
    line-height: 30px;
    font-size: 1.8rem;
  }
}
.p-accordion-box__txt {
  position: relative;
  margin-top: 15px;
  padding: 6px 0 0 65px;
}
@media screen and (max-width: 767px) {
  .p-accordion-box__txt {
    padding: 0px 0 0 45px;
  }
}
.p-accordion-box__txt::before {
  display: block;
  content: "A";
  position: absolute;
  width: 46px;
  height: 46px;
  line-height: 44px;
  top: 0;
  left: 0;
  background: #EBDA76;
  border-radius: 50%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-accordion-box__txt::before {
    width: 33px;
    height: 33px;
    line-height: 30px;
    font-size: 1.8rem;
  }
}

.p-accordion-box[open] .p-accordion-box__ttl::after {
  content: "−";
  transition: 0.3s;
}

.p-top-sec07-ttl {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-ttl {
    order: 1;
    margin-bottom: 30px;
    width: auto;
  }
}
.p-top-sec07-ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 120px;
  height: auto;
  aspect-ratio: 120/130;
  top: -45px;
  left: -60px;
  background: url(images/top_faq_ttl.png) no-repeat;
  background-size: 100%;
  z-index: -999;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-ttl::after {
    width: 60px;
    top: -15px;
    left: -15px;
  }
}
.p-top-sec07-ttl__en {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-size: 7.4rem;
  font-weight: normal;
  color: #ABCA73;
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 3px 3px 0px #ffffff, -3px 3px 0px #ffffff, 3px -3px 0px #ffffff, -3px -3px 0px #ffffff, 3px 0px 0px #ffffff, 0px 3px 0px #ffffff, -3px 0px 0px #ffffff, 0px -3px 0px #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-ttl__en {
    margin-bottom: 10px;
    font-size: 4.2rem;
  }
}
.p-top-sec07-ttl__jp {
  display: block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-sec07-ttl__jp {
    font-size: 1.6rem;
  }
}

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

newsトップ用

*****************************************/
.p-diary-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-diary-list {
    flex-flow: nowrap column;
    gap: 0;
  }
}
.p-diary-list__item:nth-child(3), .p-diary-list__item:nth-child(4) {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .p-diary-list__item:nth-child(2) {
    border-top: none;
  }
}
.p-diary-list__item {
  position: relative;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .p-diary-list__item {
    width: 100%;
  }
}
.p-diary-list__item::after {
  display: block;
  content: "";
  position: absolute;
  width: 8px;
  height: auto;
  aspect-ratio: 8/14;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: url(images/top_blog_arrow.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-diary-list__item::after {
    right: 10px;
  }
}
.p-diary-list__item a {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-diary-list__item a {
    padding: 15px 30px 15px 0;
  }
}
.p-diary-list__item a:hover {
  background: rgba(171, 202, 115, 0.2);
}
.p-diary-list__fig100 {
  position: relative;
  overflow: hidden;
  border-radius: 50vh;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .p-diary-list__fig100 {
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.p-diary-list__fig100 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-diary-list__txt390 {
  width: 390px;
}
@media screen and (max-width: 767px) {
  .p-diary-list__txt390 {
    width: calc(100% - 80px);
  }
}
.p-diary-list__date {
  margin-bottom: 5px;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #666666;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-diary-list__date {
    width: auto;
    font-size: 1.4rem;
  }
}
.p-diary-list__ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: #212121;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-diary-list__ttl {
    width: auto;
    font-size: 1.4rem;
  }
}

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

_p-page-name.scss コンセプト

*****************************************/
.p-concept-sec05-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 60px 30px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-concept-sec05-list {
    gap: 10px 10px;
  }
}
.p-concept-sec05-list__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-concept-sec05-list__item {
    margin-inline: auto;
    max-width: 380px;
    width: 100%;
  }
}

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

_p-page-name.scss メニュー

*****************************************/
.p-menu-notes {
  display: inline-block;
  font-size: 1.2rem;
}

.p-menu-btn-box {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 10px;
  max-width: 830px;
  width: 100%;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .p-menu-btn-box {
    justify-content: center;
    margin: 0 auto 30px;
  }
}

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

_p-page-name.scss ウィッグケアについて

*****************************************/
.p-service-notes {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

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

_p-page-name.scss ご利用の流れ

*****************************************/
.p-flow-sec {
  padding: 40px;
  border-radius: 10px;
  background: rgba(200, 216, 107, 0.14);
}
@media screen and (max-width: 767px) {
  .p-flow-sec {
    padding: 20px;
  }
}

.p-flow-sec:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-flow-sec:not(:first-of-type) {
    margin-top: 40px;
  }
}

.p-flow-sec01,
.p-flow-sec02 {
  position: relative;
}
.p-flow-sec01::after,
.p-flow-sec02::after {
  display: block;
  content: "";
  position: absolute;
  width: 70px;
  height: auto;
  aspect-ratio: 70/21;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  background: url(images/flow_arrow_01.png) no-repeat;
  background-size: 100%;
  z-index: 999;
}

.p-flow-ttl {
  margin-bottom: 10px;
  padding: 0 0 10px;
  border-bottom: 3px solid #D2E2B4;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-flow-ttl {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}

.wig-after {
  display: flex;
  flex-flow: nowrap column;
  align-items: center;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .wig-after {
    margin: 40px auto;
  }
}
.wig-after__ttl {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .wig-after__ttl {
    font-size: 1.8rem;
  }
}

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

_p-page-name.scss ウィッグケアメニュー

*****************************************/
.p-options-notes {
  display: inline-block;
  font-size: 1.2rem;
}

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

_p-page-name.scss ヘアアイテム

*****************************************/
.p-hair-products-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 60px 30px;
}
@media screen and (max-width: 767px) {
  .p-hair-products-list {
    gap: 40px 10px;
  }
}
.p-hair-products-list__item {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-hair-products-list__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .p-hair-products-list__item {
    width: 100%;
  }
}
.p-hair-products-list__fig380 {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 380px;
  height: 260px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-hair-products-list__fig380 {
    max-width: 380px;
    width: 100%;
    height: auto;
    aspect-ratio: 380/260;
  }
}
@media screen and (max-width: 500px) {
  .p-hair-products-list__fig380 {
    margin-inline: auto;
  }
}
.p-hair-products-list__fig380 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-hair-products-list__ttl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #333333;
  font-size: 1.8rem;
  color: #ABCA73;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-hair-products-list__ttl {
    font-size: 1.6rem;
  }
}
.p-hair-products-list__txt {
  margin-bottom: 15px;
}

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

_p-page-name.scss ご予約について

*****************************************/
.p-reservation-sec01__tel {
  width: 340px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .p-reservation-sec01__tel {
    width: 300px;
  }
}

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

_p-page-name.scss よくあるご質問

*****************************************/
.p-faq-btn-box {
  display: flex;
  flex-flow: wrap row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-faq-btn-box {
    gap: 10px;
    margin-bottom: 40px;
  }
}

.p-accordion-box-faq:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq:not(:first-of-type) {
    margin-top: 20px;
  }
}

.p-accordion-box-faq {
  padding: 30px 30px;
  border-radius: 12px;
  background: rgba(200, 216, 107, 0.141);
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq {
    padding: 20px 15px;
  }
}
.p-accordion-box-faq__ttl {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: nowrap row;
  cursor: pointer;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq__ttl {
    margin-bottom: 15px;
  }
}
.p-accordion-box-faq__ttl::-webkit-details-marker {
  display: none;
}
.p-accordion-box-faq__ttl::after {
  display: block;
  content: "+";
  position: absolute;
  right: 0px;
  top: -5px;
  transition: 0.3s;
  font-size: 3rem;
  /* 記号のサイズ */
  font-weight: normal;
  color: #1F1F1F;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq__ttl::after {
    font-size: 1.6em;
    /* 記号のサイズ */
    top: 2px;
  }
}
.p-accordion-box-faq__ttl-content {
  padding: 0px 40px 5px 60px;
  width: 100%;
  border-bottom: 8px solid #D2E2B4;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #3E301E;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq__ttl-content {
    padding: 0px 25px 10px 30px;
    border-bottom: 4px solid #D2E2B4;
    font-size: 1.6rem;
  }
}
.p-accordion-box-faq__ttl-content::before {
  display: block;
  content: "Q.";
  position: absolute;
  top: 5px;
  left: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: #1F1F1F;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq__ttl-content::before {
    top: 2px;
    left: 0;
    font-size: 1.8rem;
  }
}
.p-accordion-box-faq__txt {
  position: relative;
  padding: 0 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq__txt {
    padding: 0 0 0 30px;
  }
}
.p-accordion-box-faq__txt::before {
  display: block;
  content: "A.";
  position: absolute;
  top: 0;
  left: 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.6rem;
  font-weight: bold;
  color: #1F1F1F;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-accordion-box-faq__txt::before {
    top: 2px;
    left: 0;
    font-size: 1.8rem;
  }
}

.p-accordion-box-faq[open] .p-accordion-box-faq__ttl::after {
  content: "−";
  transition: 0.3s;
}

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

_p-blog.scss ブログ

*****************************************/
.p-journal-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  gap: 60px 30px;
}
@media screen and (max-width: 767px) {
  .p-journal-list {
    gap: 40px 10px;
  }
}
.p-journal-list__item {
  display: flex;
  flex-flow: nowrap column;
  align-items: center;
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767px) {
  .p-journal-list__item {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 500px) {
  .p-journal-list__item {
    width: 100%;
  }
}
.p-journal-list__fig380 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 380px;
  height: 260px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-journal-list__fig380 {
    max-width: 380px;
    width: 100%;
    height: auto;
    aspect-ratio: 380/260;
  }
}
@media screen and (max-width: 500px) {
  .p-journal-list__fig380 {
    margin-inline: auto;
  }
}
.p-journal-list__fig380 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-journal-list__date {
  margin-bottom: 5px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ABCA73;
}
@media screen and (max-width: 767px) {
  .p-journal-list__date {
    font-size: 1.4rem;
  }
}
.p-journal-list__ttl {
  margin-bottom: 10px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px dotted #333333;
  font-size: 1.8rem;
  color: #ABCA73;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-journal-list__ttl {
    font-size: 1.6rem;
  }
}
.p-journal-list__txt {
  margin-bottom: 30px;
  width: 100%;
}

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

_p-overview.scss 店舗概要

*****************************************/
/*---------- アクセス ----------*/
.p-overview-sec02__map {
  margin-top: 20px;
  width: 100%;
}
.p-overview-sec02__map iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-overview-sec02__map iframe {
    height: 250px;
  }
}

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

_u-display.scss 表示、非表示

*****************************************/
@media print, screen and (min-width: 768px) {
  .u-pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none !important;
  }
}
/****************************************

_u-arrange.scss 余白調整

*****************************************/
/* 共通セクションの余白 */
.u-cmn-sec:not(:first-of-type) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-cmn-sec:not(:first-of-type) {
    margin-top: 60px;
  }
}

/* PC,テキスト中央 */
@media screen and (min-width: 768px) {
  .u-tc-pc {
    text-align: center;
  }
}

.u-tc {
  text-align: center;
}

.u-tr {
  text-align: right;
}

/* 改行 */
.u-line-break {
  margin-top: 25px;
}

/* 1行目の字下げ */
.u-notes {
  text-indent: -1em;
  padding-left: 1em;
}

/* margin-bottom */
.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .u-mb50,
  .u-mb60 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .u-mb70,
  .u-mb80 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .u-mb90,
  .u-mb100 {
    margin-bottom: 80px;
  }
}

/* margin-top */
.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .u-mt50,
  .u-mt60 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt70,
  .u-mt80 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .u-mt90,
  .u-mt100 {
    margin-top: 80px;
  }
}

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

_u-link.scss リンク動作設定

*****************************************/
/* ホバー時に下線が出てくる */
.u-link-fade-in a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.u-link-fade-in a:is(:link, :visited) {
  color: #212121;
}
.u-link-fade-in a:is(:hover, :active) {
  color: #ABCA73;
}
.u-link-fade-in a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ABCA73;
  transition: all 0.3s ease-in-out;
}
.u-link-fade-in a:hover::before {
  width: 100%;
  opacity: 0.9;
}

/* 線が閉じる */
.u-link-fade-out a {
  position: relative;
  text-decoration: none;
  color: #212121;
}
.u-link-fade-out a::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background: #212121;
  transition: all 0.3s ease-in-out;
}
.u-link-fade-out a:hover::after {
  width: 0;
}

/* 元から下線付き */
.u-link-on-to-off a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.u-link-on-to-off a:is(:link, :visited) {
  color: #212121;
}
.u-link-on-to-off a:is(:hover, :active) {
  color: #ABCA73;
}
.u-link-on-to-off a::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #212121;
  transition: all 0.3s ease-in-out;
}
.u-link-on-to-off a:hover::before {
  background: #ABCA73;
}

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

_u-color.scss カラー指定

*****************************************/
.u-base-color {
  color: #212121;
}

.u-main-color {
  color: #ABCA73;
}

.u-accent-color {
  color: #EBDA76;
}

.u-red {
  color: #ff0000;
}

.u-pink {
  color: #E17679;
}

.u-green {
  color: #ABCA73;
}

.u-yellow {
  color: #EBDA76;
}

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

_u-font.scss フォント調整

*****************************************/
.u-bold {
  font-weight: bold;
}

.u-medium {
  font-weight: 500;
}

.u-font-base {
  font-family: "Noto Sans JP", sans-serif;
}

.u-font-jp {
  font-family: "Zen Old Mincho", serif;
}

.u-font-en {
  font-family: "Caveat", cursive;
}

/* End Hack *//*# sourceMappingURL=style.css.map */