@charset "UTF-8";
/* CSS Document */
html {
 font-size: 62.5%; /* 16px * 62.5% = 10px */
 width: 100%;
 box-sizing: border-box;
}
body {
 background-color: #F5F0E9;
 font-family: Noto Sans, Hiragino Sans, ヒラギノ角ゴシック;
 font-weight: 400;
 font-size: 2rem;
 line-height: 3.0rem;
 text-align: center;
 color: #444; /* RGB */
}
main {
 max-width: 1200px;
 margin: 60px;
 padding: 0 5%;
 background-color: #F5F0E9;
 color: #444;
}
section h1 {
 font-size: 5.0rem;
 font-weight: 600;
}
section h2 {
 font-size: 2.4rem;
 font-weight: 600;
 letter-spacing: 0.1rem;
 color: #FFF;
 z-index: 1;
}
.h2-bg {
 display: flex;
 align-items: center;
 justify-content: center;
 vertical-align: middle;
 width: 130px;
 height: 115px;
 margin: 0 auto 60px;
}
.h2-bg::before {
 position: absolute;
 content: '';
 width: 130px;
 height: 115px;
 background-image: url(../images/common/img_h2_bg.png);
 background-size: 130px 115px;
 background-repeat: no-repeat;
 animation: rotation 7s linear infinite;
}
@keyframes rotation {
 0% {
  transform: rotate(0);
 }
 50% {
  transform: rotate(45deg);
 }
 100% {
  transform: rotate(0deg);
 }
}
section h3 {
 font-size: 2.4rem;
 font-weight: 500;
 color: #45496A;
}
.h3-titleWrapper {
 display: table;
 height: 74px;
 padding-left: 3%;
 margin-left: -3%;
 background-image: url("../images/common/img_circle.png");
 background-size: contain;
 background-repeat: no-repeat;
}
.h3-titleText {
 display: table-cell;
 vertical-align: middle;
}
section h4 {
 font-size: 2.0rem;
 font-weight: 500;
 color: #45496A;
}
a:hover {
 opacity: 0.5;
}
.none {
 display: none;
}
@media(min-width: 700px) {
 .br_mobile {
  display: none;
 }
}
@media(max-width: 1024px) {
 body {
  font-size: 1.3rem;
 }
 section h2 {
  font-size: 1.5rem;
 }
 .h2-bg {
  width: 75px;
  height: 65px;
  margin-bottom: 40px;
 }
 .h2-bg::before {
  width: 75px;
  height: 65px;
  background-size: 75px 65px;
 }
 section h3 {
  font-size: 1.8rem;
 }
 .h3-titleWrapper {
  height: 54px;
 }
 section h4 {
  font-size: 1.8rem;
 }
}
svg {
 backface-visibility: hidden;
 transform: translateZ(0);
}
/* ページタイトルのスタイリング */
.pageTitle {
 display: flex;
 max-width: 1200px;
 width: 100%;
 height: 450px;
 margin: 50px 0 60px;
}
.pageTitle__title {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 35%;
 background: #FFFAF2;
 border-radius: 16px 0 0 16px;
}
.pageTitle__title span {
 position: sticky;
 margin-bottom: 20px;
 color: #45496A;
 font-size: 6.0rem;
 font-weight: 600;
 text-decoration-line: underline;
 text-underline-offset: 5px;
 text-decoration-thickness: 3.5px;
 line-height: 9.0rem;
}
.pageTitle__img {
 width: 65%;
 background-image: url("../images/common/title_image.png");
 background-size: cover;
 background-position: center;
 border-radius: 0 16px 16px 0;
}
@media(max-width: 1024px) {
 .pageTitle {
  height: 200px;
  margin: 40px 0 50px;
 }
 .pageTitle__title span {
  font-size: 22px;
  text-decoration-thickness: 1.5px;
  line-height: 4.0rem;
 }
}
/********************************
headerのスタイリング
********************************/
.header {
 position: sticky;
 top: 0px;
 left: 0px;
 width: 100%;
 height: 80px;
 background-color: transparent; /*初期の背景色透明*/
 z-index: 99999;
}
.header__container {
 display: flex;
 align-items: center;
 max-width: 1200px;
 height: inherit;
 margin: 0 auto;
 padding: 0 5%;
 transition: background-color 0.5s;
}
.logo {
 font-size: 3.0rem;
 font-weight: 600;
 margin-right: 30px;
}
.logo a {
 display: flex;
 color: #80404D;
 text-decoration: none;
}
.logo-img {
 height: 34px;
 width: auto;
 margin-right: 8px;
}
.header__navigation {
 display: block;
 margin: 0 0 0 auto;
}
.navigation__list li {
 display: inline-block;
 margin-left: 50px;
}
.navigation__link {
 color: #45496A;
 text-decoration: none;
 font-weight: 600;
 font-size: 2.4rem;
}
.navigation__link span {
 display: block;
 font-size: 1.6rem;
}
@media(max-width: 1024px) {
 .header {
  height: 60px;
 }
 .logo {
  font-size: 2.0rem;
 }
 .logo-img {
  height: 30px;
 }
}
/********************************
ハンバーガーボタンのスタイリング
********************************/
@media(max-width: 1024px) {
 .hamburger-btn__wrap {
  display: flex;
  position: absolute;
  top: 0px;
  right: 5%;
  width: 40px;
  height: 60px;
  padding: 0;
  align-items: center;
 }
 .hamburger-btn {
  display: flex;
  position: relative;
  width: inherit;
  height: 30px;
  border: none;
  background-color: transparent; /*背景色透明*/
  cursor: pointer;
  text-align: center;
  justify-content: center;
  color: #45496A;
 }
 .hamburger-btn__text {
  position: relative;
  top: -5px;
  font-size: 1.5rem;
 }
 .hamburger-btn__border span {
  display: inline-block;
  position: absolute;
  left: 2px;
  height: 2px;
  background-color: #45496A;
  content: "";
  transition: all .4s; /*アニメーションの設定*/
  border-radius: 3px;
 }
 .hamburger-btn__border span:nth-of-type(1) {
  top: 50%;
  width: 30px;
 }
 .hamburger-btn__border span:nth-of-type(2) {
  bottom: 5px;
  width: 20px;
 }
 /* ハンバーガーボタンを押した時の動き */
 .hamburger-btn__open .header {
  background-color: #F5F0E9;
 }
 /* menuを消す */
 .hamburger-btn__open .hamburger-btn__text {
  font-size: 0;
 }
 /* menuをcloseへ書き換え */
 .hamburger-btn__open .hamburger-btn__text:before {
  font-size: 1.5rem;
  content: "close";
 }
 /* 2本の線を×にする */
 .hamburger-btn__open .hamburger-btn__border span:nth-of-type(1) {
  left: 6px;
  transform: translateY(7px) rotate(-45deg);
  width: 66%;
 }
 .hamburger-btn__open .hamburger-btn__border span:nth-of-type(2) {
  top: 32px;
  left: 6px;
  transform: translateY(-10px) rotate(45deg);
  width: 66%;
 }
 .header__navigation {
  display: none;
  position: fixed;
  top: 60px;
  width: 100%;
  height: 100%;
  margin: 0 -5%;
  background-color: #F5F0E9;
  z-index: 99999;
 }
 .navigation__list li {
  display: block;
  margin: 0 auto;
 }
 .navigation__list {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
 }
 .navigation__link {
  display: block;
  padding: 24px 0;
  transition: .5s;
  font-size: 2.0rem;
 }
}
/********************************
end headerのスタイリング
********************************/
/********************************
worksSectionのスタイリング
********************************/
.works {
 max-width: 1200px;
 box-sizing: border-box;
 margin: 0 auto 100px;
}
.works ul {
 display: grid;
 gap: 50px 80px;
 grid-template-columns: repeat(2, 1fr);
 justify-content: center;
 padding: 0 40px 30px;
}
.works ul li {
 width: 100%;
 height: auto;
 text-align: left;
 list-style: none;
}
.works ul li img {
 width: 100%;
 height: auto;
 border-radius: 16px;
 box-shadow: 5px 5px 0px 0px rgb(217, 134, 140, 0.5);
}
.works__itemlist-wrapper {
 padding-left: 10px;
}
.works__itemlist__client-name {
 display: block;
 margin: 10px 0;
 color: #808080;
}
.works__notes {
	text-align: left;
	padding: 0 40px;
}
/* h3 のtitleWrap と titleTextは、上部のh3付近に記載*/
@media(max-width: 1024px) {
 .works__itemlist__titleWrap {
  height: 64px;
 }
}
@media(max-width: 700px) {
 .works {
  justify-content: center;
 }
 .works ul {
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  padding: 0 20px 30px;
 }
 .works ul li {
  flex: 0 0 330px;
 }
 .works__itemlist__client-name {
  font-size: 1.5rem;
 }
 .works__itemlist__titleWrap {
  height: 54px;
 }
 .works__notes {
  padding: 0 20px;
 }
}
/********************************
end worksSectionのスタイリング
********************************/
/********************************
footerのスタイリング
********************************/
.footer {
 width: 100%;
 height: auto;
 margin: 0 auto;
}
.footer__contact-bg {
 display: table;
 width: 100%;
 height: 220px;
 background: linear-gradient(45deg, rgba(69, 73, 106, 0.8), rgba(217, 134, 140, 0.8), rgba(245, 240, 233, 0.8)); /*グラデーションを定義*/
 background-size: 300% 200%; /*サイズを大きくひきのばす*/
 animation: bggradation 8s ease infinite;
 /*background-color: rgba(69, 73, 106, 0.4);*/
 padding: 60px 0;
}
/***** footerの背景アニメーション *****/
@keyframes bggradation {
 0% {
  background-position: 0% 50%;
 }
 50% {
  background-position: 100% 50%;
 }
 100% {
  background-position: 0% 50%;
 }
}
.footer__contact {
 display: table-cell;
 vertical-align: middle;
 max-width: 1200px;
 width: inherit;
 height: inherit;
 margin: 0 auto;
}
.footer__contact p {
 color: #FFF;
 font-size: 2.4rem;
 font-weight: 500;
 line-height: 4.3rem;
 padding-bottom: 40px;
}
.contact__button {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 250px;
 height: 70px;
 border: none;
 border-radius: 16px;
 background-color: #D9868C;
 border-bottom: 5px solid #8C575B;
 margin: 3px auto;
}
.contact__button:hover {
 margin-top: 3px;
 background: #D9868C;
 border-bottom: 2px solid #8C575B;
 cursor: pointer;
}
.contact__button_text {
 margin-right: 15px;
 color: #FFF;
 font-size: 2.4rem;
 font-weight: 500;
 letter-spacing: 0.3rem;
 text-decoration: none;
}
.contact__button img {
 width: 30px;
 height: auto;
 margin-bottom: -5px;
}
.copyright {
 display: flex;
 width: 100%;
 height: 20px;
 padding: 5px 0;
 align-items: center;
 text-align: center;
 color: #444;
 font-size: 1.2rem;
 line-height: 1.2rem;
}
.copyright small {
 margin: 0 auto;
}
/***** topへ戻るボタンのスタイリング *****/
.pagetop {
 display: none;
 position: fixed;
 right: 10px;
 bottom: 10px;
 width: 60px;
 height: 60px;
 background-image: url("../images/common/pagetop_btn.png");
 background-size: contain;
 background-repeat: no-repeat;
 opacity: 0.7;
 cursor: pointer;
}
@media (max-width: 1024px) {
 .pagetop {
  width: 45px;
  height: 45px;
 }
}
/***** end Upボタンのスタイリング *****/
@media (min-width: 700px) and (max-width: 1024px) {
 .footer__contact-bg {
  height: 130px;
 }
}
@media (max-width: 1024px) {
 .footer__contact-bg {
  padding: 50px 0;
 }
 .footer__contact p {
  font-size: 1.5rem;
  line-height: 3.0rem;
 }
 .contact__button {
  width: 195px;
  height: 50px;
 }
 .contact__button_text {
  font-size: 2.0rem;
  letter-spacing: 0.2rem;
 }
 .contact__button img {
  width: 25px;
 }
 .copyright {
  height: 10px;
  font-size: 1.0rem;
 }
}
/********************************
end footerのスタイリング
********************************/