@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

各ページ共通のCSS

------------------------------------------------------------------------ */


* {
  /* outline: 1px solid green; */
}



/* rem 1.0rem → 10px
-------------------------------------------------------  */

html{
	font-size:62.5%; /* 10px */
}

body {
  font-family: 'Noto sans jp', sans-serif;
  background-color: #FCFCFC;
  font-size: 1.6rem;
  font-weight: 500;
  color: #202124;
  line-height: 1.75;
}


@media screen and (min-width:769px){

/* body 縮小させた際の指定 */
body {
  min-width: 1260px;
}

}



/* インナー幅
-------------------------------------------------------  */

.inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
}

.sub-inner {
  max-width: 928px;
  width: 100%;
  margin-inline: auto;
}


@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 15px;
  }

  .sub-inner {
    padding-inline: 15px;
  }
}



/* aタグ
-------------------------------------------------------  */

a:hover {
  opacity: 0.8;
}



/* カスタムプロパティ
-------------------------------------------------------  */

:root {
  --black: #202124;
  --aqua-green: #43A4A1;
  --orange: #D57648;
  --gray: #D9D9D9;
  --right-gray: #F7F7F5;

  --font-jp: 'Not sans jp', sans-serif;
  --font-en: 'Manrope', sans-serif;
}



/* 改行
-------------------------------------------------------  */

@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}


/* 画像
-------------------------------------------------------  */

/* @media screen and (max-width: 768px) { */
  img {
    max-width: 100%;
    height: auto;
  }
/* } */



/* ヘッダー
-------------------------------------------------------  */

.header-wrapper {
  padding: 28px 0px 84px 0;
  background: var(--right-gray);
}

.header-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-header-list {
  position: relative;
  z-index: 1;
}

.header-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-item {
  font-family: var(--font-en);
  font-size: 2.0rem;
  font-weight: 700;
}

.header-wrapper.bg-dark {
  background: var(--right-gray);
}


@media screen and (min-width: 769px) {
  .sp-header-list {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-header-list {
    display: none;
  }

  .sp-header-list .header-list {
    flex-direction: column;
  }

  .header-wrapper {
    padding: 20px 0 60px 0;
  }

  .logo {
    /* max-width: 176px; */
  }
}




/* ハンバーガーボタン
-------------------------------------------------------  */

.hamburger {
  display: none; /* PCでは非表示 */
  cursor: pointer;
  width: 36px;
  position: relative;
  z-index: 1001; /* メニューより上 */
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  margin: 10px 0;
  transition: 0s;
}

/* SPナビ（デフォルト非表示） */
.sp-header-list {
  display: none;
  position: fixed;
  top: 86px;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--right-gray);
  padding-top: 52px;
  z-index: 1000;
}

/* 表示用 */
.sp-header-list.active {
  display: block;
}

/* ハンバーガーを「×」に変形 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

body.active {
  overflow: hidden;
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .pc-header-list {
    display: none;
  }

  /* ハンバーガーが押された時、オレンジ玉を消す */
  .home-mv-wrapper.active::before {
    content: none;
  }
}



/* 見出し
-------------------------------------------------------  */

.section-title {
  display: flex;
  flex-direction: column;
  color: var(--black);
  font-family: var(--font-en);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 48px;
}

.section-sub-title {
  color: var(--black);
  font-family: var(--font-jp);
  font-size: 2.4rem;
  font-weight: 500;
}

.first-aqua {
  color: var(--aqua-green);
}

.first-orange {
  color: var(--orange);
}


@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 32px;
  }
}



/* Works 制作実績
-------------------------------------------------------  */

.works-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 68px 32px;
  margin-bottom: 68px;
}

.works-link {
  display: grid;
  gap: 20px;
}

.works-title {
  font-size: 2.0rem;
  font-weight: 600;
}

.works-thumb img {
  width: 100%;
  height: auto;
}


@media screen and (max-width: 768px) {
  .works-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 52px 32px;
  }
}



/* View More ボタン
-------------------------------------------------------  */

.more-link-block {
  text-align: center;
}

.more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 70px;
  padding: 15px 52px 15px 15px;
  background-color: var(--black);
  border: 1px solid var(--black);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  transition-duration: 0.3s;
}

.more-link::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  background: url(../../img/common/icon-black-arrow.png) no-repeat center;
  background-size: 17px 14px;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.more-link:hover {
  background-color: #fff;
  color: var(--black);
  border: 1px solid var(--black);
}

.more-link:hover::before {
  background: url(../../img/common/icon-white-arrow.png) no-repeat center;
  background-size: 17px 14px;
  background-color: var(--black);
}


@media screen and (max-width: 768px) {
  .more-link {
    min-width: 180px;
    font-size: 1.6rem;
  }
}




/* 名前（MIWA HIROHISA 三輪浩久）
-------------------------------------------------------  */

.my-name-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.en-name {
  font-size: 2.0rem;
  font-weight: 600;
}



/* フッター
-------------------------------------------------------  */

.footer-wrapper {
  position: relative;
  padding-top: 136px;
  overflow: clip;
}

.footer-wrapper::before {
  content: '';
  position: absolute;
  top: 80%;
  left: -10%;
  transform: translate(0%, -50%);
  background: url(../../img/common/bg-brush-green.png) no-repeat;
  background-position: bottom center;
  background-size: cover;
  width: clamp(553px, 69vw, 1000px);
  height: clamp(553px, 69vw, 1000px);
}

.footer-wrapper::after {
  content: '';
  position: absolute;
  top: 80%;
  right: -10%;
  transform: translate(0%, -50%);
  background: url(../../img/common/bg-brush-orange.png) no-repeat;
  background-position: bottom center;
  background-size: cover;
  width: clamp(553px, 69vw, 1000px);
  height: clamp(553px, 69vw, 1000px);
}

.footer-wave {
  background: url(../../img/common/bg-footer-wave.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 1920px;
  background-size: 100%;
  height: max(7vw, 90px);
}

.footer-outer {
  background-color: var(--right-gray);
  padding-bottom: 52px;
}

.footer-icon-block {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  z-index: 1;
}

.footer-icon-link {
  display: inline-block;
}

.footer-nav {
  position: relative;
  margin-bottom: 52px;
  z-index: 1;
}

.footer-list {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
}

.copylight-txt {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
}


@media screen and (max-width: 768px) {
  .footer-wrapper {
    padding-top: 116px;
  }

  .footer-wrapper::before {
    top: 65%;
    left: -70%;
  }

  .footer-wrapper::after {
    top: 65%;
    right: -70%;
  }

  .footer-wave {
    background: url(../../img/common/bg-footer-wave-sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    height: max(10.8vw, 30px);
  }

  .footer-outer {
    padding: 15px 0 104px 0;
  }
}



/* ページTOPへ戻る ボタン
-------------------------------------------------------  */

.page-top {
  background-color: #fff;
  border: 1px solid var(--black);
  border-radius: 999px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: fixed;
  right: 48px;
  bottom: 48px;
  cursor: pointer;
  z-index: 999;
}

.page-top:hover {
  opacity: 0.8;
}

/* .page-top:hover {
  opacity: 0.85;
  background-color: var(--black);
  color: #fff;
} */

.page-top-txt {
  font-weight: 700;
  padding-left: 5px;
}

.page-top-arrow {
  transform: rotate(-90deg);
}


@media screen and (max-width: 767px) {
  .page-top {
    width: 64px;
    height: 64px;
    right: 15px;
    bottom: 15px;
    gap: 2px;
  }

  .page-top-txt {
    font-size: 1.4rem;
  }
}