@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Noto+Sans+JP:wght@500;700&display=swap');


@media screen and (min-width: 800px) {
  .SP {
    display: none;
  }
}

@media screen and (max-width: 799px) {
  .PC {
    display: none;
  }
}

:root {
  --main-black-color: #191315;
  --main-gray-color: #7b7b7b;
  --main-red-color: #fe9187;
  --main-blue-color: #4f75b0;
  --main-saxblue-color: #a7bad7;
  --main-gold-color: #917b4e;
  --main-lightblue-color: #9acbe1;
  --main-green-color: #709a91;
  --main-hover-color: #888888;
  --main-yellow-color: #d2e267;
  --main-current-color: #8b8b8b;
  --main-lightyellow-color: #fdffd2;
  --main-lightgray-color: #dedede;
  --main-bluegray-color: #dce2e1;
  --main-ultralightgray-color: #e7e8e7;
  --main-ultralight-color: #f3f4f4;
  --main-pink-color: #f7d2cd;
  --main-footer-color: #9b9895;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Montserrat", "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.7em;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--main-black-color);
  background: #fff;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

a {
  text-decoration: none;
  outline: none;
  color: var(--main-black-color);

}

a:hover {
  transition: color 0.3s;
  color: var(--main-hover-color);
}

a.textlink {
  color: var(--main-black-color);
  text-decoration: underline;
}

a.textlink:hover {
  opacity: 0.7;
}

.flowing {
  display: inline-block;
  width: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  animation: flowing-anim 1s forwards linear;
}

.hilight {
  position: relative;
  background: linear-gradient(transparent 40%, #ffff66 40%);
}

.code {
  background: #444;
  color: #ddd;
  padding: 20px;
  font-size: 90%;
  border-radius: 3px;
  margin: 0.8em 0;
}

.kome {
  font-size: 80%;
}

/*common*/
.ac {
  text-align: center;
}

.link {
  text-decoration: underline;
}

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

.textshow {
  overflow: hidden;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  color: #aa8f7b;
  font-family: 'Josefin Sans', sans-serif;
}

.textshow span {
  display: block;
  transform: translate(100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.textshow.-visible,
.textshow.-visible span {
  transform: translate(0, 0);
}


/*アニメーション定期*/
@keyframes flowing-anim {
  0% {
    width: 0;
  }

  80% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.mask-bg {
  color: transparent;
  display: inline-block;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
  line-height: 1;
}


.mask-bg::after {
  background: var(--main-black-color);
  bottom: -1px;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask-bg.is-animated {
  color: var(--main-black-color);
}

.mask-bg.is-animated::after {
  animation: mask-bg 0.7s cubic-bezier(0.8, 0, 0.170, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%)
  }

  40%, 60% {
    transform: translate(0, 0%)
  }

  100% {
    transform: translate(0, -100%)
  }
}

.fade {
  opacity: 0;
  transition: all 1200ms;
}

.fade.is-animated {
  opacity: 1;
}

.fadein {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 1200ms, transform 1200ms;
}

.fadein.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}

.zoomin {
  opacity: 0;
  transform: scale(0.7, 0.7);
  transition: opacity 700ms, transform 700ms;
}

.zoomin.is-animated {
  opacity: 1;
  transform: scale(1, 1);
}


/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
  position: relative;
}

#home .wrapper {
  overflow: hidden;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes menu-container-appeared {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes menu-container-leaved {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* loading
-----------------------------------------------------------------------
*/
.loading {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.loading img {
  width: 95px;
}

.loading__mark, .loading__mark * {
  box-sizing: border-box;
}

.loading__mark {
  margin-top: 40px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: relative;
}

.loading__mark .loading__mark-line {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(40px / 10) solid transparent;
}

.loading__mark .loading__mark-line1 {
  border-top-color: var(--main-black-color);
  animation: loading__mark-animation 1s infinite;
}

.loading__mark .loading__mark-line2 {
  border-bottom-color: var(--main-black-color);
  animation: loading__mark-animation 1s infinite alternate;
}

@keyframes loading__mark-animation {
  0% {
    transform: rotate(0deg);

  }

  100% {
    transform: rotate(360deg);
  }
}

/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */


.nav-header {
  position: absolute;
  top: 4vw;
  right: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 1003;
}

#home .nav-header {
  mix-blend-mode: unset;
}

#home .nav-header .nav-header__link {
  color: var(--main-black-color);
}

#home .nav-header .nav-header__toggle-line {
  background: var(--main-black-color);
}

#home .nav-header .nav-header__logo-img {
  filter: invert(1%) brightness(0%) contrast(80%);
  mix-blend-mode: unset;
}

.nav-header__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: calc(100% - 8vw);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}



.nav-header__logo {
  font-weight: 600;
  font-size: 8rem;
  align-items: center;
  margin: 0 auto 0 0;
  font-size: 0.9rem;
  min-width: 100px;
  text-align: left;
  transition: all 0.5s;
  display: flex;
}

#home .nav-header .nav-header__logo {
  color: var(--main-black-color);
}


.nav-header__logo:hover img {
  /*opacity: 0.5;*/
}

.nav-header__logo .nav-header__logo-img,
.nav-drawer__logo-img {
  animation-delay: 0s;
  animation: stroke3b 1s ease-in-out both;
  stroke: #fff;
  fill: transparent;
  stroke-width: 1px;
  stroke-dasharray: 200px;
  stroke-dashoffset: 200px;
}

.nav-header__logo:hover .nav-header__logo-img,
a:hover .nav-drawer__logo-img {
  animation-delay: 0s;
  animation: stroke3 1s ease-in-out both;
  stroke: var(--main-black-color);
  fill:var(--main-black-color);
  stroke-width: 1px;
  stroke-dasharray: 200px;
  stroke-dashoffset: 200px;
}

#home .nav-header__logo:hover .nav-header__logo-img {
  fill: #fff;
}

.nav-drawer--footer .nav-drawer__logo-img {
  stroke: var(--main-black-color);
  animation-delay: 0s;
  animation: stroke5 1s ease-in-out both;
}

.nav-drawer--footer a:hover .nav-drawer__logo-img {
  stroke: var(--main-black-color);
  fill: #191315;
}

@keyframes stroke3b {
  0% {
    fill: transparent;
    stroke-dashoffset: 0;
  }

  50% {
    fill: transparent;
    stroke-width: 0.5px;
  }

  100% {
    fill: var(--main-black-color);
    stroke-dashoffset: 300px;
    stroke-width: 0;
  }
}

@keyframes stroke3 {
  0% {
    stroke-dashoffset: 300px;
  }

  50% {
    fill: transparent;
  }

  100% {
    fill: transparent;
    stroke-dashoffset: 0;

  }
}

@keyframes stroke5 {
  0% {
    fill: transparent;
    stroke-dashoffset: 0;
  }

  50% {
    fill: transparent;
    stroke-width: 0.5px;
  }

  100% {
    fill: #191315;
    stroke-dashoffset: 200px;
    stroke-width: 0;
  }
}



.nav-header__logo p {
  transition: all 0.5s;
}

.nav-header__logo-img {
  display: inline-block;
  width: 300px;
  min-width: 300px;

}

.nav-header__logo-text {
  margin-left: 3em;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

#home .nav-header__logo-text {
  color: var(--main-black-color);
  animation-name: fadeIn1s;
  animation-delay: 0.5s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0 130px 0 0;
  padding: 0;
  align-items: flex-start;
}

.nav-header__menu-tel {
  display: none;
}

@media (max-width: 1260px) {
  .nav-header__logo p {
    display: none;
  }
}

@media (max-width: 1200px) {
  .nav-header__menu {
    margin-right: 80px;

  }

  .nav-header__container {
    max-width: calc(100% - 12vw);
  }

  .nav-header__logo-img {
    width: 200px;
  }
}

@media (min-width: 1090px) {
  .nav-header__menu {
    display: flex;
  }
}

@media (max-width:800px) {
  .wrapper {
    min-height: unset;
  }

  #home {
    width: 100vw;
  }

  #home .wrapper {
    overflow-x: hidden;
  }

  .nav-header {
    top: 6vw;
  }

  .nav-header__container {
    max-width: calc(100% - 12vw);
  }

  .nav-header__logo-img {
    width: 60%;
    min-width: 60%;
  }
}

@media (max-width:480px) {
  .nav-header__logo {
    font-size: 0.7rem;
  }

  .nav-header__logo-img {
    width: 70%;
    min-width: unset;
  }

  .nav-header__logo-text {
    margin-left: 2em;
    display: none;
  }

}

.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}



.nav-header__link {
  height: 100%;
  color: var(--main-black-color);
  text-align: center;
  font-size: 1.42rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 0 12px;
  white-space: nowrap;
}


.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: -10px;
  left: 16px;
  transform: translateY(50%);
  width: 2px;
  height: 2px;
  border-radius: 1px;
  background: var(--main-black-color);
  content: "";
  -ms-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#home #nav-header .nav-header__link:after {
  background: var(--main-black-color);
}



.nav-header__menu-item:last-child .nav-header__link,
#home .nav-header__menu-item:last-child .nav-header__link {
  color: #fff;
}

.nav-header__link--current {
  color: var(--main-black-color);
}

#profile .nav-header__link01:after,
#services .nav-header__link02:after,
#works .nav-header__link02:after,
#notes .nav-header__link03:after,
#news .nav-header__link04:after,
#download .nav-header__link05:after,
#download2 .nav-header__link05:after {
  opacity: 1;
  width: calc(100% - 32px);
  background-color: var(--main-black-color);
}

.nav-header__link--current:after {
  opacity: 1;
  width: calc(100% - 32px);
  background-color: var(--main-black-color);
}

.nav-header__link:hover:after {
  opacity: 1;
  width: calc(100% - 32px);
}

.nav-header__menu-item:last-child .nav-header__link:hover:after {
  opacity: 0;
}

.nav-header__menu-item:last-child .nav-header__link {
  background: var(--main-black-color);
  border-radius: 20px;
  margin-left: 20px;
  color: #fff
}

#home .nav-header__menu-item:last-child .nav-header__link {
  background: #000;
  border-radius: 20px;
  margin-left: 20px;
  color: #fff;
  transition: all 0.3s;
}

.nav-header__menu-item:last-child .nav-header__link:hover {
  background: var(--main-red-color);
}

#home .nav-header__menu-item:last-child .nav-header__link:hover {
  background: var(--main-red-color);
}

.nav-header__link:hover {
  color: #555;
}

.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
    text-shadow .2s,
    background-color .2s,
    border-color .2s,
    opacity .2s;
  background-color: #08aeb0;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}

.nav-header__contact:hover {
  background-color: #079698;
}

.nav-header__toggle {
  z-index: 1020;
  position: fixed;
  top: 4vw;
  right: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 8.5rem;
  height: 4.5rem;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  mix-blend-mode: difference;
}

@media (max-width: 1200px) {
  .nav-header__toggle {
    width: 8.5rem;
    height: 4rem;
  }
}

@media (min-width: 992px) {
  .nav-header__toggle {
    display: flex;
  }
}

@media (max-width:800px) {
  .nav-header__toggle {
    top: 6vw;
    right: 6vw;
    width: 6.0rem;
    height: 3.5rem;
  }
}

@media (max-width:480px) {
  .nav-header__toggle {
    width: 4.0rem;
    height: 3.5rem;
    right: 3vw;
  }
}

.nav-header__toggle-line {
  -webkit-transition: all 0.5s;
  display: block;
  width: 90%;
  height: 2px;
  border-radius: 8px;
  background: #f0f0f0;
}

.nav-header__toggle-line {
  margin: 10% 0px;
}

.nav-header__toggle:hover .nav-header__toggle-line:nth-child(1),
.nav-header__toggle:hover .nav-header__toggle-line:nth-child(2) {
  width: 110%;
}


.nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(1) {
  transform: rotate(25deg);
  top: 12px;
  position: relative;
  left: -10px;
}

.nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(2) {
  transform: rotate(-25deg);
  top: -5px;
  position: relative;
  left: -10px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1010;
}

.nav-drawer--footer {
  background: var(--main-lightgray-color);
  background: linear-gradient(0, #a9a8a6 0%, #cfcecb 30%, #fff 80%);
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 800px;
  height: unset;
}

.nav-drawer--footer .nav-drawer__menu-button {
  display: none;
}

.nav-drawer__container {
  z-index: 1000;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 4vw;
  min-width: 300px;
  background: #f4f4f4;
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;

}

.nav-drawer--footer .nav-drawer__container {
  padding: 70px 0 70px;
  width: calc(100% - 140px);
  margin: 0 auto;
  position: relative;
  background: unset;
}

.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}

.nav-drawer__logo {
  font-weight: 700;
  font-size: 1.0rem;
  text-align: center;
  min-width: 200px;
  display: flex;
  align-items: center;
  margin: 0 auto 0 0;
  text-align: left;
  background: #f4f4f4;
}

.nav-drawer--footer .nav-drawer__logo {
  background: none;
}

.nav-drawer__logo-img {
  margin-right: 50px;
  transition: all 0.5s;
  width: 66px;
  mix-blend-mode: difference;
}

a:hover .nav-drawer__logo-img {
  opacity: 0.7;

}

.nav-drawer--footer .nav-drawer__logo-img {
  mix-blend-mode: unset;
}

/*
.nav-header__bottomtext-text1::after {
  content: '';
  display: inline-block;
  width: 70px;
  height: 2px;
  background: var(--main-black-color);
  position: relative;
  top: -5px;
  margin: 0 5px;
}
*/

.nav-header__bottomtext-text2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  border-bottom: solid 1px var(--main-black-color);
}

.nav-header__bottomtext {
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 0;
  margin: 0 auto;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;

}

.nav-drawer--footer .nav-header__bottomtext {
  position: relative;
  margin-top: 140px;
  bottom: unset;
}

.nav-header__bottomtext-text1 span {
  text-decoration: underline;
}

.icon__map::before {
  position: relative;
  bottom: -4px;
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('../img/icon-map.svg') no-repeat;

}

.nav-drawer__menu {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin: 70px 0;
  padding: 0;
  list-style: none;
}

.nav-drawer__menu-item {
  width: 18%;
}

.nav-drawer--footer .nav-drawer__menu {
  margin-bottom: 0;
}

.nav-drawer__menu--sub {
  padding: 2em 0 2em 0;
}

.nav-drawer__menu--sub li {
  font-size: 1.5rem;
}

.nav-drawer__menu--sub a:hover {
  color: var(--main-hover-color);
}

/*
.nav-drawer__menu--sub li a::before {
  content: ' ';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--main-black-color);
  position: relative;
  top: -5px;
  margin: 0 10px;
}
*/

.nav-drawer__menu--sub li a:hover::before {
  background: var(--main-blue-color);
}

.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 0 1em 0;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.nav-drawer__menu-item>.nav-drawer__link {
  /* border-bottom: solid 1px #ccc;*/
}

.nav-drawer__menu--sub .nav-drawer__link {
  padding: 0.2em 0;
  font-weight: 500;
}


.nav-drawer__link::after {
  content: ' ';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--main-black-color);
  position: relative;
  bottom: calc(-1em - 1px);
  left: 0;
  transition: all 0.2s;
}

.nav-drawer__menu--sub .nav-drawer__link::after {
  bottom: 0;
  background: var(--main-hover-color);
}

.nav-drawer__link:hover::after {
  width: 100%;
}

.nav-drawer__link-main {
  display: block;

}

/*
.nav-drawer__link-main::before {
  content: ' ';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--main-black-color);
  position: relative;
  top: -5px;
  margin: 0 10px;
}
*/
.nav-drawer__link:hover .nav-drawer__link-main::before {
  background: var(--main-blue-color);
}

.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}



.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.nav-drawer__menu-button {
  position: absolute;
  right: 180px;
  top: 72px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  ;
}

@media (max-width: 1200px) {
  .nav-drawer__logo {
    margin: 0
  }

  .nav-drawer__menu-button {
    top: 55px;
  }

  .nav-drawer__container {
    padding: 50px 6vw;
  }

  .nav-drawer__logo-img {
    width: 66px;
    margin-right: 30px;
  }
}

@media (max-width:800px) {
  .nav-drawer__menu-item {
    width: 100%;
  }



  .nav-drawer__menu {
    display: block;
    margin: 20px 0;
    overflow-y: unset;
  }

  .nav-drawer__link,
  .nav-drawer__menu--sub li {
    padding: 20px 15px;
    border: solid 1px #ddd;
    border-bottom: none;
    font-size: 1.5rem;
    font-weight: bold;
    background: #fff;
  }

  .nav-drawer__menu--sub {
    display: none;
  }

  .nav-drawer__container {
    padding: 6vw;
    min-width: unset;
    overflow-y: scroll;
  }

  .nav-drawer--footer .nav-drawer__container {
    overflow-y: unset;
  }

  .nav-drawer--footer .nav-header__bottomtext {
    margin-top: 10px;
  }

  .nav-drawer__logo-img {
    width: 60px;
    margin-right: 15px;
  }

  .nav-drawer__menu-button {
    top: 3vw;
    right: 6.5vw;
    font-size: 1.2rem;
  }

  .nav-header__bottomtext {
    position: relative;
    bottom: 10px;
    font-weight: normal;
    font-size: 1.2rem;
  }

  .nav-drawer__link-main::before {
    display: none;
  }

  .nav-drawer__menu--sub li a::before {
    width: 15px;
    height: 2px;
  }

  .nav-drawer__link:hover::after {
    width: 0;
  }

  .nav-drawer__menu>.nav-drawer__menu-item:last-child .nav-drawer__link {
    border-bottom: solid 1px #ddd;
  }

  .nav-drawer--footer .nav-drawer__menu {
    margin-bottom: 30px;
  }

  .nav-drawer--footer .nav-drawer__menu--sub {
    display: none;
  }

  .nav-drawer--footer .nav-drawer__container {
    width: calc(100% - 12vw)
  }

  .nav-drawer--footer .nav-drawer__link {
    border-right: none;
    border-left: none;
  }

  .nav-header__telfax {
    display: flex;
    justify-content: flex-start;
    margin: 1em 0 0.5em;
    font-size: 1.5rem;
  }

  .nav-drawer__menu-item>.nav-drawer__link {
    border-bottom: none;
  }

  .nav-drawer--footer {
    height: unset;
  }
}

@media (max-width:640px) {
  .nav-drawer--footer {
    background: #fff;
  }
}

@media (max-width:480px) {
  .nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(1) {
    top: 3px;
  }

  .nav-header__toggle.js-nav-drawer-show .nav-header__toggle-line:nth-child(2) {
    top: -7px;
  }

  .nav-drawer__logo-img {
    width: 40px;
  }

  .nav-drawer__container {
    line-height: 1.3;
    font-weight: normal;
  }

  .nav-drawer--footer .nav-drawer__container {
    padding: 40px 0;
  }

  .nav-header__bottomtext-text1 {
    margin: 1em 0;
    display: block;
    font-size: 1.4rem;

  }
}

@media (max-width:360px) {
  .nav-drawer__menu-button {
    display: none;
  }
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 40px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--main-black-color);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;

}

.nav-pagetop.active {
  opacity: 1;
  z-index: 20000;
}

.nav-pagetop img {
  position: relative;
  top: 0;
  transition: all 0.2s;
}


.nav-pagetop:hover img {
  top: -10px;
}

.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.mainvisual {
  position: relative;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mainvisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0.3);
  content: "";
}

.mainvisual__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  height: 80vh;
  padding-top: 6rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mainvisual__text-main {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 4.0rem;
  line-height: 1;
}

@media screen and (min-width: 992px) {
  .mainvisual__text-main {
    font-size: 5.6rem;
  }
}

.mainvisual__text-sub {
  padding-top: 1.6rem;
  color: var(--main-black-color);
  font-size: 1.6rem;
}

.pagevisual {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(6rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pagevisual-move {
  position: relative;
  margin: 0 0;
  padding: 0 0 0;
  width: 100%;
  aspect-ratio: 2000/1110;
}

.pagevisual-works {
  position: relative;
  margin: 10vw 0 0;
  padding: 0 0 0;
  width: 100%;
  aspect-ratio: 2000/1000;
}

.pagevisual-narrow {
  height: 500px;
  background: #fff;
}

#notes .pagevisual-post {
  margin-top: 10vw;
}

#fee .pagevisual-narrow {
  background: unset;
}

@media screen and (min-width: 992px) {
  .pagevisual {
    padding: 15rem 0;
    margin: 0 70px;
    border-radius: 5px;
  }
}

.pagevisual__container {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  margin: 0 0 0 70px;
  text-align: center;
  padding: 0;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual__text-main {
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  margin: 0 auto;
}

.pagevisual__text-sub {
  font-size: min(4vw, 4rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--main-black-color);
  letter-spacing: 0.2em;
  text-align: left;
}

.pagevisual__text-sub span {
  font-size: 1.2rem;
  margin-left: 1em;
}

.pagevisual__text-small {
  font-size: 2.6rem;
}

#animation_container {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: 2000/1110;
}

.pagevisual-works #animation_container {
  aspect-ratio: unset;
}

#canvas {
  position: absolute;
  display: block;
  animation: canvas-show 1s linear;
}

#canvas2 {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset;
  object-fit: cover;
}

#dom_overlay_container {
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
}

#animation_container canvas {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2000/1110;
  position: absolute;
  display: block;
}

#profile #canvas {
  position: fixed;
  z-index: -1;
}

.pagevisual-narrow #animation_container canvas {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}

#dom_overlay_container {
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2000/1110;
}

@media screen and (min-width: 992px) {
  .pagevisual__text-main {}
}

.pagevisual__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 1.6rem 0rem;
  border-bottom: 3px solid var(--main-black-color);
  background: var(--main-black-color);
  content: "";
}

.pagevisual__wrap {
  display: flex;
  overflow: hidden;
  border-radius: 0px;
}

.pagevisual__list {
  list-style: none;
  display: flex;
}


.pagevisual__item {
  width: 100vw;
  max-width: unset;
}


.breadcrumbs {
  position: relative;
  margin: 0 auto;
  padding: 1.8rem 70px;
  text-align: right;
}

.breadcrumbs--nomargin {
  position: relative;
  margin: calc(1.8rem - 4vw) auto 4vw;
  text-align: right;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list-item {
  font-size: 1rem;
  font-weight: 700;
}

.breadcrumbs__list-item:not(:first-child)::before {
  display: inline-block;
  content: ' ';
  width: 10px;
  height: 1px;
  background: var(--main-black-color);
  margin: 0 10px;
  position: relative;
  top: -4px;
}

.breadcrumbs__link {
  color: var(--main-black-color);
}

.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}

.page-heading__content {
  margin: 0;
  padding: 0;
}

.page-heading__content--left {
  text-align: left;
}

.page-heading__content--center {
  text-align: center;
}

.page-heading__content--right {
  text-align: right;
}

.page-heading__text-main {
  font-weight: 700;
  font-size: 4.0rem;
}



.page-heading__content--left .page-heading__text-main::after {
  margin-left: 0;
  margin-right: auto;
}

.page-heading__content--center .page-heading__text-main::after {
  margin-left: auto;
  margin-right: auto;
}

.page-heading__content--right .page-heading__text-main::after {
  margin-left: auto;
  margin-right: 0;
}

.page-heading__message {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6.4rem 6vw;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.5;
  text-align: center;
}

.page-heading__tel {
  text-align: center;
  margin: 1em auto;
  padding: 1em;
  background: var(--main-ultralight-color);
  border-radius: 10px;
}

#news .breadcrumbs {
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .pagevisual__container {
    margin: 0 0 0 6vw;
  }

  .breadcrumbs {
    padding: 0.8rem 6vw;
  }
}

@media screen and (max-width: 800px) {
  .page-heading__tel {
    font-size: 1.3rem;
  }

  .page-heading__tel2 {
    font-size: 1.0rem;
  }


  .page-heading__text-main {
    font-size: 1.8rem;
  }

  .page-heading__message {
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 6vw;
  }

  .nav-pagetop {
    width: 50px;
    height: 50px;
    right: 5px;
  }

  .breadcrumbs {
    padding: 0.8rem 6vw;
  }

  .breadcrumbs__list-item {
    font-size: 1rem;
  }

}

@media screen and (max-width: 640px) {
  #animation_container {
    aspect-ratio: 500/700;
  }

  .pagevisual-move,
  #animation_container,
  #animation_container canvas {
    aspect-ratio: 500/700;
  }

  #news #animation_container canvas {
    aspect-ratio: 1;
  }

  .pagevisual__container {
    top: 25%;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }

  .pagevisual__text-sub {
    font-size: 2.8rem;
    text-align: center;
    padding: 0 4vw;
  }

  .pagevisual-works{
    margin-top:70px;
  }
}

@media screen and (max-width: 480px) {
  .page-heading__message {
    text-align: left;
    padding: 6vw;
  }

  .pagevisual__text-sub {
    font-size: 2.2rem;
  }

}

/*cmn footer関連*/

.footer--works {
  background: #fff;
  padding: 140px 0 140px;
}

.footer--works__container {
  margin: 0 auto;
  padding: 0 70px;
  position: relative;
  max-width: 1400px;
}

#works .footer--works__container {
  padding: 0;
}

.cmn__title {
  width: auto;
  text-align: center;
  line-height: 1.3;
  padding: 0;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.cmn__title-text-sub {
  font-size: clamp(2.8rem, 4vw, 5.0rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 6vw;
}


.bloglist__body .cmn__title-text-sub {
  padding: 0;
}

.cmn__title-text-sub img {
  width: 15vw;
}

.cmn__title-text-sub--s {
  font-size: 3rem;
}

.cmn__title-text-sub::after {
  content: '';
  display: block;
  width: 3px;
  height: 30px;
  background: var(--main-black-color);
  margin: 0 auto 20px;
}

.cmn__title-text-main {
  font-weight: 700;
  font-size: 1.5rem;
  writing-mode: vertical-rl;
  margin: 0 auto;
  padding-right: 3px;
}

.footer--works__container {
  display: flex;
  justify-content: space-between;
}

#works .footer--works__container {
  max-width: unset;
}

.footer__contact-text {
  margin-top: 50px;
  color: #fff;
}

.footer--works__leargebox {
  position: relative;
}

.footer--works__leargebox h3 {
  display: inline-block;
  position: absolute;
  top: -20px;
  right: 20px;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 2.5;
  writing-mode: vertical-rl;
  margin: 0 auto;
}

.footer__snslist {
  margin: 1.5vw 1.5vw 5vw;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.footer__snslist img {
  width: 30px;
}

.footer--works__leargebox h3 span {
  background: #fff;
  color: var(--main-black-color);
  padding: 5px;
}

.footer--works__middlebox {
  width: 100%;
  position: relative;
  margin: 3vw 0 4vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer--works__middlebox>li {
  width: calc(33.3% - 80px);
  max-width: 410px;
  position: relative;
  margin-bottom: 80px;
}

.footer--works__middlebox>li:first-child {
  /*margin-right: 40px;*/
}

.footer--works__middlebox>li:nth-child(2) {
  /*margin-right: 40px;*/
}

.liblank {
  height: 0;
  margin-bottom: 0 !important;
}

.footer--works__middlebox h3 {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 auto;
  z-index: 100;
  width: 100%;
}

.footer--works__middlebox a:hover h3 span {
  background: var(--main-black-color);
  color: #fff;
}

.cmn__toppic,
.cmn__workspic,
.cmn__blogpic,
.cmn__rankingpic {
  display: block;
  overflow: hidden;
}

.cmn__blogpic {
  margin-bottom: 10px;
  border-radius: 10px;
  aspect-ratio: 1;
  background-color: var(--main-lightgray-color);
}

.cmn__rankingpic {
  border-radius: 5px;
}

.cmn__rankingpic img {
  width: 100px;
  max-inline-size: unset;
}

.cmn__workspic__img {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  margin-bottom: 0.5em;
}

.cmn__toppic img,
.cmn__workspic img,
.cmn__blogpic img,
.cmn__rankingpic img {
  height: auto;
  transition: transform .3s ease;
}

.cmn__blogpic img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

a:hover .cmn__toppic img,
.cmn__workspic:hover img,
a:hover .cmn__blogpic img,
a:hover .cmn__rankingpic img {
  transform: scale(1.1);
}

a:hover .cmn__blogpic .cmn__workscategory {
  font-weight: 500;
  font-size: 1.6rem;
}

a:hover .cmn__blogtitle {
  color: var(--main-hover-color);
}

.cmn__worksicon {
  margin: 5px 0 5px;
}

.cmn__worksicon li {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 4px 0 0;
}

.cmn__worksicon a {
  padding: 3px 15px;
  border-radius: 20px;
  background: var(--main-black-color);
  color: #fff;
  transition: all .4s;
}

.cmn__worksicon li a:hover {
  background: var(--main-blue-color);
  color: #fff;
}

.cmn__blogtitle {
  font-size: 1.6rem;
  margin: 1em 0;
}

.cmn__name a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}

.cmn__name img {
  border-radius: 50%;
  margin-right: 0.5em;
  width: 40px;
}

.cmn__workscategory {
  font-weight: normal;
  font-size: 1.4rem;
}

.cmn__workscategory a {
  text-decoration: underline;
}

.cmn__btn {
  text-align: center;
}

.cmn__btn--works {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: all .4s;
  display: flex;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 3rem 1.6rem;
  border: none;
  background: #fff;
  border: solid 2px var(--main-black-color);
  border-radius: 10px;
  color: var(--main-black-color);
  font-weight: 700;
  font-size: 2.2rem;
}

.cmn__btn--works::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 28px;
  background: url(../img/icon-arrow01.svg) no-repeat;
  margin-left: 20px;
  right: 0;
  top: 5px;
  position: relative;
  transition: all 0.3s;
}

.cmn__btn--works:hover,
.cmn__btn--works:focus {
  background: #eee;
  border-color: #ddd;
  color: var(--main-black-color);
}

.cmn__btn--works:hover::after {
  right: -10px;
}

.footer__contact {
  position: relative;
  padding-top: 6vw;
  background: var(--main-footer-color);
}

.footer__contact .cmn__title {
  color: #fff;
}

.footer__contact .cmn__title-text-sub {
  font-size: clamp(2.8rem, 4vw, 4.0rem);

}

.footer__contact .cmn__title-text-sub::after {
  background: #fff;
  height: 30px;
  margin-bottom: 20px;
}

.footer__contact-container {
  padding: 8vw 4vw 4vw;
  text-align: center;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.footer__downloadimg {
  border-radius: 5px;
  margin: 10px auto 0;
}

.footer__download,
.footer__right {
  width: calc(50% - 25px);
}

.footer__sns {
  color: #fff;
}

.footer__contact-telbox {
  margin: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__contact-tel {
  font-size: 4rem;
  font-family: 'AvenirNextLTPro-Demi', sans-serif;
  font-weight: 600;
  line-height: 2.5rem;
  padding-top: 15px;
}

.footer__contact-tel span {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

.footer__contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: all .4s;
  width: 100%;
  max-width: 40rem;
  white-space: nowrap;
  margin: 0 auto 0 60px;
  padding: 2.5rem;
  border: none;
  background: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--main-black-color);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.03);
}

.footer__contact-btn::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 28px;
  background: url(../img/icon-arrow01.svg) no-repeat;
  margin-left: 20px;
  right: 0;
  top: 5px;
  position: relative;
  transition: all 0.2s;
  min-width: 28px;
}

.footer__contact-btn:hover {
  background: #eee;
}

.footer__contact-btn:hover::after {
  right: -10px;
}

.footer__contact-btn::before {
  content: '';
  display: inline-block;
  margin-top: 7px;
  width: 48px;
  height: 36px;
  background: url(../img/icon-mail.svg) no-repeat;
  margin-right: 1em;
  min-width: 28px;
}


.footer {
  background: #fff;
  position: relative;
}

.footer__container {
  max-width: 1500px;
  margin: 0 auto;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 4rem 0;
}

.footer__menu-item:not(:first-child) {
  margin-left: 1.6rem;
}

.footer__menu-item-link {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.footer__menu-item-link:hover, .footer__menu-item-link:focus {
  text-decoration: underline;
}

.footer__copy {
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #fff;
}

#animation_container2 {
  position: absolute;
  bottom: 0;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2/1;
  overflow: hidden;

  border: none;
}

@media screen and (min-width: 1600px) {
  #works .footer--works__middlebox>li {
    width: calc(25% - 40px);

  }
}

@media screen and (max-width: 1200px) {
  .footer__contact-telbox {
    flex-direction: column;
    margin: 10px 0;
  }

  .footer__contact-btn {
    margin: 20px auto;
  }

  .footer--works__middlebox>li {
    max-width: 400px;
    width: calc(50% - 40px);
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 800px) {
  .footer__contact-btn::before {
    margin-top: 0;
    background-position-y: center;
    margin-right: 5px;
  }

  .footer__contact-btn::after {
    background-position-y: center;
    top: unset;
    margin-left: 8px;
  }

  .footer__contact {
    padding: 6vw
  }

  .footer__contact-container {
    padding: 6vw;
    margin: 0;
    border-radius: 15px;
  }

  .footer__contact-btn {
    font-size: 1.4rem;
    margin: 10px auto;
    width: 100%;
    max-width: unset;

  }

  .cmn__btn--works {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    margin: 10px auto;
    width: calc(100% - 40px);

  }


  .footer__copy {
    transform: unset;
    position: relative;
    left: unset;
    top: unset;
    margin-bottom: 40px;
    font-size: 0.8rem;
  }

  .footer__contact-tel {
    font-size: 2.8rem;
    padding-bottom: 15px;
  }

  .footer__contact-tel span {
    font-size: 1.0rem;
  }

  .cmn__title {
    margin-bottom: 30px;
  }

  .cmn__title-text-sub {
    font-size: clamp(3rem, 4vw, 4.5rem);
    margin-top: unset;
    padding: 0;
  }

  .cmn__title-text-sub::after {
    margin-bottom: 10px;
  }

  .cmn__title--center {
    margin: 30px auto;
  }

  .footer__contact-text {
    text-align: left;
    display: inline-block;
    margin: 0 auto;
  }

  .footer--works__container {
    padding: 0 6vw;
    display: block;
  }

  .footer--works {
    padding: 80px 0 30px 0;
  }

  .footer--works__middlebox {
    flex-wrap: wrap;
  }

  .footer--works__middlebox>li {
    width: calc(50% - 10px);
    margin-bottom: 50px;
  }

  .footer--works__middlebox>li:first-child {
    margin-right: 10px;
  }

  .footer--works__middlebox li:nth-child(2) {
    margin-right: 0;
  }

  .cmn__worksicon li {
    font-size: 1.0rem;
    width: auto;
    margin-right: 4px;
  }

  .cmn__worksicon li:nth-child(n+2) {
    display: none;
  }

  .cmn__worksicon a {
    padding: 2px 10px;
    margin-bottom: 5px;
    display: inline-block;
  }

  .cmn__workscategory {
    font-size: 1.0rem;
  }

  .footer--works__middlebox {
    margin: 50px 0 0;
  }

  .footer--works__middlebox h3 {
    font-size: 1.3rem;
    writing-mode: unset;
    position: relative;
    top: unset;
    right: unset;
    line-height: 1.8;
    margin-top: 1rem;
  }

  .footer--works__middlebox h3 span {
    background: none;
    padding: 0;
  }

  .footer--works__middlebox h3 span br {
    display: none;
  }

  .footer--works__leargebox h3 {
    right: 1rem;
    font-size: 1.6rem;
  }

  .footer__contact-form {
    width: 100%;
  }

  .cmn__name img {
    width: 30px;
  }

  .cmn__worksicon {
    margin-bottom: 5px;
  }

  .cmn__workspic,
  .cmn__blogpic {
    margin-bottom: 0.1em;
  }

  .cmn__title-text-sub img {
    width: 30vw;
  }

  .footer__download,
  .footer__right {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .cmn__worksicon {
    margin: 0;
  }

  #animation_container2 {
    aspect-ratio: 500/700;

  }
}

@media screen and (max-width: 480px) {
  .footer--works__middlebox>li {
    margin-bottom: 8vw;
  }

  .footer--works {
    padding: 12vw 0;
  }

  .footer--works__leargebox h3 {
    font-size: 1.3rem;
    writing-mode: unset;
    position: relative;
    top: unset;
    right: unset;
    line-height: 1.8;
    margin-top: 1rem;
  }

  .footer--works__leargebox h3 br {
    display: none;
  }

  .footer--works__container {
    padding: 0 0;
  }

  .footer__contact-btn {
    width: 100%;
    padding: 2rem 1rem;
  }

  .cmn__btn--works {
    width: calc(100%);
    padding: 2rem 1.6rem;
  }

  .cmn__worksicon li {
    font-size: 0.8rem;
    margin-right: 2px;
  }

  .footer__contact-tel {
    font-size: 2.5rem;
  }

  .footer__contact-text {
    font-size: 1.2rem;
  }

  .footer__contact-container {
    padding: 0;
  }
    .footer--works__middlebox h3 {
      line-height: 1.3;
    }
}


@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}

.button-detail__button--prev:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
  margin-right: 0.8rem;
}

.button-detail__button--next {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}

.button-detail__button--next:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  margin-left: 0.8rem;
}


@media screen and (min-width: 992px) {
  .form__form-group {
    display: flex;
  }
}

.form__form-group-title {
  padding: 1rem;
}

@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}

.form__form-group-content {
  padding: 1rem;
  display: flex;
}

@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}

.form .form__label, .form .form__label--itemname, .form .form__label--required {
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.form__label--itemname {
  color: var(--main-black-color);
}

.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #fafafa;
  color: #aaaaaa;
  font-size: 1.4rem;
}

.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form__list-item {
  margin-bottom: 0.6rem;
}

.form .form__input, .form .form__input--text, .form .form__input--text-half, .form .form__input--textarea, .form .form__input--textarea-half, .form .form__input--select, .form .form__input--radio, .form .form__input--check {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}

.form .form__input--radio, .form .form__input--check {
  width: unset;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--select select, .form__input--select .form select {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 1px solid #bbb;
  border-radius: 5px;
  background: #ffffff;
  font-weight: 500;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  /* 旧Edge対応 */
  /* IE対応 */
}

.form .form__input--select select {
  border-color: #999;
}

input:required,
textarea:required {
  background: var(--main-lightyellow-color) !important;
}

input:valid,
textarea:valid {
  background: #fff !important;
}

.form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand {
  display: none;
}

.form .form__input--text input::placeholder, .form__input--text .form input::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--select select::placeholder, .form__input--select .form select::placeholder {
  color: #ccc;
}

.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
  color: #999;
}

.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
  color: #999;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}

.form .form__input--text input:focus, .form__input--text .form input:focus, .form .form__input--text-half input:focus, .form__input--text-half .form input:focus {
  border-color: var(--main-blue-color);
}




.form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}

.form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus, .form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus {
  border-color: var(--main-blue-color);
}

.form__input--text-half {
  max-width: 50%;
}

.form__input--textarea-half {
  max-width: 50%;
}

.form__input--select {
  max-width: 300px;
}

.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}

.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #999 transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}

.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #08aeb0;
  content: "";
  transition: opacity 0.4s;
}

.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}

.form__input--radio .radio-input:checked+.radio-icon {
  border-color: #08aeb0;
}

.form__input--radio .radio-input:checked+.radio-icon:before {
  opacity: 1;
}

.form__input--radio .radio-input:checked~.radio-text {
  color: #08aeb0;
}

.form__input--check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 1em;
}

.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #999;
  border-radius: 5px;
  background: #fff;
}

.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}

.form__input--check .check-text {
  color: var(--main-black-color);
  transition: color 0.4s;
}

.form__input--check .check-input:checked+.check-icon {
  border-color: #08aeb0;
}

.form__input--check .check-input:checked+.check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #08aeb0;
  border-left: 2px solid #08aeb0;
}

.form__input--check .check-input:checked~.check-text {
  color: #08aeb0;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}

.table-overview tr th {
  width: 16rem;
  padding: .8rem;
  vertical-align: top;
}

.table-overview tr td {
  width: calc(100% - 16rem);
  padding: .8rem 1.6rem;
  vertical-align: top;
}









/*
 * お知らせ NEWS
 * -------------------------------------------------------------------
 */
#news canvas {
  background: var(--main-red-color);
}

.news h1 {
  margin-top: 2em;
  text-align: center;
}

.news__list {
  margin: 0 4vw 4vw;
}

.news__list-body {
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
}

.news__list-body dt {
  width: 7em;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: solid 1px var(--main-lightgray-color);
  color: var(--main-current-color);
  padding: 1.8em 0;
  vertical-align: top;
  margin-right: 20px;
  font-family: 'Montserrat', sans-serif;
}

.news__list-body dd {
  vertical-align: top;
  font-size: 1.7rem;
  font-weight: 700;
  width: calc(100% - 9em);
  display: inline-block;

}

.news__list-body dd a {
  padding: 1.8em 0;
  display: block;
  border-bottom: solid 1px var(--main-lightgray-color);
}

.news__list-body dd a:hover {
  color: var(--main-blue-color);
}

.news__post {
  padding: 6vw;
  margin: 0 auto;
  display: flex;
}

.news__date {
  margin: 0.3em 3em 1em 0;
  font-size: 2.4rem;
}

@media screen and (max-width: 800px) {
  .news__list {
    margin: 0 6vw 6vw;
  }

  .news__list-body dt {
    display: block;
    border: none;
    width: 100%;
    margin: 0;
    padding: 2em 0 0;
    font-size: 1.5rem;
  }

  .news__list-body dd {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
  }

  .news__list-body dd a {
    margin: 0;
    padding: 0.5em 0 2em 0;
    text-decoration: underline;
  }

  .news__post {
    flex-direction: column;
  }

  .news__date {
    font-size: 1.8rem;
  }

  #news .pagevisual-narrow {
    height: auto;
    aspect-ratio: 1;
  }
}

@media screen and (max-width: 480px) {
  #news .pagevisual-narrow #animation_container canvas {
    height: auto !important;
    aspect-ratio: 1/1;
  }

  #news .pagevisual-narrow {
    height: auto;
  }

  #news #animation_container {
    aspect-ratio: 1/1;
  }

}




/*
 * ブログ
 * -------------------------------------------------------------------
 */
.blog {
  margin: 70px 0;
}

.blog__body {
  display: flex;
  padding: 0 4vw;
  background: var(--main-lightgray-color);
}

#notes .blog__body {
  background: #fff;
  padding: 0 4vw;
}

.bloglist .cmn__title {}

.bloglist {
  background: var(--main-pink-color);
  padding: 0;
}

.bloglist--cmn {
  padding-top: 70px;
}

.top-bloglist {
  padding-top: 70px;
}

#notes .bloglist {
  background: #fff;
  width: calc(100% - 330px);
}

.bloglist__container {
  margin: 0 4vw;
  width: calc(100% - 8vw);
}

.bloglist__leftbox {
  margin-right: 35px;
}

.bloglist__rightbox {
  text-align: left;
  width: 100%;
  margin-top: 20px;
  font-weight: 700;
}

#notes .bloglist__container {
  margin: 0 2vw 0 0;
}

.bloglist__body {
  width: 100%;
  position: relative;
  margin: 0 0;
  display: flex;

  justify-content: center;
}

#notes .bloglist__body {
  flex-wrap: wrap;
}

.top-bloglist .bloglist__body {
  justify-content: flex-start;
  margin-top: 105px;

}

#notes .bloglist__body {
  justify-content: space-between;

}

.bloglist__body li {
  position: relative;
  margin: 0 20px 70px;
  width: calc(25% - 40px);
  max-width: 250px;
}

.bloglist__body li:first-child {
  margin-left: 0;
}

#notes .bloglist__body li:first-child {
  margin-left: 20px;
}

.bloglist__body li.dummy {
  height: 0;
  padding: 0;
  margin: 0;
}

.bloglist__body li a {
  transition: color 0.3s;
}

.blog__key {
  height: 500px;
  overflow: hidden;
}

.blog__key img {
  max-width: unset;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.blog__key::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  pointer-events: none;
  opacity: 0.60;
}

.cmn__blogtitle {
  /*position: absolute;
  top: -2em;
  right: 1em;
  margin-left: 2em;
  line-height: 2;
  writing-mode: vertical-rl;*/

}

.cmn__blogtitle span {
  /*background: #fff;
  padding: 0 5px;*/

}

.cmn__name {
  display: inline-block;
  margin-right: 0.3em;
}

.cmn__name span {
  display: none;
}

.cmn__date {
  display: inline-block;
  margin-right: 1em;
}

.cmn__name-date {
  display: flex;
  align-items: center;
}

a:hover .cmn__date {
  text-decoration: underline;
}

.blog__sidebar {
  border-left: solid 1px var(--main-gray-color);
  padding-left: 30px;
}

.blog__ranking {
  margin: 50px 0 70px;
  padding-bottom: 50px;
  border-bottom: solid 1px var(--main-gray-color);
}

.blog__ranking li {
  margin-bottom: 35px;
}

.blog__ranking li a {
  display: flex;
  width: 300px;
}

.blog__ranking li a div {
  margin-left: 20px;
  width: calc(100% - 120px);
}

.blog__ranking h2 {
  font-size: 1.4rem;
  transition: color 0.5s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog__ranking p {
  font-size: 1.4rem;
  padding-bottom: 1em;
}

.blog__ranking li a:hover h2 {
  color: var(--main-hover-color);
}

.blog__ranking li a:hover p {
  text-decoration: underline;
}

.blog__category {
  width: 200px;
  margin: 2em auto 4em;
  font-weight: bold;

}

.blog__category li {
  margin-bottom: 1em;
}

.blogpost {
  margin-right: 70px;
  width: calc(100% - 330px);
}

.blogpost__lead {
  font-weight: bold;
}

.blogpost__info {
  text-align: center;
  margin: 3em auto;
}

.blogpost__index {
  border: solid 2px var(--main-lightgray-color);
  border-radius: 10px;
  margin-bottom: 70px;
}

.blogpost__index h3 {
  text-align: center;
  padding: 20px;
  border-bottom: solid 2px var(--main-lightgray-color);
}

.blogpost__index h3 span {
  display: block;
  font-size: 1.2rem;
}

.blogpost__index ol {
  padding: 20px;
}

.blogpost__section {
  margin: 0 0 3em;
}

.blogpost__section img {
  border-radius: 10px;
}

.blogpost__section h2 {
  margin: 0 0 2em;
  background: #f4f4f4;
  padding: 20px 15px;
  border-radius: 5px;
}

.blogpost__credit {
  background: var(--main-lightgray-color);
  display: flex;
  align-items: center;
  padding: 4vw 4vw;
  width: calc(100% + 70px + 4vw);
  margin: 0 -4vw;
}

.blogpost__credit-title {
  font-size: 1.8rem;
  margin-right: 2em;
}

.blogpost__credit-image {
  border-radius: 50%;
  margin: 2em;
  width: 20%;
}

.blogpost__credit-name {
  font-size: 2.3rem;
  font-weight: bold;
}

@media (max-width:1580px) {
  #notes .bloglist__body li {
    width: calc(33% - 40px);
  }
}

@media (max-width:1200px) {

  .bloglist__body .cmn__blogtitle {
    writing-mode: unset;
    position: relative;
    top: unset;
    right: unset;
    margin-left: unset;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 0.5em;
  }

  .bloglist__body .cmn__blogtitle span {
    background: unset;
    padding: unset;
  }

  .bloglist__body .cmn__blogtitle br {
    display: none;
  }

  .bloglist__body li {
    width: 30%;
  }

  #notes .bloglist__body li {
    width: calc(50% - 40px);
  }
}

@media (max-width: 800px) {
  #notes .pagevisual-post {
    margin-top: 20vw;
  }

  .top-bloglist .cmn__title {
    padding-top: 70px;
  }

  .blog {
    margin: 30px 0;
  }

  .blogpost {
    margin-right: 0;
    width: 100%;
  }

  #notes .bloglist {
    width: 100%;
  }

  .bloglist__body li {
    max-width: unset;
  }

  .bloglist__container {
    width: calc(100%);
  }

  .bloglist--cmn .bloglist__container {
    width: 100%;
    margin: 0;
  }

  .pagevisual-narrow picture {
    height: 280px;
  }

  .bloglist {
    padding: 0;
  }

  .bloglist--cmn {
    padding: 40px 4vw 0;
  }

  .top-bloglist .bloglist__body {
    margin: 50px 0 0;
    justify-content: left;
  }

  .bloglist__body {
    justify-content: left;
  }

  #notes .bloglist__body {
    margin-top: 0;
    width: 100%;
  }

  .bloglist__body li {
    width: 25%;
  }

  .blog__body {
    display: block;
  }

  .blog__sidebar {
    border: none;
    padding: 0;
  }

  .blogpost {
    margin: 0;
  }

  .blogpost__credit {
    width: 100%;
    margin: 0;
  }

  #notes .bloglist__body li:first-child {
    margin-left: 0;
  }

  .bloglist__leftbox {
    margin-right: 0;
  }

  .blog__ranking {
    background: var(--main-ultralightgray-color);
    border: none;
    padding: 0;
  }

  .blog__ranking li {
    padding: 2vw;
    border-bottom: solid 1px #fff;
    margin-bottom: 0;
  }

  .blog__ranking li a div {
    width: calc(96% - 120px);
  }
}

@media screen and (max-width: 640px) {
  .bloglist .cmn__title {
    margin-right: 0;
    margin-top: 3vw;
  }

  .bloglist__body li {
    width: calc(50% - 10px);
  }

  .bloglist__body {
    flex-wrap: wrap;
  }

  .bloglist__body li {
    margin: 0 5px 40px;
    width: calc(50% - 10px) !important;
  }

  .bloglist__container {
    margin: 0;
  }

  .blogpost__credit {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
  }

  .blogpost__credit div {
    text-align: center;
  }

  .blogpost__credit-title {
    font-size: 1.5rem;
    margin: 0;
  }

  .blogpost__credit-name {
    font-size: 1.8rem;
  }

  .bloglist__body .cmn__blogtitle {
    margin-bottom: 0.5em;
  }

}

@media screen and (max-width: 360px) {
  .bloglist__body .cmn__blogtitle {
    font-size: 1.3rem;
    min-height: 4.3em;
  }
}

/*
 * 実績
 * -------------------------------------------------------------------
 */
.works-list__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.works-list__list {
  margin: 0 -15px 0 -15px;
}

@media (min-width: 992px) {
  .works-list__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.works-list__list-item {
  margin: 15px 15px 4.8rem 15px;
}

@media (min-width: 992px) {
  .works-list__list-item {
    width: calc(100% / 3 - 30px);
    margin: 15px;
  }
}

.works-list__pagination {
  padding-top: 6.4rem;
}

.works-detail__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.works-detail__image .works-detail__image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.works-detail__image--main {
  margin-bottom: 4rem;
}

.works-detail__image--sub {
  margin-bottom: 1.6rem;
}

.works-detail__list {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
}

@media (min-width: 992px) {
  .works-detail__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.works-detail__list-item {
  margin: 0 15px;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .works-detail__list-item {
    width: calc(100% / 2 - 30px);
  }
}

.works-detail__text-main {
  margin-bottom: 4rem;
  color: #aaaaaa;
}

.works-detail__text-sub {
  margin: 0;
  color: #aaaaaa;
  font-size: 1.4rem;
}

.works-detail__button {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .works-detail__button {
    padding-top: 6.4rem;
  }
}



/*
 * CONTACT
 * -------------------------------------------------------------------
 */
#contact .pagevisual-move .cmn__title {
  animation: title-show 19s linear;
}

.contact-form {
  margin: 0 auto;
  max-width: 1200px;

}

.form {
  margin: 0 4vw 8vw;
}

.contact-form__title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2em;
}

.contact-table__title h2 {
  font-size: 1.8rem;
  width: 12em;
  display: flex;
  justify-content: space-between;
  padding-right: 1em;
}

.contact-form__nav {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.req {
  font-size: 1.2rem;
  line-height: 2rem;
  background-color: var(--main-red-color);
  color: #fff;
  white-space: nowrap;
  border-radius: 13px;
  padding: 5px 7px;
  line-height: 1;
}

.tel {
  font-size: 180%;
  line-height: 1.0;
}

.contact-form__nav li {
  border: solid 1px #bbbbbb;
  border-radius: 50%;
  padding: 1em;
  margin: 0.5em;
  font-size: 2rem;
  font-weight: bold;
}

.contact-form__nav li.current {
  background: var(--main-black-color);
  color: #fff;
}

.contact-form__nav li.dash {
  width: 3em;
  height: 1px;
  display: inline-block;
  background: #bbb;
  padding: 0;
  margin: 0;
  border-radius: unset;
  border: none;
}

.contact-table {
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  table-layout: fixed;
  border-spacing: 0;
  border: none;
}

.contact-table__row {
  background: #faf9f7;
  border: 0;
  margin: 0 0 20px;
  padding: 20px;
  display: block;
  border-radius: 10px;
  border: solid 1px #d4d4d4;
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s, border-color .2s, opacity .2s;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 4rem 1.6rem;
  border: none;
  background: var(--main-red-color);
  border: solid 3px #fff;
  border-radius: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 2.2rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.contact-form__submit::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 28px;
  background: url(../img/icon-arrow01white.svg) no-repeat;
  margin-left: 20px;
  right: 0;
  top: 5px;
  position: relative;
  transition: all 0.2s;
}

.contact-form__submit:hover {
  background: var(--main-gold-color);
}

.contact-form__submit:hover::after {
  right: -6px;
}

.contact-form__button {
  padding: 0px 30px 30px;
}

textarea {
  width: 100%;
}

@media (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}

.contact-form__button-submit:hover,
.contact-form__button-submit:focus {
  background: #079698;
}

@media screen and (max-width: 800px) {
  .contact-form {
    margin: 0 6vw;
  }

  .contact-table__title h2 {
    font-size: 1.6rem;
  }

  #contact .pagevisual-narrow {
    height: auto;
    aspect-ratio: 1;
  }
}

@media screen and (max-width: 640px) {
  .contact-table__title h2 {
    font-size: 1.4rem;
  }

  .contact-table__row {
    padding: 3vw;
  }

  .contact-form__nav li {
    font-size: 1.6rem;
  }

  .contact-table__title {
    display: block;
    width: 100%;
  }

  .contact-table__data {
    display: block;
    width: 100%;
  }

  .contact-form__submit {
    font-size: 1.6rem;
    padding: 2rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-form__nav li {
    font-size: 1.2rem;
    aspect-ratio: 1;
    line-height: 2;
  }

  .contact-form__button {
    padding: 0 0 15px 0;
  }

  #contact #animation_container {
    aspect-ratio: 1 / 1;
  }

  #contact .contact-form__button {
    margin-bottom: 8vw;
  }

  .contact-form__title {
    margin: 0.5em;
  }

  .form {
    margin: 0 0 8vw;
  }
}

/*
 * 実績
 * -------------------------------------------------------------------
 */
.works {
  padding: 0 0;
}

#works .works {
  padding: 0 4vw;
}

.cmn__pagenation {
  text-align: center;
  margin-bottom: 5em;
}

.cmn__pagenation .cmn__pagenation__list {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmn__pagenation .prev_next {
  display: flex;
  align-items: center;
}

.cmn__pagenation .prev_next a {
  border: none;
  background: none;
  color: var(--main-black-color);
  font-size: 1.6rem;

}

.cmn__pagenation .prev_next a:hover {
  background: none;
}

.cmn__pagenation li {
  width: 2em;
  height: 2em;
  margin: 0.2em;
  font-size: 3.0rem;
  font-weight: bold;
}

.cmn__pagenation__current {
  border-radius: 50%;
  border: solid 1px var(--main-black-color);
}

.cmn__pagenation li a {
  display: block;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  background: var(--main-black-color);
  color: #fff;
  transition: background-color 450ms;
}

.cmn__pagenation li a:hover {
  background-color: var(--main-blue-color);
}

.cmn__pagenation h3 {
  font-size: 1.5rem;
  margin-bottom: 2em;
}

.cmn__pagenation h3 span {
  font-size: 166%;
}

.works-search {
  background: var(--main-saxblue-color);
  border-radius: 10px;
  margin: 0 0 2vw;
  position: relative;
}

.works-search__title {
  font-size: 2.2rem;
  white-space: nowrap;
  padding: 40px 60px 40px 90px;
  width: 100%;
  cursor: pointer;
}

.works-search__title.show {
  margin-right: 1em;
}

.works-search__list {
  font-size: 1.5rem;
}

.works-search__list li {
  display: inline-block;
}

.works-search__list li a {
  display: inline-block;
  background: #fff;
  border-radius: 2rem;
  line-height: 1;
  padding: 0.5em 1em;
  margin: 0 1em 0.8em 0;
  transition: background-color 450ms;
}

.works-search__list li a:hover {
  background: var(--main-yellow-color);
}

.works-search__box {
  position: relative;
  margin-left: 2em;
  display: none;
  padding: 30px 0 20px;
}


.works-search__inner {
  display: flex;
  flex-wrap: wrap;
}

.works-search__inner dt {
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: bold;
  width: 8em;
}

.works-search__inner dd {
  width: calc(100% - 8em);

}

.works-search__first {
  padding-bottom: 2em;
}

.plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1.5em;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: absolute;
  left: 30px;
  top: 55px;
}

.plus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.works-search__title.show .plus::before {
  display: none;
}

.works-search__list .works-search__current a {
  background: var(--main-yellow-color);
}

.narrow-h1 {
  height: 500px;
  padding-top: 190px;
}

.works__key {
  padding: 0 0 0;
}

.works__key img {
  width: 100%;
}

.works__icon {
  margin-top: 1em;
  text-align: center;
}

.works__url {
  font-size: 2.4rem;
  margin-top: 0.5em;
}

.works__title {
  padding-top: 4vw;
  text-align: center;
  background: #fff;
}

.works__title .cmn__title-text-main {
  writing-mode: unset;
  margin: 0 0 1em;
  font-size: 2.2rem;
  padding: 0 6vw;
}

.works__body {
  display: flex;
  align-items: flex-start;
  max-width: 1400px;
  margin: 70px auto;
  padding: 0 4vw;
}

.works__index {
  position: sticky;
  top: 6vw;
  width: 300px;
}

.works__right {
  width: calc(100% - 300px);
}

.works__index a {
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-lightgray-color)
}

.works__index a:hover {
  color: var(--main-hover-color);
}

.works__index a.current {
  color: var(--main-black-color);
}

.works__index ul {
  counter-reset: titlenum;
}

.works__index ul li span::before {
  counter-increment: titlenum;
  content: "0"counter(titlenum);
}

.works__index ul li a span {
  padding-right: 1em;
  font-size: 140%;

}

.works__content {
  margin: 0 0 120px 0;
  border-left: solid 1px var(--main-black-color);
  padding-left: 50px;
}

#credit {
  max-width: 800px;
}

#credit dl {
  display: flex;
  flex-wrap: wrap;
}

#credit dt {
  width: 240px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: solid 1px var(--main-gray-color);
  padding: 1em 0;
  vertical-align: top;
  margin-right: 20px;
}

#credit dd {
  vertical-align: top;
  font-size: 1.5rem;
  width: calc(100% - 266px);
  display: inline-block;
  border-bottom: solid 1px var(--main-gray-color);
  padding: 1em 0;
}


#credit dt:first-child+dd {
  font-size: 2rem;
  padding: 0.6em 0 0.6em;
}

.works__title .cmn__title-text-sub::after {
  margin: 0.5em auto;
}

.works__pagenation {
  border-top: solid 1px var(--main-gray-color);
  padding: 70px 4vw;
}

#news .works__pagenation {
  border-top: solid 1px var(--main-lightgray-color);
  border-bottom: solid 1px var(--main-gray-color);
}

.works__pagenation__list {
  display: flex;
  justify-content: space-between;
}

.works__pagenation__list h2 {
  font-size: 1.6rem;
  transition: color 0.4s;
}

.works__pagenation__last {
  text-align: right;
}

.works__pagenation__last img {
  display: inline-block;
}

.works__pagenation__list p {
  font-size: 1.2rem;
  transition: color 0.4s;
}

.works__pagenation__list img {
  background: var(--main-black-color);
  transition: background-color 0.4s;
  border-radius: 50%;
  padding: 15px;
  width: 10vw;
  max-width: 130px;
}

.works__pagenation__list img.disable {
  opacity: 0.1;
}

.works__pagenation__list li:first-child img {
  margin-right: 30px;
}

.works__pagenation__list li:last-child img {
  margin-left: 30px;
}

.works__pagenation__list a:hover img {
  background: var(--main-blue-color);
}

.works__pagenation__list a:hover div {
  color: var(--main-hover-color);
}

.works__pagenation__list li {
  width: 50%;
}

.works__pagenation__list a {
  display: flex;
  align-items: center;
}

.works__pagenation__list li:first-child a {
  margin-right: 20px;
}

.works__pagenation__list li:last-child a {
  margin-left: 20px;
  justify-content: flex-end;
}



@media screen and (max-width: 800px) {
  .works__right {
    width: auto;
  }

  .works__pagenation__list a {
    flex-direction: column;
  }

  .works__pagenation__list li:last-child a {
    flex-direction: column-reverse;
  }

  .works__pagenation__list img {
    margin-bottom: 10px;
  }

  .works-search {
    margin: 6vw 6vw 2vw 6vw;
    padding: 0;
    flex-direction: column;
  }

  .works-search__title {
    font-size: 1.6rem;
    margin: 1em 1em 0;
    padding: 30px 20px;
    width: calc(100% - 2em);
    text-align: center;
  }

  .plus {
    top: 40px;
  }

  .works-search__list {
    font-size: 1.3rem;
  }

  .works-search__list li a {
    margin: 0 0.3em 1.2em 0;
  }

  .works-search__inner dd {
    width: 100%;
  }

  .works-search__box::before {
    width: 100%;
    height: 2px;
    top: -15px;
    left: 0;
  }

  .works-search__inner dt {
    width: 100%;
    text-align: center;
    padding-bottom: 0.5em;
  }

  .works-search__first {
    padding-bottom: 0.5em;
  }

  .cmn__pagenation li {
    width: 2em;
    height: 2em;
    margin: 0.4em;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .cmn__pagenation li a {
    width: 2em;
    height: 2em;
    padding: 0.1em 0 0 0.1em;
  }

  .cmn__pagenation__current {
    padding: 0.1em 0 0 0.1em;
  }

  .works__index a {
    font-size: 1.2rem;
  }

  .works__index a span {
    display: block;
  }

  #credit dt {
    display: block;
    margin: 0;
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }

  #credit dd {
    display: block;
    margin: 0;
    width: 100%;

    padding-top: 0;
  }

  .works__title .cmn__title-text-main {
    font-size: 1.4rem;
    padding: 0 8vw;
  }

  .works__title .cmn__title-text-sub {
    font-size: 2rem;
    padding: 0 8vw;
  }

  .works__pagenation__list img {
    width: 70px;
    padding: 5px;
  }
}

@media screen and (max-width: 480px) {
  #works #wrapper {
    margin-top: 80px;
  }

  .works__index {
    min-width: 85px;
    width: auto;
  }

  .works__index a {
    font-size: 1.0rem;
    line-height: 1.4;
    margin-bottom: 1em;
    display: inline-block;
  }

  .works__key {
    padding: 1em 0 0;
  }

  .works__key img {
    border-radius: 0;
  }

  .works__content {
    margin: 0 0 50px 0;
    border-left: solid 1px var(--main-black-color);
    padding-left: 10px;
  }

  #credit dt {
    font-size: 1.2rem;
  }

  #credit dd {
    font-size: 1.2rem;
  }

  .works__pagenation__list h2 {
    font-size: 1.2rem;
  }

  .works__pagenation__list p {
    font-size: 1rem;
  }

  .works__url {
    font-size: 1.8rem;
  }

  .cmn__pagenation .cmn__pagenation__list li:nth-child(n + 5) {
    display: none;
  }

  .works-search {
    margin: 6vw 0 0;
  }
}

/*
 * PROFILE （NEW）
 * -------------------------------------------------------------------
 */
#profile {
  background: #E9EAE9;
}

.profile__sec1 {
  display: flex;
  overflow-x: hidden;
  align-items: center;
}

.profile__circle {
  width: 40vw;
  height: 40vw;
  position: relative;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  aspect-ratio: 1/1;
  padding: 6vw;
  margin: 0 -40px 0 -40px;
  z-index: 10;
}

.profile__circle-title {
  margin-bottom: 1em;
}

.profile__circle-title span {
  font-size: 1.4rem;
}

.profile__circle-box {
  display: flex;
}

.profile__circle-line:before {
  background-color: var(--main-lightblue-color);
  border-radius: 2.5px;
  /* 線幅の半分 */
  content: "";
  display: inline-block;
  height: 60px;
  /* 線の長さ */
  margin-right: 10px;
  /* 線右の余白 */
  vertical-align: middle;
  width: 5px;
  /* 線幅 */
}

.profile__circle-body {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 1em;
}

.profile__circle-list {
  font-size: 1.2rem;
  line-height: 1.5;
  width: fit-content;
  width: 25em;
}

.profile__circle-list dt {
  display: inline-block;
  width: 10em;
}

.profile__circle-list dd {
  display: inline-block;
  width: 14em;
}

.profile__sec2 {
  position: relative;
  overflow-x: hidden;
  margin-top: 50px;
  padding-bottom: 100px;

}

.profile__sec2__titleimg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 55%;
  margin: 0 auto;
  z-index: -1;
}

.profile__sec2__title {
  z-index: 10;
  background: #fff;
  display: block;
  width: fit-content;
  padding: 0.5em;
  margin: 0 auto 500px;
  position: relative;
  top: 300px;

}

.profile__sec2__body {
  z-index: 10;
  width: 45%;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.4rem;
}

.profile__sec2 figcaption {
  font-size: 1rem;
  text-align: center;
}

.profile__sec2 figure {
  width: 25%;
  max-width: 400px;
}

.profile__sec2 figure img {
  width: 100%;
  max-width: unset;
}

.profile__sec2__photo1 {
  position: absolute;
  left: -20px;
  top: 30%;
  transform: rotate(-6deg);
}

.profile__sec2__photo2 {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: rotate(8deg);
}

.profile__sec2__photo3 {
  position: absolute;
  left: -20px;
  top: 60%;
  transform: rotate(5deg);
}

.profile__sec2__sign {
  width: 200px;
  margin: 30px auto;
}

.profile__sec3 {
  background: #cedbe3;
  display: flex;
}

.profile__sec3__lbox {
  flex: 1;
  position: relative;
}

.profile__sec3__photo {
  margin-top: -5.4vw;
  position: absolute;
  right: 0;
}

.profile__sec3__rbox {
  padding: 4vw;
  flex: 1;
}

.profile__sec3__title {
  color: var(--main-gold-color);
  font-size: 3.4rem;
  padding-top: 0.8em;
  padding-bottom: 0.3em;
}

.profile__sec3__subtitle {
  background: var(--main-gold-color);
  color: #cedbe3;
  font-size: 1.4rem;
  padding: 0.2em 0.4em;
  width: fit-content;
  margin-bottom: 2.5em;
  border-radius: 3px;
}

.profile__sec3__subtitle2 span {
  display: block;
  color: var(--main-gold-color);
  font-size: 1.2rem;
}

.profile__sec3__txt {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
}

.profile__sec4 {
  background: var(--main-saxblue-color);
  padding: 6vw 0;
}

.profile__achivements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  margin: 4vw auto;
}

.profile__achivements>li {
  width: calc(33.3% - 1px);
  background: #fff;
  padding: 4vw;
}

.profile__achivements__list {
  font-size: 1.3rem;
  letter-spacing: 0;
  list-style: disc;
  display: none;
  margin-top: 20px;
}

.profile__achivements__list li {
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.profile__achivements__title {
  font-size: 2.6rem;
  text-align: center;
}

.profile__achivements__title span {
  font-size: 1.2rem;
  display: block;
  width: fit-content;
  background: #fff;
  border-radius: 10px;
  padding: 0.4em 1em;
  line-height: 1;
  margin: 0.6em auto 2em;
}

.profile__achivements__icon {
  height: 40px;
  margin: 0 auto 10px;
}

.profile__toggle {
  display: block;
  width: 40px;
  height: 40px;
  background: #ccc;
  border: none;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.profile__toggle:before,
.profile__toggle:after {
  content: "";
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 1px;
  background-color: currentColor;
  transition-duration: 500ms;
}

.profile__toggle:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.profile__toggle.show:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.profile__toggle.show:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.profile__sec5 {
  padding: 6vw 0;
  background: #E9EAE9;
}

.profile__gallery1 {
  width: calc(60vw + 250px);
  margin-left: -170px;
}

.profile__gallery1 img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}

.profile__gallery2 {
  width: calc(100% - 6vw);
  max-width: 1400px;
  margin: 3vw auto;
}
.profile__gallery3 {
  margin-top:6vw;
}

@media screen and (max-width: 800px) {
  .profile__sec1 {
    flex-direction: column-reverse;
  }

  .profile__circle {
    width: calc(100% + 100px);
    aspect-ratio: 1/1;
    height: auto;
    margin: -10px -50px 0 -50px;
    padding: 8vw;
  }

  .profile__gallery1 {
    width: 100%;
    margin: 0 auto;
  }

  .profile__gallery1 img {
    border-radius: 0;
  }

  .profile__sec2__titleimg {
    width: 95%;
  }

  .profile__sec2__title {
    top: 140px;
  }

  .profile__sec2__body {
    width: 100%;
    padding: 6vw;
    margin-top: -100px;
  }

  .profile__sec2__photo1,
  .profile__sec2__photo2,
  .profile__sec2__photo3 {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    transform: unset;
    margin-top: 15px;
  }

  .profile__sec2 figure {
    width: 60%;
    margin: 15px auto 0;
  }

  .profile__achivements {
    flex-direction: column;
  }

  .profile__achivements>li {
    width: 100%;
  }

  .profile__achivements__list {
    margin-left: 30px;
  }

}

@media screen and (max-width: 480px) {
  .profile__circle {
    margin-top: -130px;
  }

  .profile__sec2 {
    margin-top: 15px;
  }

  .profile__sec2__title {
    margin-bottom: 300px;
  }

  .profile__sec4 {
    padding-top: 10vw;
  }

  .profile__sec5 {
    padding-top: 10vw;
  }

  .profile__sec4 .cmn__btn {
    width: calc(100% - 6vw);
    margin: 10vw auto 0;
  }

  .profile__achivements {
    margin: 0 1px;
  }

  .profile__achivements__title span {
    margin-bottom: 0.5em;
  }
}

/*
 * STAFF
 * -------------------------------------------------------------------
 */


.staff {
  padding: 70px 70px;
  position: relative;
  z-index: 10;
}

.staff__section {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  max-width: 1400px;
  margin: 0 auto 200px;
}

.staff__section>div:nth-child(2) {
  width: 70%;
}

.staff__photo {
  position: relative;
  max-width: 500px;
  z-index: 10;
}

.staff__photo-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto;
  height: 100%;
  transition: .2s ease-in-out;
}

.staff__photo-main2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto;
  height: 100%;
  opacity: 0;
  transition: .2s ease-in-out;
}

.staff__photo:hover .staff__photo-main {
  opacity: 0;
}

.staff__photo:hover .staff__photo-main2 {
  opacity: 1;
}

.staff__photo-bg {
  animation: rotate_anime 12s linear infinite;
  height: auto;
  aspect-ratio: 1 / 1;
}

.staff__photo-bg2 {
  animation: rotate_anime2 8s linear infinite;
  height: auto;
  aspect-ratio: 1 / 1;
}

.staff__photo-bg3 {
  animation: rotate_anime 15s linear infinite;
  height: auto;
  aspect-ratio: 1 / 1;
}

.staff__photo-bg4 {
  animation: rotate_anime2 10s linear infinite;
  height: auto;
  aspect-ratio: 1 / 1;
}

.staff__section .cmn__title-text-sub {
  font-size: clamp(2.0rem, 2vw, 3.0rem);
  letter-spacing: 0.1em;
}

.staff__section .cmn__title::before {
  content: '';
  display: block;
  position: absolute;
  top: 50px;
  z-index: -1;
  background: url('../img/bancha.svg') center top no-repeat;
  background-size: 220px;
  padding-top: 70px;
  margin-top: -70px;
  width: 500px;
  height: 500px;
  filter: invert(74%) sepia(98%) saturate(1295%) hue-rotate(177deg) brightness(110%) contrast(102%);
}

#staff2 .cmn__title::before {
  filter: unset;
  filter: invert(82%) sepia(27%) saturate(1911%) hue-rotate(301deg) brightness(111%) contrast(106%);
}

#staff3 .cmn__title::before {
  filter: unset;
  filter: invert(92%) sepia(22%) saturate(898%) hue-rotate(65deg) brightness(99%) contrast(90%);
}

#staff4 .cmn__title::before {
  filter: unset;
  filter: invert(95%) sepia(74%) saturate(884%) hue-rotate(349deg) brightness(98%) contrast(84%);
}

@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
    /* アニメーションの進みが0%の時の状態 */
  }

  100% {
    transform: rotate(360deg);
    /* アニメーションの進みが100%の時の状態 */
  }
}

@keyframes rotate_anime2 {
  0% {
    transform: rotate(360deg);
    /* アニメーションの進みが0%の時の状態 */
  }

  100% {
    transform: rotate(0deg);
    /* アニメーションの進みが100%の時の状態 */
  }
}

.staff__photo h2 {
  display: inline-block;
  position: absolute;
  top: -20px;
  right: 20px;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 2.5;
  writing-mode: vertical-rl;
  margin: 0 auto;
}

.staff__photo h2 span {
  background: #fff;
  color: var(--main-black-color);
  padding: 5px;
  line-height: 1;
}

.staff__text h3 {
  font-size: 2rem;
  margin-bottom: 2em;

}

.staff__text h3 span {
  display: block;
  font-size: 1.6rem;
  padding: 1em 0 0;
}

.staff__text {
  max-width: 800px;
  z-index: 20;
  position: relative;
}

@media screen and (max-width: 800px) {
  .staff {
    padding: 6vw;
  }

  .staff__section {
    display: block;
  }

  .staff__section>div:nth-child(2) {
    width: unset;
  }

  .staff__text h3 {
    margin-top: 1em;
    text-align: center;
  }

  .staff__text h3 span {
    padding-top: 0.2em;
  }

  #staff1 .staff__text h3 span {
    color: var(--main-blue-color);
  }

  #staff2 .staff__text h3 span {
    color: var(--main-red-color);
  }

  #staff3 .staff__text h3 span {
    color: var(--main-green-color);
  }

  #staff4 .staff__text h3 span {
    color: var(--main-yellow-color);
  }

  .staff__photo {
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 1/1;
  }

  .staff__section {
    margin-bottom: 50px;
    width: 100%;
    overflow: hidden;
  }

  .staff__section .cmn__title::before {
    width: 100%;
    height: 100%;
  }


}

@media screen and (max-width: 480px) {
  .staff__photo h2 {
    font-size: 1.8rem;
    line-height: 2;
    right: 0;
  }
}

/*
 * About Us
 * -------------------------------------------------------------------
 */
.aboutus {
  background: #F7F4EE;
}

.aboutus__title h2 {
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  left: 70px;
  top: 25%;
  font-size: clamp(2rem, 4vw, 7.8rem);
  line-height: 4.8vw;
  letter-spacing: 0.1em;
  color: var(--main-black-color);
  animation: title-show 4.5s linear;
}

@keyframes title-show {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes canvas-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.aboutus__title h2 p {
  font-size: 1.2rem;
  line-height: 2.5;
  letter-spacing: 0;
  width: 40%;
  margin-top: 1.5em;
}

.cmn__lead {
  position: absolute;
  right: 70px;
  top: 15vw;
  font-size: clamp(1.4rem, 1.7vw, 2.8rem);
  writing-mode: vertical-rl;
  line-height: 5.5vw;
  font-weight: 700;
  letter-spacing: 0.2em;
  animation: title-show 4s linear;
}

.pagevisual-narrow .cmn__lead {
  top: 180px;
}

.cmn__lead span {
  padding-right: 2px;
  border-right: solid 2px;
}

.pagevisual-narrow .cmn__lead span {
  font-size: clamp(1.4rem, 2vw, 2.4rem);
}

#aboutus #wrapper {
  margin-top: calc(-0.025vw * 100);
}

#aboutus #wrapper::before {
  content: "";
  position: relative;
  top: 1px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2000 / 50;
  background: url(../img/aboutus_sec01_head.png) no-repeat;
  background-size: contain;
}

#aboutus canvas {
  background: #f5d7d3;
  position: fixed;
}

.aboutus__section {
  padding: 4vw 70px;
  position: relative;
}

.aboutus__section01 {
  text-align: center;
  background: #f7f4ee;
  padding-bottom: 140px;
}

.section-texture {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/texture3.jpg);
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 10;
  mix-blend-mode: soft-light;
  opacity: 0.1;
  animation: texture-opacity 3s linear;
  pointer-events: none;
}

.aboutus__section01 h2 {
  font-size: clamp(2.8rem, 4vw, 5.5rem);
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 138px 0;
  position: relative;
}

.aboutus__section01 h2::before {
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  background: url("../img/bancha.svg") center top no-repeat;
  background-size: 260px;
  width: 100%;
  height: 110%;
  filter: invert(94%) sepia(100%) saturate(665%) hue-rotate(349deg) brightness(96%) contrast(88%);
}

.brackets {
  position: relative;
  margin: 0 5px;
  top: -3px;
}

.aboutus__section01-title {
  font-size: clamp(1.6rem, 3vw, 3.6rem);
  line-height: 2.0;
  font-weight: bold;
  padding: 5px 15px;
  margin-bottom: 1em;
  position: relative;
  color: #f6f3ec;
}

.aboutus__section01-title span {
  background: var(--main-black-color);
  padding: 5px;
}

.aboutus__section01-text {
  writing-mode: vertical-rl;
  text-align: start;
  display: block;
  margin: 0 auto;
  padding: 2em 0 0;
  line-height: calc(40 / 17);
  font-weight: 700;
}

.aboutus__section02 {
  background-image: url('../img/aboutus_sec02_bg.jpg?date=01');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  padding: 0;
  margin: 0;

}

.webp .aboutus__section02 {
  background-image: url('../img/aboutus_sec02_bg.webp?date=01');
}

.aboutus__section02 .cmn__title {
  padding-top: 60px;
}

.aboutus__section02-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 50px;
}

.aboutus__section02-box p {
  text-align: left;
  font-size: 1.2rem;
  color: var(--main-gray-color);
  margin-left: 30px;
  width: clamp(150px, 20vw, 260px);
  height: clamp(150px, 20vw, 260px);
  position: relative;
  left: 18vw;
  padding: 0 20px;
  margin-top: -250px;
  background-image: url('../img/aboutus_fukidashi.svg');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--main-black-color);
}

.aboutus__section02-box p b {
  font-size: 130%;
}

.aboutus__section02-box img {
  width: 300px;
  margin-left: calc(20vw + 30px);
}


.aboutus__section03 h2,
.aboutus__section04 h2,
.aboutus__section05 h2 {
  font-size: clamp(2.8rem, 4vw, 5.5rem);
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 140px 0 0.5em;
  color: #ff5757;
}

.aboutus__section02 h3,
.aboutus__section03 h3,
.aboutus__section04 h3,
.aboutus__section05 h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.7em;
  font-weight: bold;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}

.aboutus__section02-text {
  text-align: center;
  line-height: calc(40 / 17);
  padding: 500px 6vw 80px;
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 700;
}



.aboutus__section03 {
  background: #fff;
  text-align: center;
  padding: 0;
  padding: 70px;
  margin: 0 auto;
  max-width: 1400px;
}

.aboutus__section03-text {
  text-align: left;
  margin-bottom: 50px;
}

.aboutus__section03-list {
  margin-bottom: 100px;
}

.aboutus__section03-list li a {
  display: flex;
  align-items: center;
  background: var(--main-ultralight-color);
  border-radius: 50px;
  padding: 1.5em 2em;
  margin-bottom: 20px;
  transition: background-color 0.5s;
}

.aboutus__section03-list li a:hover {
  background: var(--main-yellow-color);
  color: var(--main-black-color);
}

.aboutus__section03-img {
  margin-right: 1em;
}

.aboutus__section03-title {
  width: 14em;
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 2rem);
  text-decoration: underline;
}

.aboutus__section03-desc {
  text-align: left;
}

.aboutus__section03 h3 {
  margin-bottom: 70px;
}

.aboutus__section03 h2 {
  margin-top: 0;
}

.aboutus__section04 {
  text-align: center;
  padding: 0;
  padding: 170px 0 70px;
  margin: 0;
  position: relative;
  background: #fff;
}

.aboutus__section04-list {
  text-align: left;
  display: inline-block;
  margin: 128px 0 0 0;
}

.aboutus__section04-list li {
  list-style-type: disc;
  margin: 0.8em 0 1em;
  font-weight: 700;
}

.aboutus__section04-list li span {
  color: var(--main-hover-color);
  font-size: 70%;
  display: block;
}

.aboutus__section04-list li span::before {
  content: '・・・';
}

.aboutus__section04-box {
  display: flex;
  justify-content: center;
}

.aboutus__section04-box div {
  text-align: left;
  margin-right: 70px;
}

.aboutus__section04-banbox {
  overflow: hidden;
  width: 30vw;
  position: absolute;
  right: 0px;
  top: 230px;
}

.aboutus__section04-ban {

  animation: 10s ease-in-out infinite rotation;
}

@keyframes rotation {
  0% {
    transform: rotate(25deg);
  }

  50% {
    transform: rotate(-25deg);
  }

  100% {
    transform: rotate(25deg);
  }
}

.aboutus__section05 {
  text-align: center;
}

.aboutus__section05-list {
  max-width: 1000px;
  text-align: left;
  margin: 0 auto;
}

.aboutus__section05-list dt {
  width: 100px;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  border-top: solid 1px var(--main-gray-color);
  padding: 1.5em 0;
  vertical-align: top;
  margin-right: 20px;
}

.aboutus__section05-list dd {
  vertical-align: top;
  width: calc(100% - 140px);
  display: inline-block;
  border-top: solid 1px var(--main-gray-color);
  padding: 1.3em 0;
}

#aboutus .pagevisual__container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: 0;
  animation: title-show 7s linear;
}

.pagevisual-move .cmn__title {
  position: absolute;
  top: 40%;
  left: 70px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  margin: 0;
  animation: title-show 3.5s linear;
}

.pagevisual-narrow .cmn__title {
  top: 68%;
}

.pagevisual-move .cmn__title--center,
.pagevisual-narrow .cmn__title--center {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  animation: title-show 1s linear;
}

#profile .pagevisual-move .cmn__title {
  animation: title-show 7s linear;
}

.pagevisual-narrow .cmn__title--center {
  top: 260px;
}

#news .pagevisual-narrow .cmn__title--center,
#contact .pagevisual-narrow .cmn__title--center {
  top: 190px;
}

.cmn__title2 {
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 260px;
  padding: 0 2.5em;
  color: #fff;
  font-size: clamp(2.8rem, 3.6vw, 4.0rem);
  z-index: 100;
}

.blog-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 200px;
  z-index: 101;
  letter-spacing: 0.1em;
}

.blog-subtitle--white {
  color: #fff;
}

.cmn__title2--black {
  color: var(--main-black-color);
}

#news .cmn__title2 {
  color: var(--main-black-color);
  padding: 0 2em;
}

.cmn__title-text-main {
  font-size: 1.2rem;
  font-weight: 700;
  writing-mode: vertical-rl;
  margin: 0 auto;
  padding-right: 3px;
  white-space: nowrap
}

#canvas-texture {
  background: url('../img/texture4.jpg');
  background-size: cover;
  width: 100%;
  height: 1800px;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: soft-light;
  opacity: 0.3;
  animation: texture-opacity 3s linear;
  /*aspect-ratio: 2000/1110;*/
  pointer-events: none;
}

.canvas-texture {
  background: url('../img/texture4.jpg');
  background-size: cover;
  width: 100%;
  height: 1800px;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  animation: texture-opacity 3s linear;
  /*aspect-ratio: 2000/1110;*/
  pointer-events: none;
}

@keyframes texture-opacity {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0.3;
  }
}

.pagevisual-narrow #canvas-texture {
  /*aspect-ratio: unset;
  height:500px;*/
}

.scroll-contents-list {
  display: flex;
}

.scroll-contents-list li {
  display: inline-block;
  margin-right: 50px;
  width: calc(100vw / 4);
  height: auto;
  aspect-ratio: 378/186;
}

.scroll-contents-list li img {
  border-radius: 8px;
  width: 100%;
}

.scroll-contents {
  display: flex;
  overflow: hidden;
}

.scroll-contents-list {
  display: flex;
  list-style: none;
  animation: infinity-scroll-left 45s infinite linear 0.5s both;
}


@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}



@media screen and (max-width: 1400px) {
  .aboutus__section02-box p {
    left: 27vw;
    margin-top: -200px;
    margin-bottom: 100px;
    font-size: 1rem;
  }

  .aboutus__section02-text {
    padding-top: 250px;
  }

}


@media screen and (max-width: 1010px) {
  .aboutus__section01-text {
    writing-mode: unset;
    display: inline-block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  .blog-subtitle {
    font-size: 1.1rem;
    padding-top: 1em;
  }

  .cmn__title2 {
    margin-top: 140px;
    font-size: 1.8rem;
    line-height: 1.8;
  }

  #news .pagevisual-narrow {
    position: relative;
  }

  #news .cmn__title2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  #works #wrapper {
    margin-top: 0;
  }

  #staff .cmn__lead {
    top: 20%;
  }

  .pagevisual-move .cmn__title {
    animation: title-show 4s linear;
    /*left: 6vw;
    top: 60%;*/
  }

  .pagevisual-narrow .cmn__title {
    animation: title-show 1s linear;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .works__title {
 
  }

  #aboutus .pagevisual-move {
    background: #f8d9d5;
  }

  .pagevisual-narrow {
    aspect-ratio: unset;
    height: 280px;
  }

  .pagevisual-narrow .cmn__title--center {
    top: 100px;
    left: 50%;
    animation: title-show 1s linear;
  }

  .aboutus__section {
    padding: 4vw;

  }

  .aboutus__section01 {
    padding-bottom: 70px;
  }

  .aboutus__section02 {
    padding: 0;
  }

  .aboutus__section02 .cmn__title {
    padding-top: 60px;
  }

  .aboutus__section02 {
    background-image: url(../img/aboutus_sec02_bg_sp.jpg);
  }

  .webp .aboutus__section02 {
    background-image: url(../img/aboutus_sec02_bg_sp.webp);
    background-position-y: -190px;
  }

  .aboutus__section02-box {
    display: block;
    margin-top: 360px;
  }

  .aboutus__section02-text {
    padding: 30px 6vw 30px;
    text-align: left;
  }

  .aboutus__section02-box p {
    left: unset;
    margin: 0 auto;
    text-align: center;
    width: 30vw;
    height: 33vw;
    padding: 10vw 5vw 5vw;
    background-image: url('../img/aboutus_fukidashi-sp.svg');
  }

  .aboutus__title h2 {
    left: 6vw;
    top: 24%;
    line-height: 2.6rem;
  }

  .aboutus__title h2 p {
    display: none;
  }

  .cmn__lead {
    right: 3vw;
    top: 24%;
    line-height: 3rem;
    animation: title-show 4s linear;
  }

  .scroll-contents-list {
    animation: infinity-scroll-left 20s infinite linear 0.5s both
  }

  .scroll-contents-list li {
    margin-right: 15px;
    width: calc(100vw / 2);
  }

  .aboutus__section04-box div {
    margin-right: 20px;
  }

  .aboutus__section04-banbox {
    top: 80px;
  }

  .aboutus__section04 h3 {
    font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  }

  .aboutus__section04 h2 {
    padding-top: 50px;
  }

  .aboutus__section04-list {
    margin-top: 40px;
  }

  .aboutus__section05-list dt {
    font-size: 1.4rem;
  }


}

@media screen and (max-width: 700px) {
  .webp .aboutus__section02 {
    background-position-y: -160px;
  }
}

@media screen and (max-width: 640px) {
  .webp .aboutus__section02 {
    background-position-y: -100px;
  }
}

@media screen and (max-width: 640px) {
  #canvas-texture {
    background: url('../img/texture3_sp.jpg');
    width: 100%;
    height: auto;
    aspect-ratio: 500/900;
    background-size: cover;
  }

  .aboutus__section01 h2 {
    background-size: 80%;
  }
}

@media screen and (max-width: 540px) {
  .webp .aboutus__section02 {
    background-position-y: 0px;
  }

  .aboutus__section02-box {
    margin-top: 270px;
  }

  .aboutus__section02-box p {
    width: 60vw;
    height: 65vw;
    padding: 10vw 5vw 5vw;
  }
}

@media screen and (max-width: 480px) {
  .webp .aboutus__section02 {
    background-position-y: 10px;
  }

}

/*
 * DOWNLOAD
 * -------------------------------------------------------------------
 */

#download {
  background: #f0f1f0;
}

.download-form {
  background: #fff;
  margin: 0 auto;

  max-width: 1200px;
}

.download__intro {
  padding: 4vw 4vw 1vw;
}

#download #wrapper {
  margin-top: -120px;
  min-height: unset;
}

@media screen and (max-width: 480px) {
  .download-form {
    border-radius: 10px;
    margin: 4vw;
  }

  #download .contact-form__button {
    margin-top: 15px;
  }
}

/*
 * SERVICES
 * -------------------------------------------------------------------
 */

#services #animation_container {
  background: #f2f2f2;
  /*background: linear-gradient(180deg, #eeeeee 0%, #c5cccf 50%, #f1f1f1 100%);*/
}

#services .breadcrumbs--nomargin {
  padding: 0;
}

.services {
  padding: 0 70px;
}

.services__section {
  position: relative;
}

.services__section01 {
  padding: 4vw 0 0;
  background: #FFF;
  position: relative;
  text-align: center;
}

.services__section01-text {
  padding: 0 0 35px;
  text-align: center;
  font-weight: 700;
}

.services__section01-title {
  font-size: clamp(1.6rem, 2.6vw, 4rem);
  letter-spacing: 0.08em;
  line-height: 2.0;
  font-weight: bold;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 1em;
  position: relative;
}

.services__section01-title span {
  background: var(--main-yellow-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 2px;
}

.services__section02 {
  text-align: center;
}

.services__section04 {
  margin-bottom: 90px;
}

.services__table {
  text-align: center;
  background: var(--main-ultralightgray-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  position: relative;
  z-index: 11;
}

.services__table li {
  width: 33.33%;
  border: solid 2px #fff;
  border-bottom: none;
  border-right: none;
}

.services__table li:last-child {
  width: 100%;
}

.services__table-icon {
  margin: calc(1em + 20px) auto;
  transition: all 0.5s;
}

a:hover .services__table-icon {
  width: 90px;
  margin: 1em auto;
}

li:last-child .services__table-icon {
  width: 120px;
}

li:last-child a:hover .services__table-icon {
  width: 160px;
  margin: 1em auto;
}

.services__table a {
  display: block;
  padding: 100px 30px;
  transition: all 1s;
  position: relative;
  height: 100%;
}

.services__table h3 {
  font-size: 2.6rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.services__table h3 span {
  font-size: 1.7rem;
  margin: 1em 0;
  display: block;
  color: var(--main-gray-color);
}

.services__table h4 {
  font-size: clamp(1.0rem, 1.2vw, 1.4rem);
  background: #fff;
  padding: 2px 10px;
  border-radius: 18px;
  border: 1px solid var(--main-black-color);
  min-width: 13em;
  display: inline-block;
}

.services__table a:hover h4 {
  /*
  background: var(--main-black-color);
  */
  color: var(--main-black-color);
}

.services__table a:hover h3 {
  color: #fff;
}

.services__table a:hover h3 span {
  color: var(--main-yellow-color);
}

.services__table-bg {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

a:hover .services__table-bg {
  opacity: 1;
}

.services__table .services-blank {
  height: 0;
  border: none;
}

.services__slider {
  display: flex;
  justify-content: center;
}

.services__slider ul {
  margin-right: 60px;
}

.services__slider .services__section01-text {
  text-align: left;
  max-width: 800px;
}

.services__slider .slider {
  width: 50%;
  max-width: 500px;

}

.services__slider .slider img {
  border-radius: 15px;
}

.services__title {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.services__title-jp {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.services__title-eng {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--main-yellow-color);
  margin: 1em 0;
}

.services__subtitle {
  font-size: 1.6rem;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  background: var(--main-black-color);
  border-radius: 20px;
  padding: 10px 15px;
}

.services__key img {
  width: 100%;
}

.services__advantage {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 35px;
}

.services__advantage li {
  width: 33.3%;
  text-align: left;
  border: solid 1px var(--main-lightgray-color);
  border-radius: 10px;
}

.services__advantage-desc {
  padding: 35px;
  z-index: 10;
  position: relative;
}

.services__advantage-box {
  background: var(--main-yellow-color);
  position: relative;
  min-height: 13vw;
  border-top-right-radius: 9px;
  border-top-left-radius: 9px;
}

.services__advantage-number {
  color: #fff;
  font-size: clamp(10rem, 33vw, 30rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 0;
  line-height: 1;
}

.services__advantage-text {
  display: block;
  width: 100%;
  z-index: 10;
  padding: 35px;
  line-height: 1.7;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.services__section02 {
  margin: 90px 0 70px;
}

.recommend-title-box {
  position: relative;
  background: url('../img/services_kyusu.svg') no-repeat center;
  background-size: 10em;
  height: 8em;
}

.recommend-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

}

.recommend-title span {
  border-bottom: solid 2px var(--main-black-color);
  padding-bottom: 5px;
}

.recommend-list li {
  background: var(--main-ultralightgray-color);
  border-radius: 40px;
  padding: 20px 30px;
  margin-bottom: 5px;
}

.recommend-list li::before {
  content: '●';
  color: #fff;
  margin-right: 10px;
}

.services__section03 {
  margin-bottom: 70px;
}

.services__section04 .price-list__table {
  margin-top: 35px;
}

@media screen and (max-width: 1200px) {
  .services__table li {
    width: 50%;
  }

  .services__table .services-blank {
    border: solid 3px #fff;
    border-bottom: none;
    border-right: none;
    height: unset;
  }

  .services__advantage {
    gap: 15px;
  }
}

@media screen and (max-width: 800px) {
  .services__slider .services__section01-text {
    margin-top: 30px;
  }

  .services__slider {
    flex-wrap: wrap;

  }

  .services__slider ul {
    margin-right: 0;
  }

  #services .breadcrumbs--nomargin {
    padding: 0;
  }

  .services__advantage {
    display: block;
  }

  .services__advantage li {
    width: 100%;
    margin-bottom: 30px;
  }

  .services {
    padding: 0 6vw;
  }

  .services__section01-text {
    padding-left: 6vw;
  }

  .recommend-title {
    width: 100%;
  }

  .services__advantage-desc {
    padding: 30px;
  }

  a:hover .services__table-bg {
    opacity: 0;
  }

  .services__table a:hover h4 {
    color: var(--main-black-color);
  }

  .services__table a:hover h3 {
    color: var(--main-black-color);
  }

  .services__table a:hover h3 span {
    color: var(--main-gray-color);
  }

  a:hover .services__table-icon {
    width: 50px;
    margin: calc(1em + 20px) auto;
  }

  .services__section02 {
    margin: 0 0 40px;
  }

  .services__advantage-number {
    top: 64%;
  }
}

@media screen and (max-width: 640px) {

  .services__table a {
    padding: 1px 15px 30px;
  }

  .services__advantage-desc {
    padding: 25px;
  }
}

@media screen and (max-width: 480px) {
  .services__slider {
    flex-wrap: wrap;
  }

  .services__section01-text {
    padding: 0 0 35px;
  }

  .services__slider .slider {
    width: 100%;
    margin-bottom: 50px !important;
    order: 1;
    padding: 0 0 35px;
  }

  .services__advantage-box {
    min-height: 22vw;
  }
}

/*
 * TOP PAGE
 * -------------------------------------------------------------------
 */
#home {
  overflow-x: hidden;
}

.home__keyvisual {
  height: 100%;
}

#home #canvas {
  position: fixed;
}

#home #animation_container {
  width: 100% !important;
  height: 100vh !important;
  aspect-ratio: unset;
}

#home canvas {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset;
  object-fit: cover;
  background: #f5d7d3;
  /*background: #e4dfdf;
  animation: bgcolor 30s infinite;*/
}

#home canvas.canvas2 {
  background: radial-gradient(rgb(234, 228, 220), rgb(172, 165, 157));
}

@keyframes bgcolor {
  0% {
    background-color: #f5d7d3;
  }

  20% {
    background-color: #dfedf1;
  }

  60% {
    background-color: #cfcecb;
  }

  80% {
    background-color: #f2dede;
  }

  100% {
    background-color: #f5d7d3;
  }
}

#home #dom_overlay_container {
  height: 100% !important;
  aspect-ratio: unset;
}

.home__title {
  width: 28%;
  position: absolute;
  text-align: center;
  top: calc(34% - 4vw);
  right: 70px;
  font-size: clamp(2.8rem, 5vw, 7rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;

}

.home__subtitle2 {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 1em;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.home__subtitle3 {
  position: relative;
  display: inline-block;
  animation-name: fadeIn1s;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-duration: 300ms;

}

.home__subtitle-eng {
  position: absolute;
  top: calc(48%);
  width: 27%;
  max-width:400px;
  right: 70px;
  font-size: clamp(0.8rem, 1.0vw, 1.2rem);
  font-family: 'AvenirNextLTPro-Demi', sans-serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
  animation-name: fadeIn1s;
  animation-delay: 2s;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-duration: 300ms;
  padding: 10px 0;
  /*
  border-top: dotted 1px;
  border-bottom: dotted 1px;
  */
}

.home__subtitle-jp {
  font-size: clamp(1.15rem, 1.2vw, 1.7rem);
  position: absolute;
  top: calc(32% + 6em);
  right: 60px;
  writing-mode: vertical-rl;
  line-height: 3.2;
  animation-name: fadeIn;
  animation-delay: 2.5s;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition-duration: 300ms;
}

.home__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  height: 1em;
  width: 15em;
  text-align: left;
  position: absolute;
  left: calc(3vw);
  top: calc(50% + 1em);
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  -webkit-transform-origin: left bottom;
  font-size: 0.8rem;
  color: #fff;
  mix-blend-mode: difference;
  z-index: 10;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 0.5s;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}

.home__slider {
  position: absolute;
  bottom: 60px;
  left: 70px;
  width: 45%;
  z-index: 1000;
  animation-name: slideleft;
  animation-delay: 2.0s;
  animation-duration: 2s;
  transition-duration: 500ms;
  animation-fill-mode: forwards;
  opacity: 1;
  transform: translateX(-1200px);
}


@keyframes slideleft {
  0% {
    transform: translateX(-1200px);
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideleftsp {
  0% {
    transform: translateX(-800px);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

.home__slider h3 {
  display: block;
  margin: 0;
}

.home__slider-title {
  width: 9vw;
  max-width: 120px;
}

.home__slider-title #txt path {}

.home__slider-title #txt .st1 {
  animation-delay: 0s;
  animation: stroke2 7s ease-in-out both;
  stroke: #fff;
  stroke-width: 0.5px;
  stroke-dasharray: 100px;
  stroke-dashoffset: 100px;

}

.home__slider-title #circle {
  animation-delay: 4s;
  animation: stroke4 5s ease-in-out both;
  stroke: var(--main-black-color);
  stroke-width: 1px;
  stroke-dasharray: 350px;
  stroke-dashoffset: 350px;
  fill: transparent;
}

@keyframes stroke2 {
  0% {
    fill: transparent;
    stroke-dashoffset: 100px;
  }

  55% {

    stroke-dashoffset: 100px;
  }

  60% {
    fill: transparent;
  }

  80% {
    stroke-dashoffset: 0;
    stroke-width: 0.5px;
  }

  90% {
    fill: #fff;
  }

  100% {
    fill: #fff;
    stroke-width: 0;
  }
}

@keyframes stroke4 {
  0% {
    fill: transparent;
    stroke-dashoffset: 350px;
  }

  50% {
    fill: transparent;
    stroke-dashoffset: 350px;
  }

  70% {
    fill: transparent;
    stroke-dashoffset: 0;
  }

  100% {
    fill: #000;
    stroke-width: 0;
  }
}

@keyframes fadeIn1s {
  0% {}

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.home__slider-box {
  display: none;
}
.home__slider-list{
  display:flex;
  flex-wrap: wrap;
}
.home__slider-list li:nth-child(n+3){
  display:none;
}
.home__slider-box.slick-initialized {
  display: block;
  animation-name: fadeIn1s;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.home__slider-box .cmn__workspic {
  margin-bottom: 0;
}

.home__slider-box li {
  margin: 3px 5px 0 0;

}
.cmn__toppic{
  border-radius: 10px;
}

.home__slider-box li  {

}

.home__slider-cate {
  display: inline-block;
  padding: 0.3em 1em;
  font-size: 1rem;
  font-weight: 600;
  background: var(--main-black-color);
  color: #fff;
  border-radius: 15px;
}

.home__slider-cate li:nth-child(n + 2) {
  display: none;
}

.home__slider-box li {
  position: relative;
  line-height: 1.3;
}

.home__slider-box h3 {
  width: 100%;
  font-weight: 700;
  font-size: clamp(0.8rem, 1.0vw, 1.3rem);
  line-height: 1.5;
  margin: 0 auto;
  display: block;
  width: 100%;
  padding: 5px 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



.home__topnews {
  position: absolute;
  bottom: 70px;
  right: 70px;
  display: block;
  padding: 2px 1em;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--main-black-color);
  color: #fff;
  transition-duration: 500ms;
  animation-name: slideRight;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  border-radius: 20px;
}

a.home__topnews:hover {
  background: var(--main-gray-color);
  color: #fff;
}

.home__topnews-date {
  color: #bbb;
  margin-right: 0.5em;
}

.home {
  padding: 0 70px;
  background: #fff;
  position: relative;
}

#home #wrapper:before {
  position: relative;
  top: 1px;
  content: "";
  display: block;
  height: auto;
  aspect-ratio: 1600/110;
  width: 200%;
  background: url('../img/home-section01head.png') repeat-x;
  background-size: 50%;
  animation: scroll-anim 10s linear infinite;
}

@keyframes scroll-anim {
  100% {
    background-position: -100% 0;
  }
}

.home__section01 {
  display: flex;
  justify-content: center;
  padding-top: 340px;
}

.home__section01-left {
  flex: 1 1;
  position: relative;
}

.home__section01-right {
  font-weight: 700;
  line-height: 2.2;
}

.home__section01-title {
  font-size: clamp(1.8rem, 2.6vw, 3.8rem);
  font-weight: 500;
  position: absolute;
  z-index: 100;
  right: 50px;
  top: 40%;
}

.home__section01-img {
  max-width: 100%;
  margin: 0 0 0 -70px;
  position: relative;
  z-index: 9;
  opacity: 0;
}

.home__section01-img.is-animated {
  animation-name: fadeLeft;
  animation-duration: 3.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

.home__section01-txt {
  position: absolute;
  top: -450px;
  right: -300px;
  z-index: 10;
  width: 75%;
  fill: transparent;
}

.home__section01-txt.is-animated {
  animation: stroke 3s ease-in-out forwards;
  stroke: #e7de4e;
  stroke-dasharray: 2200px;
  stroke-dashoffset: 0;
  stroke-width: 1px;
}

@keyframes stroke {
  0% {
    fill: transparent;
    stroke-dashoffset: 2200px;
  }

  10% {
    fill: transparent;
  }

  80% {
    fill: transparent;
    stroke-dashoffset: 0;
    stroke-width: 1px;
  }

  100% {
    fill: var(--main-yellow-color);
    stroke-dashoffset: 0;
    stroke-width: 0;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(500px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home__section01-right {
  width: 50%;
  z-index: 100;
}

.home__section01-right .cmn__btn--works {
  margin: 30px 0;
}

.home__section02 {
  margin-top: 160px;
}

.services__table {
  background: var(--main-ultralightgray-color);
  margin: 0 -70px;
}


.home__section02-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.home__section02-txt {
  text-align: left;
  min-width: 50%;
  font-weight: 700;
  padding-top: 60px;
}

.cmn-staff {
  background: #fff;
  padding: 4vw 4vw 4vw;
}

.cmn-staff-inner {
  background: var(--main-ultralightgray-color);
  border-radius: 15px;
  padding: 30px;
}

.cmn-staff__name {
  position: relative;
  z-index: 11;
  text-align: center;
  margin-top: 1em;
}

.cmn-staff__name1 {
  display: block;
  font-size: 1.4rem;
}

.cmn-staff__name2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.cmn-staff-top {
  display: flex;
  margin-left: 70px;
}

.cmn-staff-top h3 {
  text-align: right;
}

.cmn-staff__fukidashi {
  margin: 0;
  animation-name: fadeIn1s;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(-10px);
  opacity: 0;
  display: inline-block;
}

.cmn-staff__lead {
  margin: 90px 0;
  font-weight: 700;
}

.cmn-staff .cmn__title {
  margin: -60px 70px 0 0;
}

.cmn-staff__photo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 35px auto 70px;
  max-width: 1150px;
}

.cmn-staff__photo li {
  width: 32%;
  aspect-ratio: 1/1.15;
  margin-bottom: 50px;
}

.cmn-staff__color1 {
  color: var(--main-yellow-color);
}

.cmn-staff__color2 {
  color: var(--main-pink-color);
}

.cmn-staff__color3 {
  color: var(--main-red-color);
}

.cmn-staff__color4 {
  color: var(--main-green-color);
}

.cmn-staff__color5 {
  color: var(--main-blue-color);
}

.cmn-staff__color6 {
  color: var(--main-gold-color);
}

.top-newslist {
  padding: 70px 4vw;
  background: #fff;

}

.top-newslist__box {
  display: flex;
}

.top-newslist .cmn__title {
  margin-right: 70px;
}

.top-newslist .news__list-body {
  max-width: unset;
}

.top-newslist__link {
  text-align: right;
  display: block;
  font-weight: 700;
  margin: 70px 0;
}

.privacy {
  padding: 6vw;
}

.photo-gallery {
  margin: 0 -70px;
  opacity: 0;
  transition: opacity .3s linear;
}

.photo-gallery img {
  width: 100%;
}

.photo-gallery.slick-initialized {
  opacity: 1;
}

.gallery__title {
  display: inline-block;
  font-size: 4rem;
}

.gallery__number {
  display: inline-block;
  margin-left: 1em;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--main-black-color);
  color: #fff;
  text-align: center;
  line-height: 70px;
}



@media screen and (max-width: 1200px) {
  .home__section01-txt {
    top: -300px;
    right: -200px;

  }
}

@media screen and (max-width: 800px) {
  .cmn-staff__name2 {
    font-size: 1.4rem;
  }

  .home__section01-img {
    margin: 0 auto;
  }

  .home__section01-title {
    position: relative;
    right: unset;
    text-align: center;
  }

  .home__section02-txt {
    padding-top: 15px;
  }

  #home #wrapper:before {
    animation: scroll-anim 7s linear infinite;
  }

  .home__section02-box {
    display: block;
  }

  .home__section02 {
    margin-top: 80px;
  }

  .services__table {
    margin: 0 -6vw;
  }

  .home__section01 {
    display: block;
  }

  .home__section01-right {
    width: 100%;
  }

  .home {
    padding: 0 6vw;
  }

  .home__section02 .cmn__title {
    display: block;
  }

  .home__section02-txt {
    width: 100%;
    margin: 0;
  }

  .cmn-staff {
    padding: 6vw;
  }

  .cmn-staff-top {
    display: block;
    margin: 0;
  }

  .cmn-staff .cmn__title {
    margin: 6vw 0 0;
  }

  .cmn-staff__name1 {
    font-size: 1.1rem;
  }

  .cmn-staff__lead {
    margin: 30px 0;
  }

  .cmn-staff__photo {
    margin: 0;
    flex-wrap: wrap;
    gap: 5px;
  }

  .staff__photo-main {
    top: 0;
  }

  .cmn-staff__name {
    margin: 15px 0;
  }

  .cmn-staff__photo li {
    width: calc(50% - 2.5px);
  }

  .cmn-staff-inner {
    padding: 15px;
  }

  .top-bloglist .bloglist__container {
    display: block;
    width: calc(100%);
    margin: 0;
  }

  .top-newslist__box {
    display: block;
  }



  .home__topnews {
    bottom: 40px;
    right: unset;
    padding: 5px 0.5em;
    display: block;
    width: calc(100% - 6vw);
    text-align: center;
    margin: 0 3vw;
  }

  .home__title {
    top: 15%;
    text-align: center;
    width: auto;
    display: inline-block;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .home__subtitle-eng {
    top: calc(15% + 40px);
    right: unset;
    text-align: center;
    width: 100%;
    padding: 0 18vw;
    display: none;
  }

  .home__subtitle-jp {
    width: auto;
    top: calc(16% + 40px);
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .home__subtitle {
    top: 220px;
  }

  .home__slider {
    width: 75%;
    right: unset;
    left: 50%;
    transform: translateX(-800px);
    bottom: 70px;
    animation-name: slideleftsp;
    animation-delay: 2.0s;
    animation-duration: 2s;
  }

  .home__section01-right .cmn__btn--works {
    margin: 30px auto;
  }

  .home__slider-title {
    width: 80px;
    margin-bottom: 0;
  }

  .top-newslist {
    padding-bottom: 20px;
    margin-bottom: 0;
  }

  .top-newslist .cmn__title {
    margin-right: 0;
  }

  .top-newslist__link {
    margin: 20px 0;
  }

  .home__section01-txt {
    width: 70%;
    left: 10vw;
    top: 350px;
  }

  .gallery__title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .cmn-staff__photo {
    margin-left: -6vw;
  }
  .staff__photo{
    width: calc(100% + 6vw);
  }
  .cmn-staff__photo li{
    margin-bottom:8vw;
  }

  .gallery__title {
    font-size: 2.6rem;
  }

  .home__slider {
    width: 88%;
  }

  .home__title {
    top: 13%;
    font-size: clamp(2.8rem, 5.2vw, 6rem);


  }

  .home__subtitle-jp {
    line-height: 2.5;
  }

  .home__slider-box h3 {
    bottom: 28px;
  }

  .home__slider-cate {
    font-size: 1rem;
    margin-top: 5px;
  }

  .home__slider-box {}

  .home__slider-box li {
    margin: 10px 5px 0;
  }

  .home__topnews {
    margin: 6vw;
    width: calc(100% - 12vw);
    border-radius: 20px;
    bottom: 0;
  }

  .home__slider {
    bottom: calc(12vw + 20px);
  }

  .home__section01 {
    padding-top: 50px;
  }

  .home__section01-right .cmn__btn--works {
    width: 100%;
    margin-top: 0;
  }

  .home__subtitle {
    left: -85px;
  }

  .home__section02 .cmn__title-text-sub::after {
    display: block;
    width: 3px;
    height: 40px;
    background: var(--main-black-color);
    margin: 10px auto 10px;
  }

  .home__section02 .cmn__title-text-main {
    writing-mode: vertical-rl;
    margin: 0 auto 30px;
    width: unset;
  }

  .home__section01-right {
    line-height: 1.8;
    margin-top: 230px;
    z-index: 10;
    position: relative;
  }

  .services__table {
    margin: 0 -6vw;
  }


  .cmn-staff {
    padding-top: 3vw;
  }

  .cmn-staff-top h3 {
    text-align: right;
  }

  .cmn-staff__fukidashi {
    margin: 0;
    display: inline-block;
  }

  .home__subtitle {
    top: 178px;
    left: calc(6vw + 0.7em);
    display: none;
  }

  #works .home__subtitle {
    display: none;
  }

  .home__slider-title {
    margin-left: -10px;
  }

  .home__subtitle3 {
    font-size: 2.6rem;
    line-height: 1.0;
    display: none;
  }

  .home__subtitle2 {
    font-size: 1.4rem;
  }
}