@charset "utf-8";

@import url("https://indestructibletype.com/fonts/Jost.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');


/* --------------------------------------------- */
/* Reset 　　　                                   */
/* --------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  text-align: center;
  overflow: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

main {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.6;
}

img {
  border: 0;
  width: 100%;
  max-width: 100%;
  /* 追記確認 */
  pointer-events: none;
  -webkit-touch-callout: none;
  user-select: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

*:focus {
  outline: none;
}

/* --------------------------------------------- */
/* COMMON-style                                  */
/* --------------------------------------------- */

/*fontsize*/
.fz12 {
    font-size: 1.2rem;
}

.fz14 {
    font-size: 1.4rem;
}

.fz16 {
    font-size: 1.6rem;
}

.fz18 {
    font-size: 1.8rem;
}

.fz20 {
    font-size: 2.0rem;
}

.fz22 {
    font-size: 2.2rem;
}

.fz24 {
    font-size: 2.4rem;
}

.fz28 {
    font-size: 2.8rem;
}

body {
  font-family: "Jost", Arial, "Noto Sans JP", Meiryo, sans-serif;
  color: rgb(35, 35, 35);
  line-height: 1.6;
  overflow: hidden;
  font-weight: 400;
  background: linear-gradient(
    -30deg,
    rgba(181, 155, 166, 0.5),
    rgba(181, 155, 166, 0),
    rgba(255, 166, 203, 0.2)
  );
  background-size: 200% 200%;
  animation: bggradient 20s ease infinite;
  position: relative;
  z-index: -1;
  margin: 0;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.main {
  display: block;
  flex: 1;
  margin-top: 8rem;
  overflow: hidden;
}

.wrap {
  width: 94%;
  max-width: 136rem;
  margin: 0 auto;
}

/* --------------------------------------------- */     
/* header                                        */ 
/* --------------------------------------------- */

#header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(181, 155, 166, 0.9);
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); 
  transition: 0.5s;
}

/* header - ナビゲーション*/
.headerNav-hamburger span,
.headerNav-hamburger span::before,
.headerNav-hamburger span::after {
  display: block;
  height: 2px;
  width: 26px;
  transition: 0.6s ease;
  filter:drop-shadow(0px 0px 3px rgba(181, 155, 166, 1));
}

.headerNav-checkbox:checked ~ .headerNav-menu li .headerNav-hamburger span {
  background-color: transparent;
}

.headerNav-checkbox:checked ~ .headerNav-menu li .headerNav-hamburger span::before,
.headerNav-checkbox:checked ~ .headerNav-menu li .headerNav-hamburger span::after {
  margin-top: 0;
}

.headerNav-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  width: 100%;
  padding-left: 1.5rem;
  margin-right: auto;
}

.headerNav-menu-left .headerNav-navigation,
.headerNav-menu-left .headerNav-header {
  justify-content: flex-start;
}

.headerLogo {
  width: 100%;
  max-width: 8rem;
  padding-top: 1rem;
}

.headerLogo img {
filter:drop-shadow(0px 0px 3px rgba(181, 155, 166, 1));
}

.headerNav-menu {
  min-height: 6rem;
  transition: 0.6s ease;
  width: 100%; }

.headerNav-navigation {
  display: flex;
  flex-direction: column;
  max-width: 136rem;
  padding-left: 0;
  margin: 0 auto;
}

.headerNav-menu a,
.headerNav-item a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* .headerNav-item {
  height: 6rem;
  } */
.headerNav-item a {
  padding: 18px 24px 18px 24px;
  display: block;
  position: relative;
 filter:drop-shadow(0px 0px 3px rgba(181, 155, 166, 1));
}

.headerNav-item a::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.8s;
  filter:drop-shadow(0px 0px 3px rgba(181, 155, 166, 1));
}

.headerNav-item a:hover::after {
opacity: 1;
}

.headerNav-hamburger {
padding: 18px 24px 18px 24px;
position: relative;
cursor: pointer;
}

.headerNav-hamburger span::before, .headerNav-hamburger span::after {
  content: '';
  position: absolute;
}

.headerNav-hamburger span::before {
  margin-top: -8px;
}

.headerNav-hamburger span::after {
  margin-top: 8px;
}

.headerNav-checkbox {
  display: none;
}

.headerNav-checkbox:not(:checked) ~ .headerNav-menu {
  overflow: hidden;
  height: 6rem;
}

.headerNav-checkbox:checked ~ .headerNav-menu {
  transition: height 0.6s ease;
  height: 100vh;
  overflow: auto;
}

.dropdown {
  position: relative;
  height: auto;
  min-height: 6rem;
}

.dropdown:hover > ul {
  position: relative;
  display: block;
  min-width: 100%;
}

.dropdown > a::after {
  position: absolute;
  content: '';
  right: 10px;
  top: 25px;
  border-width: 5px 5px 0;
  border-color: transparent;
  border-style: solid;
}

.dropdown > ul {
display: block;
overflow-x: hidden;
list-style: none;
padding: 0;
}

.dropdown > ul .headerNav-item {
min-width: 100%;
height: 29px;
padding: 5px 10px 5px 40px;
}

.dropdown > ul .headerNav-item a {
min-height: 29px;
line-height: 29px;
padding: 0;
}

.headerNav-checkbox:checked + .headerNav-menu .headerNav-hamburger-wSpin span::before {
  transform: rotate(225deg);
}

.headerNav-checkbox:checked + .headerNav-menu .headerNav-hamburger-wSpin span::after {
  transform: rotate(-225deg);
}

.headerNav-checkbox:checked + .headerNav-menu .headerNav-hamburger-spin span::before {
  transform: rotate(45deg);
}

.headerNav-checkbox:checked + .headerNav-menu .headerNav-hamburger-spin span::after {
  transform: rotate(-45deg);
}

/* .mouveshadows, */
.mouveshadows .dropdown ul {
  background-color: rgba(181, 155, 166, 0.9);
  color: #fff;
}

.mouveshadows .headerNav-hamburger span,
.mouveshadows .headerNav-hamburger span::before,
.mouveshadows .headerNav-hamburger span::after {
  background-color: #fff;
}

/* スクロールで表示非表示 */
#header.hide {
    transform: translateY(-100%);
}




/* --------------------------------------------- */     
/* footer                             　　　　　   */ 
/* --------------------------------------------- */
#footer {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* 上に戻るボタン */
#pageTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99;
  transform: rotateY(0deg);
  transition: 1s;
    opacity: 0;
}

#pageTop a {
  display: block;
  width: 10rem;
  height: 10rem; 
  background-image: url(img/test1.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform: rotateY(360deg);
}

#pageTop:hover a {
  transition: 1s ;
  transform: rotateY(-360deg);
  opacity: 1;
}





/* --------------------------------------------- */     
/* MOBILE-style                                  */ 
/* --------------------------------------------- */

/* ===========index.html=========== */
/* 現在地表示　HOME */
#home .headerNav-item:nth-of-type(2) a::after {
opacity: 1;
}

/* キャッチ */
.catch {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.block_1 {
  flex-grow: 0;
  flex-shrink: 0;
  margin-top: 3rem;
}

.block_1 h1 {
  margin-bottom: 2rem;
}

.block_1 h1 span {
font-size: 2rem;
padding-right: 0.3rem;
}

/* トップジュアルとメッセージ */
.block_2 {
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  width: 90%;
  max-width: 68rem;
  z-index: 0;
}

.topMessage {
  margin-top: 5rem;
}

.topMessage h2 {
  font-family: "Sawarabi Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  display: inline-block;
  color: #333;
  /* color: rgba(181, 155, 166, 1); */
}

.topMessage::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background-image: url(img/nine_cube.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
  margin-top: 3rem;
}


.welcomeFlower img {
  max-width: 30rem;
}

/* コンセプト */
.block_3 {
  background-color: rgba(181, 155, 166, 0.1);
}

.concept {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.concept h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.concept h3 {
  color: #59404b4d;
  font-family: "Sawarabi Mincho","Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.concept p {
  text-align: left;
  margin-bottom: 1.8rem;
}

/* サービス */
.service {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.service h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.service .wrap ul li:not(:last-of-type) {
  margin-bottom: 2rem;
}

.service dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

.service dl dt {
  width: 8rem;
  height: 0;
  padding-top: 8rem;
  margin-right: 2rem;
  border-radius: 50%;
  background-color: rgba(181, 155, 166, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.service dl dt span {
  flex-grow: 0;
  flex-shrink: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.service dl dd {
  width: calc(100% - 10rem);
}

.service dl dd p {
  text-align: left;
}

.serviceName {
  font-weight: bold;
}

/* プロフィール */
.block_5 {
  background-color: rgba(181, 155, 166, 0.1);
}

.prof {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.prof h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.profData {
  display: flex;
  flex-direction: column;
}
.profData .imageBox {
  position: relative;
}

.profData .imageBox::before {
  content: "";
  display: block;
  width: 30%;
  height: 0;
  padding-top: 30%;
  margin: 0 auto;
  background-image: url(img/profileImage.webp);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
}

.profData .imageBox div img {
  border-radius: 50%;
}

.profData dl {
  margin-top: 3rem;
}

.profData dl dt {
  margin-bottom: 2rem;
}

.profData dl dd {
  text-align: left;
}

/* プライバシーポリシーへのリンク */
.block_6 {
  background-color: rgba(89, 64, 75, 0.8);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.linkPolicy a {
  color: #fff;
  font-size: 1.2rem;
}

/* ==========works.html=========== */
/* 現在地表示 WORKS */
#works .headerNav-item:nth-of-type(3) a::after {
opacity: 1;
}

#works h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

/* スライダーのスタイル設定　*/
.slider {
  position: relative;
  width: 70%;
  height: 0;
  padding-top: 70%;
  margin: 3rem auto 0;
  padding: 0 auto;
  text-align: center;
}

.slider .slider-inner {
  margin: 0;
  padding: 0;
 }
 
.slider .slider-inner img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 auto;
}

.slider .slider-inner .slider-item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 36s;
}
   
/* アニメーション開始時間の設定 */
.slider .slider-inner .slider-item:nth-child(1) {
  animation-name:top_slider;
  animation-delay:-1s;
}

.slider .slider-inner .slider-item:nth-child(2) {
  animation-name:top_slider;
  animation-delay:8s;
  opacity:0;
}

.slider .slider-inner .slider-item:nth-child(3) {
  animation-name:top_slider;
  animation-delay:17s;
  opacity:0;
}

.slider .slider-inner .slider-item:nth-child(4) {
  animation-name:top_slider;
  animation-delay:26s;
  opacity:0;
}

/* フェードイン・フェードアウトの設定 */
@keyframes top_slider {
  0% {
    opacity:0;
    }
  2.77% {
    opacity:1;
    }
  22.22% {

    opacity:1;
    }
  25% {
    opacity:0;
    }
  100% {
    opacity:0;
    }
  } 

/* ==========contact.html=========== */
/* 現在地表示 CONTACT */
#contact .headerNav-item:nth-of-type(5) a::after,
#formSend .headerNav-item:nth-of-type(5) a::after,
#formRedo .headerNav-item:nth-of-type(5) a::after {
opacity: 1;
}

#contact .main {
margin-bottom: 8rem;
}

#contact h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

#contact .formInfo {
  text-align: left;
} 

#contact #formWrap {
	width:100%;
  max-width: 80rem;
	margin:0 auto;
}

#contact table.formTable {
	width:100%;
	margin: 3rem auto 0; 
	border-collapse:collapse;
}
#contact table.formTable td, #contact table.formTable th {
	border:0;
  width:auto;
	display:block;
  padding: 0.6rem;
}
#contact table.formTable th {

	width:100%;
	font-weight:normal;
	text-align:left;
  border-radius: 5px;
}
#contact table.formTable tr:not(:first-of-type) th {
	margin-top: 1rem;
	border-bottom:0;
}

#contact table.formTable td {
  background-color: #fff;
  border: 1px solid rgba(181, 155, 166, 0.9);
  border-radius: 5px;
}

#contact table.formTable  .attachment td {
  text-align: left;
  border: 0;
  background-color: transparent;
}

#contact table.formTable  .attachment td input[type="file"] {
  display: inline-block;
  font-size: 1.6rem;
  max-width: 23rem;
}

#contact form .required {
  display: inline-block;
  font-size: 1.2rem;
  color: rgb(230, 25, 25);
  margin-left: 0.5rem;
}

#contact input[type="text"], textarea {
	width:100%;
	padding:5px;
  font-size: 1.6rem;
	display:block;
}

#contact form .btnArea {
  margin-top: 5rem;
}

#contact input[type="submit"],
#contact input[type="reset"],
#contact input[type="button"] {
  font-size: 1.4rem;
	display:block;
	width:100%;
  max-width: 40rem;
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#contact input[type="submit"] {
  background-color: rgba(181, 155, 166, 0.9);
  margin-bottom: 1.6rem;
  transition: 0.3s;
}

#contact input[type="submit"]:hover {
background-color: hsla(335, 30%, 66%, 0.9);
color: #fff;
}

#contact input[type="reset"] {
  background-color: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

#contact input[type="reset"]:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

/* 確認画面と完了画面 */
#formSend,
#formRedo {
  text-align: center;
}

#formSend .wrap,
#formRedo #formWrap {
  width: 94%;
	max-width:80rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
	margin:0 auto;
	color:#555;
}

#formSend .wrap {
  font-size: 1.6rem;
}

#formSend .wrap a {
  display: block;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  background-color: rgba(181, 155, 166, 0.9);
  color: #333;
  transition: 0.3s;
}

#formSend .wrap a:hover {
  opacity: 1;
  color: #fff;
  background-color: hsla(335, 30%, 66%, 0.9);
}

#formSend table.formTable,
#formRedo table.formTable {
	width:100%;
	margin:3rem auto 0;
	border-collapse:collapse;
}
#formSend table.formTable td,
#formRedo table.formTable td,
#formSend table.formTable th,
#formRedo table.formTable th {
  font-size: 1.6rem;
	border:1px solid #ccc;
	padding:10px;
}
#formSend table.formTable th,
#formRedo table.formTable th {
	width:30%;
	font-weight:normal;
	background: rgba(181, 155, 166, 0.3);
	text-align:left;
}
#formSend p.error_messe,
#formRedo p.error_messe {
  font-size: 1.6rem;
	color:rgb(230, 25, 25);
  margin-bottom: 1rem;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/

#formSend ptable.formTable th,
#formRedo table.formTable th,
#formSend ptable.formTable td,
#formRedo table.formTable td {
  text-align: left;
	width:auto;
	display:block;
  padding: 0.6rem 1rem;
}

#formSend table.formTable tr,
#formRedo table.formTable tr {
  margin-bottom: 1rem;
}

#formSend table.formTable th,
#formRedo table.formTable th {
  font-size: 1.6rem;
	margin-top:2rem;
	border-bottom:0;
}

#formSend input[type="submit"],
#formSend input[type="reset"],
#formSend input[type="button"],
#formRedo input[type="submit"],
#formRedo input[type="reset"],
#formRedo input[type="button"] {
	display:block;
  font-size: 1.6rem;
	width:100%;
  max-width: 40rem;
  padding: 1.5rem 1rem;
  margin: 0 auto;
}

#formRedo input[type="submit"] {
  background-color: rgba(181, 155, 166, 0.9);
  margin-bottom: 1.6rem;
    transition: 0.3s;
}

#formRedo input[type="submit"]:hover {
  background-color: hsla(335, 30%, 66%, 0.9);
  color: #fff;
}

#formRedo input[type="button"] {
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

#formRedo input[type="button"]:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}

#formRedo h3 {
  font-size: 2.4rem;
  margin-bottom: 5rem;
}

#formRedo h4,
#formSend h4 {
  margin-bottom: 5rem;
}

#formRedo p {
  font-size: 1.6rem;
}

#formRedo form {
  width: 100%;
  max-width: 80rem;
}

#formRedo form .btnArea {
  margin-top: 5rem;
}

/* ==========privacypolicy.html=========== */
/* 現在地表示 なし */

#privacypolicy .policy {
  padding-bottom: 8rem;
  max-width: 80rem;
  margin: 0 auto;
}

#privacypolicy .policy h1 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

#privacypolicy .policy h2 {
text-align: left;
font-weight: bold;
border-bottom: 1px dotted rgba(181, 155, 166, 0.5);
padding-bottom: 0.5rem;
margin-bottom: 1.6rem;
}

#privacypolicy .policy h2:not(:first-of-type) {
  margin-top: 3rem;
}

#privacypolicy .policy p a {
  color: #333;
  text-decoration: underline;
}

#privacypolicy .policy p,
#privacypolicy .policy ul {
  text-align: left;
}

#privacypolicy .policy ul {
  font-size: 1.4rem;
  margin-top: 2rem;
}

#privacypolicy .policy ul  li {
  padding-left: 2rem;
  position: relative;
}

#privacypolicy .policy ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #333;;
  position: absolute;
  left: 0.8rem;
  top: 0.9rem;
}

#privacypolicy .disclosure,
#privacypolicy .sign {
  font-size: 1.4rem;
  text-align: right;
}

#privacypolicy .disclosure {
  margin-top: 3rem;
}



/* ==========blogStyle.php=========== */
/* 現在地表示 blog */
#blogStyle .headerNav-item:nth-of-type(4) a::after {
opacity: 1;
}

#blogStyle h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}






/* --------------------------------------------- */
/* PC-style ※画面幅が768px以上　　　　　　　　　　　   */
/* --------------------------------------------- */

/* header */
@media screen and (min-width: 768px) {
  .headerNav-navigation {
    flex-flow: row;
    justify-content: flex-end;
  }

  .headerNav-hamburger {
    display: none;
  }

  .headerNav-checkbox:not(:checked) ~ .headerNav-menu {
    overflow: visible;
  }

  .headerNav-checkbox:checked ~ .headerNav-menu {
    height: 6rem;
  }

  .headerLogo {
  max-width: 10rem;
  }

  .headerNav-menu .headerNav-item {
    border-top: 0;
  }

  .dropdown {
    height: 6rem;
  }
  
  .dropdown:hover > ul {
    position: absolute;
    left: 0;
    top: 6rem;
    padding: 0;
  }

  .dropdown > ul {
    display: none;
  }

  .dropdown > ul .headerNav-item {
    padding: 5px 10px;
  }

  .dropdown > ul .headerNav-item a {
    white-space: nowrap;
  } 

  .main {
    margin-top: 12rem;
  }

/* footer */
  #pageTop a {
  width: 15rem;
  height: 15rem;
  }

/* index.html */
/* block_1 block_2 横並び */
 .catch {
   flex-direction: row-reverse;
   justify-content: space-around;
   margin-bottom: 12rem;
  }

  .block_1 {
    width: 30%;
    min-width: 30rem;
    text-align: left;
  }

  .block_2 {
    display: block;
    flex-shrink: 1;
    text-align: left;
    width: 60%;

  }
  
  .welcomeFlower img {
    width: 80%;
    max-width: initial;
  }

  .topMessage {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .topMessage::after {
    display: none;
  }

  .topMessage h2 {
    background-color: rgba(89, 64, 75, 0.8);
    min-width: 36rem;
    text-align: center;
    padding: 3rem;
  } 

  .topMessage h2 span {
    display: inline-block;
    color: #fff;
  }

  .topMessage h2 span:not(:last-of-type) {
    padding-right: 1rem;  
  }

/* 共通 */

  .concept h2,.service h2,.prof h2 {
    font-size: 5rem;
  }

/* コンセプト */

.concept {
    padding-top: 12rem;
    padding-bottom: 12rem;
}

  .concept p {
  text-align: center;
}


/* サービス */
  .service {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .service .wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 120rem;
    margin: 0 auto;
  }

  .service .wrap ul li {
    width: 45%;
    flex-grow: 0;
    flex-shrink: 1;
  }

  .service .wrap ul li:not(:last-of-type) {
  margin-bottom: 5rem;
}
  
  .service .wrap ul li:last-of-type,
  .service .wrap ul li:nth-last-of-type(2) {
    margin-bottom: 0;
  }

  .service dl {
  flex-direction: column;
  }

  .service dl dt {
    margin-right: 0;
    margin-bottom: 3rem;
  }

  .service dl dd p.serviceName {
    text-align: center;
    margin-bottom: 1rem;
  }


/* クリエイター */
  .prof {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .profData .imageBox::before {
  width: 25rem;
  height: 0;
  padding-top: 25rem;
  }

  .profData {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
  }

  .profData .imageBox {
    width: 25rem;
  }

  .profData dl {
    width: calc(90% - 25rem);
    margin-top: 0;
  }

  .profData dl dt {
    text-align: left;
  }

  .profData dl dd:not(:last-of-type) {
    margin-bottom: 1.8rem;
  }

  /* contact.html */
  #contact .main {
    margin-bottom: 12rem;
  }

  .formInfo {
  text-align: center;
  }

  /* privacypolicyhtml */
  #privacypolicy .policy {
    margin-bottom: 12rem;
  }

}