@charset "UTF-8";
.pc-only {
  display: block;
}
@media (width <= 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (width <= 768px) {
  .sp-only {
    display: block;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 62.5%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  margin: 12rem 0;
  align-items: stretch;
}
@media (width <= 768px) {
  .grid-container {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}

.grid-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wide {
  grid-column: span 2;
}

.tall {
  grid-row: span 2;
}

.siteHeader {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 27px 80px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}
@media (width <= 992px) {
  .siteHeader {
    padding: 27px 56px;
  }
}
@media (width <= 768px) {
  .siteHeader {
    padding: 4%;
  }
}
.siteHeader .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.siteHeader .logo {
  font-family: "Poppins";
  font-size: 2rem;
}
@media (width <= 400px) {
  .siteHeader .logo {
    font-size: 1.8rem;
  }
}
.siteHeader .logo a {
  text-decoration: none;
  color: #444;
}
.siteHeader .globalNav__list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}
.siteHeader .globalNav__list .globalNav__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.siteHeader .globalNav__list .globalNav__item a {
  font-size: 1.8rem;
  font-weight: normal;
  text-decoration: none;
  color: #444;
  font-family: "Poppins";
}
.siteHeader .globalNav__list .globalNav__item a span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 5px;
  color: #666;
}
.siteHeader .globalNav__list .globalNav__item a:hover {
  text-decoration: underline;
}
@media (width <= 768px) {
  .siteHeader .globalNav {
    display: none;
  }
  .siteHeader .globalNav.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #333;
    z-index: 999;
  }
  .siteHeader .globalNav.active a {
    color: #fff;
    font-size: 2.4rem;
  }
  .siteHeader .globalNav.active a span {
    color: #fff;
  }
  .siteHeader .globalNav__list {
    display: block;
    width: 80%;
    margin: 148px auto 0;
    text-align: center;
  }
  .siteHeader .globalNav__item {
    margin: 48px 0;
  }
}
.siteHeader .hamburger {
  z-index: 1001;
  display: none;
  width: 30px;
  height: 26px;
  position: relative;
}
@media (width <= 768px) {
  .siteHeader .hamburger {
    display: block;
  }
  .siteHeader .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #484848;
    position: absolute;
    left: 0;
    transition: 0.4s;
  }
  .siteHeader .hamburger span:first-of-type {
    top: 5%;
  }
  .siteHeader .hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .siteHeader .hamburger span:last-of-type {
    bottom: 5%;
  }
  .siteHeader .hamburger.active span {
    background-color: #fff;
  }
  .siteHeader .hamburger.active span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(315deg);
  }
  .siteHeader .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .siteHeader .hamburger.active span:nth-of-type(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-315deg);
  }
}

.footer {
  padding: 100px 0 10px;
}
.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.footer__links a {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.footer .copyright {
  text-align: center;
  font-size: 10px;
}

/* full‑bleed slider */
.slider-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.slider {
  display: flex;
  animation: scroll-left 10s linear infinite;
  gap: 5rem;
}

.slide {
  flex-shrink: 0;
  width: calc(100vw - 5rem);
}
@media (width <= 400px) {
  .slide {
    width: calc(200vw - 5rem);
  }
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Shared button base */
.btn,
.btn-cta {
  position: relative;
  display: block;
  text-align: center;
  width: 190px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  font-family: "Helvetica Neue";
  overflow: hidden;
  z-index: 0;
  transition: color 0.5s ease;
  border: 1px solid transparent; /* Prevent layout shift */
}

/* Default styles */
.btn-cta {
  color: #fff;
  background: hsl(29, 100%, 54%);
}

.btn {
  color: hsl(29, 100%, 54%);
  background: #fff;
  border-color: hsl(29, 100%, 54%);
  margin: 0 auto;
}

/* Animated overlay */
.btn::before,
.btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.5s all ease;
}

/* Overlay colors */
.btn::before {
  background-color: hsl(29, 100%, 54%);
}

.btn-cta::before {
  background-color: #fff;
}

/* Hover overlay animation */
.btn:hover::before,
.btn:focus-visible::before,
.btn-cta:hover::before,
.btn-cta:focus-visible::before {
  left: 0;
  right: 0;
  opacity: 1;
}

/* Hover text & border colors */
.btn:hover,
.btn:focus-visible {
  color: #fff;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  color: hsl(29, 100%, 54%);
  border-color: hsl(29, 100%, 54%);
}

.tag {
  display: inline-block;
  margin: 20px auto 10px;
  background-color: #E8E8E8;
  color: #246EB7;
  font-size: 1.4rem;
  font-family: "Helvetica Neue";
  padding: 4px;
  text-align: center;
  font-weight: 600;
}

.tag-web {
  display: block;
  width: 88px;
}

.tag-blog {
  margin-top: 16px;
  font-weight: 600;
}

.firstView {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: -1;
}
.firstView__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media (width <= 992px) {
  .firstView__inner {
    width: 90vw;
  }
}
.firstView__inner .firstView__logo {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media (width <= 400px) {
  .firstView__inner .firstView__logo {
    width: 90vw;
  }
}
.firstView__inner .firstView__logoCatch {
  display: block;
  width: 60vw;
  margin: 0 auto;
  padding: 2rem 0 0;
}
@media (width <= 400px) {
  .firstView__inner .firstView__logoCatch {
    padding: 1.5rem 0 0;
    width: 70vw;
  }
}
.firstView__inner p {
  font-size: 8rem;
  font-family: "Yu Gothic", sans-serif;
  text-align: center;
  color: #246EB7;
  font-weight: bold;
  letter-spacing: 2px;
}
@media (width <= 992px) {
  .firstView__inner p {
    font-size: 6.4rem;
  }
}
@media (width <= 768px) {
  .firstView__inner p {
    font-size: 4.7rem;
  }
}
@media (width <= 400px) {
  .firstView__inner p {
    font-size: 2.8rem;
    padding-left: 3rem;
  }
}
.firstView__inner p span {
  color: transparent;
  -webkit-text-stroke: 1px #246EB7;
  stroke: #246EB7;
  stroke-width: 1px;
}

.myDesign {
  background-color: #F7F7F7;
  padding: 39px 0 74px 0;
  overflow: hidden;
}
@media (width <= 992px) {
  .myDesign {
    padding: 39px 4% 74px;
  }
}
.myDesign .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.myDesign__label {
  font-family: "Helvetica Neue";
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (width <= 768px) {
  .myDesign__label {
    display: block;
    text-align: center;
  }
}
.myDesign__title {
  font-family: "YuGothic", sans-serif;
  color: #FF8616;
  font-size: 4rem;
  margin-top: 24px;
  line-height: 1.6;
  font-weight: 600;
}
@media (width <= 768px) {
  .myDesign__title {
    text-align: center;
    margin-top: 24px;
    line-height: 1.4;
    font-size: 3.2rem;
  }
}
.myDesign__content {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (width <= 992px) {
  .myDesign__content {
    flex-direction: column;
  }
}
.myDesign__images {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 444px;
}
@media (width <= 992px) {
  .myDesign__images {
    max-width: 100%;
  }
}
.myDesign__images img {
  max-width: 148px;
  border-radius: 15px;
}
@media (width <= 992px) {
  .myDesign__images img {
    max-width: 32%;
  }
}
.myDesign__text {
  width: 50%;
}
@media (width <= 992px) {
  .myDesign__text {
    width: 100%;
  }
}
.myDesign__text p {
  font-size: 1.6rem;
  font-family: "YuGothic", sans-serif;
  font-weight: 550;
  line-height: 1.5;
  text-align: justify;
}
.myDesign__text p:first-of-type {
  padding-bottom: 20px;
}

.myWorks {
  padding: 80px 0;
}
@media (width <= 992px) {
  .myWorks {
    padding: 80px 4%;
  }
}
.myWorks .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.myWorks .inner h3 {
  font-family: "Helvetica Neue";
  font-size: 7.2rem;
  font-weight: 700;
  color: #D9D9D9;
  text-align: center;
}
@media (width <= 768px) {
  .myWorks .inner h3 {
    font-size: 4rem;
  }
}
.myWorks__Branding img {
  display: block;
  border-radius: 10px;
  margin: 40px 0 80px 0;
}
.myWorks__Web__item {
  width: 50%;
}
@media (width <= 768px) {
  .myWorks__Web__item {
    width: 100%;
    margin-bottom: 100px;
  }
}
.myWorks__Web img {
  display: block;
  border-radius: 10px;
  margin: 40px 0 20px 0;
}
.myWorks__Web h4 {
  font-family: "Helvetica Neue";
  font-size: 2.4rem;
  color: #246EB7;
  text-align: center;
}
@media (width <= 768px) {
  .myWorks__Web h4 {
    font-size: 2rem;
  }
}
.myWorks__Graphic {
  margin-top: 80px;
}
.myWorks__Graphic__items {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 60px 0;
}
@media (width <= 768px) {
  .myWorks__Graphic__items {
    flex-direction: column;
    gap: 60px;
    padding: 32px 0 54px 0;
  }
}
.myWorks__Graphic__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.myWorks__Graphic__item img {
  border-radius: 10px;
}
.myWorks__Graphic__item h4 {
  font-size: 2.4rem;
  color: #246EB7;
  font-family: "Helvetica Neue";
}

.mySkills {
  padding: 80px 0 133px 0;
  background-color: #f7f7f7;
}
@media (width <= 768px) {
  .mySkills {
    padding: 50px 4% 133px;
  }
}
.mySkills .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.mySkills .inner h3 {
  position: relative;
  font-size: 4rem;
  color: #FF8616;
  font-family: "YuGothic", sans-serif;
  text-align: center;
  font-weight: 600;
}
@media (width <= 768px) {
  .mySkills .inner h3 {
    font-size: 2.4rem;
  }
}
.mySkills .inner h3 span.en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.mySkills .inner h3 span.en img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
@media (width <= 400px) {
  .mySkills .inner h3 span.en img {
    width: 100%;
  }
}
.mySkills .inner h3 span.jp {
  position: relative;
  z-index: 1;
}
.mySkills__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 93px;
}
@media (width <= 768px) {
  .mySkills__list {
    flex-direction: column;
  }
}
.mySkills__item {
  background-color: #fff;
  padding: 32px 20px 62px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 33.333%;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}
.mySkills__item:last-child::after {
  content: "";
  position: absolute;
  background-image: url(../img/wip.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 71.7px;
  height: 71px;
  top: -2px;
  right: -2px;
  pointer-events: none;
}
.mySkills__item h4 {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 3.2rem;
  color: #246EB7;
  font-weight: 500;
  text-align: center;
}
.mySkills__item img {
  padding: 9px 0 16px 0;
  max-width: 10rem;
  margin: 0 auto;
}
.mySkills__item span {
  font-family: "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  color: #B3B3B3;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.mySkills__item p {
  font-family: "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.6;
  margin-top: 2.4rem;
}
@media (width <= 768px) {
  .mySkills__item {
    width: 80%;
    margin: 0 auto;
  }
}
@media (width <= 400px) {
  .mySkills__item {
    width: 90%;
  }
}

@media (width <= 992px) {
  .aboutMe {
    padding: 0 4%;
  }
}
.aboutMe .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.aboutMe__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .aboutMe__wrapper {
    flex-direction: column-reverse;
  }
}
.aboutMe__information {
  width: 50%;
}
@media (width <= 768px) {
  .aboutMe__information {
    width: 100%;
  }
}
.aboutMe__image {
  width: 45%;
}
@media (width <= 768px) {
  .aboutMe__image {
    width: 100%;
  }
}
.aboutMe__label {
  font-family: "Helvetica Neue";
  display: inline-block;
  margin-top: 45px;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: bold;
}
.aboutMe__title {
  font-family: "YuGothic", sans-serif;
  color: #FF8616;
  font-size: 4rem;
  margin: 24px 0 20px 0;
  line-height: 1.6;
  font-weight: 600;
}
@media (width <= 992px) {
  .aboutMe__title {
    font-size: 3.2rem;
  }
}
@media (width <= 768px) {
  .aboutMe__title {
    margin: 24px 0 20px 0;
    line-height: 1.4;
  }
}
.aboutMe p {
  font-size: 1.6rem;
  font-weight: 550;
  font-family: "Helvetica Neue";
  line-height: 1.7;
  margin-bottom: 4rem;
}
.aboutMe .btn {
  margin: inherit;
}

.myBlog {
  padding: 74px 0 96px 0;
}
@media (width <= 992px) {
  .myBlog {
    padding: 74px 4% 96px;
  }
}
.myBlog .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.myBlog .inner h3 {
  font-family: "Helvetica Neue";
  font-size: 7.2rem;
  font-weight: 700;
  color: #D9D9D9;
  text-align: center;
}
.myBlog__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 74px 0 47px 0;
}
@media (width <= 768px) {
  .myBlog__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
.myBlog__wrapper img {
  border-radius: 10px;
}
.myBlog__wrapper h4 {
  font-size: 1.6rem;
  font-family: "YuGothic";
  color: #1a1a1a;
  padding-bottom: 12px;
  font-weight: 600;
}
.myBlog__wrapper p {
  font-size: 1.6rem;
  font-family: "YuGothic";
  color: #1a1a1a;
}

.works {
  padding-top: 200px;
}
@media (width <= 768px) {
  .works {
    padding-top: 105px;
  }
}
.works .inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media (width <= 768px) {
  .works .inner {
    padding: 0 4%;
  }
}
.works__label {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 2rem;
  color: #FF8616;
}
@media (width <= 768px) {
  .works__label {
    font-size: 1rem;
  }
}
.works__title {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 12rem;
  color: #246EB7;
}
@media (width <= 768px) {
  .works__title {
    font-size: 6.4rem;
  }
}

.worksItem {
  padding-top: 200px;
}
@media (width <= 768px) {
  .worksItem {
    padding: 0 4%;
    padding-top: 100px;
  }
}
.worksItem .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worksItem h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 6.4rem;
  color: #246EB7;
}
.worksItem__fv {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.worksItem__info {
  padding: 80px 0 107px;
  background-color: #F9F9F9;
}
@media (width <= 768px) {
  .worksItem__info {
    padding: 80px 4% 107px;
  }
}
.worksItem__info .inner {
  max-width: 860px;
  margin: 0 auto;
}
.worksItem__info h3 {
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 500;
}
.worksItem__info .info_wrapper {
  padding-top: 6rem;
}
.worksItem__info .info_wrapper_item dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.worksItem__info .info_wrapper_item dl dt {
  width: 150px;
  font-weight: bold;
  color: #343434;
  font-size: 1.6rem;
}
.worksItem__info .info_wrapper_item dl dd {
  flex: 1;
  margin: 0;
  color: #343434;
  font-size: 1.6rem;
}

.works-flyer {
  padding: 8rem 4% 10.7rem;
}
.works-flyer .inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.works-flyer .works-flyer__images {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.worksItem {
  padding-top: 200px;
  height: 100vh;
}
@media (width <= 768px) {
  .worksItem {
    padding: 0 4%;
    padding-top: 100px;
  }
}
.worksItem .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worksItem .fv-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .worksItem .fv-wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.worksItem .worksItem__text {
  width: 49%;
}
@media (width <= 768px) {
  .worksItem .worksItem__text {
    width: 100%;
  }
}
.worksItem .worksItem__text h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 6.4rem;
  color: #246EB7;
  letter-spacing: 0.001em;
}
@media (width <= 768px) {
  .worksItem .worksItem__text h2 {
    font-size: 4.4rem;
  }
}
.worksItem .worksItem__text span {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  color: #FF8616;
  line-height: 1.6;
  font-weight: 500;
}
@media (width <= 768px) {
  .worksItem .worksItem__text span {
    font-size: 1.8rem;
  }
}
.worksItem .worksItem__text p {
  padding-top: 42px;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
}
.worksItem .worksItem__img {
  width: 49%;
}
@media (width <= 768px) {
  .worksItem .worksItem__img {
    width: 100%;
  }
}

.section-info {
  padding: 65px 0 112px 0;
  background-color: #F7F7F7;
}
@media (width <= 768px) {
  .section-info {
    padding: 65px 4% 112px;
  }
}
.section-info .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-info .inner .target {
  padding-top: 80px;
  text-align: center;
}
.section-info .inner .target p {
  padding-top: 1rem;
  line-height: 1.6;
}
.section-info .inner h3 {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.section-info .inner h4 {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 500;
}
.section-info .inner p {
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
}
.section-info .inner .persona__wrapper {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .section-info .inner .persona__wrapper {
    flex-direction: column;
  }
}
.section-info .inner .persona__image {
  width: 200px;
  object-fit: contain;
}
.section-info .inner .persona__details dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem;
}
.section-info .inner .persona__details .row {
  display: flex;
  align-items: center;
}
.section-info .inner .persona__details dt {
  width: 12rem;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.section-info .inner .persona__details dt:last-of-type {
  line-height: 1.6;
}
@media (width <= 768px) {
  .section-info .inner .persona__details dt {
    width: 10rem;
  }
}
.section-info .inner .persona__details dd {
  margin: 0;
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.6;
}

.section-details {
  padding: 95px 0;
}
@media (width <= 768px) {
  .section-details {
    padding: 95px 4%;
  }
}
.section-details .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.section-details .inner h3 {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.section-details .inner span {
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  color: #FF8616;
  font-weight: 500;
}
@media (width <= 768px) {
  .section-details .inner span {
    font-size: 1.4rem;
  }
}
.section-details .inner h4 {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2.4rem;
  color: #246EB7;
  font-weight: 500;
}
@media (width <= 768px) {
  .section-details .inner h4 {
    font-size: 1.8rem;
  }
}
.section-details .inner .label__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.section-details .inner .label__wrapper .feature-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (width <= 400px) {
  .section-details .inner .label__wrapper .feature-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 2rem;
    width: 100%;
  }
}
.section-details .inner .label__wrapper .feature-list .feature-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.section-details .inner .label__wrapper .feature-list .feature-strip .info {
  width: 30%;
}
.section-details .inner .label__wrapper .feature-list .feature-strip .img__wrap {
  width: 70%;
}
.section-details .inner .label__wrapper .feature-list .feature-strip .img__wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (width <= 400px) {
  .section-details .inner .label__wrapper .feature-list .feature-strip {
    flex: 0 0 100%;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
  }
  .section-details .inner .label__wrapper .feature-list .feature-strip .info, .section-details .inner .label__wrapper .feature-list .feature-strip .img__wrap {
    width: 100%;
    text-align: center;
  }
  .section-details .inner .label__wrapper .feature-list .feature-strip .info span, .section-details .inner .label__wrapper .feature-list .feature-strip .info h4 {
    display: block;
  }
}
.section-details .inner .howto-wrapper {
  padding-top: 10rem;
}
.section-details .inner .howto-wrapper h3 {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.section-details .inner .howto-wrapper .img__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 736px;
  margin: 0 auto;
  gap: 8rem;
  padding-top: 80px;
}

.worksItem {
  padding-top: 200px;
}
@media (width <= 768px) {
  .worksItem {
    padding: 0 4%;
    padding-top: 100px;
  }
}
.worksItem .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worksItem h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 6.4rem;
  color: #246EB7;
}
.worksItem__fv {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.worksItem__info {
  padding: 80px 0 107px;
  background-color: #F9F9F9;
}
@media (width <= 768px) {
  .worksItem__info {
    padding: 80px 4% 107px;
  }
}
.worksItem__info .inner {
  max-width: 860px;
  margin: 0 auto;
}
.worksItem__info .info_wrapper_item dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.worksItem__info .info_wrapper_item dl dt {
  width: 150px;
  font-weight: bold;
  color: #343434;
  font-size: 1.6rem;
}
.worksItem__info .info_wrapper_item dl dd {
  flex: 1;
  margin: 0;
  color: #343434;
  font-size: 1.6rem;
}

.worksItem {
  padding-top: 200px;
}
@media (width <= 768px) {
  .worksItem {
    padding: 0 4%;
    padding-top: 100px;
  }
}
.worksItem .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worksItem h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 6.4rem;
  color: #246EB7;
}
.worksItem__fv {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.worksItem__info {
  padding: 80px 0 107px;
  background-color: #F9F9F9;
}
@media (width <= 768px) {
  .worksItem__info {
    padding: 80px 4% 107px;
  }
}
.worksItem__info .inner {
  max-width: 860px;
  margin: 0 auto;
}
.worksItem__info .info_wrapper_item dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.worksItem__info .info_wrapper_item dl dt {
  width: 150px;
  font-weight: bold;
  color: #343434;
  font-size: 1.6rem;
}
.worksItem__info .info_wrapper_item dl dd {
  flex: 1;
  margin: 0;
  color: #343434;
  font-size: 1.6rem;
}

.worksItem {
  padding-top: 200px;
}
@media (width <= 768px) {
  .worksItem {
    padding: 0 4%;
    padding-top: 100px;
  }
}
.worksItem .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worksItem h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 6.4rem;
  color: #246EB7;
}
.worksItem__fv {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.worksItem__info {
  padding: 80px 0 107px;
  background-color: #F9F9F9;
}
@media (width <= 768px) {
  .worksItem__info {
    padding: 80px 4% 107px;
  }
}
.worksItem__info .inner {
  max-width: 860px;
  margin: 0 auto;
}
.worksItem__info .info_wrapper_item dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.worksItem__info .info_wrapper_item dl dt {
  width: 150px;
  font-weight: bold;
  color: #343434;
  font-size: 1.6rem;
}
.worksItem__info .info_wrapper_item dl dd {
  flex: 1;
  margin: 0;
  color: #343434;
  font-size: 1.6rem;
}

.works-poster {
  padding: 8rem 4% 10.7rem;
}
.works-poster .inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.worksItem {
  padding-top: 200px;
}
@media (width <= 768px) {
  .worksItem {
    padding: 0 4%;
    padding-top: 100px;
  }
}
.worksItem .inner {
  max-width: 1080px;
  margin: 0 auto;
}
.worksItem h2 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 6.4rem;
  color: #246EB7;
}
.worksItem__fv {
  margin: 6rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.worksItem__info {
  padding: 80px 0 107px;
  background-color: #F9F9F9;
}
@media (width <= 768px) {
  .worksItem__info {
    padding: 80px 4% 107px;
  }
}
.worksItem__info .inner {
  max-width: 860px;
  margin: 0 auto;
}
.worksItem__info .info_wrapper_item dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.worksItem__info .info_wrapper_item dl dt {
  width: 150px;
  font-weight: bold;
  color: #343434;
  font-size: 1.6rem;
}
.worksItem__info .info_wrapper_item dl dd {
  flex: 1;
  margin: 0;
  color: #343434;
  font-size: 1.6rem;
}

.contact {
  padding-top: 200px;
}
@media (width <= 768px) {
  .contact {
    padding-top: 105px;
  }
}
.contact .inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media (width <= 768px) {
  .contact .inner {
    padding: 0 4%;
  }
}
.contact__title {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 12rem;
  color: #246EB7;
  text-align: center;
}
@media (width <= 768px) {
  .contact__title {
    font-size: 6.4rem;
  }
}
.contact p {
  font-size: 14px;
  margin-top: 50px;
  text-align: center;
  line-height: 1.6;
}
@media (width <= 768px) {
  .contact p {
    margin-top: 30px;
  }
}
.contact .form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 100px;
}
.contact .form-wrapper .form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.contact .form-wrapper .form .input-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact .form-wrapper .form .input-group label {
  width: 100px;
  font-size: 14px;
  padding-top: 12px;
  color: #333;
  flex-shrink: 0;
}
.contact .form-wrapper .form .input-group input {
  width: 100%;
  max-width: 525px;
  height: 50px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}
.contact .form-wrapper .form .input-group textarea {
  width: 100%;
  max-width: 525px;
  height: 300px;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  resize: none;
}
@media (width <= 768px) {
  .contact .form-wrapper .form .input-group {
    flex-direction: column;
  }
  .contact .form-wrapper .form .input-group label {
    width: 100%;
    padding-top: 0;
    margin-bottom: 5px;
  }
}
.contact .form-wrapper .form .form-button {
  text-align: center;
  margin-top: 40px;
}
.contact .form-wrapper .form .form-button button {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FF8616;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
}

.blog {
  padding-top: 200px;
}
@media (width <= 768px) {
  .blog {
    padding-top: 105px;
  }
}
.blog .inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media (width <= 768px) {
  .blog .inner {
    padding: 0 4%;
  }
}
.blog__title {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 12rem;
  color: #246EB7;
  text-align: center;
}
@media (width <= 768px) {
  .blog__title {
    font-size: 6.4rem;
  }
}
.blog__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 74px 0 47px 0;
}
@media (width <= 768px) {
  .blog__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
.blog__item {
  width: 32%;
}
@media (width <= 768px) {
  .blog__item {
    width: 100%;
  }
}
.blog__item a {
  display: inline-block;
}
.blog__item img {
  border-radius: 10px;
}
.blog__item h4 {
  font-size: 1.6rem;
  font-family: "YuGothic";
  color: #1a1a1a;
  padding-bottom: 12px;
  font-weight: 600;
}
.blog__item p {
  font-size: 1.6rem;
  font-family: "YuGothic";
  color: #1a1a1a;
  margin: 0;
}

.article_wrapper {
  padding: 20.5rem 0 10rem 0;
}
@media (width <= 768px) {
  .article_wrapper {
    padding: 10rem 4% 0;
  }
}
.article_wrapper .blog-inner {
  max-width: 720px;
  margin: 0 auto;
}
.article_wrapper .blog-inner .blog-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.article_wrapper .blog-inner .blog-heading .date {
  font-size: 1.6rem;
  font-family: "Helvetica Neue";
  font-weight: 400;
  color: #484848;
}
.article_wrapper .blog-inner .blog-heading h2 {
  font-size: 2.4rem;
  font-family: "Helvetica Neue";
  font-weight: 200;
  color: #484848;
}
.article_wrapper .blog-inner .blog-paragraph {
  margin: 2rem 0;
}
.article_wrapper .blog-inner .blog-paragraph p {
  font-size: 1.6rem;
  font-family: "Helvetica Neue";
  font-weight: 400;
  color: #484848;
  line-height: 1.3;
}
.article_wrapper .blog-inner .blog-title__paragraph {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 6rem 0;
}
.article_wrapper .blog-inner .blog-title__paragraph h3 {
  font-size: 2rem;
  font-family: "Helvetica Neue";
  font-weight: 200;
  color: #484848;
}
.article_wrapper .blog-inner .blog-title__paragraph p {
  font-size: 1.6rem;
  font-family: "Helvetica Neue";
  font-weight: 400;
  color: #484848;
  line-height: 1.3;
}