@charset "UTF-8";

/*
Theme Name: Magokoro-Original
Author: Aki Masunaga
Description: 出張着付け屋眞心(まごころ)向けのオリジナルテーマです。
Version: 1.0
*/

/********余白設定*********/
/********フォント設定*********/
/********フォントウェイト*********/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

/********色設定*********/
/****************************
メディアクエリとbreakpoint設定
****************************/
/********変数の定義*********/
/********pcとspの表示・非表示の切り替え*********/
.pc-only {
  display: none;
}

@media screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

/********spのみ表示*********/
@media screen and (min-width: 1024px) {
  .sp-only {
    display: none;
  }
}

/****************************
remへの変換計算式(16pxが基本)
****************************/
/****************************
画像の縦横比設定
****************************/
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

/****************************
aタグのスタイルリセット
****************************/
a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/****************************
リストのスタイルリセット
****************************/
ol,
ul {
  list-style: none;
}

/****************************
フェードイン（ふわっと表示）の設定
****************************/
.container {
  color: #242424;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

/***Fadein設定***/
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translatey(20px);
    transform: translatey(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translatey(20px);
    transform: translatey(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
}

/*-- globalフォルダの直下の_index.scss --*/
/*******************************
リキッドレイアウト設定
画面幅に合わせて文字の大きさを変更
********************************/
html {
  scroll-behavior: smooth;
}

@media (max-width: 375px) {
  html {
    font-size: vw 375, 16;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: vw strip-unit 75vw, 16;
  }
}

@media (min-width: 75vw) {
  html {
    font-size: 16px;
  }
}

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

body {
  background: url(http://magokorokimono.local/wp-content/uploads/2023/05/bg_shippo.jpg);
  background-repeat: repeat;
}

/*-- foundationフォルダの中の_index.scss --*/
/********************
ヘッダーの幅決め
*********************/
.l-header {
  width: 3.4375rem;
  height: 3.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  background-color: white;
}

@media screen and (min-width: 768px) {
  .l-header {
    width: 6.25rem;
    height: 5.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-header {
    position: fixed;
    width: 14.5rem;
    height: 100%;
    font-size: 0.875rem;
    overflow-y: none;
  }
}

@media screen and (min-width: 1240px) {
  .l-header {
    width: 18.75rem;
  }
}

/********************
ロゴの表示設定
*********************/
.l-header__logo {
  width: 3.4375rem;
}

@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 6.25rem;
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .l-header__logo {
    width: 9.375rem;
    margin-top: 1.875rem;
  }
}

/*******************************
ヘッダー部のグローバルナビ表示設定
********************************/
.l-header__nav,
.nav__sns {
  width: 100%;
}

.l-header__nav--link,
.nav__sns--link {
  color: #242424;
}

@media screen and (min-width: 768px) {

  .l-header__nav,
  .nav__sns {
    text-align: center;
  }
}

.l-header__nav--items {
  height: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__nav--item {
  width: 100%;
  display: inline-block;
  padding: 0.625rem 0;
  color: #242424;
}

@media screen and (min-width: 1240px) {
  .l-header__nav--item {
    font-size: 1.125rem;
  }
}

.l-header__nav--link {
  display: inline-block;
  /*クリックできる範囲を広げる*/
  position: relative;
  overflow: hidden;
}

.l-header__nav--link::after {
  position: absolute;
  left: 0;
  bottom: -0.3125rem;
  content: "";
  width: 100%;
  height: 0.625rem;
  background-color: #dae6cf;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-header__nav--link:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*********************
予約・問合せボタンの設定
**********************/
#reserve__btn {
  display: none;
}

@media screen and (min-width: 1024px) {
  #reserve__btn {
    display: block;
    position: relative;
    z-index: 0;
    /* グラデーションよりも上に配置 */
    display: inline-block;
    /* inline以外にする */
    width: 100%;
    height: 6.25rem;
    line-height: 1.5;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    /* 背景を透明にする */
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: "Kaisei HarunoUmi", serif;
    color: #fff;
    font-weight: 700;
  }
}

#reserve__btn span {
  font-size: 1.375rem;
}

@media screen and (min-width: 1024px) {
  #reserve__btn span {
    font-size: 2.25rem;
  }
}

/* ::before, ::afterで2種類のグラデーションを用意 */
#reserve__btn::before,
#reserve__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* グラデーション1 */
#reserve__btn::before {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(135deg, #a580db 0%, #b794c0 100%);
}

/* グラデーション2 */
#reserve__btn::after {
  z-index: -2;
  background: linear-gradient(135deg, #12c2e9 0%, #a580db 100%);
}

/* ホバー時にグラデーション1を透明にする */
#reserve__btn:hover::before {
  opacity: 0;
}

/********************
右半分の要素の位置決め
*********************/
.container {
  position: absolute;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .container {
    margin-left: 14.5rem;
    width: calc(100% - 14.5rem);
  }
}

@media screen and (min-width: 1240px) {
  .container {
    margin-left: 18.75rem;
    width: calc(100% - 18.75rem);
  }
}

/**********************
ロゴ～著作権表示まで
***********************/
.l-footer__logo {
  height: 9.6875rem;
  background-color: #fff;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l-footer__logo {
    height: 14.375rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer__logo {
    padding-top: 3.75rem;
    height: 29.0625rem;
  }
}

.l-footer__logo p {
  text-align: center;
  font-size: clamp(0.625rem, 0.443rem + 0.91vw, 1rem);
  margin-top: 0.3125rem;
  margin-bottom: 1.25rem;
}

.l-footer__logo img {
  width: 2.8125rem;
  display: block;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .l-footer__logo img {
    width: 6.25rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer__logo img {
    width: 9.375rem;
  }
}

@media screen and (min-width: 1024px) {
  .l-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 3.125rem;
  }
}

.l-footer__nav--item {
  margin: 0 1.25rem;
}

.l-footer__nav--items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer__nav--link {
  font-size: 0.75rem;
  color: #242424;
  position: relative;
}

@media screen and (min-width: 1240px) {
  .l-footer__nav--link {
    font-size: 1rem;
  }
}

.l-footer__nav--link::after {
  position: absolute;
  left: 0;
  bottom: -0.1875rem;
  content: "";
  width: 100%;
  height: 0.3125rem;
  background-color: #dae6cf;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.l-footer__nav--link:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/**********************
フッターナビ（スマホのみ）
***********************/
.l-footer__sp {
  background: linear-gradient(135deg, #a580db 0%, #b794c0 100%);
  width: 100%;
  height: 3.125rem;
  padding: 0.5rem 1.25rem;
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 10;
}

@media screen and (min-width: 1024px) {
  .l-footer__sp {
    display: none;
  }
}

.l-footer__sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer__sp-blk img {
  width: 24px;
  display: block;
  margin-inline: auto;
  fill: #fff;
}

.l-footer__sp-blk p {
  font-size: 0.625rem;
  color: #fff;
}

.l-footer__sp-blk a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.fa-icon {
  color: #fff;
  line-height: 1 !important;
}

/*********************
SNSアイコン
**********************/
.nav__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

.nav__sns ul li {
  width: 1.875rem;
}

/*---------
FV写真の設定
----------*/
.top-view {
  position: relative;
  width: 100%;
}

/*---------
キャッチコピー
----------*/
.catch-copy {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
  color: #fff;
  padding: 0.625rem 0.3125rem;
  background: rgba(36, 36, 36, 0.6);
  position: absolute;
  font-size: 0.875rem;
  top: 0;
  right: 8%;
}

@media screen and (min-width: 768px) {
  .catch-copy {
    padding: 1.25rem 0.3125rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .catch-copy {
    padding: 1.25rem 0.625rem;
    font-size: 1.25rem;
    letter-spacing: 0.4rem;
  }
}

@media screen and (min-width: 1240px) {
  .catch-copy {
    padding: 1.25rem 0.75rem;
    font-size: 1.5rem;
    letter-spacing: 0.7rem;
  }
}

.catch-copy span {
  text-combine-upright: all;
  /*「!」を縦書きにする*/
  -webkit-text-combine: horizontal;
}

/*-----------------
見出し設定
------------------*/
.title {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: bold;
  color: #94294C;
  font-size: clamp(24px, 1vw, 32px);
  width: 90%;
  margin-top: 1.875rem;
  margin-bottom: 2.5rem;
  margin-inline: auto;
  position: relative;
  padding: 0 0.5em 0.5em 2em;
}

@media screen and (min-width: 1024px) {
  .title {
    margin-bottom: 3rem;
  }
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  border-radius: 100%;
}

.title::before {
  top: 0.5rem;
  left: 0.3rem;
  z-index: 2;
  width: clamp(24px, 1vw, 40px);
  height: clamp(24px, 1vw, 40px);
  background: #94294C;
}

.title::after {
  top: 0.2rem;
  left: 1rem;
  width: clamp(24px, 1vw, 40px);
  height: clamp(24px, 1vw, 40px);
  background: #fff;
}

/***特徴の見出しのみ位置調整***/
.title__feature {
  max-width: 68.75rem;
}

/***タイトル位置調整用設定（トップページ）***/
.inner-all {
  max-width: 68.75rem;
  margin-inline: auto;
}

.inner-pf {
  max-width: 93.75rem;
  margin-inline: auto;
}

.head__title {
  font-size: 1.25rem;
  margin-top: 3.75rem;
  margin-bottom: 5rem;
  text-align: center;
  position: relative;
  color: #94294C;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .head__title {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 1024px) {
  .head__title {
    font-size: 2.5rem;
  }
}

.head__title::before {
  content: attr(data-en);
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-8deg);
  transform: translateX(-50%) rotate(-8deg);
  color: #dbd0e6;
  font-size: 3rem;
  font-family: "Dancing Script", cursive;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .head__title::before {
    font-size: 3.75rem;
  }
}

/**********************
リンクボタン
***********************/
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding: 0.8125rem 2.1875rem;
  width: 18.75rem;
  color: #94294C;
  text-decoration: none;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  background-color: #fff;
  background-image: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .btn {
    margin-top: 3.75rem;
    margin-bottom: 5rem;
  }
}

.btn::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  border: 2px solid #B794C0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #94294C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover::before {
  top: 0;
  left: 0;
}

.btn:hover {
  text-decoration: none;
  background-color: rgba(219, 208, 230, 0.7);
  background-image: none;
  cursor: pointer;
}

/***********スマホメニュー**************/
.sp-nav {
  background-size: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

@media screen and (min-width: 1024px) {
  .sp-nav {
    display: none;
  }
}

.is-openSP {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*****************************
ハンバーガーメニューの設定
*****************************/
/* チェックボックスを非表示 */
.menu-checkbox {
  display: none;
}

/* メニューボタンの装飾 */
.menu-button {
  display: block;
  position: fixed;
  bottom: 18px;
  right: 20px;
  z-index: 200;
  height: 20px;
  width: 24px;
  cursor: pointer;
}

.menu-button::before,
.menu-button::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-button::before,
.menu-button::after,
.menu-button span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  margin-top: -1px;
  background-color: #fff;
}

.menu-button::before {
  top: 0;
}

.menu-button::after {
  bottom: -2px;
  content: "Menu";
  text-transform: uppercase;
  font-size: 8px;
  color: #fff;
}

.menu-button span {
  top: 50%;
}


/* メニューボタンのアニメーション */
.menu-checkbox:checked~.menu-button::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-checkbox:checked~.menu-button::after {
  top: 50%;
  content: "";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-checkbox:checked~.menu-button span {
  display: none;
}

/* ドロワーメニューの装飾 */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 85%;
  height: 100vh;
  overflow: scroll;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: linear-gradient(135deg, #a580db 0%, #b794c0 100%);
}

.sp-menu {
  background-color: #fff;
}

.drawer-menu ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.drawer-menu li {
  border-bottom: 1px dotted #fff;
}

.drawer-menu a {
  display: block;
  padding: 0.625rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}

.drawer-menu a img {
  width: 8.75rem;
}

/* ドロワーメニューの開閉 */
.menu-checkbox:checked~.drawer-menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* ドロワーメニューの背景 */
.menu-background {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.menu-checkbox:checked~.menu-background {
  display: block;
}

.about {
  width: 85%;
  margin: 3.75rem auto;
}

@media screen and (min-width: 768px) {
  .about {
    width: 40.625rem;
  }
}

@media screen and (min-width: 1024px) {
  .about {
    margin-top: 5rem;
    margin-bottom: 3.75rem;
  }
}

.about__li {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

/*************************
トップページの着付師紹介
*************************/
.my-profile {
  background-color: #DBD0E6;
  -webkit-animation-name: fadein;
  animation-name: fadein;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  padding-top: 1.875rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 1024px) {
  .my-profile {
    padding-top: 3.125rem;
    padding-bottom: 2.5rem;
  }
}

.my-profile__box {
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .my-profile__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0;
  }
}

.my-profile__photo {
  width: 19.375rem;
  margin: 0 auto;
}

.my-profile__photo img {
  border-radius: 50%;
}

@media screen and (min-width: 1024px) {
  .my-profile__photo {
    margin: 0;
  }
}

.my-profile__inner {
  width: 82%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .my-profile__inner {
    width: 85%;
    margin-left: 5rem;
  }
}

.my-profile__para {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .my-profile__para {
    width: 20rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin: 0;
    margin-left: 1.875rem;
  }
}

@media screen and (min-width: 1240px) {
  .my-profile__para {
    width: 30.125rem;
    margin-left: 3.75rem;
  }
}

.profile__p-middle {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*-----------------
眞心の特徴
------------------*/
.feature__figure {
  margin: 0 !important;
}

.feature__blocks {
  display: -ms-grid;
  display: grid;
  gap: 0;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto 0 auto 0 auto;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a" "b" "c" "d" "e" "f";
}

@media screen and (min-width: 768px) {
  .feature__blocks {
    -ms-grid-columns: (2fr)[2];
    grid-template-columns: repeat(2, 2fr);
    grid-template-areas: "a b" "c d" "e f";
  }
}

.feature__block {
  width: 100%;
  display: block;
}

.verticalrl {
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .verticalrl {
    padding: 0;
    margin: auto;
    /*中央位置*/
  }
}

.feature__block-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.h__rl {
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  font-size: 1.125rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  margin-left: 50px;
}

.p__rl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 2.5rem;
}

/***グリッド位置の調整***/
@media screen and (min-width: 768px) {
  .block3 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    grid-area: d;
    /*特徴2の写真を右側へ*/
  }
}

@media screen and (min-width: 768px) {
  .block4 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: c;
    /*特徴2の説明を左側へ*/
  }

  @media screen and (min-width: 768px) {
    .block3 {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }

    .block4 {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
    }
  }
}

/******************************
ブログ（お知らせ）@トップページ表示用
*******************************/
.news {
  background-color: #dae6cf;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

@media screen and (min-width: 1024px) {
  .news {
    padding: 3.125rem 0;
  }
}

.news__list {
  width: 82%;
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 1240px) {
  .news__list {
    width: 85%;
  }
}

.news__list_li {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .news__list_li {
    display: -webkit-box;
    /* display: -ms-flexbox;
    display: flex; */
    max-width: 58.125rem;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .news__date {
    width: 12.5rem;
    margin-right: 3.75rem;
  }
}

.new {
  background-color: #94294C;
  border-radius: 0.3125rem;
  padding: 0.1875rem 0.3125rem;
  margin-left: 0.625rem;
  color: #fff;
  text-transform: capitalize;
}

.news__title {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .news__title {
    margin: 0 0 1.1875rem;
  }
}

.news__title a {
  text-decoration: none;
  color: #242424;
  display: inline-block;
  /*クリックできる範囲を広げる*/
  position: relative;
  overflow: hidden;
}

.news__title a:hover {
  color: #94294C;
}

.news__title a::after {
  position: absolute;
  left: 0;
  bottom: -0.3125rem;
  content: "";
  width: 100%;
  height: 0.4375rem;
  background-color: #94294C;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.news__title a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/****************************
ご利用の流れ
****************************/
.flow {
  padding: 1.875rem 0;
}

@media screen and (min-width: 1024px) {
  .flow {
    padding: 3.125rem 0;
  }
}

/**流れの数字カウンターリセット**/
.flow__cards {
  display: block;
  margin-inline: auto;
  width: 85%;
}

@media screen and (min-width: 1240px) {
  .flow__cards {
    max-width: 58.125rem;
  }
}

.flow__cards ol {
  counter-reset: item;
}

@media screen and (min-width: 1240px) {
  .flow__cards ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3.75rem;
  }
}

/**カード表示設定**/
.flow__card {
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  width: 15.625rem;
  height: 23.75rem;
  border-radius: 0.625rem;
  padding: 0.8125rem 0.9375rem 1.875rem;
  position: relative;
  margin-inline: auto;
  margin-bottom: 3.75rem;
}

@media screen and (min-width: 576px) {
  .flow__card {
    width: 31.25rem;
    height: 14.125rem;
  }
}

@media screen and (min-width: 1240px) {
  .flow__card {
    width: 15.625rem;
    height: 23.75rem;
  }
}

.flow__img {
  width: 13.75rem;
}

@media screen and (min-width: 576px) {
  .flow__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3.125rem;
    width: 95%;
  }
}

@media screen and (min-width: 1240px) {
  .flow__img {
    width: 13.75rem;
    display: block;
  }
}

.flow__img img {
  width: 12.5rem;
  display: block;
  margin-inline: auto;
}

/**三角矢印の設定**/
.flow__card::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 12px 0 12px;
  border-color: #94294C transparent transparent transparent;
  left: 45%;
  top: 24.8125rem;
}

@media screen and (min-width: 576px) {
  .flow__card::after {
    top: 110%;
    left: 50%;
  }
}

@media screen and (min-width: 1240px) {
  .flow__card::after {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    border-width: 30px 15px 0 15px;
    top: 50%;
    left: 110%;
  }
}

.flow__card-last::after {
  border: none;
}

/**流れの数字表示**/
.flow__img figcaption::before {
  counter-increment: item;
  content: counter(item);
  font-family: "Kaisei HarunoUmi", serif;
  color: #DBD0E6;
  font-size: 2.5rem;
  display: block;
  margin: -0.625rem auto 0rem;
  text-align: center;
}

.flow p {
  width: 82%;
  margin: auto;
}

@media screen and (min-width: 1240px) {
  .flow p {
    max-width: 58.125rem;
  }
}

/******************************
料金体系の背景設定
*******************************/
.price {
  background-color: #DBD0E6;
  padding-top: 1.875rem;
  padding-bottom: 3.75rem;
}

@media screen and (min-width: 1024px) {
  .price {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

.price__inner {
  width: 85%;
  margin-inline: auto;
}

.price__inner-about {
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .price__inner-about {
    margin-bottom: 3.75rem;
  }
}

/******************************
料金テーブル
*******************************/
.fdw-pricing-table {
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.875rem;
}

@media screen and (min-width: 1024px) {
  .fdw-pricing-table {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
}

.fdw-pricing-table2 {
  margin: auto;
}

/* --------------- */
.fdw-pricing-table .plan {
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.625rem;
  color: #333;
  padding: 20px;
  width: 17.5rem;
  display: inline-block;
  position: relative;
  margin: 0 5px;
  -webkit-box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.3);
}

.fdw-pricing-table .popular-plan {
  top: -20px;
  padding: 40px 20px;
}

/* --------------- */
.fdw-pricing-table .plan__header {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-transform: uppercase;
  padding: 1.125rem;
  margin: -1.25rem -1.25rem 1.25rem -1.25rem;
  border-bottom: 0.5rem solid;
  border-radius: 0.625rem;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
  background-image: linear-gradient(#fff, #eee);
}

.fdw-pricing-table .plan__header:after {
  background-color: #dae6cf;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 0.1875rem;
  width: 100%;
  content: "";
  background-image: url(../../images/bar.png);
}

.fdw-pricing-table .popular-plan .plan__header {
  margin-top: -2.5rem;
  padding-top: 3.75rem;
}

.fdw-pricing-table .plan1 .plan__header {
  border-bottom-color: #dae6cf;
}

/* --------------- */
.plan__header-small {
  font-size: 1rem;
  font-weight: 400;
  color: #999;
}

/* -------料金-------- */
.fdw-pricing-table .price_b {
  font-size: 1.875rem;
}

.fdw-pricing-table .price_th {
  font-weight: 400;
  text-align: right;
  width: 7.5625rem;
}

.fdw-pricing-table .price_td {
  font-size: 0.8125rem;
  width: 7.6875rem;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  padding-left: 0.375rem;
}

.price_para {
  width: 14.375rem;
  text-align: left;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .price_para {
    width: 95%;
  }
}

.price_para span {
  color: #94294C;
}

/******************************
出張エリア
*******************************/
@media screen and (min-width: 768px) {
  #area-map {
    width: 37.5rem;
  }
}

#plan__header-area {
  font-size: 1.875rem;
}

@media screen and (min-width: 768px) {
  .area-map-fig {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.area-map-fig img {
  display: block;
  width: 16.25rem;
  margin-top: 0.625rem;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .area-map-fig img {
    margin-bottom: 0.3125rem;
  }
}

.area-map-cap {
  font-size: 1.0625rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .area-map-cap {
    margin: auto 0.625rem;
  }
}

.area-map-cap span {
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .area-map-tbl {
    margin-inline: auto;
  }
}

.area-map-tbl .area_th {
  font-weight: 400;
  text-align: left;
  padding: 0.375rem 0;
  width: 8rem;
  font-size: 0.75rem;
}

.area-map-tbl .area_td {
  font-size: 0.8125rem;
  width: 7.6875rem;
  font-weight: 400;
  text-align: right;
  padding: 0.375rem;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .area-map-tbl .area_td {
    width: 6.25rem;
  }
}

.area-map-tbl .area_b {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .areamap-tbl-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/**********************
ご予約・お問合せ
***********************/
.reserve {
  background-image: url("http://design-aplus.com/test1/wp-content/uploads/2023/05/contact_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  padding: 1.875rem 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .reserve {
    background-image: url("http://design-aplus.com/test1/wp-content/uploads/2023/05/contact_pc.jpg");
  }
}

@media screen and (min-width: 1024px) {
  .reserve {
    padding-top: 3.125rem;
  }
}

.reserve__para {
  width: 85%;
  max-width: 56.25rem;
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .reserve__para {
    margin-bottom: 3.75rem;
  }
}

/*************************
プロフィールページ　写真設定
**************************/
/**プロフィール写真**/
.profile__pic {
  display: block;
  width: 19.375rem;
  margin-inline: auto;
  margin-bottom: 11.25rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .profile__pic {
    width: 31.25rem;
  }
}

@media screen and (min-width: 1024px) {
  .profile__pic {
    width: 40.625rem;
    margin-bottom: 7.1875rem;
  }
}

.profile__pic img {
  width: 15.625rem;
}

@media screen and (min-width: 768px) {
  .profile__pic img {
    width: 20rem;
  }
}

@media screen and (min-width: 1024px) {
  .profile__pic img {
    width: 31.25rem;
  }
}

/**プロフィール補足**/
.profile__caption {
  width: 15.625rem;
  height: 16.25rem;
  background-color: #DBD0E6;
  position: absolute;
  top: 10rem;
  left: 3.75rem;
  z-index: -2;
}

@media screen and (min-width: 768px) {
  .profile__caption {
    width: 20rem;
    height: 18.9375rem;
    top: 12.5rem;
    left: 6.25rem;
  }
}

@media screen and (min-width: 1024px) {
  .profile__caption {
    width: 31.25rem;
    height: 32.5rem;
    top: 3.125rem;
    left: 14.375rem;
  }
}

.profile__caption--inner {
  position: absolute;
  left: 2.5rem;
  top: 5rem;
}

@media screen and (min-width: 768px) {
  .profile__caption--inner {
    top: 7.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .profile__caption--inner {
    left: 18.4375rem;
    top: 15rem;
  }
}

.profile__caption--inner h2 {
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .profile__caption--inner h2 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}

.profile__caption--inner figcaption {
  font-size: 0.875rem;
}

@media screen and (min-width: 1024px) {
  .profile__caption--inner figcaption {
    font-size: 1rem;
  }
}

/************************
略歴
*************************/
.myHistory {
  padding-top: 1.875rem;
  padding-bottom: 3.75rem;
}

@media screen and (min-width: 1024px) {
  .myHistory {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

/**略歴テーブル部分**/
.myHistory__tbl,
.myHistory p {
  width: 83%;
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .myHistory__tbl tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.myHistory__tbl tr th {
  background-color: #dae6cf;
  display: block;
  font-weight: 400;
  padding: 0.625rem 1.25rem;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .myHistory__tbl tr th {
    width: 20%;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

@media screen and (min-width: 1240px) {
  .xl-only {
    display: none;
  }
}

.myHistory__tbl tr td {
  background-color: rgba(218, 230, 207, 0.5);
  display: block;
  padding: 0.625rem 1.25rem;
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .myHistory__tbl tr td {
    width: 80%;
    padding: 0.625rem 2.1875rem;
    border-bottom: 1px solid #fff;
  }
}

/**略歴一言*/
.myHistory p {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .myHistory p {
    margin-top: 3.125rem;
  }
}

/********************
着付への想い
*********************/
.myHope {
  background-color: #DBD0E6;
  padding-top: 1.875rem;
  padding-bottom: 3.75rem;
}

@media screen and (min-width: 1024px) {
  .myHope {
    padding-top: 3.125rem;
    padding-bottom: 5rem;
  }
}

.myHope__p {
  width: 83%;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  text-align: left;
}

@media screen and (min-width: 1024px) {
  .myHope__p {
    margin-top: 3.125rem;
  }
}

.myHope__p:last-of-type {
  margin-bottom: 0;
}

/****************************
メディア情報＆SNS
****************************/
.mediaInfo {
  padding-top: 1.875rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 1024px) {
  .mediaInfo {
    padding-top: 3.125rem;
  }
}

.sns {
  padding-top: 1.875rem;
  padding-bottom: 3.75rem;
}

@media screen and (min-width: 1024px) {
  .sns {
    padding-bottom: 5rem;
  }
}

.mediaInfo p,
.sns p {
  width: 83%;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.youtube {
  display: block;
  text-align: center;
}

.youtube iframe {
  aspect-ratio: 560/315;
  width: 83%;
  height: 83%;
  margin-inline: auto;
}

.sns__para::before {
  font-family: "Font Awesome 6 Free";
  content: "\f075";
  margin-right: 10px;
}

/**********************
Instagram feed
***********************/
.instagram {
  width: 83%;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  background-color: #fff;
  padding: 15px;
}

.sb_instagram_header a {
  color: #242424;
}

@media screen and (min-width: 1024px) {
  .instagram {
    margin-bottom: 3.75rem;
  }
}

/**********************
LINE友達追加ボタン
***********************/
.line_btn {
  width: 12.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: auto;
}

.line_btn a img {
  text-align: center;
}

/***********************************
よくあるご質問(FAQ)
***********************************/
.faq__p {
  width: 90%;
  margin-inline: auto;
  margin-bottom: 3.75rem;
  max-width: 56.25rem;
}

@media screen and (min-width: 1024px) {
  .faq__p {
    margin-bottom: 5rem;
  }
}

/*==================================
アコーディオンのためのcss
===================================*/
/* Acordion Faq */
.tab {
  position: relative;
  width: 95%;
  max-width: 56.25rem;
  margin: 0 auto 1.875rem;
  padding-bottom: 2.1875rem;
  background-color: #fff;
  color: #242424;
  overflow: hidden;
}

.tab:last-of-type {
  margin-bottom: 5rem;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.tab label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #242424;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  line-height: 3;
  cursor: pointer;
  background-color: #fff;
}

.tab label::before {
  content: "Q";
  font-size: 1.5rem;
  color: #94294C;
  margin-right: 0.625rem;
}

.tab-content {
  max-height: 0;
  width: 90%;
  margin-inline: auto;
  overflow: hidden;
  -webkit-transition: max-height 0.35s;
  transition: max-height 0.35s;
  color: #242424;
  background-color: #DBD0E6;
}

.tab-content p {
  width: 95%;
  margin-inline: auto;
}

.tab-content p::before {
  content: "A";
  font-size: 1.5rem;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  color: #94294C;
  margin-right: 0.625rem;
}

/* :checked */
.tab input:checked~.tab-content {
  max-height: 100%;
}

/* Icon */
.tab label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.tab input[type=checkbox]+label::after {
  content: "+";
  font-size: 1.25rem;
}

.tab input[type=radio]+label::after {
  content: "▼";
}

.tab input[type=checkbox]:checked+label::after {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.tab input[type=radio]:checked+label::after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/*回答部分の画像設定*/
.tab-content li {
  width: 85%;
  margin: 0.5rem auto 0.25rem;
}

.tab-content li:last-of-type {
  margin-bottom: 1.875rem;
}

.kimono__img {
  border: 1px solid #242424;
}

/**********************
お知らせ・ブログ
***********************/
.blog__wrapper {
  margin-top: 3.75rem;
}

.blog-container {
  width: 95%;

  margin-inline: auto;
  background-color: #fff;
}

@media screen and (min-width: 1240px) {
  .blog__wrapper {
    margin-top: 5rem;
  }

  .blog__leftside {
    width: 70%;
  }

  .blog-container {
    margin-bottom: 5rem;
  }
}

/** ブログ一覧ページ **/
.blog-list__list-item {
  width: 300px;
  margin-inline: auto;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .blog-item {
    display: flex;
  }

  .blog-list__list-item {
    width: 600px;
  }
}

.blog-item__thumbnail {
  width: 300px;
  height: 200px;
  background-color: #fff;
}

.blog-item__thumbnail-noimage {
  width: 200px;
  height: 200px;
  margin-inline: auto;
}

.blog-item__thumbnail-image {
  width: 100%;
  height: 200px;
}

.blog-item__thumbnail-image:not([alt]) {
  filter: none;
}

.blog-item__content {
  width: 300px;
  height: 200px;
  background-color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.blog-item__content:hover {
  background-color: #DBD0E6;
  transition: 0.3s;
}

.blog__list-title {
  order: 2;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  color: #242424;
  margin: 5px 0 10px;
}

.blog__list-date {
  order: 1;
  text-decoration: none;
  color: #242424;
}

.blog-item__read {
  order: 3;
  text-decoration: none;
  font-weight: lighter;
  font-size: 16px;
  color: #242424;
}

.blog-item__button {
  text-align: right;
  order: 4;
}

.blog-item__button-more {
  text-decoration: none;
  color: #94294C;
}

.blog-item__button-more:hover {
  background-color: #DBD0E6;
}


/** ページネーション設定 **/
.pagination {
  margin: 40px 0 80px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  /*ページネーションの中央寄せ*/
  justify-content: center;
  align-items: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 1px 15px;
  font-family: "Kaisei HarunoUmi", serif;
  color: #94294C;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #94294C;
}

.pagination .page-numbers:hover {
  background-color: #DBD0E6;
}

.pagination .current {
  background: #94294C;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  box-shadow: none;
  color: #94294C;
  background: #fff;
}

.pagination .dots {
  background: transparent;
  box-shadow: none;
  border: none;
}

/** サイドバー設定 **/
.aside_archive {
  width: 95%;
  margin-inline: auto;
  margin-top: 60px;
}

.wp-block-heading {
  font-family: "Kaisei HarunoUmi", serif;
  color: #94294C;
  font-size: 20px;
  margin-bottom: 10px;
  padding: 0.1em 2em;
  position: relative;
}

.wp-block-heading::before,
.wp-block-heading::after {
  position: absolute;
  content: "";
  border-radius: 100%;
}

.wp-block-heading::before {
  top: 0.7rem;
  left: 0.3rem;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: #94294C;
}

.wp-block-heading::after {
  top: 0.4rem;
  left: 1rem;
  width: 22px;
  height: 22px;
  background: #fff;
}

/*カテゴリー(サイドバー)表示*/
.cat-item {
  margin-bottom: 20px;
}

.cat-item a {
  color: #242424;
}

.cat-item a:hover {
  color: #94294C;
  background-color: #DBD0E6;
}

/*--------------------
カテゴリーウィジェット
--------------------*/
.wp-block-categories li {
  margin: 0;
  padding: 0;
}

.wp-block-categories li a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
}

/*親カテゴリーのアイコン*/
.wp-block-categories li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f07c";
  font-weight: 900;
  margin-right: 5px;
  /*アイコン右側の余白*/
}

/*子カテゴリーのアイコン*/
.wp-block-categories li ul li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 5px;
  /*アイコン右側の余白*/
}

/*マウスホバー時*/
.wp-block-categories ul li a:hover {
  background: #DBD0E6;
  transition: 0.5s;
}

/*アーカイブカレンダー(サイドバー)表示*/
.wp-calendar-table thead tr th {
  background-color: #DAE6CF;
  border: 1px solid #bfea99;
}

.wp-calendar-table tbody tr td {
  border: 1px solid #bfea99;
  background-color: #fff;
}

.wp-calendar-nav-prev a,
.wp-calendar-nav-next a,
.wp-calendar-table tbody tr td a {
  color: #94294C;
}

.wp-calendar-nav-prev a:hover,
.wp-calendar-nav-next a:hover,
.wp-calendar-table tbody tr td a:hover {
  background-color: #DBD0E6;
}

/*タグ(サイドバー)表示*/
.tag-cloud-link {
  color: #94294C;
  background-color: #fff;
  border: 1px solid #94294C;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.tag-cloud-link:hover {
  background-color: #DBD0E6;
}

@media screen and (min-width: 768px) {
  .aside_archive {
    width: 600px;
  }
}

@media screen and (min-width: 1240px) {
  .aside_archive {
    display: block;
    padding-left: 60px;
    padding-right: 10px;
    width: 30%;
    margin-top: 0;
  }

  .blog__wrapper {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin-inline: auto;
  }

  .section__archive {
    width: 70%;
  }
}


/** ブログ個ページ **/
.blog__inner {
  width: 90%;
  margin-inline: auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.blog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog__title {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  color: #94294C;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.125rem + 0.63vw, 1.875rem);
}

.blog__date {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.blog__category {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  color: #242424;
}

.blog__category::before {
  content: attr(data-en);
}

.blog__category a {
  color: #242424;
}

.blog__category a:hover {
  color: #94294C;
  background-color: #DBD0E6;
}

.blog-figure {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .blog-figure {
    margin-top: 2.5rem;
    margin-bottom: 5rem;
  }
}

.blog-figcap {
  font-size: 0.75rem;
}

.blog-img {
  width: 18.75rem;
  height: 12.5rem;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

@media screen and (min-width: 768px) {
  .blog-img {
    width: 37.5rem;
    height: 25rem;
  }
}

/*** アイキャッチ画像のキャプション ***/
.image-caption {
  font-size: .8em;
  text-align: left;
  color: #ccc;
}

/*** ブログ本文 ***/
.blog__text {
  margin: 2rem 0;
  line-height: 2;
}

.other_article {
  width: 90%;
  display: flex;
  justify-content: space-around;
  margin-inline: auto;
}

.other_article-p a {
  color: #94294C;
  font-weight: lighter;
  font-size: 16px;
}

.other_article-p a:hover {
  background-color: #DBD0E6;
}

.other_article-p {
  color: #94294C;
}

/*コメント部分*/
#comment-area {
  width: 90%;
  margin-inline: auto;
}

#comments {
  font-family: "Kaisei HarunoUmi", serif;
  font-size: 20px;
  border-left: 10px solid #DBD0E6;
  padding: 15px;
}

.commets-list {
  margin-top: 20px;
  margin-bottom: 25px;
}

.comment {
  margin-bottom: 15px;
}

#respond label {
  display: block;
}

#respond input,
#respond textarea {
  width: 100%;
  border: 1px dotted #242424;
}

#author {
  margin-bottom: 20px;
}

#respond input[type="submit"] {
  background: linear-gradient(135deg, #a580db 0%, #b794c0 100%);
  padding: 10px;
  -webkit-appearance: none;
  border-radius: 3px;
  border: 1px solid #b794c0;
  color: #fff;
  margin-bottom: 60px;
}

.says {
  display: none;
}

.author,
.comment-meta {
  display: inline-block;
}

#reply-title {
  font-weight: lighter;
  font-size: 16px;
}

/**********************
プライバシーポリシー
***********************/
.ppi-img {
  display: block;
  background-color: #242424;
  opacity: 0.9;
}

.p-policy-container {
  background-color: #fff;
  width: 95%;
  margin-inline: auto;
  margin-bottom: 5rem;
  padding: 1.25rem;
}

.plicy-header {
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
  font-family: "Kaisei HarunoUmi", serif;
  font-weight: 700;
  font-size: 20px;
}

.p-policy-para {
  margin: 0.625rem 0;
}

.p-policy-container ol {
  counter-reset: item;
}

.p-policy-container ol ol {
  padding-left: 1em;
}

.p-policy-container ol li {
  text-indent: -1.3em;
  padding-left: 1.3em;
  margin: 0.625rem 0;
}

.p-policy-container ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: 0.5em;
}

.header-404 {
  font-family: "Kaisei HarunoUmi", serif;
  color: #94294C;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin: 1.875rem auto 0.9375rem;
}

@media screen and (min-width: 768px) {
  .header-404 {
    font-size: 3.125rem;
  }
}

.para-404 {
  font-size: 1.25rem;
  width: 77%;
  margin-inline: auto;
}

.inner-404 {
  text-align: center;
}

.fig-404 {
  margin: 2.5rem auto 3.75rem;
}

@media screen and (min-width: 1024px) {
  .fig-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 38.125rem;
  }
}

.sorry-img {
  width: 12.5rem;
  display: block;
  margin: 0 auto;
}

.fig-para-404 {
  font-size: 1.25rem;
}

/**前頁共通**/
/**トップページ**/
/**プロフィールページ**/
/**FAQページ**/
/**お知らせ・BLOGページ**/
/**プライバシーポリシーページ**/
/**404ページ**/
/*# sourceMappingURL=style.css.map */