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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

body {
  text-size-adjust: 100%;
  letter-spacing: 0.05em;
  color: #000;
  font-feature-settings: "palt";
  font-family: "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ms Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],
input[type="date"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Sans Japanese', sans-serif;
  letter-spacing: .05em;
  color: #33404a;
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .5s ease;
}

a:hover {
  color: #33404a;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

address {
  font-style: normal;
}

.header {
  position: fixed;
  top: 0px;
  background-color: rgba(250, 250, 250, 0.8);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 30px 5% 30px;
  z-index: 99;
}

.header h2 {
  margin-right: 50px;
}

.header ul {
  display: flex;
  gap: 25px;
}


/* スマホメニュー */
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #999;
  transition: all 0.8s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100vh;
  background: #999;
  transition: all 0.6s;
}

#g-nav.panelactive {
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 30%;
  left: 0%;
  right: 0;
  display: block;
}

@media screen and (max-width: 767px) {
  #p-nav {
    display: none;
  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #999;
    transition: all 0.8s;
  }

  #g-nav.panelactive {
    right: 0;
  }

  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #999;
    transition: all 0.8s;
  }

  #g-nav.panelactive {
    right: 0;
  }

  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: left;
  }
}

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 767px) {
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 15px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
}


/* --------------------------

footer

--------------------------*/

.footer {
  font-size: 13px;
  position: relative;
  padding: 20px 0;
  border-top: solid 1px #d1d7d9;
  width: 100%;
  margin: 0 auto;
  padding: 3% 5% 0;
  background: #fff;
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 25px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer {
    width: 95%;
    margin: 0 auto;
  }
}

.footerNav {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0;
  font-weight: 300;
  letter-spacing: 0;
  width: 45%;
}

.footerNav ul {
  display: inline-block;
  text-align: left;
}

.footerNav li {
  font-size: 16px;
  line-height: 1.87;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  letter-spacing: .08em;
  margin-bottom: 5px;
}

.footerNav li.current span:after,
.footerNav li:hover span:after {
  width: 100%;
}

.footerNav li span {
  display: block;
  padding: 0 6px;
  position: relative;
}

.footerNav li span:after {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 0;
  height: 1px;
  content: "";
  -webkit-transition: width .8s ease;
  transition: width .8s ease;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #33404a;
  z-index: -1;
}

.footerNav li a {
  display: block;
  height: 100%;
  width: 100%;
  color: #33404a;
}

.footerNav .facebook {
  position: absolute;
  width: 21px;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

.footerNav .facebook:hover {
  opacity: .65;
}

.footerNav_sns,
.footerNav02 {
  width: 25%;
}

/* フッター② */
.footerNav02 {
  flex-wrap: wrap;
  margin: 0 auto;
  /* border-top: solid 1px #d1d7d9; */
}

.footerNav02 li {
  margin-bottom: 8px;
}

.footerNav02__item0,
.footerNav02__item {
  padding-right: 12px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 12px;
  color: #33404a;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footerNav02__item::after {
  content: '\02197';
  font-weight: 700;
}

/* .c-navigation--secondary__item.is-external::after {
    content: '\02197';
    font: inherit;
    font-feature-settings: 'ss03';
    letter-spacing: inherit;
    line-height: inherit;
} */
.footerNav_sns {}

.footerNav02__sns {
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #33404a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footerNav02__sns::after {
  content: '\02197';
}

/* コピーライト */
.copyright {
  font-size: 11px;
  font-style: italic;
  text-align: center;
  margin-top: 15px;
  display: block;
}

#pageTop {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 14px;
  font-style: italic;
  position: fixed;
  right: 5px;
  bottom: 80px;
  -ms-writing-mode: tb-rl;
  color: #33404a;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

#pageTop img {
  width: 12px;
  padding-bottom: 12px;
  -webkit-transition: padding .5s ease;
  transition: padding .5s ease;
  vertical-align: middle;
}

#pageTop:hover img {
  padding-bottom: 22px;
}

.anchor{
    display: block;
    padding-top: 550px;
    margin-top: -550px;
}