/*
Theme Name: FurusapoHP
Author: 松崎
Description: フルサポサイトのホームページ
Version: 1.0
*/
@charset "UTF-8";

/* ====== 共通 ====== */

body {
    background: #F7F7F0;
    font-family: Sawarabi Mincho, serif;
    margin: 0;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

header .navbar-brand {
  width: 20%;
}

header .navbar-brand .logo {
  width: 100%;
}

header .tel {
  font-size: 2rem;
  color: #fff;
}

header .tel a {
  color: #fff;
}


/* ナビゲーション */
#g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #d1c6b3d9;
    transition: all 0.9s;
}
#g-nav a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 110%;
    letter-spacing: 0.1em;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 0;
}

#g-nav li{
  list-style: none;
    text-align: center;
}
#g-nav li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#g-nav li a.nav-link {
    background: url(https://furusapo.jp/main/html/user_data/assets/img/common/link.svg) no-repeat left center;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 0.8em;
}
.openbtn1 {
    position: absolute;
    z-index: 9999;
    bottom: 4em;
    right: 10px;
    cursor: pointer;
    width: 7%;
    height: 25%;
}
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}
.openbtn1 span:nth-of-type(1) {
    top: 0.5em;
}
.openbtn1 span:nth-of-type(2) {
    top: 1.25em;
}
.openbtn1 span:nth-of-type(3) {
    top: 2em;
}
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}

.navbar-dark .navbar-toggler {
    color: #000;
    border-color: #000;
}
.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2% 0 3%;
    width: 100%;
}
.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-collapse {
    flex-basis: 100%;
    align-items: center;
    flex-grow: inherit;
}
.navbar>.container, .navbar>.container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: end;
}
.navbar-dark .navbar-toggler {
    color: #000;
    border-color: #f7f7f0;
}
.navbar-dark .navbar-toggler-icon {
    background-image: none;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background: #000;
}
.nav-btn {
    display: flex;
    justify-content: center;
    margin: 2em 0 0;
}
.nav-btn a {
    width: 200px;
    border: 1px solid #000;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    padding: 5px;
}
.nav-btn a:hover {
    background: #000;
    transition: 0.6s;
    color: #fff !important;
}
.logo {
    margin: 1% auto 0;
    text-align: center;
}
.logo img {width: 65%;}

.anim-box.fadeup.is-animated {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

main {
    width: 991.98px;
    margin: 2em auto 6em;
}
.item_sc {
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 2em;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 5em 0 0;
}
p.item_sc_ttl {
    font-weight: bold;
    font-size: 130%;
}
.item_sc hr {
    width: 40px;
    height: 0.5px;
    background: #000;
    margin-bottom: 1em;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== TOTOP ====== */
/* ページトップ */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 80%;
}
#page-top a {
    background: #66666673;
    text-decoration: none;
    color: #fff;
    width: 90px;
    padding: 20px 0;
    text-align: center;
    display: block;
    position: relative;
    padding-top: 35px;
}
#page-top a::before {
    content: "";
    width: 1em;
    height: 1em;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    display: inline-block;
    margin: -19% auto;
    margin-left: 5px;
    top: 40%;
    left: 35%;
}
#page-top a:hover {
  text-decoration: none;
  background: #999;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #6c757d !important;
}

/* ====== TOP IMAGE ====== */

header.top-page {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    width: 70%;
}

.jumbotron {
  background-image: url(../img/main-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.jumbotron .bg-rgba {
  background-color: rgba(255, 255, 255, 0.9);
}

.jumbotron h1 {
  word-wrap: break-word;
}

.jumbotron h2 {
  line-height: 1.8rem;
}

/* ====== TOPPAGE SECTION ====== */

#sec1 .card:nth-of-type(2) {
  border-left: none;
  border-right: none;
}

.ttl-bdr {
  font-size: 3rem;
  line-height: 1.5;
  position: relative;
  margin-bottom: 50px;
}

.ttl-bdr::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 5px solid #000;
  width: 12%;
  margin: 0 auto -15px;
}

#sec3 {
  background-image: url("../img/bg-staff.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#sec4 table {
  width: 100%;
  background-color: #CCC;
  font: 12px;
  color: #666;
  table-layout: fixed;
  border-collapse: collapse;
}

#sec4 table th,
#sec4 table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ccc;
}

#sec4 table th {
  background-color: #002795;
  color: #fff;
}

#sec4 table td {
  width: 14.2%;
}

#sec4 table td:nth-child(7n) {
  background-color: #5197E0;
  color: #fff;
}

#sec4 table td:nth-child(7n+1) {
  background-color: #FF8A8C;
  color: #fff;
}

/* ====== SNS ====== */
.social img {
  width: 36px;
  height: 36px;
}

/* ====== SNS ====== */

iframe {
  width: 100%;
  height: 450px;
}

/* ====== FOOTER ====== */
/* フッター */
footer h2 {
    text-align: center;
    padding: 1.2em 0 1em;
    margin: 0;
}
.footer_container {
    width: 40%;
    margin: 0 auto 40px;
}
.footer_container h5 {
    font-size: 1.6em;
    display: flex;
    margin-block: 0;
    padding: 0 1% 4% 0;
    justify-content: center;
}
.footer_container h5 img {
    padding-right: 10px;
}
.footer_info ul {
    list-style: none;
    align-self: end;
    line-height: 2.5em;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}
table.col-1 {
    margin: 0 auto;
    line-height: 2em;
}

.footer_info ul.col-2 {
    margin: 2em auto;
}
.footer_info ul.col-2 li {
    padding: 1% 1.5%;
}
.footer_info ul li {
    display: flex;
}
.footer_info ul li a {
    background: url(https://furusapo.jp/main/html/user_data/assets/img/common/link.svg) no-repeat left center;
    padding-left: .8em;
    box-sizing: border-box;
    display: inline-block;
}
.footer_info a {
    color: #000;
    text-decoration: none;
}
.footer_dtl {
    width: 70%;
    margin: 0 auto 25px;
    border-bottom: 1px solid #DBDBDB;
    padding-bottom: 15px;
}
.footer_dtl ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer_dtl ul li {
    flex: 0 49%;
}
.footer_dtl ul li .infoList .infoSub {
    border-bottom: 1px solid #DBDBDB;
    font-weight: bold;
    font-size: 110%;
}
.infoTxt, .infoNote {
    line-height: 1.5em;
    font-size: 95%;
    letter-spacing: 0.05em;
}

/* コピーライト */
.footer_copyright {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    font-size: 75%;
    letter-spacing: 0.1em;
    padding: 1em;
}
.p_mark img {
    width: 8%;
    margin: 2% 0 0 5%;
}

/* =============================================
メディアクエリ
============================================= */

/* 大デバイス（デスクトップ, 1200px 未満）
==============================================*/
@media screen and (max-width: 1199.98px) {
.logo img {
    width: 60%;
}
header.top-page {
    width: 85%;
}
}

/* END */
/* 中デバイス（タブレット, 992px 未満）
==============================================*/
@media screen and (max-width: 991.98px) {
  .container {
    max-width: 740px;
  }
  main {
    width: 100%;
}
  .footer_dtl ul li {
    flex: 100%;
}
.footer_info ul {
    flex: 100%;
}
.footer_info ul.col-1 {
    border-bottom: 1px solid #DBDBDB;
    padding: 0 0 25px 5%;
    margin-bottom: 25px;
}
}

/* END */
/* 小デバイス（横向きモバイル, 768px 未満）
==============================================*/
@media screen and (max-width: 767.98px) {
header.top-page {
    width: 100%;
}
.openbtn1 {
    top: 35%;
    width: 14%;
    height: 14%;
}
.openbtn1 span {
    width: 1.7em;
}
}

/* END */
/* 極小デバイス（縦向きモバイル, 576px 未満）
==============================================*/
@media screen and (max-width: 575.98px) {
  .display-3 {
    line-height: 0.8em;
  }

  .display-4 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .footer_dtl {
    width: 90%;
}
.footer_container {
    width: 90%;
}
.infoTxt, .infoNote {
    line-height: 1.1em;
    font-size: .8em;
    letter-spacing: 0.05em;
}
.footer_info ul.col-1 {
    border-bottom: none;
    padding-bottom: 0;
    font-size: .8em;
}
.footer_info ul.col-2 {
    display: none;
}
.p_mark img {
    width: 15%;
}
table.col-1 {
    font-size: 90%;
}
}

/* END */
