@charset "UTF-8";
/*
Theme Name:basebeautylaboratory
Author:TatsuyaItoh
Description:ベースビューティラボ
Version:1.0
License:GNU General Public License v3 or later
LicenseURI:https://www.gnu.org/licenses/gpl-3.0.html
*/

/* 共通部分
----------------------------------*/
body{
  color: #5a6f6d;
  font-family: "ta-kotodama-r", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 1280px;
  margin: 0 auto;
}
main{
  margin: 0 5%;
}
img{
  width: 100%;
}
h1{
  font-size: calc(12px + 8 *((100vw - 320px) / 448));
  margin-top: 16px;
}
h2{
  font-size: calc(14px + 8 *((100vw - 320px) / 448));
  margin: 5vw 0 0 0;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.5em;
}
p{
  font-size: 10px;
  line-height: 1.0rem;
  letter-spacing: 0.2rem;
}
a{
  text-decoration: none;
    color: #5a6f6d;
    font-size: 10px;
  }

ul{
  padding: initial;
}
.fudeline{
  width: 75vw;
  height: 4px;
  margin: 8px 0;
}
/* フェードイン */
.fadeIn{
  animation-name: fadeInAnime;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:3.0s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
 .fadeUpTrigger{
    opacity: 0;
  }
/* ヘッダー */
header{
  text-align: center;
  font-size: 0;
}
.header__logo{
  margin-top: 4px;
  margin-bottom: 8px;
}
header img,.top__logo{
  width: 75vw;
  height: auto;
}
.top__logo{
  margin: 5% 0 4px 0;
  max-width: 576px;
}
.header__menu--pc{
  display: flex;
  justify-content: center;
}
.header__menu--pc li{
  list-style: none;
  margin: 1.16vh 0;
  padding: 0 3vw;
  font-size: calc(14px + 8 *((100vw - 320px) / 960));
}
.header__menu--pc a,p{
  font-size: calc(12px + 8 *((100vw - 320px) / 960));
}

.hudeline{
  max-width: 970px;
}
/* ハンバーガーメニュー*/
.openbtn{
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(90, 111, 109, 1.0);
  cursor: pointer;
  width: 45px;
  height: 45px;
  z-index: 9999;
}
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 11.5px;
  height: 2px;
  background: #fff;
}
.openbtn span:nth-of-type(1){
  top: 10px;
  width: 22px;
}
.openbtn span:nth-of-type(2){
  top: 17px;
  width: 12px;
}
.openbtn span:nth-of-type(3){
  top: 24px;
  width: 18px;
}
.openbtn span:nth-of-type(3)::after{
  /* content: "menu"; */
  position: absolute;
  top: 10px;
  left: 0;
  color: #000;
  font-size: 10px;
  text-transform: none;
}
.openbtn.active span:nth-of-type(1){
  top: 14px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2){
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 26px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(3)::after{
  /* content: "close"; */
  transform: translateY(0) rotate(-45deg);
  top: 10px;
  left: 6px;
}
/* グローバルナビ */
#g-nav ul{
  position: absolute;
  z-index: 999;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
#g-nav-list a:hover{
  font-weight: 500;
  transition: all 0.2s;
}
nav ul{
  list-style: none;
  text-align: center;
  line-height: 3.0;
}
nav ul li a{
  display: inline-block;
  text-decoration: none;
  color: #666;
  padding: 10px 0;
  letter-spacing: 4px;
}
#g-nav.panelactive #g-nav-list{
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 80vh;
  overflow: auto;
  -webkiit-overflow-scrolling: touch;
}
#g-nav{
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.6s;
}
#g-nav.panelactive{
  right: 0;
}
.nav__line{
  width: 80%;
  margin-top: 60vh;
  margin-left: auto;
  margin-right: auto;
}
.nav__privacy{
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 12px;
  color: #666;
}
.nav__flex--inner a{
  text-decoration: underline solid #666 1px;
}
.nav__flex--inner li{
  text-align: center;
  font-size: 12px;
  width: 100%;
}
main{
  position: relative;
}
.navi__logo{
  width: 50%;
}
/* アコーディオン */
.menu__ttl--inner{
  display: none;/*はじめは非表示*/
  display: block;
  padding-left: 1.67vw;
  padding-right: 1.67vw;
}
.menu__ttl,.menu__ttl--inner a{
  color: #3c3c3c;
}
.menu__ttl--inner-sp{
  display:none;
}
.menu__ttl--inner-sp a{
  font-size: 14px;
}
.menu__ttl{
  font-size: 14px;
  transition: all .5s ease;
  display: flex;
  justify-content: left;
}
/* フッター */
footer{
  text-align: center;
  font-size: 0;
  margin: 100px 0;
}
.footer__logo--en{
  width: 40%;
  height: auto;
}
/* .footer__presents{
  width: 20%;
  height: auto;
  margin-bottom: 30px;
} */
.footer__logopre{
  margin-bottom: 30px;
}
.footer__logopre p{
  font-size: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.footer__logo--txt{
  margin-top: 4px;
  margin-bottom: 8px;
}
.footer__hudeline{
  margin-top: 30px;
}
.sidebutton{
  width: 100%;
  height: auto;
}
.sidebutton a{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 8px;
  position: fixed;
  right: 13px;
  top: 200px;
  z-index: 9999;
  padding: 24px 9px;
  background-image: url(images/kiiro.png);
  background-size: contain;
  background-position: center;
}

/* トップ */
.top__concept p{
  writing-mode: vertical-rl;
  line-height: 2.0;
}
/* コンセプト */
.con__fl{
  display: flex;
  justify-content: space-between;
}
.con__p p{
  font-size: calc(16px + 24 * ((100vw - 320px)/960));
}
.conbox__1 p,.conbox__2 p,.conbox__3 p,.conbox__4 p{
  margin-top: 32px;
  margin-bottom: 7.23%;
  text-align: left;
  max-width: 1088px;
}
.conbox__1 img{
  width: 15%;
  height: auto;
  margin-top: 25%;
  margin-right: 5vw;
}
.conbox__2 img{
  width: 30%;
  max-width: 250px;
  height: auto;
  /* margin-top: 15.09vh; */
  margin-top: 10vh;
  margin-left: 10vw;
}
.conbox__3 img{
  width: 60%;
  height: auto;

}
.conbox__4 img{
  width: 30%;
  height: auto;
  margin-top: 37.5%;
  margin-right: 5vw;
}
.conbox__1 p{
  margin-left: 7.5%;
}
.conbox__2 p{
  margin-bottom: 50px;
  margin-right: 10%;
}
.conbox__3 p{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 160px;
  margin-top: 0 !important;
}
.conbox__4 p{
  margin-bottom: 50px;
  margin-left: 27.8%;
}
.conbox__3{
  margin: 0 auto;
  text-align: center;
  display: block;
}
/* ページ　work */
.act__box{
  margin: 48px 0;
}
.page__sec--top{
  margin-top: 80px;
}
.act__ttl{
  width: 100%;
  height: auto;
  position: relative;
  /* background-image: url(images/workshop-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%; */
}
.act__ttl--txt{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
-webkit-transform: translateY(-50%);
}
.act__ttl--txt h4{
  text-align: right;
}
.act__ttl--txt h3{
  text-align: right;
  font-size: 26px;
}
.act__txt{
  width: 60%;
  line-height: 1.0rem;
  letter-spacing: 0.2rem;
}
.act__btn{
  text-align: right;
  text-decoration: underline;
}
.act__btn p,a{
  font-size: 14px;
}

/* 投稿
--------------------------------*/
.bloglist__cont{
  display: flex;
  width: 80%;
  margin: 0 auto;
  justify-content: space-around;
  align-items: center;
}
.entry-thumbnail{
  width: 60%;
  margin-right: 30px ;
}
.entry-thumbnail img{
  max-width: 66.44px;
}
.entry-ttl{
  font-size: 14px;
}
.entry-date{
  font-size: 10px;
}
.entry-contant{
  font-weight: 12px;
}
.hentry-content{
  margin-left: 15px;
  margin-right: 15px;
  width: 100%;
}
.entry-footer{
  text-align: right;
}
.entry-footer a{
  color:#3c3c3c;
}
.cat-links a{
  background-color: #f596aa;
  color: #fff;
  padding: 4px 12px 4px 12px;
  border-radius: 6px;
  border: 1px solid #f596aa ;
  font-size: 12px;
}
.cat-links a:hover{
  color:#3c3c3c;
}
.posthudeline{
  width: 75vw;
  height: auto;
  margin: 8px auto;
  text-align: center;
}
/* about */
.about__secttl{
  width: 40%;
  max-width: 194px;
  height: auto;
  margin: 0 auto;
}
.about__info{
  margin-bottom: 50px;
}
.about__info p{
 font-size: 16px;
}
.about__info img{
  width: 50%;
  max-width: 202px;
  margin: 40px 0;
}
.about__box{
  margin-bottom: 50px;
  text-align: center;
}
.about__btn{
  margin: 40px auto;
  width: 80%;
  max-width: 324px;
}
.sec__br{
  margin: 40px auto;
}
.about__name{
  margin-bottom: 16px;
}
.about__sec{
  margin-top: 80px;
  margin-bottom: 16px;
}
/* コンタクト
-----------------------------------*/
/*ーーーーーーーーーーーーーーーー*/
/*　　MW WP Formカスタマイズ　　*/
/*ーーーーーーーーーーーーーーーー*/
h5,span{
	color: #3c3c3c;
}
.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form input[type="text"],
.mw_wp_form textarea {
 padding: 1em;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
}
textarea,input{
  font-family: "ta-kotodama-r", sans-serif;
}
.mw_wp_form select {
    display: block;
    position: relative;
    width: 80%;
    height: 38px;
    font-size: 14px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    padding: 0 10px;
}

.mw_wp_form selectt:after {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    pointer-events: none;
}
/*「表」デザイン*/
.cform th {
	font-size: 15px;
	width: 25%;
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 0px 10px 15px;
	font-weight: bolder;
}
.cform td {
	font-size: 15px;
	line-height: 200%;
	border-bottom: solid 1px #d6d6d6;
	padding: 10px 10px;
}
/*表示*/

.cform {
	width: 94%;
	margin: auto;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
	width: 100%;
}
@media only screen and (max-width:767px) {
	.cform th,
	.cform td {
		width: 97%;
    padding: .5em 1em;
		display: block;
		border-top: none;
	}
}
/*「送信ボタン」デザイン*/
.submit-btn input {
background-color:#5a6f6d;
border:0;
color:#ffffff;
font-size:1.2rem;
font-weight:bolder;
margin:0 auto;
padding: 10px 35px;
border-radius: 10px;
cursor: pointer;
text-align:center;
font-family: "ta-kotodama-r", sans-serif;
}
.submit-btn {
text-align:center;
margin-top:20px;
cursor: pointer;
}
.submit-btn input:hover {
background: #bebebe;
color: #FFFFFF;
cursor: pointer;
}
/*デザイン*/
.required-srt {
font-size:0.9em;
padding: 6px;
border-radius: 5px;
margin-right: 5px;
background: #5a6f6d;
color: #fff;
}
@media (min-width:500px) {
.catch__box{
  display: flex;
}
.catch img{
  width: 38vw;
  height: 15vw;
}
.conbox__1 p,.conbox__2 p,.conbox__3 p,.conbox__4 p{
  margin-top: 64px;
}
/* フッター */
.footer__logo--en{
  width: 30vw;
  }
.footer__logo{
  width: 50vw;
}
.footer__presents{
  width: 20vw;
}
/* work */
.page__sec--top{
  margin-left: 5%;
  margin-right: 5%;
}
.act__box--houseimg{
  max-width: 630px;
  margin: 0 auto;
  display: block;
}
.entry-thumbnail img{
  max-width: 116px;
}
}
@media(max-width:768px){
.sp__none{
  display: none;
}
}
@media(min-width:768px){
.pc__none{
  display: none;
}
.header__menu{
  display: none;
}
.conbox__2 img{
  margin-top: 15.09vh;
}
p{
  font-size: calc(12px + 2 *((100vw - 768px) / 512));
}
.column{
  display: flex;
}
.col__left{
  width: 100%;
}
.info__img--cont{
  margin-left: 5vw;
  width: 60%;
}
button{
  margin: 16px 0;
  padding: 8px 72px;
}
.header__logo{
  font-size: 20px;
}
/* work */
.page__sec--top h2{
  font-size: 24px;
}
.act__btn a{
  font-size: 14px;
}
.conbox__4 p{
  margin-left: 39.06%;
}
/* about */
.about__secttl{
  margin: 80px auto;
}
/* フッター */
.footer__logo--en{
  width: 25vw;
  max-width: 192px;
}
footer{
  margin-top: 200px;
}
.footer__logo{
  width: 50vw;
  max-width: 384px;
}
.footer__presents{
  width: 20vw;
  max-width: 134px;
}

/*-----------------------------*/
/* top 記事
-------------------------------*/
/* article{
  width: 100%;
} */
/* .main-container article{
  width:90vw;
  max-width: 94%;
  text-align: center;
  margin: 10px auto;
} */
.entry-title{
  margin-top: 2px;
  font-size: 16px;
}
.cat-links a{
  font-size: 12px;
  margin-right: 5vw;
}
.entry-date{
  font-size: 12px;
}
.bloglist__cont{
  max-width: 500px;
  margin-bottom: 15px;
}
.post-content{
  margin: 1.5% auto;
  text-align: center;
  max-width: 1280px;

}
}
@media screen and (min-width:1280px) {
/* ヘッダー */
header{
  max-width: 1280px;
}
header img{
  max-width: 100%;
}
/* トップ */
main{
  margin: 0 auto;
}
.con__p p{
  font-size: 40px;
}
body img{
  max-width: 100%;
}
/* work */
.act__btn a{
  font-size: 14px;
}
/* 一覧 */
.custom-post-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 95%;
  justify-content: center;
  margin: 0 auto;
}
/* フッター */
footer img{
  max-width: 100%;
}

}
