@font-face {
  font-family: "Custom";
  src: url("../font/HelveticaNeueLTStd-Bd.otf") format("opentype");
  src: url("../font/HelveticaNeueLTStd-Roman.otf") format("opentype");
}
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,
l,
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;
}

html {
  line-height: 1.6;
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.14vw;
  }
}
@media screen and (max-width: 540px) {
  html {
    font-size: 3.6vw;
  }
}

section {
  padding: 3rem 1rem;
}

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

header {
  position: relative;
}

body {
  font-family: "custom-font", Arial, Helvetica, Sans-Serif;
  background-color: white !important;
}

.pc {
  display: block;
}
@media screen and (max-width: 540px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp {
    display: block !important;
  }
}

.p-ham {
  position: absolute;
  left: 5%;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 0;
}
.p-ham span {
  background-color: #f7f7f7;
  height: 2px;
  width: 100%;
  position: absolute;
}
.p-ham span:nth-child(1) {
  top: 0;
}
.p-ham span:nth-child(2) {
  top: 10px;
}
.p-ham span:nth-child(3) {
  bottom: 0;
}

.p-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 12;
  gap: 5%;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 540px) {
  .p-menu {
    justify-content: center;
    padding: 0.3rem 0;
  }
}
.p-menu nav ul {
  margin-right: 17rem;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 960px) {
  .p-menu nav ul {
    margin-right: 5rem;
  }
}
@media screen and (max-width: 540px) {
  .p-menu nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding: 2rem;
    padding-top: 0rem;
    height: 100%;
    gap: 5px;
  }
}
.p-menu nav ul li {
  list-style: none;
  width: 100%;
}
.p-menu nav ul li a {
  width: 100%;
  white-space: nowrap;
  cursor: pointer;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 540px) {
  .p-menu nav ul li a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 540px) {
  .p-menu nav ul li a:hover {
    color: #ee202c;
    transition: 0.3s;
  }
}
.p-menu svg {
  color: white;
  width: 26rem;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 540px) {
  .p-menu svg {
    width: 15rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 540px) {
  .p-menu svg:hover {
    color: #ee202c;
    transition: 0.3s;
  }
}
.p-menu .p-logo {
  line-height: 0;
}
.p-menu .p-logo a {
  display: inline-block;
}

@media screen and (min-width: 540px) {
  .p-menu a:hover,
  .p-menu svg:hover {
    color: #ee202c;
  }
}

@media screen and (min-width: 540px) {
  .bg-colored .p-nav a:hover,
  .bg-colored svg:hover {
    color: #000;
  }
}

.p-video {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 540px) {
  .p-video {
    height: 100vh;
  }
  .p-video video {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
.p-video video {
  width: 100%;
}
.p-video .video-txt {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white;
  font-size: 5vw;
  width: 100%;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .p-video .video-txt {
    font-size: 4rem;
    line-height: 1.1;
    bottom: 2%;
  }
}

.p-top-section {
  display: flex;
  gap: 5%;
  align-items: center;
  justify-content: space-between;
  margin: 4rem auto 4rem;
  width: 92%;
}
@media screen and (max-width: 540px) {
  .p-top-section {
    flex-direction: column-reverse;
    margin: 2rem auto 5rem;
  }
}
.p-top-section .p-photograph {
  width: 48%;
}
@media screen and (max-width: 540px) {
  .p-top-section .p-photograph {
    width: 100%;
  }
}

.p-top-news {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width: 540px) {
  .p-top-news {
    text-align: center;
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
}
.p-top-news a {
  color: #191919;
  font-size: 3.3rem;
  text-decoration: none;
  transition: 0.2s;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .p-top-news a {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 540px) {
  .p-top-news a:hover {
    color: #ee202c;
    transition: 0.2s;
  }
}
@media screen and (max-width: 540px) {
  .p-top-news a {
    font-size: 2.2rem;
  }
}
.p-top-news span {
  font-weight: normal;
  font-size: 1.7rem;
}

.p-news-flex {
  display: flex;
  margin-top: 6rem;
  flex-wrap: wrap;
  background-color: #191919;
  padding: 1% 0 7rem;
}
.p-news-flex div {
  width: 20%;
}
@media screen and (max-width: 540px) {
  .p-news-flex div {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .p-news-flex {
    flex-direction: column;
    background-color: initial;
  }
}

.p-heading {
  text-align: center;
  padding: 6rem 2rem 0rem;
  background-color: #191919;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 540px) {
  .p-heading {
    padding-top: 4rem;
  }
}
.p-heading h2 {
  font-size: 4rem;
  font-weight: bold;
  color: white;
}
@media screen and (max-width: 960px) {
  .p-heading h2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 540px) {
  .p-heading h2 {
    font-size: 2rem;
  }
}

.p-top-photograph {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  width: 92%;
  margin: 0 auto 2rem auto;
}
@media screen and (max-width: 540px) {
  .p-top-photograph {
    flex-direction: column;
  }
}
.p-top-photograph__item {
  width: 40%;
}
@media screen and (max-width: 540px) {
  .p-top-photograph__item {
    width: 100%;
    margin: 0 auto 2rem;
  }
}

.p-top-photograph._v2 {
  display: flex;
  justify-content: space-between;
  gap: 3%;
  width: 92%;
  margin: 0 auto 8rem auto;
}
@media screen and (max-width: 540px) {
  .p-top-photograph._v2 {
    margin-bottom: 3.5rem;
  }
}
.p-top-photograph._v2__item {
  width: 40%;
}

.p-news-photograph {
  max-width: 100%;
  margin: 0 auto;
}
.p-news-photograph img {
  width: 100%;
  text-align: left;
  margin: 0 auto 0 0;
}

.p-top-photograph__item {
  overflow: hidden;
}
.p-top-photograph__item._v2 {
  width: 60%;
}
@media screen and (max-width: 540px) {
  .p-top-photograph__item._v2 {
    width: 80%;
  }
}

.p-top-photograph__item._v3 {
  width: 50%;
}
@media screen and (max-width: 540px) {
  .p-top-photograph__item._v3 {
    width: 100%;
  }
}

.p-top-photograph__item._v4 {
  width: 80%;
}
@media screen and (max-width: 540px) {
  .p-top-photograph__item._v4 {
    width: 100%;
  }
}

.js-img02 img {
  transform: scale(1.12);
}

.js-img05 {
  width: 40%;
}
@media screen and (max-width: 540px) {
  .js-img05 {
    width: 100%;
    margin: 0 auto 2rem;
  }
}
.js-img04 {
  margin-left: 10%;
}
@media screen and (max-width: 540px) {
  .js-img04 {
    margin-left: 0;
  }
}
.l-footer {
  background-color: #191919;
  padding: 6rem 1rem 2rem;
  position: relative;
  z-index: 10;
  box-shadow: 10px 5px 15px 0px rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 540px) {
  .l-footer {
    padding-top: 3rem;
  }
}
.l-footer .l-footer-logo {
  width: 7rem;
  margin-left: 2rem;
}
.l-footer .l-footer-right {
  display: flex;
  gap: 6%;
}
@media screen and (max-width: 540px) {
  .l-footer .l-footer-right {
    margin-bottom: 3rem;
  }
}
.l-footer .l-footer-address {
  color: white;
}
.l-footer .l-footer-address a {
  margin-top: 0.7rem;
  display: inline-block;
  color: white;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}
.l-footer .l-footer-address a:hover {
  color: #ee202c;
  transition: 0.3s;
}
.l-footer ul {
  margin-top: 3rem;
  display: flex;
}
@media screen and (max-width: 540px) {
  .l-footer ul {
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
.l-footer ul li {
  color: white;
  list-style: none;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}
.l-footer ul li:last-child a {
  border: none;
}
@media screen and (max-width: 540px) {
  .l-footer ul li {
    text-align: center;
    display: inline-block;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 540px) {
  .l-footer ul li:nth-child(5) {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-footer ul li:nth-child(6) {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .l-footer ul li span {
    width: 100%;
  }
}
.l-footer ul li a {
  color: white;
  border-right: 1px solid white;
  text-decoration: none;
  padding: 0 0.6rem;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .l-footer ul li a {
    border: none;
  }
}
@media screen and (min-width: 540px) {
  .l-footer ul li a:hover {
    color: #ee202c;
    transition: 0.3s;
  }
}
.l-footer ul li:first-child {
  margin-left: 1rem;
}
@media screen and (max-width: 540px) {
  .l-footer ul li:first-child {
    margin: 0;
  }
}
.l-footer__inner {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .l-footer__inner {
    width: 100%;
  }
}
.l-footer__txtlogo {
  width: 80%;
  margin: 0 auto;
}
.l-footer__txt {
  margin-top: 0.6rem;
  color: white;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .l-footer__txt {
    font-size: 1rem;
  }
}
.l-footer .c-btn {
  text-align: center;
  margin: 3rem 0 8rem;
}
.l-footer .c-btn a {
  background-color: #ee202c;
  border: none;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}
@media screen and (min-width: 540px) {
  .l-footer .c-btn a:hover {
    background-color: #191919;
    transition: 0.2s;
  }
}

.l-footer-txt__small {
  color: white;
  font-size: 0.8rem;
}
@media screen and (max-width: 540px) {
  .l-footer-txt__small {
    font-size: 0.94rem;
  }
}

.p-about {
  padding: 8rem 1rem;
}
@media screen and (max-width: 960px) {
  .p-about {
    padding: 5rem 0rem;
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .p-about {
    padding-top: 2.7rem;
  }
}

.p-about-content {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  gap: 4%;
}
@media screen and (max-width: 960px) {
  .p-about-content {
    flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .p-about-content {
    display: block;
    width: 100%;
  }
}
.p-about-content .p-about-txt {
  width: 44%;
}
@media screen and (max-width: 960px) {
  .p-about-content .p-about-txt {
    width: 100%;
  }
}
.p-about-content .p-about-txt p {
  font-size: 1.2rem;
}
@media screen and (max-width: 540px) {
  .p-about-content .p-about-txt p {
    font-size: 1.14rem;
    text-align: justify;
  }
}
.p-about-content .p-about-txt h3 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 540px) {
  .p-about-content .p-about-txt h3 {
    font-size: 2rem;
    margin: 2rem 0;
    line-height: 1.3;
  }
}
.p-about-content .p-about-img {
  width: 53%;
}
@media screen and (max-width: 960px) {
  .p-about-content .p-about-img {
    margin-bottom: 1rem;
    width: 100%;
  }
}

.js-trigger {
  height: 8rem;
}

.p-googlemap {
  width: 90%;
  margin: 3rem auto;
}
@media screen and (max-width: 540px) {
  .p-googlemap {
    width: 100%;
  }
}
.p-googlemap h3 {
  font-size: 4rem;
}
@media screen and (max-width: 540px) {
  .p-googlemap h3 {
    font-size: 2rem;
  }
}
.p-googlemap iframe {
  width: 100%;
}
@media screen and (max-width: 540px) {
  .p-googlemap iframe {
    height: 20rem;
  }
}

.p-news {
  width: 100%;
  padding: 12rem 1rem !important;
}
@media screen and (max-width: 540px) {
  .p-news {
    padding: 3rem 0rem 9rem !important;
  }
}
.p-news ul {
  width: 850px;
  max-width: 90%;
  margin: 0 auto;
}
.p-news ul li {
  list-style: none;
  border-bottom: 1px solid #191919;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.p-news ul li a {
  text-decoration: none;
  font-size: 1.15rem;
  transition: 0.3s;
  color: #191919;
  display: flex;
}
@media screen and (max-width: 540px) {
  .p-news ul li a {
    -webkit-line-clamp: 3;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 540px) {
  .p-news ul li a:hover {
    opacity: 0.8;
    transition: 0.3s;
  }
}
.p-news ul li a .p-news-link {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-news .p-news-date {
  margin-right: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 540px) {
  .p-news .p-news-date {
    display: block;
    font-size: 1rem;
  }
}

.p-news._v2 {
  padding: 12rem 0rem 0rem !important;
}

.c-pages {
  width: 100%;
}

.p-news-content {
  width: 900px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-news-content {
    max-width: 90%;
  }
}
.p-news-content__title {
  margin-bottom: 2rem;
  font-feature-settings: "palt";
}
.p-news-content__title h3 {
  border-bottom: 2px solid #191919;
  padding-bottom: 0.8rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 540px) {
  .p-news-content__title h3 {
    font-size: 1.6rem;
  }
}
.p-news-content__title p {
  font-size: 1rem;
  margin-top: 1rem;
  font-feature-settings: "palt";
}
.p-news-content p {
  font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 540px) {
  .p-news-content p {
    font-size: 1.14rem;
  }
}
.p-news-content__link {
  color: #ee202c;
}

@media screen and (max-width: 540px) {
  .p-nav {
    width: 300px;
    max-width: 100%;
    background-color: #ee202c;
    position: fixed;
    top: 0;
    bottom: 0;
    transition: left 0.5s;
    left: -100%;
    height: 100vh;
  }
}
@media screen and (max-width: 540px) {
  .p-nav .p-ham {
    right: 1rem;
    left: initial;
    top: 1.3rem;
  }
  .p-nav .p-ham span {
    position: absolute;
  }
  .p-nav .p-ham span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  .p-nav .p-ham span:nth-child(2) {
    opacity: 0;
  }
  .p-nav .p-ham span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
  }
}

#pages .p-nav li {
  list-style: none;
}
#pages .p-nav li a {
  color: white;
  font-size: 1.4rem;
}
@media screen and (min-width: 540px) {
  #pages .p-nav li a:hover {
    color: #191919;
  }
}
#pages .p-menu {
  background-color: #ee202c;
}
#pages .p-menu svg {
  color: white;
}
@media screen and (min-width: 540px) {
  #pages .p-menu svg:hover {
    color: #191919;
  }
}

.js-heading,
.js-trigger {
  will-change: transform;
}

.vsasd {
  background-color: #191919;
  height: 31rem;
  width: 100%;
}

.post-flex {
  width: 100%;
  display: flex;
  align-items: center;
}
.post-flex a {
  width: 25%;
}
.post-flex.v2 {
  align-items: flex-start;
}
.post-flex.v2 a {
  width: 33%;
}

#pages {
  overflow-x: hidden;
}

.post-flex.new {
  align-items: flex-start;
  gap: 1rem;
}
.post-flex.new a {
  width: 40%;
}
@media screen and (max-width: 540px) {
  .post-flex.new a {
    width: 100%;
  }
}
.post-flex.new a img {
  width: 100%;
}

@media screen and (max-width: 540px) {
  .post-flex.blocl {
    display: block !important;
    margin-top: 2rem;
  }
}
.post-flex.blocl a {
  width: 48%;
  display: inline-block;
  margin-bottom: 1rem;
}

.post-img-s {
  width: 50%;
}
@media screen and (max-width: 540px) {
  .post-img-s {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */