@charset "UTF-8";
/*--------------------------------------------------------------------------*/
/* ▽reset
/*--------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a,
a img {
  border: none;
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

/*--------------------------------------------------------------------------*/
/* △reset
/*--------------------------------------------------------------------------*/

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    -webkit-transition: all .5s;
    transition: all .5s;
}

body {
    font-family: "Zen Old Mincho", 'Noto Serif JP', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    word-break: keep-all;
}

/* メインタイトル */

.exclusive{
  text-align: center;
  width: 100%;
  padding: 80px 0 80px;
}

.exclusive h2{
  width: 100%;
  font-size: clamp(1.75rem, 1.545rem + 1.02vw, 2.313rem);
  line-height: 1;
  font-weight: 400;
  color: #978357;
  font-family:'Bellefair',serif;
  letter-spacing: .5em;
}

.exclusive h2 a{
  color: #978357;
}

.exclusive h2 small{
  font-size: 40%;
  display: block;
  margin: 0 auto 1.8em;
  color: #978357;
  letter-spacing: .4em;
}

/* フッター */

#footer{
  background: none;
}

#footer .contact{
  background: #b8a577;
  color: #000;
  display: flex;
  justify-content: center;
  column-gap: 5%;
  align-items: center;
  padding: 42px 0;
}

#footer .contact .tel .name{
  display: block;
  font-size: 0.6875rem;
  margin-bottom: 5px;
}

#footer .contact .tel a{
  display: block;
  color: #000;
  font-size: 2.625rem;
  margin-bottom: 5px;
}

#footer .contact .tel a img{
  width: 43px;
  margin-bottom: 3px;
}

#footer .contact .tel small {
  font-size: 0.625rem;
}

#footer .contact .developer{
  width: 318px;
}

#footer .copyright{
  display: block;
  text-align: center;
  margin: 40px 0;
  font-size: 0.6875rem;
  color: #575757;
  letter-spacing: .2em;
}

@media screen and (max-width: 767px) {
  /* 767px以下に適用されるCSS（タブレット用） */

  /* メインタイトル */
  
  .exclusive {
    padding: 140px 0 120px;
  }

  .exclusive h2{
    letter-spacing: .3em;
  }

  /* フッター */

  #footer .contact {
    flex-direction: column;
    padding: 42px 0;
    row-gap: 25px;
  }

  #footer .contact .tel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer .contact .tel a {
    text-decoration: none;
    margin-bottom: 10px;
  }

}

@media screen and (max-width: 480px) {
  /* 480px以下に適用されるCSS（スマホ用） */

  /* メインタイトル */
  
    .exclusive {
      padding: 140px 0 120px;
    }
  
    .exclusive h2 {
      letter-spacing: .2em;
    }

  /* フッター */


  #footer .contact .tel a {
    font-size: 2.25rem;
  }

  #footer .contact .tel a img {
    width: 39px;
  }

  #footer .contact .developer {
    width: 65%;
  }

  #footer .copyright {
    font-size: 0.625em;
    letter-spacing: .05em;
    margin: 30px 0;
  }
}