@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Noto+Serif+JP:wght@500;600&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 Serif JP", serif !important;
  font-weight: 300;
  line-height: 180%;
  color: #222;
  word-break: break-all;
  letter-spacing: 0.1em;
}

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: 1200px;
  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: 120px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header.is-scrolled {
  transition: all 0.4s ease 0s;
  position: fixed;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled {
    height: 60px;
  }
}
.header.is-scrolled .header__logo {
  transition: all 0.4s ease 0s;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .header__logo {
    top: 16px;
  }
}
.header.is-scrolled .logo-tagline {
  transition: all 0.4s ease 0s;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .header.is-scrolled .logo-tagline {
    margin-top: 7px;
  }
}
.header.is-scrolled .header__menu li a {
  transition: all 0.4s ease 0s;
  line-height: 90px;
}
.header.is-scrolled .header__button {
  transition: all 0.4s ease 0s;
  height: 90px;
  line-height: 90px;
}

.header__inner {
  display: flex;
}

.header__logo {
  transition: all 0.4s ease 0s;
  text-align: center;
  position: relative;
  top: 32px;
  left: 40px;
  white-space: nowrap;
  line-height: 1;
}
.header__logo .logo-title {
  transition: all 0.4s ease 0s;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.4em;
}
.header__logo .logo-tagline {
  transition: all 0.4s ease 0s;
  font-size: 10px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: normal;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .header__logo .logo-tagline {
    margin-top: 7px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__logo {
    top: 32px;
    left: 24px;
  }
  .header__logo .logo-title {
    letter-spacing: 0.3em;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    top: 16px;
    left: 16px;
  }
  .header__logo .logo-title {
    font-size: 20px;
  }
}

.header__menu {
  display: flex;
  margin-left: auto;
  margin-right: 4.1666vw;
}
.header__menu li {
  margin-left: 50px;
}
.header__menu li a {
  transition: all 0.4s ease 0s;
  display: block;
  line-height: 120px;
}
@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;
  }
}

.header__button {
  transition: all 0.4s ease 0s;
  width: 220px;
  height: 120px;
  line-height: 120px;
  background: #8f0000;
  color: #fff;
  text-align: center;
}
.header__button img {
  width: 20px;
  position: relative;
  top: 3px;
}
.header__button span {
  margin-left: 10px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .header__button {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header__button {
    display: none;
  }
}

/******************************** 
   drawer icon
*********************************/
.drawer-icon {
  cursor: pointer;
  transition: 0.5s ease 0s;
  width: 60px;
  height: 60px;
  background: #8f0000;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 301;
}
.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: 30px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

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

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 10px;
}

.drawer-icon__bar3 {
  top: 20px;
}

/******************************** 
   drawer content
*********************************/
.drawer-content {
  background: #8f0000;
  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: 1px solid #f5f5f5;
}
.drawer__menu li > a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  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: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.util-title-large {
  text-align: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}
.util-title-large .en-title {
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  display: block;
  font-size: 14px;
  color: #8f0000;
}
.util-title-large .en-title--white {
  color: #fff;
}
.util-title-large .jp-title {
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .util-title-large {
    font-size: 24px;
  }
}

.util-lead {
  margin-top: 40px;
  text-align: center;
}

.util-button {
  display: block;
  padding: 0 30px;
  width: 280px;
  height: 70px;
  background: #8f0000;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  line-height: 70px;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .util-button {
    width: 220px;
    height: 60px;
    line-height: 60px;
  }
}
.util-button::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-white.png) no-repeat center center/contain;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.util-button--about {
  margin-top: 20px;
}
.util-button--center {
  margin: 60px auto 0;
}
.util-button--overflow {
  position: relative;
  top: 35px;
  margin: 25px auto 0;
}

.util-title-middle {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .util-title-middle {
    margin-bottom: 20px;
  }
}
.util-title-middle .util-title-middle-jp {
  display: block;
  font-size: 24px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .util-title-middle .util-title-middle-jp {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .util-title-middle .util-title-middle-jp {
    font-size: 20px;
  }
}
.util-title-middle .util-title-middle-en {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #8f0000;
  font-family: "Cormorant Garamond", serif;
}

.link-icon {
  width: 12px;
  margin-left: 10px;
}

/* /util */
/******************************** 
   main-visual
*********************************/
.main-visual {
  margin-top: 120px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .main-visual {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    margin-top: 100px;
  }
}
.main-visual::before {
  position: absolute;
  content: "";
  background: #f5f5f5;
  width: 45%;
  height: 1px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 999px) {
  .main-visual::before {
    content: none;
  }
}

.main-visual__img {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .main-visual__img {
    text-align: left;
  }
}
.main-visual__img img {
  width: 55%;
  margin-left: auto;
}
@media screen and (max-width: 999px) {
  .main-visual__img img {
    width: 100%;
    margin-top: 82.0513vw;
  }
}

.main-visual__content {
  position: absolute;
  top: 4.16666vw;
  right: 49.25vw;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 999px) {
  .main-visual__content {
    display: block;
    top: 22vw;
    left: 8px;
  }
}

.main-visual__message {
  width: 28.75vw;
}
@media screen and (max-width: 999px) {
  .main-visual__message {
    width: calc(97.4987vw - 8px);
    margin-left: 2.0513vw;
  }
}

.main-visual__name {
  margin-right: 5.9027vw;
  width: 4.8611vw;
}
@media screen and (max-width: 999px) {
  .main-visual__name {
    width: 43.3333vw;
    margin-left: 8.2051vw;
    margin-top: 6.1538vw;
  }
}

/******************************** 
   service, about
*********************************/
.service {
  position: relative;
  top: -9.7222vw;
  padding-top: 235px;
  padding-bottom: 0;
  background: linear-gradient(to right, #f5f5f5 75%, #fff 75%);
}
@media screen and (max-width: 999px) {
  .service {
    margin-top: 300px;
    padding-top: 135px;
    background: #f5f5f5;
  }
}

/* about */
.about__content {
  width: 420px;
  max-width: 100%;
  position: absolute;
  top: -200px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .about__content {
    width: calc(100% - 32px);
    max-width: 388px;
    top: -222px;
  }
}

.about__title {
  color: #8f0000;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.about__lead {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: justify;
}

/* /about */
/* テキストアニメーション */
.marquee {
  width: 100%;
  height: 9.7222vw;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: -20px;
}
.marquee::before, .marquee::after {
  position: absolute;
  content: "REDEFINING FINANCE THROUGH DIALOGUE";
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 9.7222vw;
  line-height: 1;
  text-align: center;
  -webkit-animation: flowing 50s linear infinite;
          animation: flowing 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .marquee {
    height: 23vw;
  }
  .marquee::before, .marquee::after {
    font-size: 23vw;
    -webkit-animation: flowing 30s linear infinite;
            animation: flowing 30s linear infinite;
  }
}
.marquee::before {
  left: 0;
}
.marquee::after {
  left: 235vw;
}
@media screen and (max-width: 767px) {
  .marquee::after {
    left: 560vw;
  }
}
@-webkit-keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-235vw);
  }
}
@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-235vw);
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes flowing {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-560vw);
    }
  }
  @keyframes flowing {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-560vw);
    }
  }
}

/* /テキストアニメーション */
.service__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service__list {
    display: block;
    margin-top: 40px;
  }
}

.service__item {
  width: calc(50% - 20px);
  background: #fff;
  border: 1px solid #f5f5f5;
}
.service__item:nth-child(n+3) {
  margin-top: 40px;
}
.service__item a {
  display: block;
  padding: 3.4722vw;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
  .service__item:nth-child(n+2) {
    margin-top: 30px;
  }
  .service__item a {
    padding: 30px 16px;
  }
}

.service__item__text {
  text-align: justify;
}
.service__item__text p + p {
  margin-top: 20px;
}

.service__item__more {
  margin-top: 36px;
  font-family: "Cormorant Garamond", serif;
  text-align: right;
  padding-right: 22px;
  position: relative;
}
.service__item__more::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/******************************** 
   slider
*********************************/
.main-slider {
  margin-top: 115px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main-slider {
    margin-top: 80px;
  }
}
.main-slider img {
  width: 600px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .main-slider img {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .main-slider img {
    width: 300px;
  }
}
.main-slider .slick-slide {
  margin-left: 40px;
}

/******************************** 
   report
*********************************/
.report {
  padding-top: 100px;
  padding-bottom: 0;
}

.report__bg {
  margin-top: 20px;
  background: url(../img/report-bg.webp) no-repeat 60% center/cover;
}
@media screen and (max-width: 767px) {
  .report__bg {
    margin-top: -20px;
  }
}

.report__paper {
  position: relative;
  top: -160px;
  background: #fff;
  padding: 60px 40px 0;
}
@media screen and (max-width: 767px) {
  .report__paper {
    top: -100px;
    padding: 60px 16px 0;
  }
}

.report__list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .report__list {
    margin-top: 40px;
  }
}

.report__item {
  border-top: 1px solid #ddd;
  position: relative;
}
.report__item a {
  display: flex;
  padding: 45px 70px 45px 30px;
}
@media screen and (max-width: 999px) {
  .report__item a {
    display: block;
    padding: 30px 10px 30px 0px;
  }
}
.report__item:last-child {
  border-bottom: 1px solid #ddd;
}
.report__item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 50%;
  right: 30px;
  transform: transY(-50%);
  background: url(../img/arrow-red.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .report__item::after {
    right: 10px;
    top: calc(100% - 24px);
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .report__item::after {
    right: 10px;
    top: calc(100% - 24px);
  }
}

.report__meta {
  display: flex;
}

.report__date {
  white-space: nowrap;
  width: 90px;
}

.report__cat {
  white-space: nowrap;
  margin-left: 40px;
  width: 120px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  text-align: center;
  color: #8f0000;
  border: 1px solid #8f0000;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .report__cat {
    width: 100px;
    margin-left: 30px;
  }
}

.report__title {
  margin-left: 80px;
  width: calc(100% - 330px);
}
@media screen and (max-width: 999px) {
  .report__title {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

/******************************** 
   contact
*********************************/
.contact {
  padding: 80px 0;
  background: #222;
  color: #fff;
}

.contact__button__area {
  display: flex;
  justify-content: space-between;
  width: 680px;
  max-width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .contact__button__area {
    display: block;
  }
}

.contact__button {
  width: 320px;
  height: 70px;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__button {
    display: block;
    width: 100%;
    height: 70px;
  }
  .contact__button + .contact__button {
    margin-top: 30px;
  }
}
.contact__button .mail-icon {
  width: 20px;
  position: relative;
  top: 3px;
}
.contact__button .tel-icon {
  width: 20px;
  position: relative;
  top: 3px;
}
.contact__button span {
  margin-left: 10px;
}
.contact__button--form {
  background: #8f0000;
  color: #fff;
}
.contact__button--tel {
  background: #fff;
  color: #222;
}

/******************************** 
   footer
*********************************/
.footer {
  background: #f5f5f5;
  padding: 60px 0 20px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 20px 0;
  }
}

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

.footer__left {
  width: 50%;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}

.footer__center {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .footer__center {
    width: 100%;
    margin-top: 30px;
  }
}

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

.footer__logo {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    font-size: 24px;
  }
}

.footer__address {
  margin-top: 30px;
}

.footer__menu__list li {
  margin-top: 6px;
}
.footer__menu__list li a {
  display: block;
  line-height: 44px;
}

.footer__copy {
  margin-top: 100px;
  font-size: 14px;
}

.footer__to-top {
  position: absolute;
  font-size: 12px;
  line-height: 44px;
  bottom: 40px;
  right: 40px;
  writing-mode: vertical-rl;
  padding-top: 24px;
}
.footer__to-top::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 0;
  left: 50%;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  transform: rotate(-90deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__to-top {
    top: 80px;
    right: 16px;
  }
}

/* /footer */
/******************************** 
   下層ページ共通
*********************************/
/* page-head */
.page-head {
  width: 100%;
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .page-head {
    margin-top: 160px;
  }
}

.page-head__title__en {
  font-size: 60px;
  font-weight: 600;
  color: #8f0000;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 767px) {
  .page-head__title__en {
    font-size: 48px;
  }
}

.page-head__title__jp {
  font-size: 24px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .page-head__title__jp {
    font-size: 20px;
  }
}

.page-head__img-wrapper {
  max-width: calc(50vw + 600px);
  margin-top: 100px;
  margin-left: auto;
  padding-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__img-wrapper {
    max-width: 100vw;
    padding-left: 24px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-head__img-wrapper {
    margin-top: 60px;
    max-width: 100vw;
    padding-left: 0;
  }
}

.page-head__img {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .page-head__img {
    aspect-ratio: 1320/500;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .page-head__img {
    aspect-ratio: 1320/500;
  }
}
@media screen and (max-width: 767px) {
  .page-head__img {
    height: 240px;
  }
}
.page-head__img--about {
  background: url(../img/about-head.webp) no-repeat left center/cover;
}
.page-head__img--service {
  background: url(../img/service-head.webp) no-repeat center bottom/cover;
}
.page-head__img--report {
  background: url(../img/report-head.webp) no-repeat right center/cover;
}
.page-head__img--contact {
  background: url(../img/contact-head.webp) no-repeat right center/cover;
}

/* /page-head */
/* breadcrumb */
.breadcrumb {
  text-align: right;
  margin-top: 24px;
}
.breadcrumb span {
  display: inline-block;
  margin-right: 40px;
}
.breadcrumb span:last-of-type {
  margin-right: 0;
}
.breadcrumb span a {
  position: relative;
}
.breadcrumb span a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: url(../img/arrow-breadcrumb.png) no-repeat center center/contain;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}

.first-section {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .first-section {
    padding-top: 80px;
  }
}

/******************************** 
   会社案内ページ(about)
*********************************/
.about-page {
  /******************************** 
     purpose
  *********************************/
  /******************************** 
     career
  *********************************/
  /******************************** 
     profile
  *********************************/
}
.about-page .purpose {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .about-page .purpose {
    padding-bottom: 60px;
  }
}
.about-page .purpose__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about-page .purpose__inner {
    display: block;
  }
}
.about-page .purpose__left {
  width: calc(50% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .purpose__left {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .purpose__left {
    width: 100%;
  }
}
.about-page .purpose__en-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #8f0000;
  font-size: 32px;
}
.about-page .purpose__jp-title {
  margin-top: 24px;
  font-size: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about-page .purpose__jp-title {
    font-size: 32px;
    margin-top: 10px;
  }
}
.about-page .purpose__text {
  margin-top: 40px;
  width: 500px;
  max-width: 100%;
  text-align: justify;
}
.about-page .purpose__text p + p {
  margin-top: 24px;
}
.about-page .porpose__post {
  margin-top: 60px;
  text-align: right;
}
.about-page .porpose__name {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
  text-align: right;
}
.about-page .purpose__right {
  width: calc(50% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .purpose__right {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .purpose__right {
    width: 100%;
    margin-top: 60px;
  }
}
.about-page .career {
  background: #f5f5f5;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .about-page .career {
    padding-top: 60px;
  }
}
.about-page .career__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .about-page .career__container {
    display: block;
  }
}
.about-page .career__item {
  border: 1px solid #f5f5f5;
  background: #fff;
  padding: 30px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .career__item {
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .career__item {
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .career__item {
    width: 100%;
  }
}
.about-page .career__item--large {
  width: calc(50% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .career__item--large {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .career__item--large {
    width: 100%;
  }
}
.about-page .career__item--small:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about-page .career__item--small:nth-child(n+2) {
    margin-top: 30px;
  }
}
.about-page .career__group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(50% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .career__group {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .career__group {
    margin-top: 30px;
    width: 100%;
  }
}
.about-page .career__row {
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}
.about-page .career__row dt {
  font-weight: 600;
}
.about-page .career__row dd {
  margin-top: 10px;
}
.about-page .career__books-text a {
  display: block;
}
.about-page .career__books-text a:nth-child(n+2) {
  margin-top: 20px;
}
.about-page .career__books-text p {
  margin-top: 20px;
}
.about-page .profile {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 999px) {
  .about-page .profile {
    display: block;
    padding-bottom: 0;
  }
}
.about-page .profile__inner {
  width: 580px;
  max-width: 100%;
  padding: 0 0 0 40px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .profile__inner {
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__inner {
    padding: 0 16px;
  }
}
.about-page .profile__left {
  margin-right: 20px;
}
@media screen and (max-width: 999px) {
  .about-page .profile__left {
    margin-right: auto;
  }
}
.about-page .profile__right {
  width: calc(50% - 20px);
  margin-left: 20px;
}
@media screen and (max-width: 999px) {
  .about-page .profile__right {
    margin-left: 0;
    margin-top: 60px;
    width: 100%;
  }
}
.about-page .profile__details {
  margin-top: 60px;
}
.about-page .profile__row {
  padding: 30px 16px;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.about-page .profile__row dt {
  font-weight: 600;
  width: 200px;
}
@media screen and (max-width: 999px) {
  .about-page .profile__row dt {
    width: 160px;
  }
}
.about-page .profile__row dd {
  width: calc(100% - 200px);
}
@media screen and (max-width: 999px) {
  .about-page .profile__row dd {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__row dd {
    width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__row {
    display: block;
    padding: 16px;
  }
}
.about-page .profile__map {
  width: 100%;
  height: calc(100% + 240px);
  position: relative;
  top: -120px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .about-page .profile__map {
    height: 50vw;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-page .profile__map {
    height: 100vw;
    top: 0;
  }
}
.about-page .profile__map iframe {
  width: 100%;
  height: 100%;
}

/******************************** 
   事業内容ページ(service)
*********************************/
.service-page .service__container {
  margin-top: 160px;
  margin-bottom: 160px;
  display: flex;
}
@media screen and (max-width: 999px) {
  .service-page .service__container {
    display: block;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.service-page .side-nav {
  display: block;
  width: 270px;
}
@media screen and (max-width: 999px) {
  .service-page .side-nav {
    display: none;
  }
}
.service-page .service-nav-list {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 999px) {
  .service-page .service-nav-list {
    position: static;
  }
}
.service-page .side-nav-button {
  display: block;
  padding: 30px 0 30px 30px;
  background: #F5F5F5;
  border-bottom: 1px solid #fff;
}
.service-page .side-nav-button.active {
  background: #8f0000;
  color: #fff;
}
.service-page .service__sp-nav {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .service-page .service__sp-nav {
    display: none;
  }
}
.service-page .service__sp-nav__item {
  display: block;
  padding: 16px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.service-page .service__sp-nav__item:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/arrow-red.png) no-repeat center center/contain;
  top: 50%;
  right: 16px;
  transform: rotate(90deg) translateY(-50%);
}
.service-page .main-content {
  width: calc(100% - 250px - 8%);
  max-width: 100%;
  padding: 0 40px 0 8%;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .service-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .service-page .main-content {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
}
.service-page .main-content h2 {
  padding-top: 20px;
  margin: 0 0 40px 0;
  font-size: 32px;
  border-top: 2px solid #8f0000;
}
.service-page .main-content h2:not(:first-of-type) {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .service-page .main-content h2:not(:first-of-type) {
    margin-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .service-page .main-content h2 {
    font-size: 24px;
  }
}
.service-page .main-content h3 {
  margin: 60px 0 30px;
  padding: 3px 0 3px 16px;
  border-left: 2px solid #8f0000;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .service-page .main-content h3 {
    font-size: 20px;
  }
}
.service-page .main-content h4 {
  display: inline-block;
  margin: 40px 0 20px 0;
  background: #f5f5f5;
  padding: 4px 20px;
  font-size: 16px;
}
.service-page .main-content p {
  margin-bottom: 1.5em;
}
.service-page .main-content figure {
  margin: 0 0 1em;
}

/******************************** 
   活動報告ページ(report, single)
*********************************/
.report-page .report__cat-item,
.single-page .report__cat-item {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .report-page .report__cat-item,
.single-page .report__cat-item {
    padding: 10px;
  }
}
.report-page .report__cat-item::after,
.single-page .report__cat-item::after {
  position: absolute;
  content: "";
  background: #ddd;
  width: 1px;
  height: 20px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .report-page .report__cat-item::after,
.single-page .report__cat-item::after {
    width: 100%;
    height: 1px;
    top: 100%;
    left: 0;
  }
}
@media screen and (min-width: 1000px) {
  .report-page .report__cat-item:last-child::after,
.single-page .report__cat-item:last-child::after {
    content: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .report-page .report__cat-item:last-child::after,
.single-page .report__cat-item:last-child::after {
    content: none;
  }
}
.report-page .report__cat-item a,
.single-page .report__cat-item a {
  line-height: 44px;
}
.report-page .single__title,
.single-page .single__title {
  margin-top: 16px;
}
.report-page .single__content,
.single-page .single__content {
  margin-top: 60px;
  word-break: break-all;
}
.report-page .single__content p,
.single-page .single__content p {
  margin-bottom: 1.8em;
}
.report-page .single__content h2,
.single-page .single__content h2 {
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.report-page .single__content h3,
.single-page .single__content h3 {
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #8f0000;
}
.report-page .single__content a,
.single-page .single__content a {
  color: #8f0000;
  text-decoration: underline;
}
.report-page .single__content figure,
.single-page .single__content figure {
  margin: 0 0 1em;
}
.report-page .report__content,
.single-page .report__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .report-page .report__content,
.single-page .report__content {
    display: block;
  }
}
.report-page .report-main,
.single-page .report-main {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .report-page .report-main,
.single-page .report-main {
    width: 100%;
  }
}
.report-page .report-main .report__list,
.single-page .report-main .report__list {
  margin-top: 0;
}
.report-page .report-main .report__item a,
.single-page .report-main .report__item a {
  display: block;
  padding: 30px 10px 30px 0px;
}
@media screen and (max-width: 999px) {
  .report-page .report-main .report__item a,
.single-page .report-main .report__item a {
    display: block;
    padding: 30px 10px 30px 0px;
  }
}
.report-page .report-main .report__item::after,
.single-page .report-main .report__item::after {
  right: 10px;
  top: calc(100% - 24px);
}
.report-page .report-main .report__title,
.single-page .report-main .report__title {
  margin-left: 0;
  margin-top: 20px;
  width: 100%;
}
.report-page .report-side,
.single-page .report-side {
  width: 20%;
  margin-left: 10%;
  margin-top: -10px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .report-page .report-side,
.single-page .report-side {
    width: 22%;
    margin-left: 8%;
  }
}
@media screen and (max-width: 767px) {
  .report-page .report-side,
.single-page .report-side {
    width: 100%;
    margin: 80px 0;
  }
}
.report-page .report-side__head,
.single-page .report-side__head {
  font-size: 20px;
  font-weight: bold;
}
.report-page .report-side__list,
.single-page .report-side__list {
  margin-top: 10px;
  margin-bottom: 60px;
}
.report-page .report-side__list li,
.single-page .report-side__list li {
  padding-left: 20px;
  margin-top: 10px;
  font-size: 16px;
  position: relative;
}
.report-page .report-side__list li::before,
.single-page .report-side__list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 2px;
  background: #8f0000;
  top: 15px;
  left: 10px;
}
.report-page .report-side__list li .report-side__link,
.single-page .report-side__list li .report-side__link {
  display: block;
  line-height: 2;
  transition: all 0.4s ease 0s;
}
.report-page .report-side__list li .report-side__link:hover,
.single-page .report-side__list li .report-side__link:hover {
  transition: all 0.4s ease 0s;
  opacity: 0.7;
}
.report-page .report__pagination-wrapper,
.single-page .report__pagination-wrapper {
  margin: 80px auto 0;
  text-align: center;
}
.report-page .page-numbers,
.single-page .page-numbers {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin-left: 2px;
}
.report-page .page-numbers.current,
.single-page .page-numbers.current {
  background: #8f0000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .report-page .page-numbers,
.single-page .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 0px;
  }
}
.report-page .single__more-report,
.single-page .single__more-report {
  margin-top: 80px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

/******************************** 
   問い合わせページ(contact)
*********************************/
.contact-form__intro p {
  margin-bottom: 1.8em;
}
.contact-form__intro span {
  color: #8f0000;
}
.contact-form__intro a {
  text-decoration: underline;
}

.contact-form__wrapper {
  margin: 100px auto 0;
  width: 100%;
  background: #f5f5f5;
  padding: 0 60px 0;
}
@media screen and (max-width: 767px) {
  .contact-form__wrapper {
    padding: 0 16px 0;
  }
}

.contact-form__content {
  width: 760px;
  max-width: 100%;
  padding: 60px 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-form__content {
    padding: 20px 0 40px;
  }
}

.contact-form__attention {
  margin-top: 30px;
}
.contact-form__attention a {
  text-decoration: underline;
}

form {
  /* デフォルトのボタン */
  /* チェック前のボタン（ラジオボタン、チェックボックス） */
  /* チェック後のボタン */
}
@media screen and (min-width: 1000px) {
  form p {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form p {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  form p {
    margin-top: 30px;
  }
}
form p label {
  position: relative;
  color: #222;
}
@media screen and (min-width: 1000px) {
  form p label {
    display: flex;
    align-items: flex-start;
  }
  form p label .label-head {
    margin-top: 16px;
  }
}
form p .label-head {
  width: 220px;
  min-width: 220px;
}
@media screen and (min-width: 1000px) {
  form p .label-head {
    padding-left: 0px;
  }
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 16px 12px;
  width: 500px;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
    width: 500px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=date],
form select {
    margin-top: 8px;
    width: 100%;
  }
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=date]:focus,
form select:focus {
  border: 1px solid rgba(143, 0, 0, 0.32);
  box-shadow: 0px 0px 3px rgba(143, 0, 0, 0.32);
  outline: none;
}
form input[type=date] {
  width: 200px;
  padding: 10px 12px;
}
form select {
  background: #fff url(../img/select-arrow.png) no-repeat center right 8px/16px 16px;
  cursor: pointer;
}
form select::-ms-expand {
  display: none;
}
form select:focus {
  border: 1px solid rgba(143, 0, 0, 0.32);
  box-shadow: 0px 0px 3px rgba(143, 0, 0, 0.32);
  outline: none;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form select {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  form select {
    margin-top: 10px;
  }
}
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  padding: 12px;
  width: 500px;
  max-width: 100%;
  height: 240px;
  resize: vertical;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    width: 500px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  form textarea {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  form textarea {
    margin-top: 8px;
    width: 100%;
  }
}
form textarea:focus {
  border: 1px solid rgba(143, 0, 0, 0.32);
  box-shadow: 0px 0px 3px rgba(143, 0, 0, 0.32);
  outline: none;
}
form textarea.textarea-small {
  height: 76px;
}
@media screen and (max-width: 767px) {
  form textarea.textarea-small {
    height: 100px;
  }
}
form .wpcf7-form-control-wrap {
  width: 500px;
}
@media screen and (max-width: 767px) {
  form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
form .wpcf7-list-item {
  margin: 0;
  margin-right: 20px;
}
form .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  display: block;
}
form input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}
form .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #d9d9d9 !important;
  border-radius: 100%;
  content: "";
  width: 22px;
  height: 22px;
  margin-bottom: auto;
  margin-right: 8px;
  margin-top: auto;
}
form input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #009cab;
  /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 4px #fff;
  /* 中心の色のスタイル */
  width: 22px;
  height: 22px;
  border: 1px solid #d9d9d9 !important;
}
form .wpcf7-form-control-wrap {
  display: block;
}
form .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}
form .wpcf7-list-item-label {
  /*項目の色や文字サイズ*/
  color: #222;
  cursor: pointer;
}
form input[type=checkbox] {
  position: absolute;
  opacity: 0;
  /*既存のチェックボックスを見えなくする*/
}
form input[type=checkbox] + .wpcf7-list-item-label::before {
  border-radius: 2px;
}
form .wpcf7-list-item-label:before {
  /*チェックボックス、ラジオの枠*/
  content: "";
  border: 1px solid #d9d9d9;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: -1px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  /*チェックアイコン*/
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #8f0000;
  border-left: 3px solid #8f0000;
  content: "";
  display: block;
  height: 10px;
  margin-top: -1px;
  opacity: 1;
  position: absolute;
  top: 13px;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 22px;
}

.wpcf7-submit {
  -webkit-appearance: none;
  background-color: #fff;
  color: #8f0000;
  font-family: "Noto Serif JP", serif !important;
  background-image: none;
  border: 1px solid #8f0000;
  border-radius: 0;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 80px;
  padding: 0.8em 4em;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 1000px) {
  .wpcf7-submit {
    margin-left: 224px;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
  }
}
.wpcf7-submit:hover, .wpcf7-submit:focus {
  outline: none;
}
.wpcf7-submit:hover {
  transition: all 0.4s ease 0s;
  background-color: #8f0000;
  color: #fff;
}
.wpcf7-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.required {
  display: inline-block;
  color: #e31d23;
  font-size: 14px;
  line-height: 1;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .required {
    font-size: 12px;
  }
}

/******************************** 
   固定ページ
*********************************/
.page__content {
  margin-top: 60px;
  word-break: break-all;
}
.page__content p {
  margin-bottom: 1.8em;
}
.page__content h1 {
  line-height: 1.8;
  font-size: 2em;
  margin: 0 0 0.7em;
}
@media screen and (max-width: 767px) {
  .page__content h1 {
    font-size: 1.7em;
  }
}
.page__content h2 {
  line-height: 1.8;
  font-size: 1.5em;
  margin: 2.5em 0 0.7em;
}
.page__content h3 {
  line-height: 1.8;
  font-size: 1.17em;
  margin: 2.6em 0 0.9em;
  padding: 0px 0 0px 10px;
  border-left: 2px solid #8f0000;
}
.page__content a {
  color: #8f0000;
  text-decoration: underline;
}
.page__content figure {
  margin: 0 0 1em;
}

/******************************** 
   404ページ
*********************************/
.not-found-page .not-found {
  margin-top: 80px;
}
.not-found-page .not-found-title {
  font-size: 38px;
  font-weight: 600;
  color: #8f0000;
  text-align: center;
}
.not-found-page .not-found-text {
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}
.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;
}