/*
Theme Name: aozora
Description:houmonribiyou aozora theme
Theme URI: http://aozora-miyagi.biz/
Author: yuuki-s from AozoraWorks
Version: 1.0
License: AozoraWorks.
*/

@charset "utf-8";

/* A Modern CSS Reset */
html {
  font-size: 18px;
  font-family: YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #323232;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
p {
  max-width: 980px;
  line-height: 1.9;
}
ul[role="list"],
ol[role="list"] {
  list-style: none;
}
ul {
  max-width: 980px;
  padding-left: 5px;
}
li {
  position: relative;
  padding: 0em 0.3rem 0.3rem 1.5rem;
  list-style: none;
  font-weight: bold;
  margin-bottom: 10px;
}
li::before {
  position: absolute;
  content: "";
  display: block;
  top: 0.4rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-right: 3px solid #00bcd4;
  border-bottom: 3px solid #00bcd4;
  transform: rotate(-45deg);
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォント */
h1,
h2,
h3,
h4,
h5,
.visual_copy {
  font-family: "Open Sans", sans-serif;
  font-family: "Shippori Mincho B1", serif;
}
#question .grid .grid__inner span {
  font-family: Times New Roman, serif;
}
a {
  color: #4f96f4;
  text-decoration: underline;
}

.label {
  display: inline-block;
  margin-right: 5px;
  padding: 5px;
  color: #fff;
  line-height: 1;
  background: #ed7b00;
  font-size: 1rem;
  font-weight: 500;
  text-indent: 0px;
  border-radius: 2px;
}
/* 強調・テキストマーカー */
strong {
  background: linear-gradient(transparent 60%, #bdfcea 60%);
}
strong.orange {
  background: linear-gradient(transparent 60%, #ed7b00 60%);
}
/* hタグ */
h2 {
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}
h2 strong {
  background: linear-gradient(transparent 80%, #bdfcea 60%);
}
/* 調整 */
.right {
  text-align: right;
}

.small {
  font-size: 0.7rem;
  text-align: right;
}

/* ヘッダー */
header {
  width: 100%;
  height: 70px;
}
#header h1 {
  height: 100%;
}
/* ヘッダー背景 */
.header_bc {
  height: 70px;
  background: linear-gradient(110.49deg, #ffffff 13.13%, rgba(255, 255, 255, 0) 111.42%);
  filter: drop-shadow(50px 60px 100px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(10px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 2px;
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ロゴ */

.header_bc .header_inner {
  max-width: 980px;
}

.header_bc .header_inner h1 img {
  padding: 5px;
  height: 60px;
}
/* メニューボタン */

.menuButton {
  display: flex;
  height: 70px;
  width: 70px;
  position: fixed;
  right: 0;
  top: 0;
  background: #00afec;
  z-index: 4;
  border-radius: 0 0 0 100%;
  padding: 0 0 12px 16px;
  justify-content: space-evenly;
  flex-flow: column;
  text-decoration: none;
  transition: ease-out 0.3s;
}
.menuButton div {
  height: 3px;
  width: 60%;
  background: #fff;
  margin: 0 auto;
  transition: ease-out 0.3s;
}
.menuButton.active {
  border-radius: 0;
}
.menuButton.active div:nth-child(2) {
  opacity: 0;
}
.menuButton.active div:nth-child(1) {
  transform: rotate(45deg) translate(12px, 10px);
  /* transform: translate(-50%); */
  width: 70%;
}

.menuButton.active div:nth-child(3) {
  transform: rotate(-45deg) translate(12px, -10px);
  width: 70%;
}
/* ドロワーメニュー */
#nav {
  opacity: 0;
  visibility: hidden;
  transition: ease-out 0.3s;
  background: #00afec;
  padding-top: 70px;
  z-index: 2;
  transform: translateY(-30px) translateX(10px) scale(0.9);
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 0 0 0 30%;
  width: 60%;
  max-height: 100vh;
}
#nav.active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: translateY(0);
  border-radius: 3px;
  width: 75%;
}
#nav ul {
  margin: 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px 0;
}
#nav ul li {
  color: #fff;
  border-bottom: 1px solid #fff;
  width: 85%;
  text-align: center;
  height: 70px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
}
#nav ul li:last-child {
  border-bottom: 0;
}
#nav ul li::before {
  display: none;
}
#nav ul li a {
  color: #fff;
  text-decoration: none;
}
/* ますく */
.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #626262;
  opacity: 0;
  visibility: hidden;
  transition: ease-out 0.3s;
}
.mask.active {
  opacity: 0.7;
  visibility: visible;
}
/* main */
main {
  padding-top: 20px;
  width: 100%;
  margin: 0;
}
/* トップページコピー */
#head_copy {
  text-align: center;
  padding: 40px 25px;
  width: 100%;
}
/* h1 */
#head_copy h1,
.article h1 {
  font-size: 2.1rem;
  color: #00afec;
  margin-bottom: 40px;
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.article h1 {
  font-size: 1.6rem;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#image {
  padding: 0;
  text-align: center;
}
#image img {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}
#head_copy p {
  font-size: 1.2rem;
  line-height: 1.7;
  animation: fadeLeft 2s forwards;
}
/* トップビジュアル  */
#head_visual {
  background: #00afec;
  padding: 40px 25px;
  width: 100%;
  position: relative;
}

.cloud {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cloud img {
  margin: 0;
}
.cloud .cloud_left {
  position: absolute;
  top: 7vw;
  left: calc(47% - 44.93vw);
  width: 18vw;
  -webkit-: cloud 1.5s ease-in-out infinite alternate;
  animation: cloud 1.5s ease-in-out infinite alternate;
}
.cloud .cloud_right {
  position: absolute;
  top: 47vw;
  right: calc(41% - 44.93vw);
  width: 18vw;
  -webkit-animation: cloud 1.5s ease-in-out infinite alternate;
  animation: cloud 1.5s ease-in-out infinite alternate;
  overflow: hidden;
}
.cloud .cloud__num__3 {
  top: 80vw;
  left: calc(62% - 44.93vw);
}
.cloud .cloud__num__4 {
  top: 145vw;
  right: calc(43% - 44.93vw);
}
.cloud .cloud__num__5 {
  top: 150vw;
  left: calc(55% - 44.93vw);
}
.cloud .cloud__num__6 {
  top: 200vw;
  right: calc(43% - 44.93vw);
}
.cloud .cloud__num__7 {
  top: 255vw;
  left: calc(65% - 44.93vw);
}
.cloud .cloud__num__8 {
  top: 265vw;
  right: calc(53% - 44.93vw);
}
.cloud .cloud__num__9 {
  top: 335vw;
  left: calc(65% - 44.93vw);
}
.cloud .cloud__num__10 {
  top: 375vw;
  right: calc(53% - 44.93vw);
}
.cloud .cloud__num__11 {
  top: 415vw;
  left: calc(65% - 44.93vw);
}
.cloud .cloud__num__12 {
  top: 455vw;
  right: calc(53% - 44.93vw);
}
.cloud .cloud__num__13 {
  top: 495vw;
  left: calc(65% - 44.93vw);
}
.cloud .cloud__num__14 {
  top: 540vw;
  right: calc(43% - 44.93vw);
}
.cloud .cloud__num__15 {
  top: 630vw;
  left: calc(48% - 44.93vw);
}
.cloud .cloud__num__16 {
  top: 730vw;
  right: calc(53% - 44.93vw);
}
@keyframes cloud {
  0% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#head_visual .cloud .cloud_left img {
  position: absolute;
  top: 0;
  left: 0;
}
.visual_box {
  background: linear-gradient(111.29deg, rgba(255, 255, 255, 0.53) -1.83%, rgba(255, 255, 255, 0) 109.95%);
  filter: drop-shadow(50px 60px 100px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(3px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 2px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadein 2.2s forwards;
}
.visual_copy {
  display: flex;
  flex-flow: row-reverse;
  color: #fff;
  animation: fadeRight 2s forwards;
}
.visual_copy p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  border-left: 2px solid #fff;
  letter-spacing: 0.6rem;
}
/* トップイラスト */
.visual_il {
  padding: 20px 0;
}

.visual_il img {
  border-radius: 100px;
  opacity: 0.8;
}
/* 訴求文 */
.pr_text {
  background: #fff;
  margin: 40px auto;
  padding: 20px;
  border-radius: 5px;
  max-width: 600px;
  line-height: 1.8;
}
/* 背景白のセクション  */
#Result,
#skills,
#area,
#shampoo,
#flow,
#question {
  padding: 40px 25px;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
/* 背景水色 */
#cstm,
#cashless,
#voice,
#campaign {
  background: #f3fcff;
  position: relative;
}
/* グリッド */
.grid {
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
}
#skills .grid {
  margin-bottom: 0;
}
/* 実績 */
#Result {
  position: relative;
}
.bc__text {
  top: 200px;
  top: 97px;
  overflow: hidden;
}
main .bc__text p {
  font-family: Times New Roman;
  font-style: normal;
  font-weight: bold;
  font-size: 55px;
  line-height: 64px;
  color: rgba(189, 252, 234, 0.56);
  margin: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  top: 100px;
}
#Result .bc__text p {
  margin: 0;
}
.bc__left {
  position: absolute;
  left: 0px;
  margin: 0;
}
#Result img {
  max-width: 280px;
  margin: 0 auto 4rem;
  display: block;
  width: 100%;
}
/* 実績 グラフ */
.grp_grid {
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 980px;
}
.a {
  background: linear-gradient(90deg, #00afec 0%, #00afec calc(90% / 2), #e0eaff calc(80% / 2), #e0eaff 100%);
}

.b {
  background: linear-gradient(90deg, #00afec 0%, #00afec calc(70% / 2), #e0eaff calc(60% / 2), #e0eaff 100%);
}
.c {
  background: linear-gradient(90deg, #00afec 0%, #00afec calc(50% / 2), #e0eaff calc(40% / 2), #e0eaff 100%);
}
.graph {
  padding: 0.7rem;
  margin: 1rem auto;
  position: relative;
  background-size: 200% 100%;
  max-width: 600px;
  border-radius: 0 10px 10px 0;
}

.grp_label {
  color: #fff;
}
.percentage {
  position: absolute;
  font-size: 1.1rem;
  right: 0.5rem;
  font-weight: bold;
  color: #435bbf;
}
/* 実績　テキスト */
#Result p {
  margin-top: 40px;
}
#Result .link_box,
#cstm .link_box {
  display: block;
  padding: 20px 0;
  line-height: 1.6;
  text-align: right;
}
/* 信頼 */
#cstm {
  padding: 40px 25px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.bc__right {
  position: absolute;
  right: 0px;
}
#cstm .bc__text {
  overflow: hidden;
}
#cstm .bc__text p {
  margin: 0;
}
/* シンボル画像 */
#cstm img,
#skills img,
#cashless img {
  max-width: 200px;
  margin: 0 auto 4rem;
  display: block;
  width: 100%;
}
#shampoo img {
  height: 100px;
  margin: 0 auto 4rem;
  display: block;
}
#cstm .a {
  background: linear-gradient(90deg, #0cedae 0%, #0cedae calc(85% / 2), #bdfcea calc(80% / 2), #bdfcea 100%);
}
#cstm .b {
  background: linear-gradient(90deg, #0cedae 0%, #0cedae calc(70% / 2), #bdfcea calc(60% / 2), #bdfcea 100%);
}
#cstm .percentage {
  color: #18a17a;
}
#cstm .graph {
  margin-bottom: 10px;
  background-size: 200% 100%;
}
#cstm .graph.active {
  background-size: 0 0;
}
#cstm p {
  max-width: 980px;
  margin: 40px auto 0;
}
#cstm .small {
  margin: 0 auto 20px;
}
/* スキル  */

#skills img {
  max-width: 200px;
  margin: 0 auto 4rem;
  display: block;
  width: 100%;
}
/* キャッシュレス */
#cashless {
  padding: 40px 25px 20px;
  width: 100%;
}
#cashless ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
  padding: 0;
  grid-gap: 20px;
}
#cashless ul li {
  display: grid;
  list-style: none;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  grid-template-rows: 100px 50px;
  text-align: center;
  padding: 0;
}
#cashless ul li img {
  margin-bottom: 20px;
  width: 100%;
}
#cashless ul li:before {
  display: none;
}
/* 移動式シャンプー */

/* メニュー */

#menu {
  width: 100%;
  background: linear-gradient(152.29deg, #00afec 1.14%, #ceecef 98.92%), #00afec;
  padding: 40px 25px;
  display: grid;
  text-align: center;
}
#menu h2 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
.menu__inner {
  /* background: linear-gradient(111.29deg, rgba(255, 255, 255, 0.53) -1.83%, rgba(255, 255, 255, 0) 109.95%);
  box-shadow: 50px 60px 100px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px); */
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 20px;
  margin: 0 auto 2rem;
  padding: 1rem 0;
  grid-column: span 1;
  width: 100%;
}
.menu__inner2 {
  background: #00afec;
  border-radius: 10px;
  padding: 10px 5px;
}
.menu__inner ul {
  padding: 0 1rem;
  display: grid;
  align-items: flex-start;
  grid-gap: 10px;
  width: 100%;
  margin: 0 auto;
}
.menu__inner ul li {
  list-style: none;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 4fr 2fr;
  background: #00afec;
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 0.5rem 1rem;
  height: 60px;
  text-align: left;
}
.menu__inner ul li:before {
  display: none;
}
.menu__inner ul li span {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.menu__inner2 h3 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.menu__inner2 p {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  text-align: left;
  padding: 0.3rem 1rem;
  margin: 10px auto;
}
/* ul 中央よせ */
#skills ul {
  margin: 20px auto;
}
/* 訪問エリア */
#area .bc__text {
  top: 0;
}
#area .grid {
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  justify-content: center;
  align-items: center;
}
#area .inner_box {
  text-align: center;
}
#area .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "仙台市 名取市 富谷市"
    "多賀城市 塩釜市 利府町"
    "七ヶ浜町 川崎町 大和町";
  background: linear-gradient(110.29deg, #e0eaff -1.26%, rgba(224, 234, 255, 0) 101.12%);
  border-radius: 5px;
  grid-template-rows: repeat(3, 100px);
  justify-content: center;
  align-items: center;
  text-align: center;
}
#area .grid img {
  border-radius: 10px;
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 400px;
}
#area .grid-container div {
  height: 100%;
  border-right: 1px solid #e0eaff;
  border-bottom: 1px solid #e0eaff;
  align-items: center;
  display: grid;
}
#area .grid-container div:nth-child(3),
#area .grid-container div:nth-child(6),
#area .grid-container div:nth-child(9) {
  border-right: 0;
}
#area .grid-container div:nth-child(7),
#area .grid-container div:nth-child(8),
#area .grid-container div:nth-child(9) {
  border-bottom: 0;
}
/* お客様の声 */
#voice {
  padding: 40px 25px;
  background: linear-gradient(166.78deg, rgba(255, 191, 115, 0.2) 0%, #ffffff 101.84%);
  width: 100%;
}
#voice .bc__text {
  top: 20px;
}
#voice .grid {
  grid-template-rows: repeat(3, max-content);
  grid-gap: 40px;
}
#voice .grid .grid__inner {
  display: grid;
  border-radius: 5px;
  padding: 18px 10px;
  grid-gap: 10px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 3px 5px 0 rgb(31 38 135 / 10%);
  grid-template-columns: 1fr;
  grid-auto-flow: row;
}
#voice .grid .grid__inner .avater {
  display: grid;
  padding: 5px 5px 5px 1rem;
  text-align: center;
  justify-content: center;
  grid-gap: 20px;
}
#voice .grid .grid__inner .avater img {
  width: 100px;
  margin: 0 auto;
}
.comment h3 {
  text-align: center;
  border-bottom: #bdfcea 3px solid;
  padding-bottom: .2rem;
  width: 80%;
  margin: 1rem auto;
}
.comment img {
  max-width: 500px;
  width: 100%;
  margin: 2rem auto;
  border-radius: 3px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
/* スタッフ紹介 */
#stuff {
  padding: 40px 25px;
  width: 100%;
  position: relative;
  background: #00afec;

}
#stuff .hello {
  margin: 40px auto;
}
#stuff .bc__text {
  top: 20px;
}
#stuff .bc__text p {
  color: #fff;
  opacity: 0.8;
}
#stuff h2 {
  color: #fff;
}
#stuff .grid {
  grid-gap: 40px;
  margin-top: 60px;
}
#stuff p.ps {
  margin: 40px auto;
}
#stuff .grid .grid__inner {
  display: grid;
  grid-template-rows: max-content;
  padding: 10px;
  grid-auto-flow: row;
  align-items: center;
  justify-content: centG16er;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  grid-gap: 20px;
}
#stuff .grid .grid__inner .prf .name span {
  font-size: 0.8rem;
}

#stuff .grid .grid__inner .prf {
  grid-column: span 2;
  display: grid;
  grid-gap: 16px;
}
#stuff .grid .grid__inner .prf .small {
  text-align: left;
  border-bottom: 1px dashed #323232;
  margin-bottom: 5px;
}
#stuff .grid .grid__inner img {
  /* position: absolute;
  right: -5px; */
  width: 130px;
  /* top: 30px; */
  align-self: center;
  /* overflow: hidden; */
}
#stuff .grid .icon__left img {
  /* left: -8px;
  top: 50px; */
  width: 130px;
}
#stuff .grid .icon__left .prf,
#stuff .grid .icon__left .prf .name .small {
  grid-column: 2 / 4;
  text-align: right;
}
.massage p {
  margin-bottom: 7px;
}
#stuff .grid .icon__left .prf .massage p {
  text-align: left;
}
#stuff .grid .icon__left .prf .name {
  justify-content: right;
  grid-column: span 2;
}
#stuff .grid .grid__inner .link__box {
  grid-column: span 3;
  text-align: right;
}
#stuff .grid .grid__inner .link__box a {
  color: #4f96f4;
  font-weight: bold;
  text-shadow: 2px 1px 4px #fff;
}
#stuff .grid .grid__inner .massage {
  grid-column: span 3;
}
/* ご利用の流れ */
#flow .bc__text {
  top: 20px;
}
.flow__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-top: 70px;
}
.flow__grid .inner__box {
  border: 3px solid #00afec;
  padding: 20px 10px;
  border-radius: 5px;
  height: 200px;
  display: grid;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
  /* position: relative; */
}
.flow__grid .inner__box .num {
  background-color: #00afec;
  color: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;
  /* position: absolute; */
  margin-top: -40px;
}
#flow h3 {
  text-align: center;
  margin: 40px auto;
}
/* コロナ */
#corona {
  padding: 40px 25px;
  background-color: #fff9f2;
  width: 100%;
}
#corona h2 {
  color: #00afec;
}
#corona .grid {
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}
#corona .grid .inner__box {
  display: grid;
  grid-template-rows: 50px;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  grid-gap: 16px;
}
#corona .grid .inner__box img {
  margin: 0 auto;
}
/* よくある質問 */
#question {
  padding-top: 80px;
}
#question .bc__text {
  top: 10px;
}
#question .bc__text p {
  font-size: 2.2rem;
}
/* アコーディオン */
#app {
  margin: 0 auto;
  display: grid;
  grid-gap: 20px;
  margin: 40px auto 20px;
  max-width: 980px;
}
.js-accordion {
  background-color: #fff;
  border-radius: 2px;
}
.js-accordion:last-child {
  border-bottom-width: 1px;
}
.js-accordion--trigger {
  position: relative;
  width: 100%;
  transition: all 0.2s ease-in;
  color: #00afec;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
  padding: 10px 0;
  outline: none;
  background-color: #fff;
  border: none;
  border-bottom: solid 1px #e0eaff;
  display: grid;
  grid-template-columns: 10fr 1fr;
  align-items: center;
}
.js-accordion--trigger:after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(img/mdi_chevron-down.png);
  background-size: contain;
  vertical-align: middle;
  display: grid;
  margin-top: 8px;
}
#question #app span {
  font-size: 1.8rem;
}
#question .q__anc__a__q {
  color: #00afec;
  font-weight: bold;
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 7fr;
  align-items: baseline;
}
#question .q__anc__a__a {
  color: #626262;
  font-weight: bold;
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 8fr;
  align-items: baseline;
}
.js-accordion--trigger div {
  align-items: baseline;
}

._state-open:after {
  transform: scale(1, -1);
}
.js-accordion:after {
  display: inline-block;
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
  border-width: 7px;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -5px;
  transition: all 0.2s ease-in;
}
.js-accordion:after_state-open {
  text-decoration: none;
}
.js-accordion:after_state-open:after {
  transform: rotateX(180deg);
  margin-top: -10px;
}

.js-accordion:after:hover {
  text-decoration: none;
}
.js-accordion--target {
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
.js-accordion--body {
  padding: 20px 0;
}
/* キャンペーン */
#campaign {
  padding: 40px 25px;
  width: 100%;
}
#campaign .bc__text {
  top: 10px;
}
#campaign p {
  max-width: 980px;
  margin: 0 auto;
}
#campaign img {
  width: 80%;
  max-width: 400px;
  margin: 40px auto;
  display: block;
}
#campaign ul {
  padding-left: 0px;
}
#campaign ul li {
  position: relative;
  padding: 0rem 0.3rem 0.3rem 1.5rem;
  list-style: none;
  margin-bottom: 10px;
}
#footerFixed {
  background: linear-gradient(111.29deg, rgba(255, 255, 255, 0.53) -1.83%, rgba(255, 255, 255, 0) 109.95%);
  filter: drop-shadow(50px 60px 100px rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(10px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 2px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
  z-index: 1;
  animation: fadeUp 2.5s forwards;
}
.fixed__text p {
  text-align: center;
  max-width: 100%;
}
#footerFixed .fixed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  grid-gap: 0;
  margin-bottom: 0;
}
#footerFixed .grid__inner {
  font-size: 0.9rem;
  height: 60px;
}
#footerFixed .grid__inner img {
  width: 18px;
  margin-right: 0.2rem;
}
#footerFixed .grid__inner.tel__box {
  background-color: #00afec;
}
#footerFixed .grid__inner p {
  margin-left: 8px;
}
#footerFixed .grid__inner a {
  display: flex;
  text-decoration: none;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
}

#footerFixed .grid__inner.line__box {
  background-color: #00b900;
}
#footerFixed .grid__inner.contact__box {
  background-color: #ed7b00;
  font-size: 0.7rem;
}
footer {
  background: #00afec;
  width: 100%;
}
/* フッターメニュー */
#footer__menu {
  width: 100%;
  margin-bottom: 94px;
}
#footer__menu ul {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 50px);
  grid-auto-flow: row;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}
#footer__menu ul li {
  color: #fff;
  list-style: none;
  border-bottom: 1px solid #fff;
  height: 50px;
  line-height: 50px;
  width: 100%;
  display: block;
  margin-bottom: 0;
  padding: 0;
}
#footer__menu ul li:last-child {
  border-bottom: none;
}
#footer__menu ul li:before {
  display: none;
}
#footer__menu ul li a {
  color: #fff;
  text-decoration: none;
}
/* コピーライト */
.Copyright {
  color: #fff;
  margin: 20px auto;
  font-size: 0.8rem;
  text-align: center;
  padding-bottom: 1rem;
}
.Copyright a {
  color: #fff;
}
/* アニメーション */

h2.fade {
  position: relative;
}
h2.fade {
  opacity: 0;
  transition: 0.5s;
  transform: translateX(20px);
}
h2.fadeIn {
  opacity: 1;
  transform: translateX(0);
}
p.fade,
.fade p {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}
p.fadeIn,
.fadeIn p {
  opacity: 1;
  transform: translateY(0);
}
img.fade {
  transform: scale(0);
  opacity: 0;
  transition: 1s;
}
img.fadeIn {
  transform: scale(1);
  opacity: 1;
}
.fade .graph,
#cstm .fade .graph {
  background-position: 100% 0;
  transition: 2s;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s;
}
.fadeIn .graph,
#cstm .fadeIn .graph {
  background-position: 0 0;
  opacity: 1;
  transform: none;
}
li.fade {
  opacity: 0;
  transform: translateX(20px);
  transition: 1s;
}
li.fadeIn {
  opacity: 1;
  transform: translateX(0);
}
#area div.fade {
  opacity: 0;
  transform: translateX(-30px);
  transition: 1s;
}
#area div.fadeIn {
  opacity: 1;
  transform: translateX(0);
}
.pc {
  display: none;
}

/* 記事 */

.article {
  max-width: 800px;
  margin: 0 auto;
}

#idoushiki_shampoo,
#Visiting_cosmetology,
#kaigohoken,
#flow_of_use,
#about {
  padding: 40px 25px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.article__footer #footer__menu {
  margin-bottom: 94px;
}
.article p {
  margin-bottom: 1rem;
}
.article img {
  margin: 1rem auto;
}

.article p,
.article strong {
  font-size: 17px;
}
.article h2 {
  margin: 2rem auto 1rem;
  background-color: #f3fcff;
  padding: 1rem;
  font-size: 1.4rem;
  border-bottom: 2px solid #00afec;
  text-align: left;
}
.article h3 {
  margin: 2rem auto;
  border-left: 3px solid #00afec;
  padding-left: 1.4rem;
}
.article .point {
  margin: 3rem auto 1rem;
  position: relative;
  padding: 0.5rem 1rem;
  color: #0075a9;
  border-radius: 0 10px 10px 10px;
  background: #f3fcff;
  font-size: 1rem;
}

.article .point:before {
  font-size: 0.8rem;
  position: absolute;
  top: -24px;
  left: 0;
  height: 24px;
  padding: 0 1em;
  content: "POINT";
  color: #fff;
  border-radius: 10px 10px 0 0;
  background: #0075a9;
}
.article h4 {
  font-weight: bold;
  margin: 2rem auto;
  color: #00afec;
}

blockquote {
  position: relative;
  border-left: 2px solid #00afec;
  border-right: 2px solid #00afec;
  padding: 1.1rem 1rem;
  background: #f3fcff;
  font-size: 0.8rem;
  margin: 2rem auto;
}
blockquote:before {
  position: absolute;
  font-family: "FontAwesome";
  content: "“";
  font-size: 80px;
  color: #00afec;
  top: -26px;
  left: -2px;
}
blockquote:after {
  position: absolute;
  content: "„";
  font-size: 80px;
  color: #00afec;
  right: 10px;
  bottom: 5px;
}
blockquote cite {
  display: block;
  font-size: 0.8rem;
  text-align: right;
  color: #00afec;
  padding-right: 20px;
}
iframe {
  margin: 2rem auto;
}
/* 店舗概要・代表者プロフィール */

#about h2 {
  text-align: center;
}

#about ul {
  padding: 0;
  display: grid;
  align-items: flex-start;
  grid-gap: 10px;
  width: 100%;
  margin: 2rem auto;
  border: 1px solid #00afec;
}
#about ul li {
  list-style: none;
  display: grid;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: 1fr 3fr;
  padding: 1rem;
  text-align: left;
  list-style: none;
  border-bottom: 1px solid #00afec;
  margin-bottom: 0;
}
#about ul li:last-child {
  border-bottom: none;
}
#about ul li::before {
  content: none;
}
.breadcrumb {
  font-size: 0.9rem;
  text-align: center;
  margin: 0 auto;
  max-width: 980px;
}
@media screen and (min-width: 768px) {
  /*　画面サイズが768pxからはここを読み込む　*/
  .mb {
    display: none;
  }
  .pc {
    display: block;
  }
  p {
    line-height: 2;
  }
  h2 {
    margin-top: 40px;
  }
  main .bc__text p {
    font-size: 4rem;
  }
  main #question .bc__text p {
    font-size: 2.8rem;
  }
  .header_bc {
    height: 90px;
    align-items: center;
  }
  .header_bc .header_inner {
    margin: 0 auto;
    align-items: center;
    display: flex;
  }
  .header_bc .header_inner h1 img {
    text-align: center;
    padding: 5px;
    margin: 0 auto;
    height: 75px;
  }
  #head_copy p {
    margin: auto;
  }
  .visual_copy {
    justify-content: center;
    margin-top: 2rem;
  }
  .visual_copy p {
    font-size: 1.8rem;
    border: none;
    letter-spacing: 0.8rem;
    margin: 1rem 0.3rem;
  }
  .visual_il img {
    max-width: 500px;
    margin: 3rem auto;
  }
  #Result img,
  #cstm img {
    max-width: 500px;
    margin: 3rem auto;
  }
  #skills img,
  #cashless img {
    max-width: 300px;
    margin: 0 auto;
  }

  ul {
    margin: 2rem auto;
  }

  /* グリッド */
  .grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    align-items: center;
    margin-top: 100px;
  }
  #stuff .grid {
    align-items: flex-start;
  }
  .grp_grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    align-items: flex-start;
    margin-top: 100px;
  }
  #menu {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    grid-template-rows: 50px;
  }
  #menu h2 {
    grid-column: span 3;
    text-align: center;
    margin-top: 0;
  }
  #menu .menu__inner,
  #menu .menu__inner2 {
    height: 100%;
  }
  #menu .column__2 {
    grid-column: span 2;
  }
  .menu__inner ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
  .menu__inner ul li .right {
    text-align: right;
  }
  #Result .grp_grid p,
  #cstm .grp_grid p,
  #cashless .grp_grid p {
    margin-top: -0.5rem;
  }
  .grp_box .a {
    margin-top: 0;
  }
  #Result .link_box {
    text-align: right;
    margin: 2rem auto;
  }
  #cstm img {
    max-width: 300px;
    margin-top: 4rem;
  }
  #cstm .small {
    text-align: right;
  }
  #voice .grid .grid__inner .avater img {
    width: 200px;
  }
  .comment {
    padding: 1rem;
  }
  .comment h3 {
    text-align: center;
    border-bottom: #00afec 5px solid;
    padding-bottom: .2rem;
    width: 30%;
    margin: 1rem auto;
  }
  .comment img {
    max-width: 500px;
    width: 90%;
    margin: 2rem auto;
    border-radius: 3px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  }
  #voice .grid .grid__inner .avater {
    text-align: left;
    align-items: center;
    grid-template-columns: 1fr 2fr;
    font-size: 1.4rem;
  }
  #shampoo img {
    height: 200px;
    margin-bottom: 0;
  }
  #area .grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
  }
  #area .grid .inner_box {
    height: 100%;
  }
  #area .grid .inner_box img {
    height: 100%;
  }
  #area p {
    text-align: center;
    margin-top: 70px;
  }
  /* お客様の声　 */
  #voice .grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
  /* スタッフ紹介 */
  #stuff .grid .grid__inner.dj {
    grid-column: span 2;
    width: 50%;
    margin: 0 auto;
  }
  .flow__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #flow p {
    text-align: center;
    margin: 0 auto;
  }
  /* コロナ */
  #corona .grid {
    margin-top: 70px;
  }
  #corona p {
    text-align: center;
    margin: 0 auto;
  }
  /* よくある質問 */
  .js-accordion--trigger {
    grid-template-columns: 18fr 1fr;
  }
  #question .q__anc__a__q,
  #question .q__anc__a__a {
    grid-template-columns: 1fr 18fr;
  }
  #footerFixed .grid__inner {
    grid-template-columns: 1fr;
  }
  #about ul {
    width: 100%;
    margin: 4rem auto;
  }
}
@media screen and (max-width: 370px) {
  .head_copy h1 {
    font-size: 2.4rem;
    margin-top: 50px;
    color: #00afec;
  }
  .head_copy p {
    font-size: 1rem;
    margin-top: 40px;
    line-height: 1.7;
  }
  .flow__grid .inner__box {
    height: 200px;
  }
  #footerFixed .grid__inner {
    padding: 10px 4px;
  }
  #footerFixed .grid__inner p {
    font-size: 0.8rem;
    padding: 0;
    margin-left: 3px;
  }
  #head_copy p {
    font-size: 1.1rem;
  }
}
