@charset "UTF-8";

/* ベースのスタイル
------------------------------------------ */
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}

a {
  color: #000;
  text-decoration: none;
}

a,
a:hover,
a i {
  transition: all 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

/* 部品
------------------------------------------ */

/* flexbox */
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outfitフォント */
.outfit {
  font-family: Outfit, sans-serif;
}

/* 文字の太さmedium */
.medium {
  font-weight: 500;
}

/* 各セクションの左右の余白 */
.business,
.works,
.news,
.contact {
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

/* コンテナ */
.container {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 67.5rem;
  margin: auto;
}

@media (min-width: 768px) {
  .container {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

/* セクションタイトル */
.section-title {
  margin-bottom: 2.5rem;
  font-size: 2.1875rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 3rem;
  }
}

/* ボタン */
.button {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  border-radius: 3rem;
}

.button-icon {
  position: absolute;
  top: 46%;
  right: 1.75rem;
  line-height: 1;
  transform: translate(0%, -50%);
}

@media (min-width: 768px) {
  .button-icon {
    top: 50%;
    right: 1.25rem;
  }
}

.button:hover .button-icon {
  margin-right: -0.5625rem;
}


/* 白色ボタン */
.button-white-ghost {
  width: 21.875rem;
  padding-top: 1rem;
  padding-bottom: 1.275rem;
  font-size: 1.25rem;
  border: .125rem solid #fff;
}

@media (min-width: 768px) {
  .button-white-ghost {
    width: 31.25rem;
  }
}

.button-white-ghost:hover {
  color: #000;
  background-color: #fff;
}

.button-white-ghost-icon {
  font-size: 2.6875rem;
  right: 1.4rem;
  transform: translate(0%, -50%);
}

@media (min-width: 768px) {
  .button-white-ghost-icon {
    right: 1rem;
  }
}



/* ヘッダー
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 .625rem 0 rgb(0 0 0 / 20%);
}

@media (min-width: 768px) {
  .header {
    top: 1.25rem;
    max-width: 67.5rem;
    margin: auto;
  }
}


/* ロゴ */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  line-height: 0;
}

/* ハンバーガーボタン */
.hamburger-button {
  width: 4.75rem;
  height: 5rem;
  font-size: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hamburger-button {
    display: none;
  }
}

.hamburger-button i {
  line-height: 0;
}


/* ハンバーガーメニュー、ヘッダーナビ
------------------------------------------ */
@media (max-width: 767px) {
  .hamburger-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5rem);
    background-color: #fff;
    transition: all 0.6s;
    transform: translateX(100%);
  }
}

/* アクティブ状態 */
.hamburger-menu-active {
  transform: translateX(0);
}

/* ナビゲーション */
@media (max-width: 767px) {
  .hamburger-menu-list-group {
    display: table;
    width: 100vw;
    font-size: 1.875rem;
    border-top: 0.0625rem solid #000;
  }
}

@media (min-width: 768px) {
  .header-nav-list-group {
    column-gap: 1.56rem;
    height: 100%;
    padding-right: 1.6rem;
    line-height: 1;
  }
}


@media (max-width: 767px) {
  .hamburger-menu-list-group a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.72rem 2rem;
    line-height: 1;
    border-bottom: 0.0625rem solid #000;
  }

  .hamburger-menu-list-group li:nth-child(4) a,
  .hamburger-menu-list-group li:nth-child(5) a {
    padding: 1.5rem 2rem 1.95rem;
  }

  .hamburger-menu-list-group li:nth-child(4) a::after,
  .hamburger-menu-list-group li:nth-child(5) a::after {
    padding-top: .25rem;
  }
}

/* 右矢印アイコン */
@media (max-width: 767px) {
  .hamburger-menu-list-group a::after {
    font-family: bootstrap-icons;
    font-size: 1.5rem;
    content: "\F285";
  }
}

@media (min-width: 768px) {
  .header-nav a:hover {
    color: #555;
  }
}

/* カバー
------------------------------------------ */
.cover {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .cover {
    margin-top: 0;
  }
}


/* コンテナ */
.cover-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .cover-container {
    flex-direction: row-reverse;
  }
}


/* カバー画像 */
.cover-top {
  height: 20.625rem;
  background-color: #fff;
  background-image: url("../images/cover/cover_bg_sp.png");
  background-position: center;
  background-size: 100%;
}

@media (min-width: 768px) {
  .cover-top {
    width: 50%;
    height: 100vh;
    background-image: url("../images/cover/cover_bg_pc.png");
    background-position: left center;
    background-size: unset;
  }
}

/* カバーテキスト */
@media (min-width: 768px) {
  .cover-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
  }
}

/* カバーキャッチコピー */
.cover-catch {
  margin: 3rem 1.25rem 2.7rem;
}


@media (min-width: 768px) {
  .cover-catch {
    width: 33.75rem;
    margin: .4rem 0 0 auto;
  }
}


/* カバータイトル */
.cover-title {
  display: table;
  margin-bottom: 0.7rem;
  font-size: 2.5625rem;
  font-weight: 500;
  color: #000;
  line-height: 1;
}

@media (min-width: 768px) {
  .cover-title {
    font-size: 3.15rem;
    line-height: 1;
  }

  .cover-title:nth-child(1) {
    margin-bottom: 1.2rem;
  }


}


/* カバー説明 */
.cover-description {
  display: block;
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 2;
}

@media (min-width: 768px) {
  .cover-description {
    margin-top: 1.8rem;
    font-size: 1.1875rem;
  }
}

/* スクロール */
.cover-scroll {
  display: none;
}

@media (min-width: 768px) {
  .cover-scroll {
    position: absolute;
    bottom: 3.5rem;
    display: block;
    font-size: .8125rem;
    letter-spacing: 0.1rem;
    transform: rotate(-90deg);
    height: 2.1rem;
  }
}

@media (min-width: 1081px) {
  .cover-scroll {
    right: 30.5rem;
    left: auto;
  }
}

.cover-scroll::after {
  background-color: #555;
  position: absolute;
  right: 0.25rem;
  bottom: 1.75rem;
  width: 6.1rem;
  height: .125rem;
  content: "";
  letter-spacing: 0.1rem;
}


/* about
------------------------------------------ */
.about {
  height: 35rem;
  padding: 6.25rem 1.25rem;
  background-image: url("../images/about/about_bg_sp.png");
  background-size: cover;
}

@media (min-width: 768px) {
  .about {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    background-image: url("../images/about/about_bg_pc.png");
    background-position: center center;
  }
}

/* コンテナ */
.about-container {
  padding: 2.5rem 1.75rem 2.35rem;
  background-color: rgb(255 255 255 / 90%);
  border-radius: 1.875rem;
  box-shadow: 0 0 1.5188rem 0.1688rem rgb(0 0 0 / 25%);
}

@media (min-width: 768px) {
  .about-container {
    padding: 4.35rem 5rem 4.5rem;
    max-width: 61rem;
    margin: 0 auto;
    background-color: #fff;
  }
}

/* タイトル */
.about-title {
  position: relative;
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  letter-spacing: 0.015em;
  margin-bottom: 1rem;
  padding: 1.1rem 0 1.35rem;
  line-height: 1;
  border-top: 0.1875rem solid #000;
  border-bottom: 0.1875rem solid #000;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 1.95rem;
    padding: .5rem 0;
    margin-bottom: .8rem;
    border: none;
  }
}

@media (min-width: 768px) {

  .about-title::before,
  .about-title::after {
    position: absolute;
    top: 50%;
    width: 3.125rem;
    height: 0.1875rem;
    content: "";
    background-color: #000;
  }

  .about-title::before {
    right: calc(55% + 11.25rem);
  }

  .about-title::after {
    left: calc(55% + 11.25rem);
  }
}

/* 説明 */
.about-description {
  line-height: 1.8;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .about-description {
    line-height: 2.2;
  }
}

/* business
------------------------------------------ */
.business .container {
  padding-top: 4.15rem;
}

@media (min-width: 768px) {
  .business .container {
    padding-top: 5.2rem;
  }
}

.business .section-title {
  margin-bottom: 1.35rem;
}

@media (min-width: 768px) {
  .business .section-title {
    margin-bottom: 1.8rem;
  }
}

/* businessアイテム */
.business-list-group {
  display: flex;
  flex-direction: column;
  row-gap: 0.95rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .business-list-group {
    row-gap: 2.3rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* businessリンク */
.business-list-group-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0.7rem;
  border: 0.0625rem solid #000;
  border-radius: 0.625rem;
}

@media (min-width: 768px) {
  .business-list-group-item {
    width: calc(50% - 1.25rem);
    padding: 1.25rem;
  }
}

/* hover状態 */
.business-list-group-item:hover {
  border: 0.0625rem solid #555;
}

/* 画像 */
.business-list-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 5.625rem;
  background-color: #000;
}

@media (min-width: 768px) {
  .business-list-image {
    width: 8.8rem;
    height: 6.5625rem;
  }
}

/* hover状態 */
.business-list-group-item:hover .business-list-image {
  background-color: #555;
}

/* タイトル */
.business-list-title {
  padding-left: 1rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .business-list-title {
    font-size: 1.56rem;
  }
}

/* brタグ */
@media (min-width: 1081px) {
  .business-list-title br {
    display: none;
  }
}

/* 右矢印 */
.business-list-icon {
  position: absolute;
  top: 50%;
  right: .5rem;
  font-size: 1.5rem;
  line-height: 1;
  transform: translate(0%, -50%);
}

@media (min-width: 768px) {
  .business-list-icon {
    right: .7rem;
    font-size: 2rem;
  }
}




/* flow
------------------------------------------ */

/* ページ読み込み直後にフェードイン要素を非表示にする */
.animate__animated {
  opacity: 0;
}

h2.section-title.outfit-flow {
  position: relative;
  text-align: center;
  padding-top: 0.3rem;
  line-height: 2.5rem;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  h2.section-title.outfit-flow {
    padding-top: 2rem;
    padding-left: 0.3rem;
    font-size: 2.25rem;
    line-height: 3.9rem;
    letter-spacing: 0.01rem;
  }
}



.flow-container {
  text-align: center;
}

.flow-container-animate {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .flow-container-animate {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.flow-text {
  text-align: left;
}



p.flow01,p.flow03,p.flow05,p.flow07,p.flow09 {
  line-height: 2.3rem;
  font-weight: 700;
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  p.flow01,p.flow03,p.flow05,p.flow07,p.flow09 {
    margin-top: 7.9rem;
  }
}

p.flow02,p.flow04,p.flow06,p.flow08,p.flow10 {
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  p.flow02,p.flow04,p.flow06,p.flow08,p.flow10 {
    margin-top: 0.45rem;
    line-height: 2.5rem;
    font-size: 1.5rem;
    max-width: 31.5rem;
  }
}

@media (min-width: 768px){
  .br-sp {display: none; }
  }


span.flow {
  color: #000;
  font-size: 1.5rem;
}


@media (min-width: 768px) {
  span.flow {
    font-size: 2rem;
  }
}



@media (min-width: 768px) {
  .animate01 {
    display: flex;
    column-gap: 2.5rem;
    margin-bottom: 1.2rem;
    margin-top: 0.8rem;
    margin-right: 1.1rem;
  }
}

@media (min-width: 768px) {
  .animate02 {
    display: flex;
    column-gap: 2.5rem;
    margin-bottom: 1.2rem;
    margin-left: 1.1rem;
  }
}

@media (min-width: 768px) {
  .animate03 {
    display: flex;
    column-gap: 2.5rem;
    margin-right: 1.1rem;
  }
}

@media (min-width: 768px) {
  .animate04 {
    display: flex;
    column-gap: 2.5rem;
    margin-bottom: 1.2rem;
    margin-left: 1.1rem;
  }
}

@media (min-width: 768px) {
  .animate05 {
    display: flex;
    column-gap: 2.5rem;
    margin-right: 1.1rem;
  }
}

/*--反転--*/
@media (min-width: 768px) {
  .animate01 {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .animate03 {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .animate05 {
    flex-direction: row-reverse;
  }
}

.box.animate__animated img {
  max-width: 22.4rem;
  height: auto;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .box.animate__animated img {
    max-width: 30.8rem;
    font-size: 1.15rem;
    border-radius: 0.7rem;
  }
}

@media (min-width: 768px) {
  img.flow01 {
    margin-top: 1rem;
  }
}

img.flow02 {
  margin-bottom: 0.1rem;
}



/* point
------------------------------------------ */
.point {
  background-color: #fff;
}

.point .container {
  padding-top: 4rem;
}

@media (min-width: 768px) {
  .point .container {
    padding: 5.15rem 0 5.7rem;
  }
}

.point .section-title {
  margin-bottom: 1.35rem;
}

@media (min-width: 768px) {
  .point .section-title {
    margin-bottom: 1.85rem;
  }
}

#smarttab.tab.st.st-theme-basic.st-justified {
  margin-left: 1rem;
  margin-right: 1rem;
}


/* タブ */
.st-theme-basic {
  border: none;
}

/* タブナビゲーション */
.tab.st>.nav {
  column-gap: 0.25rem;
  flex-direction: row !important;
}

.tab.st-theme-basic>.nav {
  box-shadow: none;
}

.tab.st-theme-basic>.nav .nav-link {
  padding-top: 1.15rem;
  padding-bottom: 1.25rem;
  line-height: 1;
  background-color: #d8d8d8;
  color: #000;
  border-radius: 0.937rem 0.937rem 0 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .tab.st-theme-basic>.nav .nav-link {
    padding-top: 1.45rem;
    padding-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}

/* アクティブ状態 */
.tab.st-theme-basic>.nav .nav-link.active {
  color: #fff !important;
  background-color: #000;
}

.tab.st-theme-basic>.nav .nav-link.active::after {
  background-color: unset !important;
}

/* タブコンテンツ */
.tab-content {
  text-align: center;
  background-color: #999;
  border-radius: 0 0 1.25rem 1.25rem;
}

.tab.st-theme-basic>.tab-content>.tab-pane {
  flex-direction: column;
  row-gap: 1.4rem;
  padding: 2.5rem 3.5rem 1.6rem;
}

@media (min-width: 768px) {
  .tab.st-theme-basic>.tab-content>.tab-pane {
    padding: 3.75rem 2.25rem;
  }
}



/* タイトル */
.point-tab-content-title {
  margin-top: .7rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}

@media (min-width: 768px) {
  .point-tab-content-title {
    margin-top: .5rem;
    font-size: 1.15rem;
  }
}



/* contact
------------------------------------------ */
.contact {
  color: #fff;
  background-image: url("../images/contact/contact_bg_sp.png");
  background-size: cover;
}

@media (min-width: 768px) {
  .contact {
    background-image: url("../images/contact/contact_bg_pc.png");
    background-position: center top;
  }
}

.contact .container {
  padding-top: 8.75rem;
  padding-bottom: 10rem;
}

@media (min-width: 768px) {
  .contact .container {
    padding-bottom: 9.5rem;
  }
}

.contact .section-title {
  margin-bottom: 1.4rem;
}

@media (min-width: 768px) {
  .contact .section-title {
    margin-bottom: 1.9rem;
  }
}

/* フッター
------------------------------------------ */
.footer {
  padding: 2.5rem 0;
  text-align: center;
  color: #fff;
  background-color: #999;
}

@media (min-width: 768px) {
  .footer {
    padding: 2.4rem 0;
  }
}

.bi.bi-instagram {
  color: #fff;
  font-size: 2rem;
}



/* コピーライト */
.footer-copyright {
  font-size: .75rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
  }
}


/* アクセス
------------------------------------------ */

/* カバー画像 */
.access .cover-top {
  height: 20.625rem;
  margin-top: 0.3rem;
  background-image: url("../images/access/cover.png");
  background-position: center;
  background-size: 96%;
  background-color: #FFF
}

@media (min-width: 768px) {
  .access .cover-top {
    width: 50%;
    height: 100vh;
    background-image: url("../images/access/cover.png");
    background-position: left center;
    background-size: unset;
    margin-top: 0.1rem;
  }
}



.access .cover-catch {
  text-align: center;
  margin-top: 0.3rem;
  margin-bottom: 2.9rem;
  font-size: 2.5625rem;
  line-height: 1
}

@media (min-width: 768px) {
  .access .cover-catch {
    text-align: left;
    font-size: 3.1875rem;
    margin-bottom: 1.55rem;
  }
}


.cover-catch span {
  border-bottom: 3px solid #000;
}

.google-map iframe {
  width: 100%;
  height: 25.1rem;
}

@media (min-width: 768px) {
  .google-map iframe {
    width: 100%;
    height: 24.8rem;
  }
}


.container.information-container {
  width: 21.875rem;
  background-color: #f2f2f2;
  border-radius: 30px 30px 30px 30px;
  padding-top: 1.4rem;
  padding-left: 1.6875rem;
  padding-bottom: 0.65rem;
  margin-top: 1.3rem;
  margin-bottom: 5rem;
  line-height: 1.6rem;
}

@media (min-width: 768px) {
  .container.information-container {
    width: 61.25rem;
    height: 11.1875rem;
    padding-top: 2.6rem;
    padding-left: 3.5rem;
    padding-bottom: 0.5625rem;
    margin-top: 2.9rem;
    margin-bottom: 6.25rem;
    line-height: 1.8rem;
  }
}

.information-list {
  display: flex;
  column-gap: 0.25rem;
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .information-list {
    column-gap: 1rem;
    font-size: 1.24rem;
    margin-bottom: 0.625rem;
    line-height: 1.9rem;
  }
}

.information-list dt {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .information-list dt {
    font-size: 1.7rem;
  }
}


/* ギャラリーのためのcss
------------------------------------------ */

.wrapper{
  margin-top: 6rem;
  margin-bottom: 1rem;
}

h2.wrapper{
  margin-left: 1rem;
}

p.wrapper{
  margin-left: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
}

.gallery{
  columns: 4;/*段組みの数*/
  padding:0 15px;/*ギャラリー左右に余白をつける*/
  margin:0;
  }
  
  .gallery li {
      margin-bottom: 20px;/*各画像下に余白をつける*/
  list-style:none;
  }
  
  /*ギャラリー内のイメージは横幅100%にする*/
  .gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/}
  
  /*　横幅900px以下の段組み設定　*/
  @media only screen and (max-width: 900px) {
    .gallery{
    columns:3;
    }	
  }
  
  @media only screen and (max-width: 768px) {
    .gallery{
    columns: 2;
    }	
  }