@charset "UTF-8";

/* ---------------------------------------------
  utility
--------------------------------------------- */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* color */
body{
  --accent: #B9B4B4;
  --notoSans: "Noto Sans JP", sans-serif;
  --notoSerif: "Noto Serif JP", serif;
  --jost: "Jost", sans-serif;
  --futura: "futura-pt", sans-serif;
}

@media (min-width: 769px) {
  .is-hidden_pc {
    display: none !important;
  }
  .is-hidden_sp {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .is-hidden_sp {
    display: none !important;
  }
  
  .is-hidden_pc {
    display: block !important;
  }
}

/* ---------------------------------------------
base 専用
--------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}


main {
  display: block;
}

main:not(.top--page){
  padding-top: 160px;
}

@media (max-width: 767px){
  body {
    font-size: 13px;
    overflow-x: hidden;
  }

  main:not(.top--page){
    padding-top: 56px;
  }
}

@media (min-width: 768px) and (max-width: 769px) and (orientation: portrait) {
  main {
    min-height: 95vh;
  }
}

/* ---------------------------------------------
パーツ
--------------------------------------------- */

a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}

table {
  width: 100%;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.container {
  position: relative;
  box-sizing: border-box;
  width: min(1030px, 100%);
  padding: 0 40px;
  margin: auto;
}

.container.narrow {
  width: min(830px, 100%);
}

.sec--ttl{
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 20%;
  font-family: var(--futura);
}

.more--link{
  font-family: var(--futura);
  font-size: 22px;
  letter-spacing: 10%;
  position: relative;
  width: fit-content;
  font-weight: 500;
}

.more--link .arrow {
  position: absolute;
  display: inline-block;
  width: 176px;
  height: 1px;
  margin-top: 14.6px;
  border-radius: 9999px;
  background-color: #000;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.more--link .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000;
  transform: rotate(50deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

.more--link a:hover .arrow{
  transform: translateX(-50%) translateX(7px);
}

.top--page .more--link{
  margin-left: auto;
}

@media (max-width: 768px){
  .sec--ttl{
    font-size: 20px;
  }

  .more--link{
    font-size: 12px;
  }

  .more--link .arrow {
    width: 100px;
    margin-top: 0;
  }

  .more--link .arrow::before {
    width: 10px;
  }

  .top--page .more--link{
    margin-left: 0;
    margin: auto;
  }
}

#totop{
  position: relative;
  width: fit-content;
  margin: auto;
  cursor: pointer;
}

#totop .scroll-text {
  color: #333;
  font-size: 10px;
  text-align: center;
  letter-spacing: 1px;
  font-family: var(--futura);
  font-weight: 600;
}

#totop .scroll-border {
  position: relative;
  width: 20px;
  height: 75px;
  margin: 10px auto 0;
}

#totop .line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 75px;
  background: repeating-linear-gradient(
    to bottom,
    #333 0 2px,
    transparent 2px 4px
  );
  transition: .4s;
}

#totop:hover .line{
  transform: translate(-50%, -6px);
}

#totop .arrow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid #333;
}

.accordion__head {
  cursor: pointer;
}

.accordion__body {
  display: none;
}

/* ---------------------------------------------
  animation
--------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0);
  transition: opacity 0.8s ease, filter .8s ease;
}

.fade-in.blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.fade-in.left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-2 { transition-delay: 0.2s; }
.delay-4 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.6s; }
.delay-8 { transition-delay: 0.8s; }

.deco-image.flower{
  position: absolute;
  top: -95px;
  right: -150px;
  width: 225px;
  z-index: -1;
  animation: rotateFloat 18s linear infinite;
  transform-origin: center;
}

@keyframes rotateFloat {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.03);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  75% {
    transform: rotate(270deg) scale(0.97);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.deco-image.wind{
  position: absolute;
  bottom: -105px;
  left: -100px;
  width: 100px;
  z-index: -1;
  transform-origin: center;
  animation: sway 3s ease-in-out infinite alternate;
}

@keyframes sway {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(5deg);
  }
}

@media (max-width: 768px){
  .deco-image.flower{
    top: -135px;
    right: -35px;
    width: 133px;
  }

  .deco-image.wind{
    bottom: -75px;
    left: -13px;
    width: 70px;
  }
}

/* ---------------------------------------------
  header
--------------------------------------------- */

header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, .8);
  height: 135px;
  width: 100%;
  box-sizing: border-box;
}

header .navigation--wrap{
  font-family: var(--futura);
  font-size: 16px;
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  align-items: center;
  padding: 30px 130px;
}

header .navigation--wrap .header--logo{
  width: 260px;
}

header .navigation--wrap ul{
  display: flex;
  align-items: center;
}

header .navigation--wrap ul li{
  margin: 0 25px;
}

header .navigation--wrap ul li a{
  display: block;
  position: relative;
}

header .navigation--wrap ul li a::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  margin-right: 10px;
  transition: .3s ease;
  transform-origin: left;
  transform: scaleX(0);
}

header .navigation--wrap ul li a:hover::before{
  transform: scaleX(1);
}

@media (max-width: 768px){
  header{
    height: 56px;
  }

  header .navigation--wrap{
    font-family: var(--futura);
    font-size: 16px;
    display: flex;
    font-weight: 500;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  header .navigation--wrap .header--logo{
    width: 145px;
  }

  header .navigation--wrap ul{
    display: flex;
    align-items: center;
  }

  header .navigation--wrap ul li{
    margin: 0 25px;
  }

  header .navigation--wrap ul li a{
    display: block;
    position: relative;
  }

  header .navigation--wrap ul li a::before{
    content: none;
  }
}

/* ---------------------------------------------
  hamburger menu
--------------------------------------------- */

.hamburger{
  display: none;
  width: 60px;
  height: 56px;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  position: relative;
  top: 0;
  right: 0;
  background: none;
  transition: transform .25s ease;
}

  .hamburger__line{
    position:absolute;
    top:50%;
    left:50%;
    width:31px;
    height:2px;
    background:#000;
    transform:translate(-50%, -50%);
    transition:.25s;
  }

  .hamburger__line:nth-child(1){
    transform:translate(-50%, calc(-50% - 8px));
  }

  .hamburger__line:nth-child(2){
    transform:translate(-50%, -50%);
  }

  .hamburger__line:nth-child(3){
    transform:translate(-50%, calc(-50% + 8px));
  }

@media (max-width: 768px){

  .hamburger{ 
    display: block;
  }
  
  body.is-nav-open .hamburger {
    transform: rotate(360deg);
  }

  body.is-nav-open .hamburger__line:nth-child(1){
    transform:translate(-50%, -50%) rotate(45deg);
  }

  body.is-nav-open .hamburger__line:nth-child(2){
    opacity:0;
  }

  body.is-nav-open .hamburger__line:nth-child(3){
    transform:translate(-50%, -50%) rotate(-45deg);
  }

  header .navigation--wrap{
    position: relative;
    background-color: initial;
    font-size: 16px;
  }

  #js-nav{
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, .9);
    flex-direction: column;
    align-items: center;
    padding: 30px 0px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  body.is-nav-open #js-nav{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  html.is-nav-open,
  body.is-nav-open {
    overflow: hidden;
    height: 100%;
  }

  header .navigation--wrap ul li:nth-of-type(5){
    border-right: none;
  }
  
  header .navigation--wrap > ul > li:not(:nth-of-type(6)) > a::before,
  header .navigation--wrap > ul > li:not(:last-of-type) > a::before{
    display: none;
  }
  
  header .navigation--wrap ul li:not(:nth-of-type(6)) a::after,
  header .navigation--wrap ul li:not(:last-of-type) a::after{
    content: none;
  }

  header .navigation--wrap > ul > li{
    margin-bottom: 20px;
  }

  header .navigation--wrap ul li.parent--list > a {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  header .navigation--wrap ul li.parent--list > a > div{
    display: flex;
    gap: 3px;
  }

  header .navigation--wrap ul li a span{
    position: initial;
    opacity: 1;
    font-size: 14px;
    transform: none;
    display: block;
    color: #fff;
    font-family: var(--notoSans);
    padding-left: 4em;
  }
  
  header .navigation--wrap ul li a:hover span{
    transform: none;
  }
  
  header .navigation--wrap .sp--childList{
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    padding-left: 2.2em;
  }
  
  header .navigation--wrap .sp--childList li a{
    color: var(--accent-gold);
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: var(--notoSans);
  }

  header .navigation--wrap ul li .sp--childList li a::before{
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    background: var(--accent-gold);
    margin-right: 3px;
    position: initial;
  }

  header .navigation--wrap ul li.sp--addNav ul{
    flex-direction: column;
    align-items: flex-start;
  }

  header .navigation--wrap ul li .group--logo{
    padding: 0;
    margin-top: 20px;
  }

  header .navigation--wrap ul li.sp--addNav ul li a{
    color: var(--accent-silver);
    font-size: 13px;
    display: flex;
    align-items: center;
    padding: 0;
    font-family: var(--notoSans);
  }

  header .navigation--wrap ul li.sp--addNav ul li{
    margin-bottom: .5em;
  }

  header .navigation--wrap ul li.sp--addNav ul li a::before{
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background: var(--accent-silver);
    margin-right: 5px;
    flex-shrink: 0;
    position: initial;
  }
}
  
/* ---------------------------------------------
  top-mv
--------------------------------------------- */
.mv--wrap{
  position: relative;
  margin-bottom: 185px;
}

.mv--wrap .mv--content,
.mv--wrap .mv--content video{
  width: 100%;
}

.mv--wrap .mv--content{
  position: relative;
}

.mv--wrap .mv--content .scroll-nav {
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translateX(-50%);
}

.mv--wrap .mv--content .scroll-text {
  color: #fff;
  font-size: 10px;
  text-align: center;
  letter-spacing: 1px;
  opacity: 0;
  animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
  0% {
    opacity: 0;
    transform: translateY(-6px);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

.mv--wrap .mv--content .scroll-border {
  position: relative;
  width: 20px;
  height: 170px;
  margin: 10px auto 0;
  overflow: hidden;
  animation: textFade 2s ease-in-out infinite;
}

/* 線全体 */
.mv--wrap .mv--content .line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 170px;
}

.mv--wrap .mv--content .white {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 38px;

  background: repeating-linear-gradient(
    to bottom,
    #fff 0 2px,
    transparent 2px 4px
  );
}

.mv--wrap .mv--content .black {
  position: absolute;
  left: 0;
  top: 38px;
  width: 1px;
  height: 132px;

  background: repeating-linear-gradient(
    to bottom,
    #333 0 2px,
    transparent 2px 4px
  );
}

.mv--wrap .mv--content .arrow {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #333;
}

@media (max-width: 768px){
  .mv--wrap{
    margin-bottom: 140px;
  }

  .mv--wrap .mv--content .scroll-nav {
    bottom: -60px;
  }

  .mv--wrap .mv--content .scroll-border {
    height: 100px;
  }

  .mv--wrap .mv--content .line {
    height: 100px;
  }

}

/* ---------------------------------------------
  info--wrap
--------------------------------------------- */
.top--page .info--wrap{
  margin-bottom: 130px;
}

.top--page .info--wrap h2{
  text-align: center;
}

.info--wrap .info--content{
  padding-top: 50px;
  max-width: 685px;
  margin: auto;
}

.info--wrap .info--content li a{
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.info--wrap .info--content .info--date,
.info--wrap .info--content .info--category{
  font-family: var(--futura);
  font-weight: 500;
}

@media (max-width: 768px){
  .top--page .info--wrap{
    margin-bottom: 100px;
  }

  .info--wrap .info--content{
    padding-top: 20px;
    max-width: 100%;
  }

  .info--wrap .info--content li a{
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 6px 14px;
  }

  .info--wrap .info--content .info--ttl{
    width: 100%;
  }
}

/* ---------------------------------------------
  works--wrap
--------------------------------------------- */
.top--page .works--wrap{
  margin-bottom: 140px;
}

.top--page .works--wrap h2{
  text-align: center;
  margin-bottom: 40px;
}

.top--page .works--wrap .works--content ul{
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  margin-bottom: 40px;
}

.top--page .works--wrap .works--content ul li{
  width: calc((100% - 240px) / 4);
}

.top--page .works--wrap .works--content ul li a{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
}

.top--page .works--wrap .works--content ul li a .works--thumb{
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.top--page .works--wrap .works--content ul li a .works--thumb img{
  width: 100%;
}

.top--page .works--wrap .works--content ul li a .works--category{
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  font-family: var(--futura);
  max-width: 100%;
}

.top--page .works--wrap .works--content ul li a .works--category span:not(:first-of-type)::before{
  content: "/";
  margin: 0 2px;
}

.top--page .works--wrap .works--content ul li a .works--ttl{
  font-size: 14px;
}

@media (max-width: 768px){

  .top--page .works--wrap{
    margin-bottom: 110px;
  }

  .top--page .works--wrap h2{
    margin-bottom: 30px;
  }

  .top--page .works--wrap .works--content ul{
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 30px;
    gap: 30px 20px;
  }

  .top--page .works--wrap .works--content ul li{
    width: calc((100% - 20px) / 2);
  }

  .top--page .works--wrap .works--content ul li a{
    gap: 6px;
  }

  .top--page .works--wrap .works--content ul li a .works--category{
    font-size: 9px;
  }

  .top--page .works--wrap .works--content ul li a .works--ttl{
    font-size: 12px;
  }
}

/* ---------------------------------------------
  creater--wrap
--------------------------------------------- */
.top--page .creater--wrap{
  margin-bottom: 140px;
}

.top--page .creater--wrap h2{
  text-align: center;
  margin-bottom: 60px;
}

.top--page .creater--wrap .creater--content ul{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.top--page .creater--wrap .creater--content ul li{
  width: calc((100% - 135px) / 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.top--page .creater--wrap .creater--content ul li .icon{
  width: 160px;
}

.top--page .creater--wrap .creater--content ul li .name{
  font-weight: 500;
  text-align: center;
  letter-spacing: 2px;
}

.top--page .creater--wrap .creater--content ul li .name span{
  font-size: 10px;
  font-family: var(--futura);
  font-weight: 500;
  display: block;
  margin-top: 3px;
  min-height: 4em;
}

.top--page .creater--wrap .creater--content ul li .intro{
  font-size: 11px;
  line-height: 2;
}

.top--page .creater--wrap .creater--content ul li a{
  font-size: 10px;
  font-weight: 500;
  font-family: var(--futura);
  display: block;
  margin-top: auto;
}

@media (max-width: 768px){
  .top--page .creater--wrap{
    margin-bottom: 80px;
  }

  .top--page .creater--wrap h2{
    margin-bottom: 20px;
  }

  .top--page .creater--wrap .creater--content ul{
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 18px 35px;
  }

  .top--page .creater--wrap .creater--content ul li{
    width: calc((100% - 35px) / 2);
    gap: 8px;
  }

  .top--page .creater--wrap .creater--content ul li .icon{
    width: 100%;
  }

  .top--page .creater--wrap .creater--content ul li .name span{
    font-size: 8px;
    min-height: auto;
  }

}

/* ---------------------------------------------
  top--lowerWrap
--------------------------------------------- */
.top--lowerWrap{
  margin-bottom: 135px;
}

.contact--wrap a{
  display: block;
  width: 275px;
  border: 1px solid #000;
  font-family: var(--futura);
  font-weight: 500;
  padding: 10px 0;
  margin: auto;
  text-align: center;
  font-size: 24px;
  letter-spacing: 2px;
  transition: .4s;
}

.contact--wrap a:hover{
  color: #fff;
  background-color: #000;
}

.top--lowerWrap .for-business{
  margin: auto;
  margin-top: 110px;
  text-align: center;
}

.top--lowerWrap .for-business a{
  display: flex;
  align-items: flex-end;
  gap: 15px;
  position: relative;
  justify-content: center;
  margin: auto;
}

.top--lowerWrap .for-business a::before{
  content: "";
  display: block;
  width: 27px;
  height: 24px;
  background: url(../img/common/flower-ico.png) no-repeat;
  background-size: cover;
  align-self: center;
}

.top--lowerWrap .for-business .ttl{
  font-size: 25px;
  font-weight: 500;
  font-family: var(--futura);
  letter-spacing: 2px;
}

.top--lowerWrap .for-business .ttl span{
  font-size: 12px;
  margin-left: 15px;
}

.top--lowerWrap .for-business a .arrow {
  position: absolute;
  display: inline-block;
  width: 530px;
  height: 1px;
  margin-top: 14.6px;
  border-radius: 9999px;
  background-color: #000;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}

.top--lowerWrap .for-business a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000;
  transform: rotate(50deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

.top--lowerWrap .for-business a:hover .arrow{
  transform: translateX(-50%) translateX(7px);
}

@media (max-width: 768px){
  .top--lowerWrap{
    margin-bottom: 65px;
  }

  .contact--wrap a{
    width: 245px;
    font-size: 18px;
  }

  .top--lowerWrap .for-business{
    margin-top: 65px;
  }

  .top--lowerWrap .for-business a{
    display: flex;
    align-items: flex-end;
    gap: 15px;
    position: relative;
    justify-content: center;
    margin: auto;
  }

  .top--lowerWrap .for-business a::before{
    align-self: flex-start;
  }

  .top--lowerWrap .for-business .ttl{
    font-size: 17px;
    display: flex;
    flex-direction: column;
  }

  .top--lowerWrap .for-business .ttl span{
    font-size: 12px;
    margin-left: 0;
  }

  .top--lowerWrap .for-business a .arrow {
    width: 250px;
    margin-top: 0;
  }

  .top--lowerWrap .for-business a .arrow::before {
    width: 10px;
  }

}

/* ---------------------------------------------
  footer
--------------------------------------------- */
footer{
  border-top: 1px solid #000;
  margin-top: 160px;
}

footer .navigation--wrap{
  font-family: var(--futura);
  font-size: 16px;
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  align-items: center;
  padding: 40px 130px 20px;
}

footer .navigation--wrap .footer--logo{
  width: 255px;
}

footer .navigation--wrap ul{
  display: flex;
  align-items: center;
}

footer .navigation--wrap .content--nav{
  margin-left: auto;
}

footer .navigation--wrap .content--nav li{
  margin: 0 25px;
}

footer .navigation--wrap .content--nav li a{
  display: block;
  position: relative;
  transition: .4s;
}

footer .navigation--wrap .content--nav li a:hover{
  opacity: .7;
}

footer .navigation--wrap .sns--nav{
  margin-left: 30px;
}

footer .navigation--wrap .sns--nav li{
  margin: 0 12px;
}

footer .navigation--wrap .sns--nav li img{
  width: 30px;
  display: block;
}

footer .footer-lower{
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--futura);
  gap: 30px;
  padding: 0px 130px 40px;
  margin-right: 12px;
}

footer .footer-lower a{
  transition: .4s;
}

footer .footer-lower a:hover{
  opacity: .7;
}

@media (max-width: 768px){
  footer{
    margin-top: 25px;
  }

  footer .navigation--wrap{
    flex-direction: column;
    padding: 30px 20px 30px;
  }

  footer .navigation--wrap .footer--logo{
    width: 195px;
  }
  
  footer .navigation--wrap .content--nav{
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    margin-top: 25px;
  }

  footer .navigation--wrap .content--nav li{
    margin: 0;
    margin-bottom: 10px;
  }

  footer .navigation--wrap .sns--nav{
    margin-left: 0;
    margin-top: 15px;
  }

  footer .navigation--wrap .sns--nav li{
    margin: 0 8px;
  }

  footer .footer-lower{
    flex-direction: column-reverse;
    justify-content: center;
    margin-left: 0;
    gap: 30px;
    padding: 0px 130px 30px;
    margin-right: 0;
    align-items: center;
  }
}

/* ---------------------------------------------
  about page
--------------------------------------------- */
.about--page .headding--wrap{
  padding: 140px 0 105px;
}

.about--page .deco-image.flower{
  top: -160px;
}

.about--page .deco-image.wind {
  top: 440px;
  left: -130px;
  bottom: initial;
}

.headding--wrap h1{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--futura);
  letter-spacing: 20%;
  text-align: center;
}

.about--page .about--messageWrap{
  margin-bottom: 100px;
  text-align: center;
}

.about--page .about--messageWrap h2{
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 20%;
}

.about--page .about--messageWrap p{
  line-height: 1.8;
  margin-bottom: 2em;
}

.about--page .about--messageWrap .main--message{
  margin-bottom: 70px;
}

.about--page .about--messageWrap .sub--message{
  color: var(--accent);
  margin-bottom: 110px;
}

.about--page .about--messageWrap .sub--message p{
  letter-spacing: 10%;
  line-height: 2.2;
  text-align: left;
}

.about--page .accordion__head{
  font-size: 22px;
  letter-spacing: 10%;
  font-weight: 500;
  font-family: var(--futura);
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  width: fit-content;
  margin: auto;
}

.accordion__head--top {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease;
}

.accordion__head--top.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.about--page .profile--wrap{
  padding-top: 110px;
  position: relative;
}

.about--page .deco-image.l-wind{
  position: absolute;
  top: 370px;
  right: -220px;
  width: 260px;
  z-index: -1;  
}

.about--page .deco-image.l-flower{
  position: absolute;
  bottom: 29%;
  left: -225px;
  width: 258px;
  z-index: -1;  
}

.about--page .profile--wrap h2{
  font-size: 40px;
  margin-bottom: 80px;
}

.about--page .profile--wrap .profile--detail li{
  margin-bottom: 100px;
}

.about--page .profile--wrap .profile--detail h3{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 20%;
  margin-bottom: 30px;
}

.about--page .profile--wrap .profile--detail p{
  line-height: 2;
}

.about--page .contact--wrap{
  margin-bottom: 300px;
}

@media (max-width: 768px){
  .about--page .headding--wrap{
    padding: 65px 0 50px;
  }

  .about--page .deco-image.flower{
    top: -110px;
  }

  .about--page .deco-image.wind {
    top: 625px;
    left: -30px;
  }

  .headding--wrap h1{
    font-size: 20px;
  }

  .about--page .about--messageWrap{
    margin-bottom: 100px;
    text-align: left;
  }

  .about--page .about--messageWrap h2{
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
  }

  .about--page .about--messageWrap p{
    font-size: 11px;
  }

  .about--page .about--messageWrap .main--message{
    margin-bottom: 60px;
  }

  .about--page .about--messageWrap .sub--message{
    color: var(--accent);
    margin-bottom: 40px;
  }

  .about--page .about--messageWrap .sub--message p{
    text-align: left;
  }

  .about--page .about--messageWrap .sub--message h2{
    font-size: 13px;
  }

  .about--page .accordion__head{
    font-size: 12px;
    text-align: center;
  }

  .about--page .profile--wrap{
    padding-top: 45px;
  }

  .about--page .deco-image.l-wind{
    top: 197px;
    right: -145px;
    width: 235px;
  }

  .about--page .deco-image.l-flower{
    bottom: 40%;
    left: -120px;
    width: 258px;
  }

  .about--page .profile--wrap h2{
    font-size: 20px;
    margin-bottom: 35px;
  }

  .about--page .profile--wrap .profile--detail li{
    margin-bottom: 85px;
  }

  .about--page .profile--wrap .profile--detail h3{
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .about--page .contact--wrap{
    margin-bottom: 40px;
  }
}

/* ---------------------------------------------
  works
--------------------------------------------- */
.works--page{
  padding-top: 85px;
}

.works--page .works--content{
  padding: 35px 0 180px;
}

.works--page .works--content .cat--list{
  margin-bottom: 35px;
}

.works--page .works--content .cat--list ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 35px 20px;
  font-size: 23px;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--futura);
}

.works--page .works--content .cat--list ul li{
  width: fit-content;
  padding: 0 .5em;
  position: relative;
  letter-spacing: 20%;
}

.works--page .works--content .cat--list ul li:not(:last-of-type)::after{
  content: "/";
  position: absolute;
  top: 0;
  right: -30px;
}

.works--page .works--content .works--postList{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 75px 53px;
  margin-bottom: 70px;
}

.works--page .works--content .works--postList li{
  width: calc((100% - 159px) / 4);
}

.works--page .works--content .works--postList li .cat{
  font-size: 11px;
  font-family: var(--futura);
  color: var(--accent);
  letter-spacing: 10%;
  padding: 8px 0;
}

.works--page .works--content .works--postList li .cat span:not(:first-of-type)::before{
  content: "/";
  margin: 0 2px;
}

.works--page .works--content .works--postList li .ttl{
  font-size: 14px;
  letter-spacing: 10%;
}

.works--page.single .works--content{
  padding: 120px 0 160px;
}

.works--page.single .works--detail{
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 8vw, 80px);
  margin-bottom: 120px;
}

.works--page.single .works--detail figure{
  flex: 355 1 0;
  max-width: 355px;
}

.works--page.single .works--detail .text--wrap{
  flex: 565 1 0;
  letter-spacing: 10%;
}

.works--page.single .works--detail .text--wrap .category{
  font-size: 15px;
  font-family: var(--futura);
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--accent);
}

.works--page.single .works--detail .text--wrap .category span:not(:first-of-type)::before{
  content: "/";
  margin: 0 2px;
}

.works--page.single .works--detail .text--wrap h2{
  font-size: 24px;
  margin-bottom: 5px;
}

.works--page.single .works--detail .text--wrap .c-name{
  padding-bottom: 15px;
  border-bottom: 1px solid var(--accent);
  margin-bottom: 15px;
}

.works--page.single .works--detail .text--wrap .date{
  margin-bottom: 70px;
}

.works--page.single .works--detail .text--wrap .staff{
  margin-bottom: 15px;
}

.works--page.single .works--detail .text--wrap .comment{
  font-size: 12px;
}

.works--page.single .works--content .pager--wrap{
  display: flex;
  align-items: center;
  gap: 80px;
  font-weight: 500;
  font-family: var(--futura);
  justify-content: center;
  font-size: 20px;
}

.works--page.single .works--content .pager--wrap .border{
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
}

@media (max-width: 768px){
  .works--page .headding--wrap{
    padding-top: 65px;
  }
  
  .works--page .works--content{
    padding: 25px 0 140px;
  }
  
  .works--page .works--content .cat--list{
    margin-bottom: 25px;
  }
  
  .works--page .works--content .cat--list ul{
    gap: 8px;
    font-size: 10px;
  }
  
  .works--page .works--content .cat--list ul li{
    width: fit-content;
    padding: 0 .5em;
    position: relative;
    letter-spacing: 20%;
  }
  
  .works--page .works--content .cat--list ul li:not(:last-of-type)::after{
    content: "/";
    position: absolute;
    top: 0;
    right: -8px;
  }
  
  .works--page .works--content .works--postList{
    gap: 30px 35px;
    margin-bottom: 40px;
  }
  
  .works--page .works--content .works--postList li{
    width: calc((100% - 35px) / 2);
  }
  
  .works--page .works--content .works--postList li .cat{
    font-size: 9px;
    padding: 8px 0;
  }
  
  .works--page .works--content .works--postList li .ttl{
    font-size: 12px;
  }
  
  .works--page.single .works--content{
    padding: 40px 0 90px;
  }
  
  .works--page.single .works--detail{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 60px;
  }
  
  .works--page.single .works--detail figure{
    flex: 355 1 0;
    max-width: 280px;
    margin: auto;
  }
  
  .works--page.single .works--detail .text--wrap .category{
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .works--page.single .works--detail .text--wrap h2{
    font-size: 20px;
    margin-bottom: 5px;
  }

  .works--page.single .works--content .pager--wrap{
    gap: 25px;
    font-size: 13px;
  }
  
  .works--page.single .works--content .pager--wrap .border{
    padding-bottom: 3px;
    border-bottom: 1px solid var(--accent);
  }
  
}

/* ---------------------------------------------
  creater--page
--------------------------------------------- */
.creater--page{
  padding-top: 85px;
}

.creater--page .creater--content{
  padding: 100px 0 60px;
}

.creater--page .deco-image.flower{
  top: -160px;
  animation: none;
}

.creater--page .deco-image.wind {
  top: 740px;
  left: -130px;
  animation: none;
}

.creater--page .creater--list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:100px 50px;
}

.creater--page .creater--list li{
  display: grid;
  gap: 20px;
  grid-template-rows: 200px auto auto 1fr auto;
  letter-spacing: 10%;
  justify-items: center
}

.creater--page .creater--list li figure{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100%;
  object-position: center;
}
.creater--page .creater--list li h2{
  font-size: 23px;
}

.creater--page .creater--list li .role{
  font-size: 13px;
  text-align: center;
  min-height: 52px;
}

.creater--page .creater--list li .introduction{
  font-size: 13px;
  line-height: 2;
  padding: 20px 10px;
  border-top: 1px solid var(--accent);
}

.creater--page .creater--list li .sns{
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.creater--page .creater--list li .sns::before,
.creater--page .creater--list li .sns::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: .2s ease;
  transform-origin: right;
  transform: scaleX(1);
}
.creater--page .creater--list li .sns:hover::before{
  transform: scaleX(0);
}

.creater--page .creater--list li .sns::after{
  background-color: #F7C7C9;
  transition: .2s ease;
  transform-origin: left;
  transform: scaleX(0);
  transition-delay: .2s;
}
.creater--page .creater--list li .sns:hover::after{
  transform: scaleX(1);
}

@media (max-width: 768px){
  .creater--page .headding--wrap{
    padding-top: 65px;
  }
  
  .creater--page .creater--content{
    padding: 60px 0 120px;
  }
  
  .creater--page .deco-image.flower{
    top: -85px;
    animation: none;
  }
  
  .creater--page .deco-image.wind {
    top: 1450px;
    left: -10px;
    animation: none;
  }
  
  .creater--page .creater--list{
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  
  .creater--page .creater--list li{
    grid-template-rows: 165px auto auto 1fr auto;
  }
  
  .creater--page .creater--list li figure{
    width: 165px;
    height: 165px;
  }

  .creater--page .creater--list li h2{
    font-size: 20px;
  }
  
  .creater--page .creater--list li .role{
    font-size: 11px;
    text-align: center;
    min-height: auto;
  }
  
  .creater--page .creater--list li .introduction{
    font-size: 11px;
    padding: 20px 10px 0;
  }
  
  .creater--page .creater--list li .sns{
    font-size: 13px;
  }

}

/* ---------------------------------------------
  privacy policy
--------------------------------------------- */
.privacypolicy--page .headding--wrap{
  margin-bottom: 35px;
}

.privacypolicy--page .policy--content{
  font-size: 14px;
  margin-bottom: 120px;
}

.privacypolicy--page .policy--content .read{
  margin-bottom: 90px;
}

.privacypolicy--page .policy--content .policy--detail li{
  margin-bottom: 60px;
}

.privacypolicy--page .policy--content .policy--detail li h3{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.privacypolicy--page .policy--content .policy--detail a{
  text-decoration: underline;
  padding: 0 3px;
}


@media (max-width: 768px){
  .privacypolicy--page .headding--wrap{
    margin-bottom: 20px;
    padding-top: 65px;
  }
  
  .privacypolicy--page .policy--content{
    font-size: 12px;
    margin-bottom: 100px;
  }
  
  .privacypolicy--page .policy--content .read{
    margin-bottom: 60px;
  }
  
  .privacypolicy--page .policy--content .policy--detail li{
    margin-bottom: 60px;
  }
  
  .privacypolicy--page .policy--content .policy--detail li h3{
    font-size: 16px;
  }

}

/* ---------------------------------------------
  contact--page
--------------------------------------------- */
.contact--page .headding--wrap{
  margin-bottom: 35px;
}

.contact--page .contact--content .upper--wrap{
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 10%;
}

.contact--page .contact--content .upper--wrap .read{
  margin-bottom: 25px;
  font-size: 14px;
}

.contact--page .contact--content .upper--wrap .read-en{
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.8;
  font-family: var(--futura);
}

.contact--page .contact--content .contact--main{
  border-top: 1px solid var(--accent);
  padding-top: 5px;
  margin-bottom: 180px;
}

.contact--page .contact--content .contact--main aside{
  font-size: 11px;
  margin-bottom: 35px;
}

.contact--page .contact--content .contact--main table{
  margin-bottom: 35px;
}

.contact--page .contact--content .contact--main th,
.contact--page .contact--content .contact--main td{
  padding: 30px 0;
}

.contact--page .contact--content .contact--main tr:first-of-type th,
.contact--page .contact--content .contact--main tr:last-of-type th,
.contact--page .contact--content .contact--main tr:first-of-type td,
.contact--page .contact--content .contact--main tr:last-of-type td{
  border-bottom: 1px solid var(--accent);
}

.contact--page .contact--content .contact--main td .text-box input,
.contact--page .contact--content .contact--main td .text-area textarea{
  border-radius: 5px;
  border: 1px solid var(--accent);
  padding: 7px 9px;
  box-sizing: border-box;
  width: 100%;
}

.contact--page .contact--content .contact--main td .text-box input::placeholder,
.contact--page .contact--content .contact--main td .text-area textarea::placeholder{
  font-size: 11px;
  color: #d9d9d9;
}

.contact--page .contact--content .contact--main tr:first-of-type input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;

    width: 22px;
    height: 22px;
    border: 1px solid var(--accent);
    background: #fff;
    cursor: pointer;
}

.contact--page .contact--content .contact--main tr:first-of-type input[type="checkbox"]:checked{
    background: var(--accent);
}

.contact--page .contact--content .contact--main tr:first-of-type input[type="checkbox"]:checked::after{
  content: "";
  display: block;
  width: 7px;
  height: 11px;
  margin: 1px 0 0 5px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact--page .contact--content .mwform-checkbox-field label{
  font-weight: normal;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact--page .contact--content .mwform-checkbox-field label .mwform-checkbox-field-text{
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact--page .contact--content .mwform-checkbox-field label .mwform-checkbox-field-text::before{
  content: "/";
  order: 1;
}

.contact--page .contact--content .mwform-checkbox-field label .mwform-checkbox-field-text::after{
  color: var(--accent);
  font-size: 11px;
  order: 2;
}

.contact--page .contact--content .mwform-checkbox-field:first-of-type label .mwform-checkbox-field-text::after{
  content: "Worldbuilding & Character Design";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(2) label .mwform-checkbox-field-text::after{
  content: "Concept Planning & Proposals";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(3) label .mwform-checkbox-field-text::after{
  content: "Creative Direction & Advisory";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(4) label .mwform-checkbox-field-text::after{
  content: "Art & Coloring";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(5) label .mwform-checkbox-field-text::after{
  content: "Comic & Storytelling";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(6) label .mwform-checkbox-field-text::after{
  content: "Graphic & Web Design";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(7) label .mwform-checkbox-field-text::after{
  content: "Creative Consulting";
}

.contact--page .contact--content .mwform-checkbox-field:nth-of-type(8) label .mwform-checkbox-field-text::after{
  content: "Other";
}

.contact--page .contact--content .contact--main tr:last-of-type td{
  padding-bottom: 85px;
}

.contact--page .contact--content .contact--main th{
  width: 180px;
  font-size: 16px;
  text-align: left;
  vertical-align: top;
}

.contact--page .contact--content .contact--main th .en{
  display: block;
  font-size: 12px;
  color: var(--accent);
}

.contact--page .contact--content .contact--main td ul li{
  margin-bottom: 12px;
}

.contact--page .contact--content .contact--main td ul li .en{
  font-size: 11px;
  color: var(--accent);
  margin-left: 3px;
}

.contact--page .contact--content .contact--main .submitbtn-group{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.contact--page .contact--content .contact--main .submitbtn-group input,
.contact--page .contact--content .contact--main .submitbtn-group button{
  text-align: center;
  border: 1px solid #231815;
  border-radius: 30px;
  display: block;
  width: 130px;
  padding: 10px 0;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
  transition: .4s;
  -webkit-appearance: none;
  appearance: none;
  color: #000;
}

.contact--page .contact--content .contact--main .submitbtn-group input:hover,
.contact--page .contact--content .contact--main .submitbtn-group button:hover{
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contact--page .mw_wp_form_complete .contact--content .contact--main{
  padding-top: 80px;
  text-align: center;
}

.contact--page .mw_wp_form_complete .contact--content .contact--main h2{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 35px;
}

.contact--page .mw_wp_form_complete .contact--content .contact--main p{
  font-size: 14px;
  margin-bottom: 60px;
}

@media (max-width: 768px){
  .contact--page .headding--wrap{
    margin-bottom: 30px;
    padding-top: 65px;
  }
  
  .contact--page .contact--content .upper--wrap{
    margin-bottom: 35px;
  }
  
  .contact--page .contact--content .upper--wrap .read{
    margin-bottom: 25px;
    font-size: 14px;
  }
  
  .contact--page .contact--content .upper--wrap .read-en{
    font-size: 12px;
  }
  
  .contact--page .contact--content .contact--main{
    padding-top: 15px;
    margin-bottom: 120px;
  }
  
  .contact--page .contact--content .contact--main aside{
    font-size: 11px;
    margin-bottom: 15px;
  }
  
  .contact--page .contact--content .contact--main table{
    margin-bottom: 35px;
  }
  
  .contact--page .contact--content .contact--main th,
  .contact--page .contact--content .contact--main td{
    padding: 0;
    display: block;
    width: 100%;
  }

  .contact--page .contact--content .contact--main th{
    padding-bottom: 5px;
  }

  .contact--page .contact--content .contact--main tr:first-of-type th,
  .contact--page .contact--content .contact--main td{
    padding-bottom: 30px;
  }
  
  .contact--page .contact--content .contact--main tr:first-of-type th,
  .contact--page .contact--content .contact--main tr:first-of-type td,
  .contact--page .contact--content .contact--main tr:last-of-type th{
    border: 0;
  }

  .contact--page .contact--content .contact--main td .text-box input,
  .contact--page .contact--content .contact--main td .text-area textarea{
    border-radius: 5px;
    border: 1px solid var(--accent);
    padding: 7px 9px;
    box-sizing: border-box;
    width: 100%;
  }
  
  .contact--page .contact--content .mwform-checkbox-field label{
    font-weight: normal;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }

    .contact--page .contact--content .contact--main tr:first-of-type input[type="checkbox"]{
     flex-shrink: 0;
  }
  
  .contact--page .contact--content .mwform-checkbox-field label .mwform-checkbox-field-text{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 5px;
  }
  
  .contact--page .contact--content .contact--main tr:last-of-type td{
    padding-bottom: 40px;
  }
  
  .contact--page .contact--content .contact--main th{
    width: 180px;
    font-size: 16px;
    text-align: left;
    vertical-align: top;
  }
  
  .contact--page .contact--content .contact--main th .en{
    display: block;
    font-size: 12px;
    color: var(--accent);
  }
  
  .contact--page .contact--content .contact--main td ul li{
    margin-bottom: 12px;
  }

  
  .contact--page .mw_wp_form_complete .contact--content .contact--main{
    padding-top: 60px;
  }
  
  .contact--page .mw_wp_form_complete .contact--content .contact--main h2{
    font-size: 16px;
    margin-bottom: 35px;
  }
  
  .contact--page .mw_wp_form_complete .contact--content .contact--main p{
    font-size: 13px;
    margin-bottom: 60px;
  }
  
}

/* ---------------------------------------------
  info-page
--------------------------------------------- */
.info--page {
  padding-top: 85px;
}

.info--page .info--content{
  margin-bottom: 120px;
}

.info--page .info--content .cat--list{
  margin: 35px auto;
}

.info--page .info--content .cat--list ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-size: 23px;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--futura);
}

.info--page .info--content .cat--list ul li{
  width: fit-content;
  padding: 0 .5em;
  position: relative;
  letter-spacing: 20%;
}

.info--page .info--content .cat--list ul li:not(:last-of-type)::after{
  content: "/";
  position: absolute;
  top: 0;
  right: -30px;
}

.info--page .info--content .info--postList{
  margin-bottom: 70px;
}

.info--page .info--content .info--postList li{
  border-top: 1px solid var(--accent);
}

.info--page .info--content .info--postList li:last-of-type{
  border-bottom: 1px solid var(--accent);
}

.info--page .info--content .info--postList li a{
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px 10px;
}

.info--page .info--content .info--date,
.info--page .info--content .info--category{
  font-family: var(--futura);
  font-weight: 500;
}

.info--page .info--content .info--category{
  color: var(--accent);
}

.pager--wrap{
  display: flex;
  align-items: center;
  gap: 60px;
  font-weight: 500;
  font-family: var(--futura);
  justify-content: center;
  font-size: 20px;
}

.pager--wrap .page-numbers.current{
  font-weight: 500;
}

.pager--wrap .border{
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
}

.info--page.single .info--content .info--detail{
  padding: 130px 0 120px;
}

.info--page.single .info--content .info--detail .detail--upper{
  display: flex;
  gap: 35px;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 25px;
}

.info--page.single .info--content .info--detail .info--ttl{
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--accent);
}

.info--page.single .info--content .info--detail .detail--main{
  padding: 30px 10px;
}

@media (max-width: 768px){
  .info--page .headding--wrap{
    padding: 65px 0 5px;
  }

  .info--page .info--content .cat--list{
    margin: 0;
  }

  .info--page .info--content .cat--list ul{
    margin-bottom: 35px;
    gap: 35px;
    font-size: 10px;
  }

  .info--page .info--content .info--postList{
    margin-bottom: 25px;
  }

  .info--page .info--content .info--postList li a{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 15px;
    padding: 10px 0;
  }

  .info--page .info--content .info--ttl{
    width: 100%;
  }

  .pager--wrap{
    gap: 30px;
    font-size: 16px;
  }

  .info--page.single .info--content .info--detail{
    padding: 45px 0 50px;
  }

  .info--page.single .info--content .info--detail .detail--upper{
    display: flex;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 15px;
  }

  .info--page.single .info--content .info--detail .info--ttl{
    font-size: 15px;
    padding-bottom: 35px;
  }

  .info--page.single .info--content .info--detail .detail--main{
    padding: 15px 0;
  }
}
