@charset "UTF-8";
/*=================================================
				media query
=================================================*/
/*=================================================
				color
=================================================*/
.bg--mainColor {
  background-color: #0b2640;
  color: #fff;
}

.bg--accentColor {
  background-color: #c49338;
  color: #fff;
}

.bg--accentLightColor {
  background-color: rgba(223, 229, 255, 0.9490196078);
}

.bg--subColor {
  background-color: #3bd6ff;
}

/*=================================================
				fonts
=================================================*/
.noto-sans-bold {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*=================================================
				header
=================================================*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgb(14, 14, 14);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 300px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

.header {
  background-color: transparent;
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 3;
  top: 0;
}

.nav {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 18% 70% 12%;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .nav {
    padding: 1rem;
    grid-template-columns: 12% 83% 5%;
  }
}
.nav h1 {
  font-size: 1rem;
  margin-bottom: 0;
}
.nav__logo {
  width: 100%;
  max-width: 140px;
}
.nav__logo img {
  width: 100%;
}
.nav__cta {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .nav__cta {
    gap: 1rem;
  }
}
.nav__cta__msg {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .nav__cta__msg {
    font-size: 1rem;
    line-height: 1.3;
  }
}
@media screen and (min-width: 768px) {
  .nav__cta__msg .sp {
    display: none;
  }
}
.nav__cta__info {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .nav__cta__info {
    font-size: 12px;
  }
}
.nav__cta__tel {
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background-color: #c49338;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .nav__cta__tel {
    width: auto;
  }
}
.nav__cta__tel .pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav__cta__tel .pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .nav__menu {
    display: flex;
  }
}
.nav__menu li {
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .nav__menu li:last-child {
    margin-right: 0;
  }
}
.nav__menu li a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .nav {
    padding: 1rem;
  }
}

.hamburger {
  display: block;
  position: absolute;
  z-index: 100;
  right: 8px;
  top: 6px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hamburger {
    right: 13px;
    top: 12px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #0b2640;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.globalMenuSp {
  color: #fff;
  text-align: center;
  background: rgba(11, 38, 64, 0.7);
  width: 100%;
  padding: 1rem 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease, display 0.6s ease;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .globalMenuSp {
    width: 300px;
    height: 100vh;
    right: 0;
    left: auto;
  }
}

.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}

.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

.globalMenuSp ul li:hover {
  background: #ddd;
}

.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

.globalMenuSp.active {
  opacity: 1;
  display: block;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
}

.breadcrumb ol li {
  margin-right: 1rem;
  position: relative;
}

.breadcrumb ol li::after {
  border: 0px;
  border-top: solid 1px #525252;
  border-right: solid 1px #525252;
  content: "";
  height: 6px;
  position: absolute;
  right: -9px;
  width: 6px;
  top: calc(50% - 3px);
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.breadcrumb ol li:last-child::after {
  content: none;
}

.wrap {
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .wrap {
    margin-top: 5rem;
  }
}

.wrap--inner > * {
  margin-top: 2rem;
}

.wrap--inner > :last-child {
  margin-bottom: 2rem;
}

.top__mainVisual {
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -70px;
  display: flex;
  height: calc(100vh + 70px);
  justify-content: center;
  position: relative;
  width: 100%;
}

.page__mainVisual {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 300px;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .page__mainVisual {
    height: 460px;
  }
}

.mainVisual__catch {
  color: #fff;
  text-align: center;
  background-color: #0b2640;
  padding: 2.25rem 1rem 2.75rem;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media screen and (min-width: 768px) {
  .mainVisual__catch {
    width: 55%;
    max-width: 700px;
  }
}

.mainVisual__catch h2 {
  color: #ffcd20;
  font-size: 1.5rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .mainVisual__catch h2 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .mainVisual__catch h2 {
    font-size: 2.5rem;
  }
}

.mainVisual__catch p {
  font-size: 0.95rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .mainVisual__catch p {
    font-size: 1.2rem;
  }
}

.cta__msg {
  font-weight: 600;
  font-size: 20px;
  display: inline;
  position: relative;
}
.cta__msg::before, .cta__msg::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  width: 2px;
  height: 24px;
  background-color: #0b2640;
}
.cta__msg::before {
  left: -12px;
  transform: rotate(-35deg);
}
.cta__msg::after {
  right: -12px;
  transform: rotate(35deg);
}

.news__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
}
.news__item h3 {
  font-size: 16px;
}

.cardWrap {
  margin-bottom: 1rem;
}

.overlay--showBlack + .cards__bg--change {
  background-color: #eee;
  transition: all 0.8s ease;
}

.overlay--showBlack:hover + .cards__bg--change, .cards__bg--change:hover {
  background-color: #0b2640;
  color: #fff;
  transition: all 0.8s ease;
}

.cards div {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .cards div {
    margin-bottom: 0;
  }
}
.cards div:last-child {
  margin-bottom: 0;
}
.cards__detail {
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
}
.cards__detail h3 {
  font-size: 0.9rem;
}
.cards__detail p {
  font-size: 0.8rem;
}
.cards__inner {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cards figure {
  height: 250px;
  width: 100%;
  overflow: hidden;
}
.cards img {
  width: 100%;
  height: auto;
}
.cards > .cardWrap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cards > .cardWrap {
    width: 49.8%;
  }
}
@media screen and (min-width: 768px) {
  .cards {
    gap: 1rem;
  }
}

#concept .container {
  margin: 200px auto;
}

.concept__img img {
  max-width: 450px;
}

.case img {
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .case .cards {
    margin-inline: 1rem;
  }
}
.case__list {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .case__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.case__img {
  width: 100%;
  height: 220px;
}

.service__list {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .service__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) {
  #service .service__list {
    padding-inline: 2rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "i1 i2 i3 ." "i4 i5 i6 ." "i7 i8 i9 i10";
  }
}
.service__content {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #service .service__content:nth-child(1), #service .service__content:nth-child(2), #service .service__content:nth-child(3), #service .service__content:nth-child(4), #service .service__content:nth-child(5), #service .service__content:nth-child(6) {
    grid-column: span 2;
  }
}
.service__thumb {
  background-size: 300px;
}
.service__title {
  font-size: 1rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.service__btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.service__detail {
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
}
.service__detail p {
  font-size: 0.9rem;
  line-height: 1.25;
}

.item__list {
  margin-top: 4rem;
}
.item__list h3 {
  font-size: 1.1rem;
  padding-bottom: 8px;
  margin-block: 2rem 1.5rem;
}
.item__maker {
  font-size: 1.25rem;
  font-weight: 600;
}
.item__title {
  font-size: 1rem;
  margin-top: 1rem;
}
.item__option {
  font-size: 0.85rem;
  margin-top: 0 !important;
}
.item__price {
  font-size: 2rem;
  font-weight: 600;
  color: #c49338;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-top: 0 !important;
}
.item__detail {
  margin-top: 0.5rem !important;
  font-size: 0.9rem;
}
.item__pricetable.wp-block-table th, .item__pricetable.wp-block-table td {
  border: none;
  padding: 0.5rem 0;
}
.item__pricetable.wp-block-table tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .item__pricetable.wp-block-table tr {
    flex-direction: row;
  }
}
.item__pricetable.wp-block-table tr td {
  font-weight: 600;
  font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
  .item__pricetable.wp-block-table tr td {
    font-size: 1.1rem;
    width: 50%;
  }
}

#flow {
  background-color: rgba(223, 229, 255, 0.9490196078);
}

.flow {
  background: #f9fafb;
  text-align: center;
  padding: 80px 20px;
}
.flow__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 60px;
}
.flow__steps {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .flow__steps {
    padding-inline: 2rem;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    margin-inline: auto;
    max-width: 1600px;
  }
}
@media screen and (min-width: 992px) {
  .flow__steps {
    grid-template-columns: repeat(5, 1fr);
  }
}
.flow__step {
  background: #fff;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.08);
  width: 90%;
  height: 252px;
  padding: 24px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__step {
    width: 100%;
    max-width: 320px;
  }
}
.flow__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.flow__icon img {
  width: 54px;
  height: 50px;
  object-fit: contain;
}
.flow__step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.flow__text {
  font-size: 0.9rem;
  line-height: 1.6;
}

#feature {
  background-size: cover;
  background-image: url("../img/feature__bg.jpg");
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #feature {
    min-height: 560px;
  }
}

.feature__title {
  -webkit-text-stroke: 3px white;
  paint-order: stroke;
}
.feature__title + .subTtl--en {
  -webkit-text-stroke: 2px white;
  paint-order: stroke;
}

.featureBox div {
  background-color: rgba(223, 229, 255, 0.95);
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 2rem;
  width: 55vw;
}
@media screen and (min-width: 768px) {
  .featureBox div {
    height: 288px;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-right: 1rem;
    width: 288px;
  }
}

.voice {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .voice {
    padding: 2rem 1.75rem;
  }
}
.voice__detail {
  background: white;
  padding: 1rem 1.25rem;
  height: 300px;
  margin-inline: 2.5rem;
  white-space: initial;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .voice__detail {
    padding: 1.25rem 1.5rem;
    margin-inline: 1rem;
  }
}
.voice__detail h3 {
  font-size: 1.2rem;
}
.voice__detail h4 {
  font-size: 0.9rem;
  color: #707070;
}
.voice__detail .description {
  font-size: 0.9rem;
}

.faq__content dd {
  font-size: 0.9rem;
  line-height: 1.5;
}

.dropdown__body {
  display: none;
  padding: 1rem;
}

.dropdown__btn {
  background-color: #EDEDED;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
}

.dropdown__btn:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.dropdown__btn.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.dropdown__list {
  line-height: 1.5;
}

.company {
  padding: 80px 20px;
  background: #f9fafb;
}
.company__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #333;
}
.company__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 2rem auto;
  gap: 40px;
}
.company__info {
  flex: 1 1 45%;
  margin-top: 2rem;
  padding: 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .company__info {
    margin-top: 2rem;
  }
}
.company__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company__row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
.company__term {
  width: 30%;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}
.company__desc {
  width: 70%;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.company__map {
  flex: 1 1 45%;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company__inner {
    flex-direction: column;
  }
  .company__info, .company__map {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .company__term, .company__desc {
    width: 100%;
  }
  .company__term {
    margin-bottom: 4px;
    color: #666;
  }
}

.postLinks {
  font-size: 0.8rem;
  border-top: 1px solid #ccc;
  flex-direction: row;
  justify-content: space-between;
  padding: 2rem 0;
}
.postLinks p {
  margin-top: 1rem;
}

.p--basic h2.wp-block-heading {
  color: #fff;
  background-color: #0b2640;
  border-left: 12px solid #c49338;
  padding: 4px 12px;
}
.p--basic h2.wp-block-heading:nth-of-type(n+2) {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p--basic h2.wp-block-heading:nth-of-type(n+2) {
    margin-top: 8rem;
  }
}
.p--basic h3.wp-block-heading {
  border-bottom: 2px solid #dce7f9;
}

.slider img,
.slider video,
.sliderBox iframe {
  width: 100%;
  height: auto;
}

#news img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.slideIn--fromLeft {
  opacity: 0;
  transform: translateX(-10%);
  transition: all 800ms;
  margin-bottom: 30px;
}

.slideIn--fromLeft.scrollin {
  opacity: 1;
  transform: translateX(0);
}

.popUp--fromCenter {
  transform: scale(0.8, 0.8);
  opacity: 0;
}

.popUp--fromCenter.scrollin {
  opacity: 1;
  transform: scale(1, 1);
  transition: all 0.5s ease-in;
}

.fadeIn {
  opacity: 0;
}

.fadeIn.scrollin {
  opacity: 1;
  transition: all 2s ease;
}

.overlay--rotateZ, .overlay--rotateX, .overlay--rotateY, .overlay--showBlack {
  position: relative;
}

.overlay--rotateZ::after, .overlay--rotateX::after, .overlay--rotateY::after, .overlay--showBlack::after {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  content: "詳細を見る";
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: all 0.8s ease;
  width: 100%;
}

.overlay--rotateZ:hover::after {
  opacity: 1;
  transform: rotate3d(1, 1, 1, 360deg);
}

.overlay--rotateX:hover::after {
  opacity: 1;
  transform: rotateX(360deg);
}

.overlay--rotateY:hover::after {
  opacity: 1;
  transform: rotateY(360deg);
}

.overlay--showBlack:hover::after {
  opacity: 1;
}

.tiles .icon {
  margin: auto;
  width: 30%;
}

.tiles__header {
  margin-top: 1rem;
}

.contactForm dt {
  margin-top: 2rem;
}

.contactForm dd {
  margin-top: 1rem;
}

.contactForm__btn {
  margin-top: 2rem;
}

.box--blur {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
}

.ctaBlock {
  margin-top: 4rem;
}

@media (min-width: 992px) {
  .nav.small {
    padding: 0.2rem 2rem;
  }
  .nav.small img {
    width: 100px;
    transition: 0.3s;
  }
  .nav.small .nav__menu {
    font-size: 0.8rem;
    transition: 0.3s;
  }
  .flexBox--reverse {
    flex-direction: row-reverse;
  }
  #news .cards > div, #works .cards > div {
    max-width: 342px;
  }
  .arrow-r {
    border-left: 30px solid #bdbdbd;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    right: -40px;
    top: calc(50% - 30px);
  }
  .flow {
    align-items: initial;
  }
  .flow div {
    width: calc((100% - 64px) / 3);
  }
  .flow div::before {
    left: -25px;
    top: calc(50% - 6px);
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .dropdown {
    max-width: 600px;
  }
  .flow div:not(:first-child) {
    margin-left: 2rem;
  }
  .box--narrow {
    margin: 1rem auto;
    max-width: 700px;
    padding: 0 3rem;
  }
}
/*=================================================
				text
=================================================*/
.page__mainVisual h1 {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.subTtl--en {
  display: block;
  font-size: 0.8rem;
  margin-top: 0 !important;
}

.additional {
  color: #777777;
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.archive__summary {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.single__content h2, .single__content h3, .single__content h4, .single__content h5, .single__content h6 {
  font-weight: 700;
  margin-top: 3rem;
}

.single__content p, .single__content ul {
  line-height: 2;
  margin-top: 1.2rem;
}

.single__content ul {
  list-style: disc;
  margin-left: 1.2rem;
  word-wrap: break-word;
}

.moreInfo {
  margin-right: -1rem;
  font-size: 0.9rem;
  text-align: right;
}

.moreInfo::after {
  content: "→";
  opacity: 0;
  transition: all 0.8s ease;
}

.cards__detail:hover .moreInfo::after {
  margin-right: 1rem;
  opacity: 1;
  transition: all 0.8s ease;
}

.article__catch {
  align-items: center;
  display: flex;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 0;
  text-align: center;
}

.article__catch::before, .article__catch::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ccc;
}

.article__catch::before {
  margin-right: 1rem;
}

.article__catch::after {
  margin-left: 1rem;
}

.required {
  position: relative;
}

.required::after {
  color: #ff5a5a;
  content: "必須";
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.3;
  margin-left: 0.5rem;
  position: absolute;
}

blockquote, q {
  background-color: #eee;
  padding: 1rem;
  position: relative;
}

blockquote p::before, q p::before {
  color: #fff;
  content: "”";
  font-size: 3rem;
  left: 5px;
  line-height: 1;
  position: absolute;
  top: 0;
}

blockquote p::after, q p::after {
  color: #fff;
  content: "”";
  font-size: 3rem;
  right: 5px;
  line-height: 0.3;
  position: absolute;
  bottom: 0;
}

.single__content blockquote, .single__content q {
  margin-top: 1.2rem;
}

.single__content blockquote p, .single__content q p {
  margin-top: 0;
}

.single__content figure {
  margin-top: 2rem;
}

cite {
  border-top: 1px solid #fff;
  color: #333;
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

@media (min-width: 992px) {
  .article__catch {
    font-size: 1.6rem;
  }
  blockquote, q {
    padding: 2rem;
  }
  blockquote p::before, q p::before {
    left: 0.5rem;
    top: 0.5rem;
  }
  blockquote p::after, q p::after {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}
.link--text {
  text-decoration: underline;
  color: blue;
}

/*=================================================
				table
=================================================*/
table {
  margin-top: 1rem;
}

.table--normal, .table--horizontal {
  border-collapse: collapse;
  width: 100%;
}

.table--normal th, .table--normal td, .table--horizontal th, .table--horizontal td {
  border: 1px solid #ccc;
  display: block;
  padding: 0.5rem;
  width: 100%;
}

.table--normal th, .table--horizontal th {
  background-color: #efefef;
}

.table--normal tr:nth-child(n+2) th, .table--horizontal tr:nth-child(n+2) th {
  border-top: none;
}

.table--normal td, .table--horizontal td {
  border-top: none;
}

@media (min-width: 992px) {
  .table--normal th, .table--normal td {
    display: table-cell;
    padding: 0.8rem;
  }
  .table--normal th {
    width: 25%;
  }
  .table--normal td {
    width: auto;
  }
  .table--normal tr:first-child td {
    border-top: 1px solid #ccc;
  }
  .table--horizontal {
    display: flex;
  }
  .table--horizontal tr:nth-child(n+2) {
    border-top: 1px solid #ccc;
  }
  .table--horizontal tr:nth-child(n+2) th, .table--horizontal tr:nth-child(n+2) td {
    border-left: none;
  }
  .table--horizontal tbody {
    display: flex;
    width: 100%;
  }
  .table--horizontal tr {
    width: inherit;
  }
}
/*=================================================
				button
=================================================*/
.normalBtn {
  display: inline-block;
  padding: 1rem 1.5rem;
  position: relative;
  transition: 0.8s ease all;
}

.textBtn {
  text-decoration: underline;
  font-size: 0.8rem;
}

.bg--mainColor.btnAnimation-01:hover {
  background-color: #fff;
  color: #3e3e3e;
}

.bg--mainColor.btnAnimation-01::before, .bg--mainColor.btnAnimation-01::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #1AAB8A;
  transition: 400ms ease all;
}

.bg--mainColor.btnAnimation-01::after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}

.bg--mainColor.btnAnimation-01:hover::before, .bg--mainColor.btnAnimation-01:hover::after {
  width: 100%;
  transition: 0.8s ease all;
}

/*=================================================
				footer
=================================================*/
#footer .flexBox {
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  #footer .flexBox {
    align-items: end;
  }
}

.footer__companyName {
  font-size: 1.2rem;
}

.footer__companyInfo {
  margin-top: 1rem;
}
.footer__companyInfo li:not(:first-of-type) {
  margin-top: 1rem;
}

.footerMenu {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .footerMenu {
    margin-top: 0;
  }
}
.footerMenu li {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
}
.footerMenu li::before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: #0b2640;
  margin-right: 6px;
}
.footerMenu li > a {
  color: #0b2640;
}

.footer__logo {
  width: 200px;
  margin: 0 auto;
}

#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 1rem;
  background-color: #3e3e3e;
  width: 50px;
  height: 50px;
  line-height: 1.2;
}

.arrow-top {
  content: "";
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  height: 14px;
  left: 18px;
  position: absolute;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: 0.5s all ease;
  top: 20px;
  width: 14px;
}

#page-top:hover .arrow-top {
  transition: 0.5s all ease;
  top: 10px;
}

.copyright {
  text-align: center;
  padding: 1rem 0;
}

/*=================================================
				slick slide
=================================================*/
.slick-slide li {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.slick-slide iframe {
  width: 100%;
}

.slick-dots li button:before {
  color: #c49338 !important;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  color: #0b2640 !important;
  opacity: 1 !important;
}

.slick-prev, .slick-next {
  top: 50% !important;
}
.slick-prev::before, .slick-prev::after, .slick-next::before, .slick-next::after {
  color: #0b2640 !important;
}

.slick-prev::before {
  content: "＜" !important;
}

.slick-next::before {
  content: "＞" !important;
}

@media screen and (min-width: 768px) {
  .slick-next {
    right: -15px !important;
  }
  .slick-prev {
    left: -15px !important;
  }
}/*# sourceMappingURL=common.css.map */