@charset "utf-8";
/* CSS Document */
/*
Theme Name: portfolio_site
Theme URI: http://portfolio.akachanpic.com
Description: ポートフォリオサイト用のテーマです。
Version: 1.0
Auther: akachanpic
Auther URI: akachanpic
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
:root {
  --accent-color: #EDDE9F;
  --sub-color: #EDDE9F;
  --main-color: #214151;
  --base-color: #ffff;
  --base-color-ground:#E6E2D5 ;
  
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}



body {
  color: var(--main-color); /* RGB */
  font-family: "futura-pt", "yu-mincho-pr6n", sans-serif;
  font-weight: 300;

  font-size: 1.6em;
  line-height: 1.5;
  text-align: left;
  background-color: #ffff;
}
.none {
  display: none;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  z-index: 100;
  color: var(--main-color); /* RGB */
  font-family: "futura-pt", "yu-mincho-pr6n", sans-serif;
  font-weight: 300;
  font-size: 1em;
  color: #214151;
    line-height: 1.5;
  text-align: left;
  background-color: #ffff;
  
}

.header-content-wrapper {
  width: 100%;
  max-width: calc(640px + 50%);
  height: 100%;
  padding: 0 24px 0;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 200px;
  padding-top: 10px;
}
.openbtn1 {
  display: none;
}
.header nav {
  display: block;
}
.header ul {
  display: flex;
  justify-content: space-between;
  width: 220px;
  align-items: center;
}
.header nav ul li a {
  text-decoration: none;
  color: var(--main-color);
  position: relative;
  transition: ease .2s;
}
.header nav ul li a img {
  padding-top: 4.75px;
}
.header nav ul li a::before {
  content: "";
  position: absolute;
  background-image:url("assets/images/top/img01.png");
  background-size: contain;
  width: 50px;
  height: 50px;
  z-index: -1;
  left: calc(50% - 25px);
  top: calc(50% - 23px);
  opacity: 0;
  transition: ease .2s;
}
.header nav ul li a:hover::before {
  opacity: 1;
}

.link:visited{
    color: var(--main-color);
  }


@media(max-width: 1024px) {
  .openbtn1 {
    display: block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 300;
    margin-right: -13.75px;
  }
  .openbtn1 span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--main-color);
    width: 45%;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn1 span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn1 .underlay {
    display: none;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn1.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn1.active .underlay {
    content: "";
    display: block;
    z-index: 200;
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
  }
  .header ul {
    width: 100%;
  }
  #nav {
    display: block;
    z-index: 200;
    position: fixed;
    top: 0;
    right: -100%;
    background-color: rgba(237, 222, 159, 0.8);
    width: 60%;
    height: 100%;
    padding: 40px;
    box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.4)
  }
  #nav.open {
    right: 0;
  }
  #nav ul {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
  }
  #nav ul li{
    width: 100%;
    line-height: 4.8rem;
  }
  #nav ul li:not(:last-child){
    border-bottom: dashed 1px var(--main-color);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
  font-size: 1.4rem;
}
#page-top::before {
  content: "";
  background-image: url("assets/images/top/img03.png");
  background-size: cover;
  display: block;
  position: absolute;
  width: 70px;
  height: 70px;
  top: -20px;
  left: -20px;
  z-index: -1;
}
#page-top a {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: var(--main-color);
  text-decoration: none;
}
#page-top a::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 1px;
  height: 50px;
  background: var(--main-color);
}
#page-top a::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: var(--main-color);
  transform: skewX(31deg);
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}


.section-topimage__toplogo video {
    width: 100%;
    max-width: 500px;
    position: absolute;
    top: calc(50% - 50vw);
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.footer {
  text-align: center;
}
/*----------------------ここからトップページ------------------------*/
#fixed-area {
  overflow-x: hidden;
}
.section-topimage {
  width: 100%;
  max-width: 640px;
  height: 80vh;
  position: relative;
  margin: 0 auto;
}
.section-topimage__toplogo img {
  width: 100%;
  padding: 5%;
}
.section-topimage__img01 {
  position: absolute;
  top: -50px;
  left: -50px;
}
.section-topimage__img01 img {
  width: 260px;
}
.section-topimage__img02 {
  position: absolute;
  top: 40px;
  left: 0px;
}
.section-topimage__img02 img {
  width: 180px;
}
.section-topimage__img03 {
  position: absolute;
  bottom: 114px;
  right: 47px;
}
.section-topimage__img03 img {
  width: 100px;
}
.section-topimage__img04 {
  position: absolute;
  bottom: 0;
  right: -54px;
}
.section-topimage__img04 img {
  width: 180px;
}
.scrolldown2 {
  position: absolute;
  bottom: 60px;
  right: 20px;
}
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  right: 15px;
  bottom: 15px;
  /*テキストの形状*/
  color: var(--main-color);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-color);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: var(--main-color);
}
@media(min-width: 500px) {
  .section-topimage__toplogo video {
    top: calc(50% - 250px);
    left: calc(50% - 250px);
  }
}
.section-concept {
  padding: 0 24px;
  margin: 0px auto 100px;
  position: relative;
  max-width: 640px;
}
.section-concept::before {
  content: "";
  width: 340px;
  height: 340px;
  background-image: url("assets/images/top/img05.png");
  background-size: contain;
  position: absolute;
  left: -55px;
  top: -80px;
  z-index: -1;
}
.section__toptitle {
 
  padding: 2%;
}
.section__topsubtitle {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.section-about {
  padding: 0 24px;
  margin: 0 auto 100px;
  max-width: 640px;
}
.section-about h2 {
  text-align: right;
}
.section-about h3 {
  text-align: right;
  margin-right: -2.4rem;
}
.section-about p {
  margin-bottom: 60px;
}
.section-about__visual {
  width: 100%;
  max-width: 400px;
  margin: 5%;
}
.section-about__visual img {
  width: 85%;
  object-fit: contain;
}
.morebutton-wrapper {
  text-align: right;
}
.morebutton {
  position: relative;
  padding: 5px 30px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: var(--main-color);
  background-color: var(--sub-color);
  box-shadow: 0 3px 5px rgb(0 0 0 / 25%);
  transition: ease .2s;
}
.morebutton::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 30px;
  height: 1px;
  background: var(--main-color);
  transition: all .2s linear;
}

.morebutton:hover {
  background-color: var(--accent-color);
}
.morebutton:hover::before {
  width: 39px;
  right: -24px;
}
.morebutton:hover::after {
  right: -20px;
}




@media (min-width: 1025px) {
  #wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  #fixed-area {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 50%;
    height: 100vh;
    overflow-x: visible;
  }
  #container {
    width: 50%;
    z-index: 1;
  }
  .section-concept {
    height: 35vh;
    margin-top: 27vh;
  }
}
.section-works {
  padding: 0 24px;
  margin: 0 auto 100px;
  max-width: 640px;
  background-color: rgba(230, 226, 213, 0.3);
}
.section-works__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding-top: 40px;
}
.section-works__list li {
  width: 100%;
  margin-bottom: 30px;
}
.section-works__list-img {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
 
  transition: all .8s ease;
}
.section-works__list-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-works__list-img:hover {
  transform: scale(1.05);
}
@media (min-width: 1025px) {
  .section-works {
    margin: 70px auto 100px;
    max-width: 1200px;
  }
  .section-works h2 {
    text-align: center;
  }
  .section-works__list li {
    width: 50%;
    position: relative;
    margin-bottom: 100px;
  }
 
  .section-works__list-img {
    width: 90%;
    padding-top: 60.3%;
    box-shadow: 0 3px 5px rgb(0 0 0 / 25%);
  }
  .section-works__list li:nth-child(odd) .section-works__list-img {
    margin-left: 2.4rem;
  }
  .section-works__list li:nth-child(even) .section-works__list-img {
    margin-right: 0;
    margin-left: auto;
  }
  .section-works__list-category {
    text-align:center;
    padding-top: 5px;
  }
  .section-works__list li:nth-child(even) .section-works__list-category {
    left: auto;
    right: 90%;
  }
}
.section-contact {
  padding: 0 24px;
  margin: 0 auto 100px;
  max-width: 640px;
}
.section-contact h2 {
  text-align: center;
}
.section-contact__feelfree {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 60px;
}
.section-contact__form p {
  margin-bottom: 30px;
}
.form-content__name, .form-content__email, .form-content__message{
  display: block;
  width: 100%;
  height: 40px;
  border: none;
  font-family: "futura-pt", "yu-mincho-pr6n", sans-serif;
  font-weight: 300;
 
  background-color: #deddd9;
}
.form-content__message {
  height: 300px;
}
.section-contact__form-privacylink {
  color: var(--main-color);
}
.section-contact__form-submit {
  display: block;
  height: 34px;
  width: 140px;
  background-color: var(--sub-color);
  border: none;
  color: var(--main-color);
  font-family: "fot-tsukuardgothic-std";
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
/*----------------------ここからaboutページ-------------*/
.about-main {
  margin-top: 100px;
}
.about-main h1 {
  max-width: 1248px;
  margin: 91px auto 20px;
  padding: 0 24px;
}
.section-about__biography {
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px 0;
  margin: 0 auto 200px;
  max-width: 1248px;
}
.section-about__biography h2 {
  margin-bottom: 40px;
}

.bio-title{
  background:linear-gradient(transparent 50%, #E6E1D3 30%);
}

.strengths{
  margin: 0 auto;
   padding: 5% 2%;
 display: flex;
 flex-direction:column;
 align-items: center;

 background-color: rgba(230, 226, 213, 0.3);
}


.about-sub{
  margin: 0 auto;
   padding: 5% 2%;
 display: flex;
 flex-direction:column;
 align-items: center;

 
}


.profile {
  width: 40%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align:center;
}
.profile-image {
  width: 280px;
  height:310px;
  margin:40px auto 40px;
}
.profile-image img{
 
  height:80%;
 }
.profile-name {
  font-weight:300;
  font-size: 2.0rem;
  margin-bottom: 20px;
}
.biography {
  width:60%;
}
.biography ol {
  margin-left: 16px;
  padding-left: 34px;
  list-style: none;
  border-left: dashed 3px var(--sub-color);
}
.biography ol li {
  margin-bottom: 30px;
  position: relative;
}
.biography ol li::before {
  position: absolute;
  content: "";
  display: block;
  background-image:url("assets/images/about/image/biography_dot.PNG") ;
  width: 30px;
  height: 30px;
  background-size: cover;
  left: -50px;
  top: -2px;
}
@media (max-width: 1024px){
  .about-main {
    margin-top: 60px;
  }
  .about-main {
    margin-bottom: 30px;
  }
  .section-about__biography {
    margin-bottom: 100px;
  }
  .profile {
    width: 100%;
 
  }
  .profile-image {
    margin-top:0;
  }
  .biography {
    width: 100%;
  }
}
.section-strength__wrapper {
  width: 100%;
  overflow-x: hidden;
}
.section-strength {
  padding: 0 24px 0;
  margin: 0 auto 200px;
  max-width: 1248px;
}
.section-strength h2{
  margin: 50px 0 20px;
}


.section-strength h3 {
  font-weight: 300;
  font-size: 2.4rem;
}
.section-strength__logical-wrapper {
  width: 100%;
  display:flex;
  justify-content: flex-end;
  position: relative;
}
.section-strength__logical-wrapper::before {
  content:"";
  position: absolute;
  top: -300px;
  right:-359px;
  width: 1966px;
  height: 300px;
  background-color: #ffffff;
  z-index: -1;
}
.section-strength__logical-wrapper::after {
  content:"";
  position: absolute;
  top: 0;
  right: -359px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 428px 983px 428px 983px;
  border-color: #ffffff #ffffff transparent transparent;
  z-index: -1;
}
.section-strength__logical-bgtitle {
  position: absolute;
  bottom: 100px;
  left: 0;
}
.section-strength__creative-bgtitle {
  position: absolute;
  bottom: -340px;
  right: 0;
}
.section-strength__logicalthinking {
  width: 50%;
}
.section-strength__logicalthinking img {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 30px;
}
.section-strength__creative-wrapper {
  width: 100%;
  display:flex;
  justify-content: flex-start;
}
.section-strength__creativemind {
  width: 50%;
}
.section-strength__creativemind img {
  display: block;
  width: 100%;
  max-width: 344px;
  margin: 0 auto 30px;
}
@media (max-width: 1024px){
  .section-strength {
    margin-bottom: 140px;
  }
  .section-strength h3 {
    margin-bottom: 80px;
  }
  .section-strength__logical-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .section-strength__logicalthinking {
  width: 100%;
    margin-top: -30px;
}
  .section-strength__creative-wrapper {
    max-width: 600px;
    margin: 300px auto 0;
  }
  .section-strength__creativemind {
  width: 100%;
}
  .section-strength__logical-bgtitle {
    bottom: -190px;
  }
  .section-strength__creative-bgtitle {
    bottom: -360px;
  }
}
@media (max-width: 410px){
  .section-strength__creative-bgtitle {
    bottom: -280px;
  }
}
.section-skills {
  width: 100%;
  padding: 0 24px 0;
  margin: 0 auto 200px;
  max-width: 1248px;
}
.section-skills h2 {
  margin-bottom: 40px;
  text-align: center;
}
.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 327px);
  gap: 90px;
  grid-row-gap: 0px;
  justify-content: center;
  list-style: none;
}
.skills-list img {
  width: 72px;
  text-align: center;
  margin-bottom: 40px;
}
.skills-list li {
  text-align: center;
  padding: 30px 24px 30px;
  background-color: #ffffff;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.skills-list p {
  text-align: left;
  margin-bottom: 20px;
}
.skillname {
  font-weight: 300;
  margin-bottom: 20px;
}
.application {
  margin-bottom: 10px;
}
/*-------------------ここからwork-singleページ-----------------*/
.worktitle-wrapper {
  margin: 100px auto 100px;
  max-width: 1128px;
  padding: 0 24px;
  position: relative;
}
.worktitle {
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  border-left: solid 20px var(--sub-color);
}
.worktitle h1 {
  font-weight: 300;
  font-size: 3.6rem;
}
.worktitle h2 {
  font-size: 2.4rem;
}
.category {
  position: absolute;
  left: 0;
  -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  font-size: 1.6rem;
  height: calc(100% + 60px);
}
.work-image__wrapper {
  margin: 0 auto 100px;
  padding: 0 24px;
  max-width: 948px;
}
.work_image {
  width:100%;
}
.work_image img {
  width:100%;
  height:auto;
}
/*-----------企画書--------------*/
.docswell-link {
  display:none;
}
.description-wrapper {
  padding: 0 24px;
  margin: 0 auto 100px;
  max-width: 1128px;
}
.description {
  background-color: #ffffff;
  padding: 20px 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  list-style: none;
}
.description li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.description li:last-child {
  margin-bottom: 0;
}
.description-title {
  width: 15%;
  font-weight: 300;
}
.description-text {
  width: 85%;
  padding-left: 20px;
}
/*-------wordpress本文--------*/
.blog-content {
  max-width: 948px;
  margin: 0 auto 100px;
  padding: 0 24px;
}
/*-------blog card--------*/
.blogCard {
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 12px;
  margin-bottom: 1.6rem;
  background-color:#fff;
}
.blogCardCont {
  position: relative;
  margin-bottom: 5px;
  min-height: 100px;
}
.blogCardCont p {
  font-size: 12px;
  overflow: hidden;
  margin: 0;
}
.blogCardTxt {
  margin-right: 110px;
}
.blogCardTxt p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blogCardTitle {
  margin-bottom: 5px;
  overflow: hidden;
  -webkit-line-clamp: 2 !important;
}
.blogCardTitle a {
  font-size: 14px;
  line-height: 1.4;
  color: #3d3f44;
  font-weight: 300;
  text-decoration: none;
}
.blogCardTitle a:hover {
  text-decoration: underline;
}
.blogCardImg {
  position: absolute;
  top: 0;
  right: 0;
}
.blogCardImg__wrap {
  float: right;
  width: 15%;
  min-width: 100px;
  height: 100px;
  overflow: hidden;
  position: relative;
}
.blogCardImg__wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  max-height: 100%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.blogCardFooter {
  font-size: 12px;
}
.blogCardFooter a {
  color: #9aa5ab;
}
.blogCardFooter a img {
  margin-right: 5px;
}
.blogCardTitle a i,
.blog article .blogCardFooter a i {
  display: none;
}
.blogCard.blogCard--noimg .blogCardCont {
  min-height: auto;
}
blogCard.blogCard--noimg .blogCardTxt {
  margin-right: 0;
}
.work__morebutton-wrapper {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 700px){
  .worktitle-wrapper {
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .worktitle {
    padding: 2px 10px;
  }
  .worktitle h1 {
    font-size: 2.0rem;
  }
  .worktitle h2 {
    font-size: 1.4rem;
  }
  .work-image__wrapper {
    margin-bottom: 30px;
  }
  .description-wrapper {
    margin-bottom: 30px;
  }
  .description {
    font-size: 1.4rem;
    padding-left: 10px;
    padding-right: 10px;
  }
  .description li {
    margin-bottom: 20px;
  }
  .description-title {
    width: 100%;
    margin-bottom: 8px;
  }
  .description-text {
    padding-left: 0;
    width: 100%;
  }
  .blog-content {
    margin-bottom: 50px;
  }
  .work__morebutton-wrapper {
    margin-bottom: 30px;
  }
}
/*----------------------ここからworksのカテゴリページ-------------*/
.page-title {
  max-width: 1248px;
  margin: 100px auto 60px;
  padding: 0 24px;
}
.tag-list {
  max-width: 400px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.tag-list a {
  text-decoration: none;
  color: var(--main-color);
  padding: 0 10px 3px;
  position: relative;
}
.tag-list a::before {
  content: "";
  position: absolute;
  background-image:url("assets/images/top/img04.png");
  background-size: contain;
  width: 50px;
  height: 50px;
  z-index: -1;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  opacity: 0;
  transition: ease .2s;
}
.tag-list li.current a::before,
.tag-list a:hover::before {
   /*背景の形状*/
  opacity: 1;/*不透明に*/
}
@media(max-width: 768px){
  .page-title{
    margin-top: 60px;
    margin-bottom:30px;
  }
  .tag-list {
    margin-bottom: 0;
  }
}
/*------------------------ここからprivacy-policyページ---------------*/
.privacypolicy-main {
max-width: 1248px;
  margin: 100px auto 60px;
  padding: 0 24px;
}
.privacypolicy-main h1 {
  height: auto;
  margin-bottom: 60px;
}
.privacypolicy-main h2 {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.privacypolicy-main p {
  margin-bottom: 40px;
}
.privacypolicy-main ul {
  padding-left: 24px;
  margin-bottom: 40px;
}





/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
      z-index: 1;
      /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
      height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
  /*　背景画像設定　*/
  
  .slider-item01 {
      background:url(../img/img_01.jpg);
  }
  
  .slider-item02 {
      background:url(../img/img_02.jpg);
  }
  
  .slider-item03 {
      background:url(../img/img_03.jpg);
  }
  
  .slider-item {
      width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
      height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
      background-repeat: no-repeat;/*背景画像をリピートしない*/
      background-position: center;/*背景画像の位置を中央に*/
      background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
  }
  
  /*矢印の設定*/
  
  .slick-prev, 
  .slick-next {
      position: absolute;
      z-index: 3;
      top: 42%;
      cursor: pointer;/*マウスカーソルを指マークに*/
      outline: none;/*クリックをしたら出てくる枠線を消す*/
      border-top: 2px solid #fff;/*矢印の色*/
      border-right: 2px solid #fff;/*矢印の色*/
      height: 25px;
      width: 25px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
      left:2.5%;
      transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
      right:2.5%;
      transform: rotate(45deg);
  }
  
  /*ドットナビゲーションの設定*/
  
  .slick-dots {
      position: relative;
      z-index: 3;
      text-align:center;
      margin:-50px 0 0 0;/*ドットの位置*/
  }
  
  .slick-dots li {
      display:inline-block;
      margin:0 5px;
  }
  
  .slick-dots button {
      color: transparent;
      outline: none;
      width:8px;/*ドットボタンのサイズ*/
      height:8px;/*ドットボタンのサイズ*/
      display:block;
      border-radius:50%;
      background:#fff;/*ドットボタンの色*/
  }
  
  .slick-dots .slick-active button{
      background:#333;/*ドットボタンの現在地表示の色*/
  }



  .pc{
  
    display: block;
  }


.sp{

  display: none;

}

.akachan-pic{
  width: 120px;
}

.aboutme{
  width: 160px;
  margin-left: 5%;
}


@media (max-width: 700px){
  .pc{
  
    display: none;
  }


  .sp{

    display: block;
    
  }

  .akachan-pic{
    width: 90px;
  }
  
  .aboutme{
    width: 120px;
    margin-left: 3%;
    margin-top: 2%;
  }
  

    }



    /*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
  columns: 4;/*段組みの数*/
  padding:0 15px;/*ギャラリー左右に余白をつける*/
  }
  
  .gallery li {
      margin-bottom: 20px;/*各画像下に余白をつける*/
  }
  
  /*ギャラリー内のイメージは横幅100%にする*/
  .gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/}
  
  /*　横幅900px以下の段組み設定　*/
  @media only screen and (max-width: 900px) {
    .gallery{
    columns:3;
    } 
  }
  
  @media only screen and (max-width: 768px) {
    .gallery{
    columns: 2;
    } 
  }
  
  
  /*========= レイアウトのためのCSS ===============*/
  
  ul{
    margin:0;
    padding: 0;
    list-style: none;
  }
  
  a{
    color: #333;
  }
  
  a:hover,
  a:active{
    text-decoration: none;
  }
  
  h1{
    text-align: center;
    font-size:6vw;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin:30px 0;
  }
  
  p{
    margin:0 10px 10px 10px;
    word-wrap : break-word;
  }
  
  /*画像を出現させるアニメーションCSS*/
  
  .flipLeft{
  animation-name: flipLeft;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  perspective-origin: left center;
  opacity: 0;
  }
  
  @keyframes flipLeft{
    from {
     transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
    }
  
    to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    }
  }