/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

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

body {
  line-height: 1;
}

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

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

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

blockquote,
q {
  quotes: none;
}

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

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 500;
  color: #222;
  font-family: "Noto Serif JP", serif;
}

body {
  position: relative;
  z-index: 100;
  font-size: 14px;
  background: #F8F7F4;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}

.wrap-s {
  width: calc(100% - 60px);
  max-width: 1000px;
  margin-inline: auto;
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

/*===============================
layout
================================*/
/*
loading
================================*/
.loading {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #222;
  -webkit-transition: top 0.75s cubic-bezier(0.83, 0, 0.17, 1);
  transition: top 0.75s cubic-bezier(0.83, 0, 0.17, 1);
}
.loading .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
}
.loading .logo img {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 150px;
  -webkit-transition: -webkit-transform 0.75s cubic-bezier(0.83, 0, 0.17, 1);
  transition: -webkit-transform 0.75s cubic-bezier(0.83, 0, 0.17, 1);
  transition: transform 0.75s cubic-bezier(0.83, 0, 0.17, 1);
  transition: transform 0.75s cubic-bezier(0.83, 0, 0.17, 1), -webkit-transform 0.75s cubic-bezier(0.83, 0, 0.17, 1);
}
@media screen and (min-width: 1024px) {
  .loading .logo img {
    width: 200px;
  }
}

.is-anim-start .logo img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-anim-middle .logo img {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.is-anim-end {
  top: -100%;
}

/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F8F7F4;
  padding: 30px;
  border-bottom: 1px solid #222;
}
.site-header .container .logo img {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo img {
    width: 200px;
  }
}
.site-header .container .hbg {
  position: relative;
  z-index: 120;
  width: 30px;
  height: 12px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .line {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #222;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}
.site-header .container .hbg .line:first-child {
  top: 0;
}
.site-header .container .hbg .line:nth-child(2) {
  bottom: 0;
}
.site-header .container .is-hbg .line {
  background: #fff;
}
.site-header .container .is-hbg .line:first-child {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}
.site-header .container .is-hbg .line:nth-child(2) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  padding: 30px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.site-header .container .drawer__logo {
  margin: 49.7px 0;
}
.site-header .container .drawer__menu {
  font-family: "Baskervville", serif;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.site-header .container .drawer__menu .item {
  width: calc(50% - 12.5px);
  margin-top: 50px;
  margin-right: 25px;
}
.site-header .container .drawer__menu .item:nth-child(2n) {
  margin-right: 0;
}
.site-header .container .drawer__menu .item:nth-child(-n+2) {
  margin-top: 0;
}
.site-header .container .drawer__menu .item a {
  color: #fff;
}
.site-header .container .drawer .sns-list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header .container .drawer .sns-list .item {
  width: 30px;
}
.site-header .container .drawer .sns-list .item:first-child {
  margin-right: 25px;
}
.site-header .container .is-drawer {
  opacity: 1;
  pointer-events: auto;
}
.site-header .container .menu {
  display: none;
  font-family: "Baskervville", serif;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-header .container .menu .item:not(:first-child) {
  margin-left: 30px;
}

/*
main
================================*/
.site-main {
  margin-top: 79.7px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 85.94px;
  }
}
.site-main .sec-title {
  position: relative;
  font-family: "Baskervville", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  padding-bottom: clamp(1.563rem, 0.852rem + 3.03vw, 3.125rem);
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: clamp(2.188rem, 1.193rem + 4.24vw, 4.375rem);
}
.site-main .sec-title span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.site-main .sec-title span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: #222;
  border-radius: 100vh;
}
@media screen and (min-width: 1024px) {
  .site-main .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.site-main .news-list .item {
  margin-top: 35px;
}
@media screen and (min-width: 1024px) {
  .site-main .news-list .item {
    width: calc(33.3% - 33.3px);
    margin-top: 75px;
    margin-right: 50px;
  }
  .site-main .news-list .item:nth-child(3n) {
    margin-right: 0;
  }
  .site-main .news-list .item:nth-child(-n+3) {
    margin-top: 0;
  }
}
.site-main .news-list .item:first-child {
  margin-top: 0;
}
.site-main .news-list .item .thumb {
  position: relative;
  aspect-ratio: 1024/683;
}
.site-main .news-list .item .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main .news-list .item .date {
  margin-top: 15px;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .site-main .news-list .item .date {
    font-size: 14px;
  }
}
.site-main .news-list .item .title {
  margin-top: 10px;
  line-height: 1.5em;
}
.site-main__page-title {
  position: relative;
  font-family: "Baskervville", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  background: #222;
  color: #fff;
  -moz-text-align-last: center;
       text-align-last: center;
}

/*
footer
================================*/
.site-footer {
  border: 1px solid #222;
  padding: 50px 30px;
}
@media screen and (min-width: 1024px) {
  .site-footer {
    padding: 100px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.site-footer .column .logo {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .site-footer .column .logo {
    text-align: initial;
    width: auto;
  }
}
.site-footer .column .logo img {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .site-footer .column .logo img {
    width: 200px;
  }
}
.site-footer .column .sns-list {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1024px) {
  .site-footer .column .sns-list {
    margin-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.site-footer .column .sns-list .item {
  width: 30px;
}
.site-footer .column .sns-list .item:first-child {
  margin-right: 25px;
}
.site-footer .cp {
  text-align: center;
  font-family: "Baskervville", serif;
  font-size: 12px;
}

/*
space
================================*/
.pad-tb {
  padding: 50px 0 !important;
}
@media screen and (min-width: 1024px) {
  .pad-tb {
    padding: 100px 0 !important;
  }
}

.pad-t {
  padding-top: 50px !important;
}
@media screen and (min-width: 1024px) {
  .pad-t {
    padding-top: 100px !important;
  }
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}