html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #0B0A08;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.news-detail-inner {
  width: 77%;
  margin-inline: auto;
  margin-top: 180px;
}

.news-detail-inner h1 {
  font-size: 36px;
  margin-top: 50px;
}

.news-detail-inner time {
  font-size: 24px;
  display: block;
  color: #99A9B0;
  font-family: "EB Garamond", serif;
}

.line {
  width: 100%;
  height: 1px;
  background-color: #99A9B0;
  margin-top: 50px;
}

.news-detail-text {
  margin-top: 50px;
  padding-bottom: 200px;
}

.newsdetail-box::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  width: 12vw;
  height: 100%;
  z-index: -1;
  border-radius: 0px 270px 0px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(220, 218, 213, 0.5) 100%);
}

.newsdetail-box::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 0;
  width: 60vw;
  height: 100%;
  z-index: -1;
  border-radius: 270px 0px 0px 0px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(220, 218, 213, 0.5) 100%);
}

@media screen and (max-width: 768px) {
  .news-detail-inner {
    width: 87%;
    margin-top: 100px;
  }
  .news-detail-inner time {
    font-size: 16px;
  }
  .news-detail-inner h1 {
    font-size: 24px;
  }
  .newsdetail-box::before {
    top: -50px;
    width: 15vw;
  }
  .newsdetail-box::after {
    top: -50px;
    width: 15vw;
  }
}