@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
/*
i-functions
-----------------------------------------------------*/
/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  line-height: 2.1;
  font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: clamp(0.875rem, 0.34vw + 0.79375rem, 1rem);
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

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

p {
  margin: 0;
  padding: 0;
  line-height: 2.1;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

img {
  width: 100%;
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
  display: block;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

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

RESET CSS

html5doctor.com Reset Stylesheet

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

body {
  line-height: 1;
  width: 100%;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

* {
  box-sizing: border-box;
}

em {
  font-weight: normal;
}

/* =====================================================
  1.0 - inc
===================================================== */
/* =====================================================
  2.0 - Layout
===================================================== */
html {
  scroll-behavior: smooth;
}

/*
body
-----------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #f2f2f2;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  display: none;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/*
spacer
-----------------------------------------------------*/
.l-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-sp {
    display: none;
  }
}

.l-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pc {
    display: block;
  }
}

/*
wrapper
-----------------------------------------------------*/
.l-wrapper {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    width: 100%;
    max-width: 1037px;
  }
}
.l-wrapper_sp {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-wrapper_sp {
    width: 90%;
    margin: 0 auto;
    max-width: 1037px;
  }
}
.l-wrapper_sp90 {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper_sp90 {
    width: 100%;
    margin: 0;
  }
}
.l-wrapper.-w810 {
  max-width: 810px;
}

/*
 header
-----------------------------------------------------*/
.l-header {
  width: 100%;
  position: sticky;
  top: 0;
  background: #1d2087;
  color: #fff;
  height: 80px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-header {
    background: #fff;
    color: #333;
  }
}
.l-header a {
  color: #fff;
}
.l-header .l-wrapper {
  display: flex;
  align-items: center;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .l-header .l-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header_logo {
  width: 65%;
}
@media screen and (min-width: 768px) {
  .l-header_logo {
    width: 12.78%;
  }
}
.l-header_menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .l-header_menu {
    position: static;
    width: 70%;
  }
}
.l-header_menu .checkbox-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 80px;
  height: 80px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .l-header_menu .checkbox-toggle {
    display: none;
    opacity: 1;
  }
}
.l-header_menu .checkbox-toggle:checked + .l-header_hamburger > div {
  transform: rotate(135deg);
}
.l-header_menu .checkbox-toggle:checked + .l-header_hamburger > div:before, .l-header_menu .checkbox-toggle:checked + .l-header_hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.l-header_menu .checkbox-toggle:checked + .l-header_hamburger > div:after {
  opacity: 0;
}
.l-header_menu .checkbox-toggle:checked ~ .l-header_nav {
  pointer-events: auto;
  visibility: visible;
}
.l-header_menu .checkbox-toggle:checked ~ .l-header_nav > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.l-header_menu .checkbox-toggle:checked ~ .l-header_nav > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.l-header_menu .checkbox-toggle:checked:hover + .l-header_hamburger > div {
  transform: rotate(225deg);
}
.l-header_hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80px;
  height: 80px;
  padding: 0.5em 1em;
  background: #1d2087;
  cursor: pointer;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header_hamburger {
    display: none;
  }
}
.l-header_hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header_hamburger > div:before, .l-header_hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}
.l-header_hamburger > div:after {
  top: 10px;
}
.l-header_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header_nav {
    position: static;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }
}
.l-header_nav > div {
  width: 220vw;
  height: 220vw;
  color: #fff;
  background: #1d2087;
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div {
    width: auto;
    height: auto;
    border-radius: 0;
    transform: unset;
    backface-visibility: visible;
    overflow: visible;
    color: #333;
    background: transparent;
  }
}
.l-header_nav > div > div {
  max-width: 100vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div {
    opacity: 1;
  }
}
.l-header_nav > div > div nav {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav {
    display: flex;
  }
}
.l-header_nav > div > div nav ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 100vh;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.l-header_nav > div > div nav ul li {
  padding: 0;
  margin: 0;
  display: block;
  border-bottom: 1px solid #3d4a6f;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul li {
    display: inline-block;
    border: 0;
  }
}
.l-header_nav > div > div nav ul li a {
  position: relative;
  display: block;
  cursor: pointer;
  transition: color 0.4s ease;
  font-size: clamp(16px, 0vw + 16px, 16px);
  padding: 1em 2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul li a {
    padding: 0.5em 0;
    margin: 0 0.5em;
    color: #333;
  }
}
.l-header_nav > div > div nav ul li a:hover:after {
  width: 100%;
}
.l-header_nav > div > div nav ul li a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1d2087;
  transition: width 0.4s ease;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:first-of-type li:last-child {
    display: none;
  }
}
.l-header_nav > div > div nav ul:last-of-type {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:last-of-type {
    margin: 0;
  }
}
.l-header_nav > div > div nav ul:last-of-type li {
  border: 0;
  margin: 1em 5% 0;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:last-of-type li {
    margin: 0;
  }
}
.l-header_nav > div > div nav ul:last-of-type li a {
  text-align: center;
  background: #2faeb0;
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:last-of-type li a {
    padding: 0.75em 1.25em;
    color: #fff;
  }
}
.l-header_nav > div > div nav ul:last-of-type li a:after {
  display: none;
}
.l-header_nav > div > div nav ul:last-of-type li a:hover {
  opacity: 0.8;
  transition: all 0.4s;
}
.l-header_nav > div > div nav ul:last-of-type li a i {
  display: inline-block;
  vertical-align: text-bottom;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:last-of-type li a i {
    display: none;
  }
}
.l-header_nav > div > div nav ul:last-of-type li a span {
  display: inline-block;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  line-height: 1.6;
  margin-top: 0.3em;
}
.l-header_nav > div > div nav ul:last-of-type li:first-child a i {
  background: url("../img/common/icn_cal.svg") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:last-of-type li:nth-child(2) {
    display: none;
  }
}
.l-header_nav > div > div nav ul:last-of-type li:nth-child(2) a i {
  background: url("../img/common/icn_mail_w.svg") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .l-header_nav > div > div nav ul:last-of-type li:last-child {
    display: none;
  }
}
.l-header_nav > div > div nav ul:last-of-type li:last-child a i {
  background: url("../img/common/icn_tel_w.svg") no-repeat 50% 50%;
  background-size: contain;
}

body.about .nav_about a:after,
body.counseling .nav_counseling a:after,
body.fitting .nav_fitting a:after,
body.hearing .nav_hearing a:after,
body.news .nav_news a:after,
body.shop .nav_shop a:after,
body.privacy-policy .nav_privacy-policy a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1d2087;
}

.home .l-header {
  background: transparent;
  box-shadow: none;
  transition: 0.3s all;
}
.home .l-header.scrolled {
  background: #1d2087;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .home .l-header.scrolled {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  }
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  background: #1d2087;
  color: #fff;
  padding-top: clamp(40px, -2.04vw + 55.7px, 48px);
  padding-bottom: clamp(30px, 2.54vw + 20.5px, 40px);
}
.l-footer a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer .l-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.l-footer_logo {
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer_logo {
    width: 24.73%;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_base {
    width: 65.55%;
  }
}
.l-footer_nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer_nav {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_nav ul {
    margin-right: 4em;
  }
}
.l-footer_nav ul li {
  margin-bottom: 1em;
}
.l-footer_nav ul li a {
  display: block;
  color: #fff;
}
.l-footer_com {
  padding-top: clamp(30px, 2.54vw + 20.5px, 40px);
}
@media screen and (min-width: 768px) {
  .l-footer_com {
    display: flex;
    justify-content: flex-start;
  }
}
.l-footer_com address {
  font-size: clamp(0.75rem, 0.51vw + 0.63125rem, 0.875rem);
  font-style: normal;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .l-footer_com address {
    margin-right: 3em;
  }
}
.l-footer_sns {
  text-align: center;
  margin-top: clamp(0px, -10.69vw + 82.1px, 42px);
}
.l-footer_sns a {
  display: inline-block;
  width: 40px;
}
.l-footer_copyright {
  text-align: right;
  margin: 0 5%;
  font-size: clamp(11px, 0vw + 11px, 11px);
  margin-top: clamp(40px, 12.72vw - 7.7px, 90px);
}

/*
main
-----------------------------------------------------*/
body.home .l-main,
body.about .l-main,
body.counseling .l-main,
body.fitting .l-main,
body.hearing .l-main {
  background: url(../img/common/bg_sp.png) repeat-y 0 0;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  body.home .l-main,
  body.about .l-main,
  body.counseling .l-main,
  body.fitting .l-main,
  body.hearing .l-main {
    background: url(../img/common/bg_pc.png) repeat-y 0 0;
    background-size: cover;
  }
}

/*
CTA
-----------------------------------------------------*/
.l-cta .l-wrapper {
  width: 100%;
  padding: 0 5%;
  padding-top: clamp(2.6875rem, 2.8vw + 2.03125rem, 3.375rem);
  padding-bottom: clamp(3.0625rem, 1.27vw + 2.7625rem, 3.375rem);
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-cta .l-wrapper {
    background: #fff;
    border-radius: 3rem;
    padding: clamp(2.6875rem, 2.8vw + 2.03125rem, 3.375rem);
  }
}
.l-cta h2 {
  font-size: clamp(1.5rem, 3.05vw + 0.7875rem, 2.25rem);
  text-align: center;
  color: #1d2087;
}
.l-cta ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-cta ul {
    flex-wrap: nowrap;
  }
}
.l-cta ul li {
  width: 100%;
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .l-cta ul li {
    width: 46.5%;
    display: flex; /*子要素に追加*/
    flex-direction: column;
  }
}
.l-cta ul li a {
  display: block;
  flex-grow: 1;
  align-items: center;
  text-align: center;
  border: 1px solid #1d2087;
  border-radius: 1rem;
  padding-top: clamp(1.8125rem, 1.02vw + 1.575rem, 2.0625rem);
  padding-bottom: clamp(1.8125rem, 1.02vw + 1.575rem, 2.0625rem);
  transition: all 0.3s;
}
@media (hover: hover) {
  .l-cta ul li a:hover {
    background: #2faeb0;
  }
}
.l-cta ul li a b {
  display: block;
  padding: clamp(1rem, 0vw + 1rem, 1rem);
}
.l-cta ul li a span {
  display: block;
  color: #1d2087;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.l-cta ul li a span i {
  display: inline-block;
  vertical-align: bottom;
  width: 0.9em;
  height: 0.9em;
}
.l-cta ul li:first-child a span {
  font-size: clamp(1.75rem, 2.04vw + 1.26875rem, 2.25rem);
}
.l-cta ul li:first-child a span i {
  background: url("../img/common/icn_tel.svg") no-repeat 50% 50%;
  background-size: contain;
  margin-right: 0.5em;
}
.l-cta ul li:last-child a span {
  font-size: clamp(3.125rem, 2.54vw + 2.53125rem, 3.75rem);
}
.l-cta ul li:last-child a span i {
  background: url("../img/common/icn_mail.svg") no-repeat 50% 50%;
  background-size: contain;
}
.l-cta .c-btn {
  width: 90%;
  max-width: 1037px;
  margin: 0 auto;
}
.l-cta .c-btn a {
  font-size: clamp(1.4375rem, 3.31vw + 0.6625rem, 2.25rem);
  font-weight: 600;
}
.l-cta .c-btn a i {
  display: inline-block;
  vertical-align: text-bottom;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
  background: url("../img/common/icn_cal.svg") no-repeat 100% 100%;
  background-size: contain;
}

/*
CALENDAR
-----------------------------------------------------*/
.l-calendar {
  margin: 0 auto;
  padding: 0 0 5%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-calendar {
    width: 800px;
  }
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
section
-----------------------------------------------------*/
.c-section {
  padding-bottom: clamp(3.75rem, 10.26vw + 1.34375rem, 7.5rem);
}
.c-section .gmap_iframe {
  aspect-ratio: 16/9;
  max-width: 1000px;
  width: 100%;
  height: auto;
}

/*
title
-----------------------------------------------------*/
.c-title_l {
  font-size: clamp(1.5rem, 5.85vw + 0.13125rem, 2.9375rem);
  line-height: 1.5;
  margin-bottom: 1.5em;
  font-weight: 600;
}
.c-title_l span {
  display: block;
  font-size: clamp(0.9375rem, 0vw + 0.9375rem, 0.9375rem);
}
.c-title_m {
  font-size: clamp(1.375rem, 0.68vw + 1.21875rem, 1.625rem);
  line-height: 1.5;
  color: #1d2087;
  font-weight: 800;
  margin-bottom: 2rem;
}
.c-title_s {
  font-size: clamp(1.5625rem, 0vw + 1.5625rem, 1.5625rem);
  line-height: 1.5;
  font-weight: 800;
}

.-center {
  text-align: center;
}
.-center_sp {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .-center_sp {
    text-align: inherit;
  }
}
.-center_pc {
  text-align: inherit;
}
@media screen and (min-width: 768px) {
  .-center_pc {
    text-align: center;
  }
}

/*
c-herohead
-----------------------------------------------------*/
.c-herohead {
  margin-bottom: clamp(2rem, 32.14vw - 5.53125rem, 13.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-herohead {
    position: relative;
    width: 100vw;
    max-width: 1920px;
    height: 41.4vw;
    padding-top: 4%;
  }
  .c-herohead:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #fafafa;
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: cover;
    z-index: -1;
  }
}
.c-herohead h1 {
  font-size: clamp(2.1875rem, 3.76vw + 1.30625rem, 3.5625rem);
  padding-top: clamp(0rem, -7.18vw + 4.30625rem, 2.625rem);
  padding-bottom: clamp(0rem, -5.47vw + 3.28125rem, 2rem);
  margin-bottom: clamp(0rem, 17.09vw - 4.00625rem, 6.25rem);
  font-weight: 600;
}
.c-herohead h1 span {
  display: block;
  font-size: clamp(0.875rem, 1.03vw + 0.63125rem, 1.25rem);
  margin-top: 1.85em;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: 0.25em;
}
.c-herohead_lead {
  padding-top: clamp(0rem, -8.03vw + 4.81875rem, 2.9375rem);
  padding-bottom: clamp(0rem, -16.07vw + 9.64375rem, 5.875rem);
}
.c-herohead_lead h2 {
  font-size: clamp(1.5rem, 1.03vw + 1.25625rem, 1.875rem);
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.c-herohead_lead p {
  font-size: clamp(1rem, 0vw + 1rem, 1rem);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .c-herohead h1,
  .c-herohead h2 {
    width: 50%;
  }
  .c-herohead p {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  body.page-template-about .c-herohead:before {
    background-image: url("../img/about/hero.webp");
  }
  body.page-template-counseling .c-herohead:before {
    background-image: url("../img/counseling/hero.webp");
  }
  body.page-template-fitting .c-herohead:before {
    background-image: url("../img/fitting/hero.webp");
  }
  body.page-template-hearing .c-herohead:before {
    background-image: url("../img/hearing/hero.jpg");
  }
}
/*
c-pagehead
-----------------------------------------------------*/
.c-pagehead {
  text-align: center;
  padding-top: clamp(4.375rem, 4.62vw + 3.2875rem, 6.0625rem);
  padding-bottom: clamp(2.5625rem, 0.51vw + 2.44375rem, 2.75rem);
}
.c-pagehead h1 {
  font-size: clamp(2.1875rem, 3.76vw + 1.30625rem, 3.5625rem);
  font-weight: 800;
}
.c-pagehead h1 span {
  display: block;
  font-size: clamp(0.875rem, 1.03vw + 0.63125rem, 1.25rem);
  margin-top: 0.5em;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-transform: lowercase;
}

/*
button
-----------------------------------------------------*/
.c-btn a {
  position: relative;
  display: block;
  background: #1d2087;
  padding: 1.5em 0;
  border-radius: 3rem;
  text-align: center;
  color: #fff;
  font-size: clamp(18px, 0vw + 18px, 18px);
  transition: all 0.3s;
  margin-top: clamp(54px, -0.25vw + 55.9px, 55px);
  margin-bottom: clamp(54px, -0.25vw + 55.9px, 55px);
}
@media screen and (min-width: 1080px) {
  .c-btn a {
    padding: 1em 5em;
  }
}
.c-btn a:hover {
  background: #2faeb0;
}
.c-btn a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*
flow
-----------------------------------------------------*/
.c-flow {
  counter-reset: number 0;
}
.c-flow .l-wrapper {
  max-width: 820px;
}
.c-flow li {
  position: relative;
  background: #fff;
  border-radius: 3rem;
  padding: clamp(30px, 0vw + 30px, 30px);
  margin-bottom: clamp(46px, 0vw + 46px, 46px);
}
@media screen and (min-width: 768px) {
  .c-flow li {
    display: flex;
    justify-content: space-between;
  }
}
.c-flow li:not(:last-child):after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 25px 84px 0 84px;
  border-color: #2faeb0 transparent transparent;
  translate: -50% 100%;
}
.c-flow li h3 {
  font-size: clamp(25px, 0vw + 25px, 25px);
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-flow li h3 {
    width: 40%;
  }
}
.c-flow li h3:before {
  display: inline-block;
  text-align: left;
  width: 50px;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  color: #2faeb0;
  font-size: clamp(25px, 0vw + 25px, 25px);
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-flow li p {
    width: 60%;
  }
}

/*
breadcrumb
-----------------------------------------------------*/
.c-breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    display: block;
    color: #898989;
    background: #fff;
  }
  .c-breadcrumb ul {
    width: 90%;
    max-width: 1037px;
    margin: 0 auto;
    font-size: clamp(0.75rem, 0vw + 0.75rem, 0.75rem);
    padding: 1em 0;
  }
  .c-breadcrumb ul li {
    display: inline-block;
  }
  .c-breadcrumb ul li + li::before {
    content: " > ";
  }
}

/*
p-pagenav
-----------------------------------------------------*/
.wp-pagenavi {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 48px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    width: 96%;
    padding-top: 0;
    margin-top: clamp(60px, 8.93vw - 8.6px, 120px);
  }
}
@media screen and (min-width: 620px) {
  .wp-pagenavi {
    gap: 1rem;
  }
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .back {
  background: #fff;
  color: #333;
  transition: 0.5s;
  text-decoration: none !important;
  border: 1px solid #1d2087;
  border-radius: 3rem;
  display: inline-block;
  width: 4em;
  height: 2.5em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi .current.current,
.wp-pagenavi .page.current,
.wp-pagenavi .back.current {
  background: #1d2087;
  color: #fff;
}
.wp-pagenavi .current:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .back:hover {
  background: #2faeb0;
  border-color: #2faeb0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current,
  .wp-pagenavi .page,
  .wp-pagenavi .back {
    width: 5em;
    height: 3em;
  }
}
.wp-pagenavi .back {
  width: auto;
  padding: 0 3em;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #333;
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/common/icon_arrow_left_bk.svg) no-repeat 0% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .previouspostslink:before,
  .wp-pagenavi .nextpostslink:before {
    content: "prev";
    display: block;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    letter-spacing: 0.25rem;
    font-weight: 600;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translate(0%, -57%);
  }
}
.wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_arrow_right_bk.svg) no-repeat 100% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .nextpostslink:before {
    content: "next";
    left: auto;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, serif;
    letter-spacing: 0.25rem;
    font-weight: 600;
    right: 45px;
    top: 50%;
    transform: translate(0%, -53%);
  }
}
.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .nextpostslink {
  right: 0;
}

/*
form
-----------------------------------------------------*/
.c-form_box h2 {
  margin-bottom: 1em;
}
.c-form_box dl {
  margin-bottom: 5em;
}
@media screen and (min-width: 768px) {
  .c-form_box dl div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5em;
  }
}
.c-form_box dl div dt {
  margin: 2em 0 1em;
}
@media screen and (min-width: 768px) {
  .c-form_box dl div dt {
    width: 10em;
    margin: 0;
    padding: 0.8em 0;
  }
}
.c-form_box dl div dt span {
  color: #f00;
}
@media screen and (min-width: 768px) {
  .c-form_box dl div dd {
    width: calc(100% - 10em);
  }
}
.c-form_policy {
  max-width: 640px;
  margin: 5em auto;
}
@media screen and (min-width: 768px) {
  .c-form_policy {
    align-items: center !important;
  }
}
.c-form .-acceptance label {
  display: block;
  cursor: pointer;
}
.c-form .-acceptance input[type=checkbox] {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.c-form .-acceptance input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.c-form .-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 50px;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  line-height: 40px;
  white-space: nowrap;
}
.c-form .-acceptance .wpcf7-list-item-label:before, .c-form .-acceptance .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}
.c-form .-acceptance .wpcf7-list-item-label:before {
  height: 40px;
  width: 40px;
  background: #707f89;
  border-radius: 3rem;
  top: 50%;
  left: 0;
  margin-top: -18px;
  transition: 0.3s;
}
.c-form .-acceptance .wpcf7-list-item-label:after {
  top: 50%;
  transition: 0.3s;
  transform: rotate(45deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 12px;
  height: 20px;
  left: 14px;
  margin-top: -10px;
  opacity: 0.05;
}
.c-form_txt {
  max-width: 640px;
  margin: 5em auto;
}
.c-form_txt p {
  font-weight: 400;
}
.c-form .-select {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.c-form .-select:after {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 7px;
  background-color: #cdd6dd;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.c-form .-select select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: none;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
  border: 1px solid #cdd6dd;
}
.c-form .-select p {
  width: 100%;
}
.c-form ul {
  margin: 0;
  padding: 0;
}
.c-form ul li {
  display: block;
}
.c-form ul li label {
  width: auto;
}
.c-form input[type=text], .c-form input[type=email], .c-form input[type=tel], .c-form input[type=datetime], .c-form input[type=date], .c-form input[type=month], .c-form input[type=week], .c-form input[type=time], .c-form input[type=datetime-local], .c-form input[type=tel], .c-form input[type=serch], .c-form input[type=url], .c-form input[type=password], .c-form input[type=number], .c-form input[type=range], .c-form input[type=color], .c-form input[type=file], .c-form input[type=image] {
  width: 100%;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  padding: 0.5em;
  border: transparent;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #cdd6dd;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 0.3em;
}
.c-form input[type=date] {
  padding: 1.5em;
}
.c-form input.zipcode {
  width: calc(100% - 2em);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-form input.zipcode {
    width: 8em;
  }
}
.c-form textarea {
  width: 100%;
  font-size: clamp(1rem, 0.34vw + 0.91875rem, 1.125rem);
  padding: 0.8em;
  border: transparent;
  box-sizing: border-box;
  height: 10em;
  background: #fff;
  border: 1px solid #cdd6dd;
}
.c-form input[type=submit], .c-form input[type=button],
.c-form button[type=submit],
.c-form button[type=button] {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  color: #fff;
  font-size: clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  font-weight: 900;
  padding: 0.6em 0;
  border: 0;
  background: #1d2087;
  border-radius: 3rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form input[type=submit], .c-form input[type=button],
  .c-form button[type=submit],
  .c-form button[type=button] {
    width: auto;
    padding: 0.6em 5em;
  }
}
@media (hover: hover) {
  .c-form input[type=submit]:hover, .c-form input[type=button]:hover,
  .c-form button[type=submit]:hover,
  .c-form button[type=button]:hover {
    background-color: #2faeb0;
  }
}
.c-form_btn {
  text-align: center;
  margin: 5em 0;
}
.c-form.-comfirm dl {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-form.-comfirm dl {
    flex-direction: row;
  }
}
.c-form.-comfirm dl dt {
  font-weight: bold;
  width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .c-form.-comfirm dl dt {
    width: 10em;
    margin: 0 1rem 0;
  }
}
.c-form.-comfirm dl dd {
  width: auto;
}
.c-form .wpcf7-not-valid-tip {
  color: #f00;
}
.c-form .screen-reader-response {
  display: none;
}
.c-form .wpcf7-response-output {
  text-align: center;
  color: #f00;
}

/*
fadein
-----------------------------------------------------*/
.c-fadein {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.c-fadein.-on {
  transform: translateY(0);
  opacity: 1;
}

/*
c-slick
-----------------------------------------------------*/
.c-slick_center {
  /* 中央以外のスライド */
  /* 中央のスライド */
}
.c-slick_center .slick-slide img {
  height: auto;
  opacity: 0.78;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
  width: 90%;
}
.c-slick_center .slick-center img {
  opacity: 1;
  transform: scale(1);
  width: 100%;
}

/*
  3.2 - Project
-----------------------------------------------------*/
/*
home
-----------------------------------------------------*/
.p-home_kv {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-bottom: clamp(57px, 17.56vw - 8.9px, 126px);
}
@media screen and (min-width: 768px) {
  .p-home_kv {
    height: 54.6vw;
  }
}
.p-home_kv p {
  position: absolute;
  width: 5rem;
  top: 10%;
  left: 15%;
  padding: 1rem 0.5rem;
  display: block;
  text-align: center;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-home_kv p {
    width: auto;
    top: inherit;
    bottom: 20%;
    display: inline-block;
    left: 0;
    padding: 0;
  }
}
.p-home_kv p span {
  writing-mode: vertical-lr;
  font-size: clamp(27px, 4.07vw + 11.7px, 43px);
}
@media screen and (min-width: 768px) {
  .p-home_kv p span {
    padding: 0 0.5em 0 2em;
    writing-mode: inherit;
  }
}
.p-home_kv ul {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-home_kv ul video {
  width: 100%;
}
.p-home_kv .slick-slide img.sp {
  display: block;
}
.p-home_kv .slick-slide img.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-home_kv .slick-slide img.sp {
    display: none;
  }
  .p-home_kv .slick-slide img.pc {
    display: block;
  }
}
.p-home_about {
  margin-bottom: clamp(11.75rem, -6.87vw + 15.05rem, 13.4375rem);
}
.p-home_about h2 {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(2.1875rem, 2.8vw + 1.53125rem, 2.875rem);
  line-height: 1.5;
  margin-bottom: 1.2em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-home_about_column {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .p-home_about_column_txt {
    width: 43.27%;
  }
}
.p-home_about_column_img {
  overflow: hidden;
  margin-top: clamp(0rem, -17.56vw + 8.43125rem, 4.3125rem);
}
@media screen and (min-width: 768px) {
  .p-home_about_column_img {
    width: 50%;
    overflow: visible;
  }
}
.p-home_about_column_img img {
  border-radius: 20px;
}
.p-home_about_column_img img:first-of-type {
  width: 92%;
  margin-left: 32%;
  margin-bottom: clamp(2.3125rem, -4.33vw + 4.39375rem, 3.375rem);
}
@media screen and (min-width: 768px) {
  .p-home_about_column_img img:first-of-type {
    width: 88.46%;
    margin-left: 17%;
  }
}
.p-home_about_column_img img:nth-of-type(2) {
  width: 78%;
  margin-left: -7.6%;
  margin-bottom: clamp(0rem, -13.74vw + 6.59375rem, 3.375rem);
}
@media screen and (min-width: 768px) {
  .p-home_about_column_img img:nth-of-type(2) {
    width: 78%;
    margin-left: -72%;
  }
}
.p-home_about_column_img img:last-of-type {
  width: 83%;
  margin-left: 33.4%;
}
@media screen and (min-width: 768px) {
  .p-home_about_column_img img:last-of-type {
    width: 67.5%;
    margin-left: 30%;
    margin-top: -170px;
  }
}
.p-home_glasses {
  margin-bottom: clamp(9.5625rem, 15.27vw + 5.98125rem, 13.3125rem);
}
.p-home_glasses .c-lineup {
  overflow: hidden;
}
.p-home_glasses .c-lineup .-inner {
  margin: 0 auto;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 768px) {
  .p-home_glasses .c-lineup .-inner {
    padding-left: calc(50% - 502px);
    padding-right: calc(50% - 502px);
  }
}
.p-home_glasses .c-lineup .-box {
  position: relative;
}
.p-home_glasses .c-lineup .-carousel li {
  margin-right: 30px;
}
@media screen and (min-width: 768px) {
  .p-home_glasses .c-lineup .-carousel li figure {
    display: flex;
    justify-content: space-around;
  }
}
.p-home_glasses .c-lineup .-carousel li figure img {
  display: block;
  border-radius: 20px;
  margin-bottom: clamp(0rem, -8.65vw + 4.15rem, 2.125rem);
}
@media screen and (min-width: 768px) {
  .p-home_glasses .c-lineup .-carousel li figure img {
    width: 44.8%;
  }
}
.p-home_glasses .c-lineup .-carousel li figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-home_glasses .c-lineup .-carousel li figure figcaption {
    width: 46.2%;
  }
}
.p-home_glasses .c-lineup .-carousel li figure figcaption p {
  flex-grow: 1;
}
.p-home_glasses .c-lineup .slick-list {
  overflow: visible;
}
.p-home_glasses .c-lineup .slick-list .slick-track {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.p-home_glasses .c-lineup .slick-list .slick-track li {
  height: auto;
}
.p-home_glasses .c-lineup .slick-list .slick-track li figure {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-home_glasses .c-lineup .slick-list .slick-track li figure {
    flex-direction: row;
  }
}
.p-home_hearing {
  margin-bottom: clamp(5.5625rem, 23.16vw + 0.13125rem, 11.25rem);
}
@media screen and (min-width: 768px) {
  .p-home_hearing_column {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-home_hearing_column_txt {
    width: 43.27%;
    order: 1;
  }
}
.p-home_hearing_column_img {
  margin-bottom: clamp(0rem, -5.09vw + 2.44375rem, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-home_hearing_column_img {
    width: 46.7%;
    order: 2;
  }
}
.p-home_image {
  margin-bottom: clamp(5.5625rem, 7.89vw + 3.7125rem, 7.5rem);
}
.p-home_movie {
  padding: 8% 0;
}
.p-home_movie video {
  height: 500px;
  margin: 0 auto;
}
.p-home_news {
  background: #fff;
  padding-top: clamp(2.6875rem, 0vw + 2.6875rem, 2.6875rem);
  padding-bottom: clamp(3.0625rem, 0vw + 3.0625rem, 3.0625rem);
  margin-bottom: clamp(3.75rem, -1.27vw + 4.3625rem, 4.0625rem);
}
@media screen and (min-width: 768px) {
  .p-home_news {
    background: transparent;
  }
}
@media screen and (min-width: 768px) {
  .p-home_news .l-wrapper {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 3rem;
    padding: 1.25em 0 1.25em 4.5%;
  }
}
.p-home_news h2 {
  text-align: center;
  color: #1d2087;
  font-size: clamp(1.5rem, 1.53vw + 1.1375rem, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-home_news h2 {
    text-align: left;
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
}
.p-home_news dl {
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .p-home_news dl {
    width: 62%;
  }
}
.p-home_news dl div {
  display: table;
}
@media screen and (min-width: 768px) {
  .p-home_news dl div {
    display: block;
  }
}
.p-home_news dl div:not(:last-of-type) {
  border-bottom: 1px solid #cecece;
}
.p-home_news dl a {
  display: flex;
  padding: 0.8em 0;
}
.p-home_news dl a dt {
  width: 6em;
  margin-right: 2em;
}
.p-home_news dl a dd {
  width: auto;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-home_news dl a dd {
    white-space: inherit;
  }
}

/*
p-about
-----------------------------------------------------*/
.p-about_history .l-wrapper {
  max-width: 600px;
}
.p-about_history .l-wrapper img {
  display: block;
  max-width: 600px;
  margin: 0 auto 2em;
}
.p-about_greeting .l-wrapper {
  max-width: 355px;
}
.p-about_greeting .l-wrapper img {
  display: block;
  max-width: 204px;
  margin: 0 auto 2em;
}
.p-about_flow {
  counter-reset: number 0;
}
.p-about_flow li {
  padding-left: clamp(0px, 38.17vw - 143.1px, 150px);
}
@media screen and (min-width: 768px) {
  .p-about_flow li {
    position: relative;
  }
}
.p-about_flow li:before {
  font-family: "Roboto", sans-serif;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  color: #1d2087;
  font-size: clamp(52px, 6.62vw + 27.2px, 78px);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-about_flow li:before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-about_flow li:not(:last-child) {
  margin-bottom: clamp(70px, 24.17vw - 20.6px, 165px);
}
@media screen and (min-width: 768px) {
  .p-about_flow li figure {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .p-about_flow li figure figcaption {
    width: 37.5%;
  }
}
.p-about_flow li figure figcaption h3 {
  color: #1d2087;
  margin-bottom: 1rem;
}
.p-about_flow li figure img {
  display: block;
  border-radius: 20px;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .p-about_flow li figure img {
    width: 50%;
    margin: 0;
  }
}

/*
p-counseling
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-counseling_lead .l-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.p-counseling_lead .l-wrapper div h2 {
  color: #1d2087;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-counseling_lead .l-wrapper div:first-of-type {
    width: 42%;
  }
}
@media screen and (min-width: 768px) {
  .p-counseling_lead .l-wrapper div:last-of-type {
    width: 42%;
  }
}
.p-counseling_lead .l-wrapper div:last-of-type img {
  border-radius: 20px;
}
.p-counseling_lead .l-wrapper div:last-of-type img:first-of-type {
  margin-bottom: 37px;
}

/*
p-fitting
-----------------------------------------------------*/
.p-fitting .slick-img img {
  height: auto;
  transform: scale(0.6);
  width: 100%;
}
.p-fitting .slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}

/*
page
-----------------------------------------------------*/
.p-news_list {
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-news_list {
    padding: 3% 12% 12%;
  }
}
.p-news .l-wrapper_sp {
  background: #fff;
  padding: 30px 5%;
}
.p-news dl div {
  border-bottom: 1px solid #cecece;
}
.p-news dl div a {
  display: block;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  .p-news dl div a {
    display: flex;
    justify-content: space-between;
  }
}
.p-news dl div dt {
  margin-bottom: 0.8em;
  color: #959595;
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
}
@media screen and (min-width: 768px) {
  .p-news dl div dt {
    width: 10em;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-news dl div dd {
    width: calc(100% - 10em);
  }
}
.p-news_article .-meta {
  font-size: clamp(12px, 0.51vw + 10.1px, 14px);
  color: #959595;
  margin-bottom: 0.5em;
}
.p-news_article .l-wrapper_sp:first-of-type {
  border-bottom: 1px solid #cecece;
}
.p-news_article .-body p:not(:last-of-type) {
  margin-bottom: 2em;
}
.p-news_article .wp-pagenavi {
  justify-content: center;
  align-items: center;
}

/*
page
-----------------------------------------------------*/
.p-shop h2 {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .p-shop .-greeting {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-shop .-greeting_txt {
    width: 52.75%;
  }
}
.p-shop .-greeting_pht {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-shop .-greeting_pht {
    width: 40%;
    margin: 0;
  }
}
.p-shop .-overview div {
  border: 1px solid #cecece;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .p-shop .-overview div {
    display: flex;
    justify-content: space-between;
  }
}
.p-shop .-overview div dt,
.p-shop .-overview div dd {
  padding: 1em;
  line-height: 1.6;
}
.p-shop .-overview div dt {
  background: #EDEDED;
  border-bottom: 1px solid #cecece;
}
@media screen and (min-width: 768px) {
  .p-shop .-overview div dt {
    width: 10em;
    border: 0;
    border-right: 1px solid #cecece;
  }
}
.p-shop .-overview div dd {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-shop .-overview div dd {
    width: calc(100% - 10em);
  }
}

/*
p-privacy-policy
-----------------------------------------------------*/
.p-privacy-policy p {
  margin-bottom: 2rem;
}
.p-privacy-policy ol {
  margin-bottom: 2rem;
}
.p-privacy-policy ol li {
  margin: 0 0 0.75rem 1rem;
  line-height: 2;
  list-style-type: auto;
}/*# sourceMappingURL=common.css.map */