/*
Theme Name:afflatus
Template: ystandard
*/


/* --------------------------------------------------------------------------------------------------------------
共通
-------------------------------------------------------------------------------------------------------------- */
body {
  font-family: 'Noto Sans Japanese';
  overflow: visible !important;
}
* {
  box-sizing: border-box;
}
body:not(.has-sidebar) .site-content {
  overflow: visible!important;
}
a:hover {
  opacity: .7;
}
img {
  display: block;
}
.site-content {
  margin: 0;
  padding: 0;
}
.top-section-inner,
.content__main {
  margin: 0 auto;
  max-width: 1200px;
}
.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
@media screen and (max-width: 600px) {
}


/* --------------------------------------------------------------------------------------------------------------
ヘッダー
-------------------------------------------------------------------------------------------------------------- */
#masthead {
  position: relative;
  z-index: 2;
}
.site-branding .site-title {
  width: 240px;
}

/* ハンバーガーメニュー */
.site-header button {
  color: #000;
}
.global-nav__toggle:after {
  display: none;
}
.global-nav__toggle svg {
  height: 32px;
  width: 32px;
}
/* --------------------------------------------------------------------------------------------------------------
フッター
-------------------------------------------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------------------------------------------
共通項目
-------------------------------------------------------------------------------------------------------------- */
.main-btn a {
  background-color: #000;
  border-radius: 30px;
  color: #fff;
  display: block !important;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 40px auto 20px;
  max-width: 320px;
  overflow: hidden;
  padding: 15px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

/* --------------------------------------------------------------------------------------------------------------
トップページ ヒーローセクション
-------------------------------------------------------------------------------------------------------------- */
.top-eyecatch {
  position: relative;
  margin-top: -64px;
  width: 100vw;
  height: 100vh;
}
.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo-dot {
  padding: 0 20px;
  width: 600px;
  height: auto;
}


/* --------------------------------------------------------------------------------------------------------------
トップページ パララックス
-------------------------------------------------------------------------------------------------------------- */
.parallax-section {
  position: relative;
  min-height: 200vh;
  overflow: hidden;
  background: transparent;
}
.parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.parallax__layer {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  will-change: transform;
}
.layer-circle { z-index: 2; }
.circle1 {
  width: 800px;
  height: 800px;
  background: rgba(0,0,0,0.95);
  border-radius: 50%;
  top: 10%;
  left: 90%;
}
.circle2 {
  width: 400px;
  height: 400px;
  background: rgba(0,0,0,0.95);
  border-radius: 50%;
  top: 30%;
  left: 10%;
}
.circle3 {
  width: 200px;
  height: 200px;
  background: rgba(0,0,0,0.95);
  border-radius: 50%;
  top: 40%;
  left: 40%;
}
/* --------------------------------------------------------------------------------------------------------------
トップページ
-------------------------------------------------------------------------------------------------------------- */
.top-section-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 100px auto;
  padding: 100px 20px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.top-logo-midashi {
  display: flex;
  align-items: flex-end;
  margin: 20px auto 50px;
  max-width: 680px;
  width: 100%;
}
.top-logo-midashi img {
  width: 90%;
}
.top-logo-midashi span {
  display: inline-block;
  width: 10%;
}
.top-contents {
  margin: 0 auto;
  max-width: 680px;
}
.top-contents p {
  font-size: 18px;
}

.top-midashi {
  font-size: 54px;
  font-weight: 900;
  margin: 0;
  padding: 0;
  text-align: center;
}

.service-frame {
  display: flex;
  margin: 30px 0 0;
}
.service-box {
  width: 33%;
}
.service-box img {
  height: 200px;
  margin: 0 auto;
  padding: 15px;
  width: auto;
}
.service-box h3 {
  margin: 0;
  padding: 0;
  text-align: center;
}


@media (max-width: 767px) {
  .top-section-content {
    margin: 50px 20px;
    padding: 50px 20px;
  }
  .circle1 {
    width: 400px;
    height: 400px;
  }
  .circle2 {
    width: 200px;
    height: 200px;
  }
  .circle3 {
    width: 100px;
    height: 100px;
  }
  .top-logo-midashi img {
    margin-right: 10px;
    width: 80%;
  }
  .top-logo-midashi span {
    display: inline-block;
    font-size: 16px;
    width: 15%;
  }
}



/* --------------------------------------------------------------------------------------------------------------
固定ページ
-------------------------------------------------------------------------------------------------------------- */
.singular-header__title {
  background-color: #000;
  color: #fff;
  font-size: 32px;
  margin: 30px 0 0 !important;
  padding: 5px 10px;
}
.entry-content h2 {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
}


/* --------------------------------------------------------------------------------------------------------------
お問い合わせ
-------------------------------------------------------------------------------------------------------------- */
.contact-form-label {
  font-weight: bold;
}
.contact-form {
  margin: 0 0 50px;
}
/* placeholderの色を変更 */
::-webkit-input-placeholder {
  color: #ccc;
}
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ccc;
}

/* 必須か任意か */
.contact-form-status-required {
  background-color: #cc3300;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  margin-left: 8px;
  padding: 1px 6px;
  vertical-align: middle;
}
.contact-form-status-optional {
  background-color: #a3a5a6;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  margin-left: 8px;
  padding: 1px 6px;
  vertical-align: middle;
}

/* 入力欄 */
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=date],
.contact-form textarea {
  border: 1px solid #ccc;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 14px;
  padding: 10px;
  vertical-align: bottom;
  -webkit-appearance: none;
}

.contact-form input[type=submit] {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin: 20px auto;
  text-decoration: none;
  text-align: center;
  -webkit-appearance: none;
  width: 300px;
}
