@charset "utf-8";
/* ===================================================================

 file name  :common.css
 style info :共通のスタイル指定（ストラクチャ、ヘッダー、フッター）

=================================================================== */
body {
  position: relative;
}
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 11111;
  opacity: 1;
  pointer-events: none;
  transition: opacity ease 0.6s;
}
.page-loaded body::after {
  opacity: 0;
}
/*
ロード前のトランジションを無効化
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
*/
body.noscroll {
  overflow: hidden;
  height: 100vh;
}

/* ---------------------------------------------------------------------------

		structure
			ストラクチャ：基本設定、リンクカラーなど

--------------------------------------------------------------------------- */
a {
  color: #1b3a65;
  transition: all ease 0.3s;
  text-decoration: none;
}

/* ---------------------------------------------------------------------------
		#wrapper
			全体
--------------------------------------------------------------------------- */
#wrapper {
  padding: 66px 0 0;
  min-width: 320px;
  overflow: hidden;
}
#wrapper img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  #wrapper {
    min-width: 1160px;
    max-width: 1920px;
    margin-inline: auto;
  }
}

/* ---------------------------------------------------------------------------
		#header
			ヘッダー
--------------------------------------------------------------------------- */
#header {
  max-width: 1920px;
  min-width: 320px;
  margin-inline: auto;
  position: fixed;
  width: 100%;
  height: 66px;
  top: 0;
  inset-inline: 0;
  z-index: 999;
  transition: all ease 0.6s;
}
#header.is-bg {
  background: rgba(255, 255, 255, 0.1);
}

#logo {
  padding: 12px 0 0 15px;
  width: 81px;
  box-sizing: content-box;
  position: relative;
}

@media screen and (min-width: 768px) {
  #logo {
    padding: 16px 0 0 22px;
    width: 90px;
  }
}

/*
#menuBtn
---------------------------*/
#menuBtn {
  display: block;
  width: 71px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99999;
}
#menuBtn a {
  display: block;
  height: 60px;
}
#menuBtn a::before,
#menuBtn a::after {
  content: '';
  position: absolute;
  display: block;
  top: 28px;
  left: 50%;
  margin-left: -18px;
  background: #fff;
  width: 37px;
  height: 1px;
  transition: all ease 0.3s;
}
#menuBtn a::after {
  top: 38px;
}
.gnavMenuIsOpen #menuBtn::after,
.gnavMenuIsOpen #menuBtn a::before,
.gnavMenuIsOpen #menuBtn a::after {
  top: 38px;
}

.gnavMenuIsOpen #menuBtn a::before {
  transform: rotate(45deg);
}
.gnavMenuIsOpen #menuBtn a::after {
  transform: rotate(-45deg);
}
.gnavMenuIsOpen #menuBtn a > span::after {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #menuBtn {
    display: none;
  }
}
/*
#spInstagram
---------------------------*/
#spInstagram {
  position: absolute;
  top: 20px;
  right: 75px;
}
@media screen and (min-width: 768px) {
  #spInstagram {
    display: none;
  }
}

/*
#gnav
---------------------------*/
#header::before {
  content: '';
  display: block;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity ease 0.4s;
}
.gnavMenuIsOpen #header::before {
  transform: translateX(0);
  opacity: 1;
}
#gnav {
  width: 71%;
  height: 100%;
  background: #000;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  z-index: 9999;
  transition: all ease 0.4s;
}
.gnavMenuIsOpen #gnav {
  right: 0;
}
#gnav nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 35px 40px;
  overflow: auto;
  font-weight: 600;
}
#gnav nav ul.txt-link {
  margin: 0 0 20px;
}
#gnav nav ul.txt-link li + li {
  margin: 30px 0 0;
}
#gnav nav ul.txt-link li a {
  width: 100%;
  display: block;
  padding: 10px 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
#gnav nav ul.txt-link #gnavInstagram {
  display: none;
}
#gnav nav ul.btns {
  width: 100%;
  margin: auto 0 0;
}

#gnav nav ul.btns li + li {
  margin: 4px 0 0;
}
#gnav nav ul.btns li a {
  display: block;
  padding: 12px 0;
  color: #000;
  background: #fff;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (max-width: 374px) {
  #gnav nav {
    padding: 100px 15px 40px;
  }
}
@media screen and (min-width: 768px) {
  #header {
    min-width: 1160px;
    height: 77px;
  }
  #header::before {
    content: none;
  }

  #gnav {
    width: auto;
    height: auto;
    background: none;
    position: absolute;
    top: 13px;
    right: 11px;
    bottom: auto;
  }
  #gnav nav {
    height: auto;
    flex-direction: row;
    padding: 0 !important;
    overflow: visible;
  }
  #gnav nav ul.txt-link {
    display: flex;
    margin: 0 15px 0 0;
  }
  #gnav nav ul.txt-link li + li {
    margin: 0;
  }
  #gnav nav ul.txt-link li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 45px;
    color: #fff;
    font-size: 1.4rem;
    position: relative;
  }
  #gnav nav ul.txt-link li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    opacity: 0;
    background: #fff;
    transition: all ease 0.3s;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: 0 auto;
  }
  #gnav nav ul.txt-link li a:hover::after {
    width: 60%;
    opacity: 1;
  }
  #gnav nav ul.txt-link #gnavInstagram {
    display: block;
  }
  #gnav nav ul.txt-link #gnavInstagram a::after {
    content: none;
  }
  #gnav nav ul.txt-link #gnavInstagram a img {
    width: 24px;
    max-width: none;
  }

  #gnav nav ul.btns {
    width: auto;
    display: flex;
    margin: 0;
  }
  #gnav nav ul.btns li {
    width: 180px;
    margin: auto;
  }

  #gnav nav ul.btns li + li {
    margin: 0 0 0 4px;
  }
  #gnav nav ul.btns li#gnavContact {
    width: 180px;
  }
  #gnav nav ul.btns li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    padding: 0;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
  }
  #gnav nav ul.btns li a span {
    position: relative;
    z-index: 10;
  }
  #gnav nav ul.btns li a::before {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transform: skewX(-45deg);
    position: absolute;
    left: -30%;
    transition: all ease 0.3s;
    z-index: 1;
  }
  #gnav nav ul.btns li a:hover::before {
    width: 180%;
  }
}

/* ---------------------------------------------------------------------------
		#content
			コンテンツ
--------------------------------------------------------------------------- */
#pageHeader {
  padding: 40px 0;
  text-align: center;
  color: #fff;
}
#pageHeader h1::before {
  content: '';
  display: block;
  width: 30px;
  height: 4px;
  margin: 0 auto 15px;
  background: #fff;
}
#pageHeader .en {
  display: block;
  font-size: 3rem;
}
#pageHeader .ja {
  display: block;
  font-size: 1.3rem;
}

#pageHeader02 {
  position: relative;
}
#pageHeader02 h1 {
  position: absolute;
  left: 28px;
  bottom: 35px;
  z-index: 10;
  line-height: 1;
}
#pageHeader02 h1 .ttl-cap {
  display: block;
  margin: 0 0 5px;
  font-size: 1.3rem;
}
#pageHeader02 h1 .ttl-txt {
  display: block;
  font-size: 2.8rem;
  font-family: 'Helvetica Neue', 'arial', sans-serif;
  color: #fff;
}

/* pankuzu */
#pankuzu {
  position: relative;
  margin: -25px 0 0;
  z-index: 10;
}
#pankuzu::before {
  content: '';
  display: block;
  width: 85%;
  height: 25px;
  background: #000;
  min-width: 300px;
  position: absolute;
  top: 0;
  left: 0;
}
#pankuzu ol {
  padding: 10px 0 0 28px;
  position: relative;
  z-index: 10;
}
#pankuzu ol li {
  display: inline;
  font-size: 1rem;
  color: #fff;
}
#pankuzu ol li + li::before {
  content: '|';
  margin: 0 0.5em;
}
#pankuzu ol li a {
  color: #fff;
}

@media screen and (min-width: 768px) {
  #pageHeader {
    padding: 100px 0;
  }
  #pageHeader .en {
    font-size: 3.6rem;
  }
  #pageHeader .ja {
    font-size: 1.4rem;
  }

  #pageHeader02 {
    position: relative;
  }
  #pageHeader02 h1 {
    width: 1220px;
    padding: 0 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    margin: 0 auto;
  }
  #pageHeader02 h1 .ttl-cap {
    margin: 0 0 10px;
    font-size: 3rem;
  }
  #pageHeader02 h1 .ttl-txt {
    font-size: 7rem;
  }

  /* pankuzu */
  #pankuzu {
    margin: -50px 0 0;
  }
  #pankuzu::before {
    width: 100%;
    height: 50px;
    min-width: 1200px;
    top: 0;
    left: auto;
    right: 50%;
    margin: 0 150px 0 0;
  }
  #pankuzu ol {
    width: 1220px;
    margin: 0 auto;
    padding: 30px 10px 0 10px;
    position: relative;
    z-index: 10;
  }
  #pankuzu ol li {
    font-size: 1.3rem;
  }
  #pankuzu ol li + li::before {
    margin: 0 1em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1390px) {
  #content {
  }
}

/* ---------------------------------------------------------------------------
		#commonSection
			フッター前共通エリア
--------------------------------------------------------------------------- */
#commonSection {
  padding: 40px 0;
  background: #dcdddd;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
#commonSection h3 {
  margin: 0 0 40px;
  line-height: 1;
  color: #000;
}
#commonSection h3 .en {
  display: block;
  margin: 0 0 10px;
  font-size: 2rem;
}
#commonSection h3 .ja {
  display: block;
  font-size: 1.3rem;
}

#commonSection .btn-link {
  margin: 0 auto;
}
#commonSection .btn-link a {
  display: block;
  padding: 0 25px 18px 7px;
  font-size: 1.3rem;
  border-bottom: solid 1px #000;
  position: relative;
  color: #000;
}
#commonSection .btn-link a::before {
  content: '';
  display: block;
  width: 9px;
  height: 19px;
  background: url('/kodate/designoffice/kansai2/common/img/ico_arrow.svg') no-repeat 50% 50% / 100% auto;
  position: absolute;
  right: 0;
  bottom: 17px;
}
#commonSection.common-section-premium {
  padding: 0;
}
#commonSection.common-section-premium ul li {
  margin: 0 auto;
  padding: 45px 40px;
  border-bottom: solid 1px #000;
}

#commonSection.common-section-premium ul li dl dt {
  margin-bottom: 5px;
  font-size: 1.8rem;
  color: #000;
  text-align: left;
}
#commonSection.common-section-premium ul li dl dt {
  font-size: 1.8rem;
  color: #000;
  text-align: left;
}
#commonSection.common-section-premium .btn-link a {
  padding-left: 0;
  text-align: left;
}

@media screen and (min-width: 768px) {
  #commonSection {
    padding: 60px 0;
  }
  #commonSection h3 {
    margin: 0 0 90px;
  }
  #commonSection h3 .en {
    margin: 0 0 20px;
    font-size: 2.4rem;
  }
  #commonSection h3 .ja {
    font-size: 1.4rem;
  }

  #commonSection .btn-link {
    margin: 0 auto;
  }
  #commonSection .btn-link a {
    display: block;
    padding: 0 40px 22px 7px;
    font-size: 1.6rem;
    transition: all ease 0.4s;
  }
  #commonSection .btn-link a::before {
    width: 12px;
    height: 24px;
    bottom: 23px;
    transition: all ease 0.4s;
  }
  #commonSection .btn-link a:hover {
    opacity: 0.6;
  }
  #commonSection .btn-link a:hover::before {
    right: -10px;
  }

  #commonSection.common-section-premium ul {
    display: flex;
    width: 1000px;
    margin: 0 auto;
  }
  #commonSection.common-section-premium ul li {
    width: 500px;
    margin: 0;
    padding: 75px 100px 80px 30px;
    border-bottom: none;
  }
  #commonSection.common-section-premium ul li + li {
    padding: 75px 30px 80px 100px;
    border-left: solid 1px #000;
  }

  #commonSection.common-section-premium ul li dl dt {
    margin-bottom: 0 0 15px;
    font-size: 2.2rem;
  }
}

/* ---------------------------------------------------------------------------
		#main
			メイン
--------------------------------------------------------------------------- */
#main {
  padding: 0 0 70px;
  background: #000;
}
@media screen and (min-width: 768px) {
  #main {
    padding: 0 0 150px;
  }
}

/* ---------------------------------------------------------------------------
		#footer
			フッター
--------------------------------------------------------------------------- */
#footer {
  position: relative;
  z-index: 10;
}
#footer a {
  color: #000;
}
#footer .foot-inner {
  padding-left: 18px;
  padding-right: 18px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
#footer .foot-inner .flogo {
  width: 122px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  #footer {
  }
  #footer .foot-inner {
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  #footer .foot-inner .flogo {
    width: 98px;
    padding: 30px 50px 30px 0;
    margin: 0;
    border-right: 1px solid #7e7e7e;
    box-sizing: content-box;
  }
}

/*
#flogo
---------------------------*/
#flogo {
  display: none;
}
@media screen and (min-width: 768px) {
  #flogo {
    display: block;
    padding: 70px 0 66px;
    background: #000;
    text-align: center;
  }
}
/*
#fBtns
---------------------------*/
#fBtns {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 666;
  min-width: 320px;
}
#fBtns > ul {
  display: flex;
}
#fBtns > ul > li {
  width: 50%;
}

#fBtns > ul > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 45px;
  font-weight: 500;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
#fBtns > ul > li.btn-request a {
  background: #fff;
}
#fBtns > ul > li.btn-contact a {
  background: #fff;
  letter-spacing: 0;
}
#fBtns > ul > li.btn-designer a,
#fBtns > ul > li.btn-works a {
  background: #000;
  color: #fff;
  border: 1px solid #a0a0a0;
}
#fBtns > ul > li.btn-works a {
  border-left: none;
}

@media screen and (max-width: 374px) {
  #fBtns > ul > li a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  #fBtns {
    display: none;
  }
}

/*
#sekisuiCommonFooter
---------------------------*/
#sekisuiCommonFooter {
  padding: 15px 20px 62px;
  background: #44444d;
  height: auto;
}
#sekisuiCommonFooter nav {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
}
#sekisuiCommonFooter nav ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
#sekisuiCommonFooter nav ul li a {
  color: #99999c;
  font-size: 12px;
  letter-spacing: 0.32px;
}
.no_touch #sekisuiCommonFooter nav ul li a:hover {
  opacity: 0.6;
}
#sekisuiCommonFooter nav ul li:not(:last-of-type) a::after {
  color: #99999c;
  content: '/';
  display: inline-block;
  margin: 0 4px;
}
#sekisuiCommonFooter nav #copyright {
  display: block;
  color: #c4c4c4;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  #sekisuiCommonFooter {
    padding: 0;
    height: 45px;
  }
  #sekisuiCommonFooter nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #sekisuiCommonFooter nav ul {
    margin-bottom: 0;
    flex-wrap: nowrap;
  }
  #sekisuiCommonFooter nav ul li:not(:last-of-type) a::after {
    margin: 0 12px;
  }
}
