@charset "UTF-8";
/******************************** 
   フォント、ブレイクポイントなど
*********************************/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@media screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .is-sp {
    display: none;
  }
}

/******************************** 
   reset.css、共通
*********************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
figure,
time,
article,
p,
span {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", serif !important;
  font-weight: 500;
  line-height: 200%;
  color: #222;
  word-break: break-all;
}

.dots {
  background-image: radial-gradient(#D9D9D9 1px, transparent 1px);
  background-size: 13px 13px;
  /* 丸の間隔を指定 */
  background-position: 0 0;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
a:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}

dl,
dd,
dt {
  margin: 0;
  padding: 0;
}

/******************************** 
   inner
*********************************/
.inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

/******************************** 
   header
*********************************/
.header {
  width: 100%;
  height: 110px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 80px;
  }
}
.header.is-white {
  background: #fff;
}

.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0px 40px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0px 16px;
  }
}

.header__logo {
  transition: all 0.4s ease 0s;
  width: 78px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 54px;
  }
}
.header__logo a {
  display: block;
}

.header__menu {
  display: flex;
  margin: 0 auto;
}
.header__menu li {
  margin-left: 40px;
}
.header__menu li a {
  transition: all 0.4s ease 0s;
  display: block;
  line-height: 110px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__menu li {
    margin-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

/******************************** 
   drawer icon
*********************************/
.drawer-icon {
  cursor: pointer;
  transition: 0.5s ease 0s;
  width: 60px;
  height: 80px;
  background: #ba1d23;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 301;
  border-bottom-left-radius: 10px;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  top: 8px;
  transform: rotate(-45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  top: 8px;
  transform: rotate(45deg);
  transition: all 0.4s ease 0s;
}
.drawer-icon.is-active .drawer-icon__menu {
  display: none;
}
.drawer-icon.is-active .drawer-icon__close {
  display: block;
}

.drawer-icon__bars {
  display: block;
  position: relative;
  width: 30px;
  height: 50px;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease 0s;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 12px;
}

.drawer-icon__bar3 {
  top: 24px;
}

/******************************** 
   drawer content
*********************************/
.drawer-content {
  background: #BA1D23;
  position: fixed;
  z-index: 299;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.drawer-content.is-active {
  transition: all 0.5s ease 0s;
  visibility: visible;
  opacity: 1;
}

.drawer__inner {
  position: relative;
  overflow-y: scroll;
  height: 100vh;
  padding: 0px 16px 12px;
  color: #fff;
  position: relative;
}

.header__logo--drawer {
  position: absolute;
  top: 16px;
  left: 16px;
}

.drawer__menu {
  margin-top: 116px;
}
.drawer__menu li > a {
  text-decoration: none;
  display: block;
  padding: 20px 0px 20px 16px;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #fff;
  font-weight: 700;
}
.drawer__menu li > a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.drawer__buttons {
  margin-top: 40px;
}

.contact__button--form--drawer {
  background: #fff !important;
  color: #222 !important;
}

.contact__button--tel--drawer {
  margin-top: 20px;
}

.drawer__privacy {
  margin-top: 20px;
  margin-left: 16px;
  display: block;
  line-height: 44px;
}

/******************************** 
   util
*********************************/
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.util-title {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .util-title {
    margin-bottom: 60px;
  }
}
.util-title .en-title {
  display: block;
  margin: 0 auto;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .util-title .en-title {
    height: 40px;
  }
}
.util-title .jp-title {
  color: #BA1D23;
  font-size: 40px;
  display: block;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .util-title .jp-title {
    font-size: 28px;
    margin-top: 20px;
  }
}

.util-head-sub {
  font-size: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .util-head-sub {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.util-head-sub3 {
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .util-head-sub3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.util-link-wrapper {
  text-align: center;
}

.util-link-wrapper--right {
  text-align: right;
}

.util-link {
  margin-top: 60px;
  display: inline-block;
  margin-left: auto;
  padding-right: 94px;
  line-height: 44px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .util-link {
    padding-right: 64px;
    margin-top: 40px;
  }
}
.util-link::before {
  position: absolute;
  content: "";
  background: #222;
  width: calc(100% - 94px);
  height: 2px;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .util-link::before {
    width: calc(100% - 64px);
  }
}
.util-link::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  width: 64px;
  height: 64px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .util-link::after {
    width: 48px;
    height: 48px;
  }
}

.util-link--white {
  color: #fff;
}
.util-link--white::before {
  background: #fff;
}
.util-link--white::after {
  background: url(../img/arrow-white.png) no-repeat center center/contain;
}

.util-link--404::after {
  transform: translateY(-50%) rotate(-180deg);
}

/* /util */
/******************************** 
   main-visual
*********************************/
.main-visual-wrapper {
  background: #BA1D23;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .main-visual-wrapper {
    height: 1350px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-wrapper {
    height: 1200px;
  }
}
@media screen and (max-width: 600px) {
  .main-visual-wrapper {
    height: 1050px;
  }
}
@media screen and (max-width: 500px) {
  .main-visual-wrapper {
    height: 900px;
  }
}
@media screen and (max-width: 400px) {
  .main-visual-wrapper {
    height: 850px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .main-visual-wrapper {
    height: 80vh;
  }
}
@media screen and (min-width: 1440px) {
  .main-visual-wrapper {
    height: 115vh;
  }
}

.main-visual {
  padding-top: 110px;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .main-visual {
    padding-top: 80px;
  }
}
.main-visual::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #BA1D23;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-visual::before {
    height: 30%;
  }
}
.main-visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200vw;
  height: 100vw;
  background-color: #fff;
  border: 6px solid #000;
  border-top: none;
  border-radius: 0 0 100vw 100vw;
  transform: translateX(-50%);
  z-index: 2;
}

.main-visual-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  -webkit-clip-path: circle(100vw at 50% calc(100% - 100vw - 6px));
          clip-path: circle(100vw at 50% calc(100% - 100vw - 6px));
}
@media screen and (max-width: 999px) {
  .main-visual-video {
    z-index: 3;
  }
}
.main-visual-video__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
}
@media screen and (max-width: 1439px) {
  .main-visual-video__inner {
    width: 63%;
  }
}
@media screen and (max-width: 1129px) {
  .main-visual-video__inner {
    top: 10%;
    width: 56%;
  }
}
@media screen and (max-width: 999px) {
  .main-visual-video__inner {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .main-visual-video__inner {
    top: 520px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-video__inner {
    top: 470px;
  }
}
.main-visual-video__inner #lottie-container {
  width: 100%;
  height: 100%;
}

.main-visual__inner {
  position: relative;
  z-index: 5;
}
.main-visual__inner.inner {
  width: 100%;
}

/* PC用動画はデフォルト表示、SP用は非表示 */
.main-visual-video__inner--pc {
  display: block;
}

.main-visual-video__inner--sp {
  display: none;
}

/* 768px以下など、スマホ想定のサイズになったら切り替え */
@media (max-width: 768px) {
  .main-visual-video__inner--pc {
    display: none;
  }
  .main-visual-video__inner--sp {
    display: block;
  }
}
.main-visual__content {
  position: absolute;
  margin-top: 120px;
  left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .main-visual__content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual__content {
    margin-top: 28px;
    width: calc(100% - 32px);
    left: 16px;
    top: 0;
    transform: translateY(0);
  }
}
.main-visual__content .message {
  font-family: "M PLUS 1", serif;
  font-size: 60px;
  font-weight: 900;
  color: #BA1D23;
  line-height: 140%;
}
@media screen and (min-width: 1000px) and (max-width: 1439px) {
  .main-visual__content .message {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual__content .message {
    font-size: 8.75vw;
  }
}
@media screen and (min-width: 1440px) {
  .main-visual__content .message {
    font-size: 3.8vw;
  }
}
.main-visual__content .text {
  margin-top: 30px;
  width: 600px;
  max-width: 100%;
}
@media screen and (min-width: 1000px) and (max-width: 1439px) {
  .main-visual__content .text {
    width: 400px;
  }
}

/******************************** 
   service
*********************************/
.service {
  background: #BA1D23;
}

.service__title .jp-title {
  color: #fff;
}

.service__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.service__list::before {
  position: absolute;
  content: "";
  background-image: linear-gradient(to bottom, #222, #222 1px, transparent 1px, transparent 4px);
  background-size: 2px 5px;
  background-repeat: repeat-y;
  width: 2px;
  height: calc(100% - 80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .service__list::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .service__list {
    display: block;
  }
}

.service__item {
  width: 50%;
  background: #fff;
  padding: 40px 50px;
  border-top: 4px solid #222;
  border-bottom: 4px solid #222;
}
@media screen and (max-width: 767px) {
  .service__item {
    border-left: 4px solid #222;
    border-right: 4px solid #222;
    padding: 30px 16px;
  }
}
.service__item:nth-child(1) {
  border-left: 4px solid #222;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(1) {
    border-radius: 20px;
  }
}
.service__item:nth-child(2) {
  border-right: 4px solid #222;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(2) {
    border-radius: 20px;
  }
}
.service__item .title {
  line-height: 140%;
  font-size: 28px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service__item .title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
.service__item .title img {
  height: 48px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .service__item .title img {
    height: 32px;
  }
}
.service__item .title span {
  display: block;
}
.service__item .text {
  margin-bottom: 30px;
}
.service__item .text p {
  margin-bottom: 1.5rem;
}
.service__item .img img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service__item .img img {
    width: 200px;
  }
}
.service__item .img .balcony {
  width: 80%;
}
.service__item .img .consulting {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
  .service__item:nth-child(n+2) {
    margin-top: 40px;
  }
}

/******************************** 
   news
*********************************/
.news {
  background: #F7F7F7;
}

.news__list {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .news__list {
    display: block;
    margin-top: 60px;
  }
}
.news__list::after {
  /* itemを左詰で表示 */
  content: "";
  display: block;
  height: 0;
}
@media screen and (min-width: 1000px) {
  .news__list::after {
    width: calc(33.3% - 40px);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news__list::after {
    width: calc(33.3% - 24px);
  }
}

.news__item {
  display: block;
  width: calc(33.3% - 40px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news__item {
    width: calc(33.3% - 24px);
  }
}
@media screen and (max-width: 767px) {
  .news__item {
    width: 100%;
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .news__item + .news__item {
    margin-top: 60px;
  }
}
.news__item:nth-child(n+4) {
  margin-top: 100px;
}
.news__item img {
  border-radius: 20px;
  border: 1px solid #555;
}
.news__item .meta {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
}
.news__item .cat {
  padding: 0 16px;
  border: 1px solid #555;
  border-radius: 50px;
}
.news__item .title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 800;
}
.news__item .excerpt {
  margin-top: 12px;
}

/******************************** 
   contact
*********************************/
.contact {
  background: #BA1D23;
  color: #fff;
}

.contact__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact__content {
    display: block;
  }
}

.contact__left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__left {
    width: 100%;
  }
}

.contact__right {
  width: 50%;
}
.contact__right img {
  display: block;
  margin: 0 auto;
  width: 75%;
}
@media screen and (max-width: 767px) {
  .contact__right {
    width: 100%;
    margin: 50px auto 0;
  }
}

.contact__title {
  margin-bottom: 30px;
}
.contact__title .en-title {
  margin-left: 0;
}
.contact__title .jp-title {
  color: #fff;
}

.contact__button {
  display: inline-block;
  margin-top: 30px;
  width: 400px;
  height: 74px;
  border-radius: 50px;
  line-height: 74px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__button {
    display: block;
    width: 100%;
    height: 70px;
  }
  .contact__button + .contact__button {
    margin-top: 30px;
  }
}
.contact__button::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-contact.png) no-repeat center center/contain;
  width: 58px;
  height: 58px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

/******************************** 
   footer
*********************************/
.footer {
  background: #F7F7F7;
}

.footer__content {
  padding: 60px 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__left {
  width: 30%;
  margin-right: 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer__left {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .footer__left img {
    display: block;
    margin: 0 auto;
  }
}

.footer__center {
  width: 60%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer__center {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 30px;
  }
}

.footer__right {
  width: 10%;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-left: 0;
  }
}

.footer__logo {
  width: 140px;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .footer__logo {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin: 0 auto;
    width: 100px;
  }
}

.footer__address {
  margin-top: 30px;
}

.footer__menu__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__menu__list {
    display: block;
  }
}
.footer__menu__list li {
  margin-top: 6px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .footer__menu__list li {
    margin-left: 0;
  }
}
.footer__menu__list li a {
  display: block;
  line-height: 44px;
}
@media screen and (max-width: 767px) {
  .footer__menu__list li a {
    text-align: center;
  }
}

.footer__copy {
  font-size: 14px;
  text-align: center;
  background: #222;
  color: #fff;
}

.footer__to-top img {
  width: 64px;
  height: 64px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .footer__to-top img {
    display: block;
    margin-left: auto;
  }
}

/* /footer */
/******************************** 
   下層ページ共通
*********************************/
/* page-head */
.page-head {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 416px;
  margin-top: 110px;
  background: #BA1D23;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .page-head {
    margin-top: 80px;
    height: 356px;
  }
}
.page-head::after {
  content: "";
  position: absolute;
  bottom: 150px;
  left: 50%;
  width: 260vw;
  height: 130vw;
  background-color: #fff;
  border-top: none;
  border-radius: 130vw 130vw 0 0;
  transform: translate(-50%, 100%);
  z-index: 2;
}
@media screen and (min-width: 1500px) {
  .page-head::after {
    width: 340vw;
    height: 170vw;
    border-radius: 170vw 170vw 0 0;
  }
}
@media screen and (min-width: 2000px) {
  .page-head::after {
    width: 460vw;
    height: 230vw;
    border-radius: 230vw 230vw 0 0;
  }
}

.page-head__inner {
  position: relative;
  z-index: 3;
}

.page-head__title {
  text-align: center;
  color: #fff;
}
.page-head__title .title-en img {
  height: 24px;
}
@media screen and (max-width: 767px) {
  .page-head__title .title-en img {
    height: 16px;
  }
}
.page-head__title .title-jp {
  margin-top: 0px;
  font-size: 54px;
  font-family: "M PLUS 1", serif;
  font-weight: 900;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .page-head__title .title-jp {
    font-size: 32px;
    margin-top: 0px;
  }
}

/******************************** 
   ソラフクについてページ（about）
*********************************/
.about-page .about__container {
  margin-top: 8px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .about-page .about__container {
    display: block;
    margin-bottom: 80px;
  }
}
.about-page .side-nav {
  display: block;
}
@media screen and (max-width: 999px) {
  .about-page .side-nav {
    display: none;
  }
}
.about-page .about-nav-list {
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  top: 110px;
  width: 100px;
}
@media screen and (max-width: 999px) {
  .about-page .about-nav-list {
    position: static;
  }
}
.about-page .side-nav-button {
  font-weight: 700;
  display: block;
  padding: 20px 34px 20px 0;
  position: relative;
}
.about-page .side-nav-button.active {
  color: #BA1D23;
}
.about-page .side-nav-button::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.about-page .about__sp-nav {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .about-page .about__sp-nav {
    display: none;
  }
}
.about-page .about__sp-nav__item {
  display: block;
  padding: 16px;
  border-bottom: 2px solid #ddd;
  position: relative;
}
.about-page .about__sp-nav__item:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  top: 50%;
  right: 16px;
  transform: rotate(90deg) translateX(-50%);
}
.about-page .main-content {
  width: calc(100% - 140px);
  max-width: 100%;
  padding: 0 0 0 140px;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.about-page .main-content p {
  margin-bottom: 1.5em;
}
.about-page .main-content figure {
  margin: 0 0 1em;
}
.about-page .profile {
  padding-top: 0;
}
.about-page .profile__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .about-page .profile__content {
    display: block;
  }
}
.about-page .profile__content .left {
  width: 350px;
  margin-right: 40px;
}
.about-page .profile__content .left img {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .about-page .profile__content .left {
    width: 100%;
  }
}
.about-page .profile__content .right {
  width: calc(100% - 350px);
}
@media screen and (max-width: 767px) {
  .about-page .profile__content .right {
    width: 100%;
    margin-top: 30px;
  }
}
.about-page .history {
  position: relative;
}
.about-page .history__bg {
  position: absolute;
  top: 0;
  left: -240px;
  width: calc(100vw - 40px - 40px - var(--scrollbar-width, 0px));
  height: 100%;
  z-index: 1;
  background-color: #F7F7F7;
  border-radius: 20px;
}
@media screen and (min-width: 1300px) {
  .about-page .history__bg {
    left: calc(-240px - (100vw - 20px - 20px - 1200px - var(--scrollbar-width, 0px)) / 2);
    width: calc(100vw - 20px - 20px - var(--scrollbar-width, 0px));
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .history__bg {
    left: -24px;
    width: calc(100vw - 24px - 24px - var(--scrollbar-width, 0px));
  }
}
@media screen and (max-width: 767px) {
  .about-page .history__bg {
    left: -16px;
    width: calc(100vw - var(--scrollbar-width, 0px));
    border-radius: 0px;
  }
}
.about-page .history__inner {
  position: relative;
  z-index: 2;
}
.about-page .history__lead {
  margin-bottom: 50px !important;
}
.about-page .history__item {
  background-color: #fff;
  border: 2px solid #222;
  border-radius: 10px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .about-page .history__item {
    padding: 30px 16px;
  }
}
.about-page .history__item:nth-child(n+2) {
  margin-top: 40px;
}
.about-page .history__item .content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about-page .history__item .content {
    display: block;
    margin-bottom: 30px;
  }
}
.about-page .history__item .left {
  width: calc(100% - 300px);
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .about-page .history__item .left {
    width: 100%;
  }
}
.about-page .history__item .right {
  width: 260px;
}
.about-page .history__item .right img {
  border-radius: 10px;
  width: 100%;
}
.about-page .history__item .right .history-img01 {
  width: 160px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about-page .history__item .right {
    width: 100%;
  }
}
.about-page .history__item .title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  line-height: 140%;
  font-size: 32px;
  color: #BA1D23;
}
.about-page .history__item .title img {
  height: 28px;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .about-page .history__item .title img {
    display: block;
    margin: 0 auto 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .history__item .title {
    display: block;
    text-align: center;
    font-size: 24px;
  }
}
.about-page .history__item a {
  text-decoration: underline;
}
.about-page .history__item--appendix .title {
  font-size: 24px;
}
.about-page .history__item--appendix .title:nth-child(n+2) {
  margin-top: 50px;
}
.about-page .history__item--appendix p {
  margin-bottom: 10px;
}
.about-page .company__inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .about-page .company__inner {
    display: block;
  }
}
.about-page .company__inner .left {
  width: 250px;
}
@media screen and (max-width: 767px) {
  .about-page .company__inner .left {
    width: 100%;
  }
}
.about-page .company__inner .right {
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px) {
  .about-page .company__inner .right {
    width: 100%;
    margin-top: 40px;
  }
}
.about-page .company__row {
  padding: 36px 16px;
  border-bottom: 2px solid #ccc;
  display: flex;
  position: relative;
}
.about-page .company__row:first-child {
  border-top: 2px solid #ccc;
}
.about-page .company__row::before {
  position: absolute;
  content: "";
  width: 160px;
  height: 2px;
  background: #BA1D23;
  top: -1px;
  transform: translateY(-50%);
  left: 0;
}
.about-page .company__row:last-child::after {
  position: absolute;
  content: "";
  width: 160px;
  height: 2px;
  background: #BA1D23;
  bottom: -3px;
  transform: translateY(-50%);
  left: 0;
}
.about-page .company__row dt {
  font-weight: 900;
  width: 160px;
}
@media screen and (max-width: 999px) {
  .about-page .company__row dt {
    width: 160px;
  }
}
.about-page .company__row dd {
  width: calc(100% - 190px);
  padding-left: 30px;
}
@media screen and (max-width: 999px) {
  .about-page .company__row dd {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .company__row dd {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-page .company__row {
    display: block;
    padding: 16px 0;
  }
}

/******************************** 
   活動報告ページ(news, single)
*********************************/
.news__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news__content {
    display: block;
  }
}

.news-main {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .news-main {
    width: 100%;
    margin-left: 0;
  }
}
.news-main .news__list {
  margin-top: 0;
}
.news-main .news__item {
  display: block;
  width: calc(50% - 40px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news-main .news__item {
    width: calc(50% - 24px);
  }
}
.news-main .news__item:nth-child(n+3) {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .news-main .news__item {
    width: calc(100% - 64px);
  }
  .news-main .news__item + .news-main .news__item {
    margin-top: 60px;
  }
  .news-main .news__item:nth-child(n+3) {
    margin-top: 60px;
  }
}
.news-main .news__pagination-wrapper {
  margin: 80px auto 0;
  text-align: center;
}
.news-main .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-weight: 800;
  margin-left: 10px;
  border-radius: 50px;
  border: 1px solid #222;
}
@media screen and (max-width: 767px) {
  .news-main .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.news-main .page-numbers.current {
  background: #BA1D23;
  border: none;
  color: #fff;
}

.news-side {
  width: calc(40% - 140px);
  margin-top: -10px;
  margin-left: 140px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .news-side {
    width: calc(40% - 100px);
    margin-left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .news-side {
    width: 100%;
    margin: 80px auto 0;
  }
}

.news-side__head {
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 800;
  position: relative;
}
.news-side__head::before {
  position: absolute;
  content: "";
  background-image: repeating-linear-gradient(to right, #222 0px, #222 2px, transparent 2px, transparent 4px);
  background-size: 2px 2px;
  background-repeat: repeat-x;
  width: 100%;
  height: 2px;
  background: #222;
  bottom: 0;
  left: 0;
}

.news-side__list {
  margin-top: 10px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-side__list {
    margin-bottom: 60px;
  }
}
.news-side__list li {
  margin-top: 10px;
  font-size: 16px;
  position: relative;
}
.news-side__list li .news-side__link {
  display: block;
  line-height: 2;
  transition: all 0.4s ease 0s;
}
.news-side__list li .news-side__link:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}

.single__head {
  padding-left: 20px;
  position: relative;
}
.single__head::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #BA1D23;
  left: 0;
  top: 0;
}
.single__head .cat {
  display: inline-block;
  margin-left: 16px;
  padding: 0 16px;
  border: 1px solid #555;
  border-radius: 50px;
}

.single__title {
  font-size: 20px;
  margin-top: 20px;
}

.single__content {
  margin-top: 60px;
  word-break: break-all;
}
.single__content p {
  margin-bottom: 1.8em;
}
.single__content h2 {
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.single__content h3 {
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #BA1D23;
}
.single__content a {
  color: #0000ff;
  text-decoration: underline;
}
.single__content figure {
  margin: 0 0 1em;
}

.single__more-news {
  margin-top: 80px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

/******************************** 
   404ページ
*********************************/
.not-found-page .not-found {
  margin-top: 80px;
}
.not-found-page .not-found-title {
  font-size: 48px;
  font-weight: 900;
  color: #BA1D23;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found-title {
    font-size: 32px;
  }
}
.not-found-page .not-found-text {
  margin-top: 40px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .not-found-page .not-found-text {
    font-size: 16px;
  }
}
.not-found-page .not-found__link {
  margin: 60px auto;
  transition: all 0.4s ease 0s;
}
.not-found-page .not-found__link:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}