@charset "UTF-8";

/*
Theme Name: Welcart Basic Child
Description: Welcart Basic Child Theme
Author: Collne Inc
Template: welcart_basic
Version: 1.0.0
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/******************************/
/*ポートフォリオ*/
/******************************/
/*カテゴリタブ全体*/
.smb-tabs__tabs {
	flex-wrap: wrap !important;
	border-bottom: 2px solid #4D941A;
}
/*カテゴリタブのテキスト*/
.smb-tabs__tab {
	font-size: 20px;
	font-style: italic;
	color: #fff;
	background-color: #4D941A;
	line-height: 1;
	padding: 5px 10px !important;
	border: none;
	border-radius: 40px !important;
	transition: 0.5s;
}
/*カテゴリタブのテキスト(マウスオーバー時)*/
.smb-tabs__tab:hover {
	opacity: 0.7;
}
/*カテゴリタブ*/
.smb-tabs__tab-wrapper {
	margin: 0 7px 7px 0;
}
/*ポートフォリオ表示欄*/
.smb-tab-panel {
	border: none;
}
/*ポートフォリオ画像*/
.smb-tab-panel__body .wp-block-column {
	overflow: hidden;
}
/*ポートフォリオ画像(マウスオーバー時)*/
.smb-tab-panel__body .wp-block-image:hover {
	transform: scale(1.2);
 	transition: 0.5s;
}

/******************************/
/*料金例*/
/******************************/
/*料金例のカテゴリボタン*/
.wp-block-button__link {
	padding: 15px 10px;
	transition: 0.5s;
}
/*料金例のカテゴリボタン(マウスオーバー時)*/
.wp-block-button__link:hover {
	text-decoration:none;
	color: #fff;
	opacity: 0.7;
}
/*料金例のリスト*/
.fee-example-list {
	gap: 0px;
}

/******************************/
/*アクセス*/
/******************************/
.access {
    position: relative;
}

/******************************/
/*ハンバーガーメニュー*/
/******************************/
:root {
  --background-navbar: rgba(55, 55, 55, 0.8);
}
.menu-bar {
  background: var(--background-navbar);
  position: fixed;
  width: 240px;
  height: 52px;
  right: 0px;
  top: 35px;
}
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin: 52px 0 0 0 !important;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}
.menu li {
  list-style: none !important;
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.menu-btn {
  display: none;
}
.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navicon:before {
  top: 9px;
}
.navicon:after {
  bottom: 9px;
}
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}

/******************************/
/*SNSへのリンクボタン*/
/******************************/
.sns-btn-menu {
    position: fixed;
	right: 28px;
	bottom: 300px;
}

/******************************/
/*ページトップへのリンクボタン*/
/******************************/
.pagetop {
  width: 45px;
  height: auto;
  position: fixed;
  right: 27px;
  bottom: 250px;
}
.pagetop a {
  text-decoration: none;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
	/*必要ならばここにコードを書く*/
	/*SNSへのリンクボタン(メニュー)*/
	.sns-btn-menu {
		position: fixed;
		right: 44px;
		bottom: 270px;
	}
	.sns-btn-menu img {
		max-width: 30px;
		height: auto;
	}
	
	/*ページトップへのリンクボタン*/
	.pagetop {
  		bottom: 225px;
	}
}

/*YouTube動画の中央配置*/
.video-container {
	margin: 0px auto;
}