@charset "UTF-8";
/*
Theme Name: Tenko Portfolio
Version: 1.0
Description: Takatoshi Tenkoのポートフォリオサイトです。
Last Updated: 2023-07-20
Author: Takatoshi Tenko - https://tenkoblog.com
Twitter: https://twitter.com/taka_tyw
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  border: 0;
  outline: 0;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-style: italic;
  font-weight: 700;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  padding: 0;
  margin: 1em 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

html {
  min-height: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100%;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-style: normal;
  font-weight: 500;
}

h1 {
  font-size: 6rem;
  font-weight: 700;
}
@media screen and (min-width: 1065px) {
  h1 {
    font-size: 7.2rem;
  }
}

h2 {
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (min-width: 1065px) {
  h2 {
    font-size: 6rem;
  }
}

h3 {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (min-width: 1065px) {
  h3 {
    font-size: 4rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

button {
  background: none;
  border: none;
}

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

p,
span {
  font-size: 1.8rem;
}
@media screen and (min-width: 1065px) {
  p,
  span {
    font-size: 2rem;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 8rem;
  background-color: #a3a3a3;
  transition: 0.3 all ease;
}
.header__logo:hover {
  opacity: 0.6;
}
.header__sp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
  padding: 0 1.6rem;
}
.header__hamburger {
  position: relative;
  box-sizing: border-box;
  width: 5.3rem;
  height: 5.3rem;
  padding: 0.8rem;
}
.header__hamburger:hover {
  cursor: pointer;
  opacity: 0.6;
}
.header__hamburger-inner {
  position: absolute;
  top: 9%;
  right: 13%;
}
.header__hamburger-line {
  content: "";
  background-color: #000;
}
.header__hamburger-line.top {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 4rem;
  height: 0.15rem;
  transition: 0.3s all ease;
}
.header__hamburger-line.top.active {
  top: 2rem;
  transform: rotate(500deg);
}
.header__hamburger-line.middle {
  position: absolute;
  top: 2rem;
  right: 0;
  width: 3rem;
  height: 0.15rem;
  transition: 0.1s all ease;
}
.header__hamburger-line.middle.active {
  opacity: 0;
}
.header__hamburger-line.bottom {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 1.5rem;
  height: 0.15rem;
  transition: 0.3s all ease;
}
.header__hamburger-line.bottom.active {
  top: 2rem;
  width: 4rem;
  transform: rotate(-500deg);
}
.header__nav {
  position: fixed;
  top: 8rem;
  left: 100%;
  z-index: 30;
  width: 100%;
  height: 100%;
  background: #a3a3a3;
  transition: 0.5s;
}
.header__nav.active {
  left: 0;
}
.header__ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 60%;
  height: 60%;
  margin: 0 auto;
  text-align: center;
}
.header__link {
  width: 100%;
  padding: 1.6rem;
}
.header__link:hover {
  color: #fff;
}
@media screen and (min-width: 1065px) {
  .header {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.6rem;
  }
  .header__hamburger {
    display: none;
  }
  .header__nav {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background: transparent;
  }
  .header__sp {
    padding: 0;
  }
  .header__ul {
    flex-direction: row;
    width: auto;
    height: auto;
  }
  .header__link {
    width: auto;
  }
}

.footer {
  padding: 6.4rem 1.6rem 0;
  background-color: #e4e4e4;
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 6.4rem;
}
.footer__logo:hover {
  opacity: 0.6;
}
.footer__main__content {
  margin-bottom: 6.4rem;
  border-top: 0.1rem solid #878787;
  border-bottom: 0.1rem solid #878787;
}
.footer__main__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  transition: 0.3s all ease;
}
.footer__main__headline:hover {
  cursor: pointer;
  opacity: 0.6;
}
.footer__main__title {
  font-size: 2.4rem;
}
.footer__main__toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #a3a3a3;
}
.footer__main__toggle-vertical {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1.5rem;
  height: 0.15rem;
  content: "";
  background-color: #000;
  transition: 0.3s all ease;
  transform: translate(50%, -50%) rotate(90deg);
}
.footer__main__toggle-vertical.active {
  transform: translate(50%, -50%) rotate(360deg);
}
.footer__main__toggle-beside {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1.5rem;
  height: 0.15rem;
  content: "";
  background-color: #000;
  transition: 0.3s all ease;
  transform: translate(50%, -50%);
}
.footer__sub__content {
  display: none;
  padding-bottom: 1.6rem;
}
.footer__sub__content.active {
  display: block;
}
.footer__sub__link {
  display: block;
  padding: 0.8rem 1.6rem;
  margin-bottom: 0.4rem;
  transition: 0.1s all ease;
}
.footer__sub__link:last-child {
  margin-bottom: 0;
}
.footer__sub__link:hover {
  color: #fff;
  background-color: #5b5b5b;
  border-radius: 1rem;
}
.footer__copy {
  display: block;
  padding: 0.8rem 1.6rem;
  text-align: center;
}
@media screen and (min-width: 1065px) {
  .footer {
    padding: 12.8rem 0 1.6rem;
    margin: 0 auto;
  }
  .footer__logo {
    display: block;
    max-width: 102.4rem;
    margin: 0 auto 6.4rem;
  }
  .footer__main__content {
    max-width: 102.4rem;
    margin: 0 auto;
    border: none;
  }
  .footer__main__item {
    margin-bottom: 3.2rem;
  }
  .footer__main__item:last-child {
    margin-bottom: 6.4rem;
  }
  .footer__main__headline {
    display: none;
  }
  .footer__sub__content {
    display: flex;
    justify-content: space-between;
    width: 70%;
  }
  .footer__sub__link {
    width: 100%;
    padding: 1.6rem;
    text-align: center;
  }
}

.btn-medium {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.6rem;
  overflow: hidden;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background-color: #c8c8c8;
  border-radius: 3rem;
  transition: 0.3s all ease-in;
}
.btn-medium:hover {
  color: #fff;
}

.btn-medium::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #282828;
  border-radius: 3rem;
  transition: 0.5s all ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.btn-medium:hover::after {
  transform: scale(1, 1);
}
@media screen and (min-width: 1065px) {
  .btn-medium {
    max-width: 20rem;
  }
}

.default-content {
  padding: 14.4rem 1.6rem 6.4rem;
}

@keyframes fadeFitness {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeDental {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeHotel {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.key-visual {
  padding: 14.4rem 1.6rem 6.4rem;
  margin-bottom: 12.8rem;
  background: linear-gradient(90deg, #88c8b0 0%, #88c8b0 50%, #90c686 50%, #90c686 100%);
}
.key-visual__title {
  margin-bottom: 3.2rem;
}
.key-visual__img.achieve {
  width: 100%;
}
.key-visual__img.achieve.fitness {
  animation-name: fadeFitness;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
.key-visual__img.achieve.dental {
  animation-name: fadeDental;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
.key-visual__img.achieve.hotel {
  animation-name: fadeHotel;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
@media screen and (min-width: 1065px) {
  .key-visual__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 102.5rem;
    margin: 0 auto;
  }
  .key-visual__title {
    width: 48%;
  }
  .key-visual__content {
    height: 31rem;
    background-color: #878787;
  }
  .key-visual__img {
    width: 46%;
  }
  .key-visual__img.achieve.fitness {
    position: absolute;
    top: 0;
    left: 52%;
    width: 35%;
  }
  .key-visual__img.achieve.dental {
    position: absolute;
    top: 25%;
    right: -6rem;
    width: 37%;
  }
  .key-visual__img.achieve.hotel {
    position: absolute;
    bottom: -5rem;
    left: 57%;
    width: 31%;
  }
}

.next {
  padding: 0 1.6rem;
  margin: 12.8rem 0;
}
.next__link {
  position: relative;
  z-index: 1;
  display: block;
  padding: 6.4rem 0;
  overflow: hidden;
  text-align: center;
  background-color: #c8c8c8;
  border-radius: 2rem;
  transition: 0.3s all ease-in;
}
.next__link::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 200%;
  height: 100%;
  content: "";
  background-color: #282828;
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  transition: 0.5s all ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.next__link:hover::after {
  transform: scale(1, 1);
}
.next__link:hover {
  color: #fff;
}
.next__link:first-child {
  margin-bottom: 3.2rem;
}
.next__title {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 1065px) {
  .next {
    display: flex;
    justify-content: space-between;
    max-width: 102.4rem;
    padding: 0;
    margin: 12.8rem auto 25.6rem;
  }
  .next__link {
    width: 49%;
  }
  .next__link:first-child {
    margin-bottom: 0;
  }
}

.slide__item {
  margin: 0.4rem;
  overflow: hidden;
  border-radius: 1rem;
}
.slide__item > img {
  width: 100%;
  height: 34rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1065px) {
  .slide__item > img {
    height: 38rem;
  }
}

.front__key-visual {
  padding: 14.4rem 1.6rem 6.4rem;
  margin-bottom: 6.4rem;
  background-color: #5b5b5b;
}
.front__title {
  position: relative;
  padding: 0.8rem 0;
  margin-bottom: 0.8rem;
}
.front__title-group {
  margin-bottom: 6.4rem;
}
.front__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 0.1rem;
  content: "";
  background-color: #000;
}
.front__title-sub {
  margin-bottom: 3.2rem;
  font-weight: 700;
}
.front__message {
  padding: 0 1.6rem;
  margin-bottom: 6.4rem;
}
.front__message__title {
  margin-bottom: 3.2rem;
}
.front__service {
  padding: 0 1.6rem;
}
.front__service__container {
  margin-bottom: 12.8rem;
}
.front__service__img {
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 3.2rem;
  border-radius: 2rem;
}
.front__service__title {
  margin-bottom: 1.6rem;
}
.front__service__description {
  margin-bottom: 3.2rem;
}
.front__profile {
  padding: 0 1.6rem;
  margin-bottom: 12.8rem;
}
.front__profile__bg {
  display: none;
}
.front__profile__img-container {
  position: relative;
  height: 100vw;
  margin-bottom: 3.2rem;
}
.front__profile__img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
}
.front__profile__img-bottom {
  position: absolute;
  top: 50vw;
  right: 0;
  width: 70%;
}
.front__profile__title {
  margin-bottom: 1.6rem;
}
.front__profile__title-sub {
  margin-bottom: 1.6rem;
}
.front__profile__text {
  margin-bottom: 6.4rem;
}
.front__profile__description {
  margin-bottom: 1.6rem;
}
.front__blog {
  position: relative;
  height: 130rem;
  margin-bottom: 12.8rem;
  background-color: #878787;
}
.front__blog__bg {
  width: 100%;
  max-height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.front__blog__container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  padding: 3.2rem 1.6rem 3.2rem 3.2rem;
  background-color: #e4e4e4;
}
.front__blog__title {
  margin-bottom: 3.2rem;
}
.front__blog__item {
  position: relative;
  display: block;
  margin-bottom: 3.2rem;
  border-bottom: 1px solid #a3a3a3;
  transition: 0.2s all ease;
}
.front__blog__item::after {
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.3rem;
  content: "";
  background-color: #282828;
  border-radius: 1rem;
  transition: 0.3s all ease;
  transform: scale(0, 1);
  transform-origin: left bottom;
}
.front__blog__item:hover::after {
  transform: scale(1, 1);
}
.front__blog__item:hover {
  opacity: 0.6;
}
.front__blog__information {
  display: flex;
  align-items: end;
  margin-bottom: 1.6rem;
}
.front__blog__date {
  margin-right: 1.6rem;
}
.front__blog__label {
  box-sizing: border-box;
  padding: 0.2rem 1.6rem;
  color: #fff;
  background-color: #c8c8c8;
  border: 0.1rem solid #c8c8c8;
  border-radius: 2rem;
}
.front__blog__text {
  margin-bottom: 1.6rem;
}
.front__blog__btn {
  margin-left: auto;
}
@media screen and (min-width: 1065px) {
  .front__key-visual {
    padding: 14.4rem 3.2rem 12.8rem;
    margin-bottom: 12.8rem;
  }
  .front__key-visual__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 142.4rem;
    margin: 0 auto;
  }
  .front__title {
    padding: 0 0 1.6rem;
    margin-bottom: 1.6rem;
  }
  .front__title-group {
    width: 38%;
    margin-bottom: 0;
  }
  .front__title::after {
    width: 15rem;
  }
  .front__slide {
    width: 57%;
  }
  .front__message {
    max-width: 102.4rem;
    padding: 0;
    margin: 0 auto 25.6rem;
  }
  .front__service {
    max-width: 102.4rem;
    padding: 0;
    margin: 0 auto 25.6rem;
  }
  .front__service__container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25.6rem;
  }
  .front__service__container:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .front__service__img {
    width: 48%;
    margin-bottom: 0;
  }
  .front__service__content {
    width: 48%;
  }
  .front__service__description {
    margin-bottom: 6.4rem;
  }
  .front__profile {
    padding: 0;
    margin-bottom: 25.6rem;
  }
  .front__profile__bg {
    display: block;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 26rem;
    margin-bottom: 6.4rem;
  }
  .front__profile__wrapper {
    max-width: 102.4rem;
    margin: 0 auto;
  }
  .front__profile__img-container {
    max-width: 102.4rem;
    height: auto;
    margin: 0 auto;
  }
  .front__profile__img-top {
    top: -16rem;
    left: 5rem;
    width: 37%;
  }
  .front__profile__img-bottom {
    top: 36rem;
    left: 5rem;
    width: 37%;
  }
  .front__profile__content {
    width: 50rem;
    max-width: 102.4rem;
    margin-left: auto;
  }
  .front__blog {
    height: 140rem;
    margin-bottom: 25.6rem;
  }
  .front__blog__container {
    box-sizing: border-box;
    padding: 6.4rem;
  }
  .front__blog__item:last-child {
    margin-bottom: 6.4rem;
  }
}

.service {
  padding: 0 1.6rem;
  margin-bottom: 12.8rem;
}
.service__title {
  margin-bottom: 6.4rem;
  text-align: center;
}
.service__pc {
  display: none;
}
.service__content {
  position: relative;
  margin: 0 auto;
}
.service__web, .service__ads, .service__create {
  display: block;
  max-width: 30rem;
  padding: 1.6rem 3.2rem;
  margin: 0 auto 3.2rem;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #c8c8c8;
  border-radius: 5rem;
  transition: 0.3s all ease;
}
@media screen and (min-width: 1065px) {
  .service__web, .service__ads, .service__create {
    font-size: 4rem;
  }
}
.service__web:hover, .service__ads:hover, .service__create:hover {
  color: #fff;
  cursor: pointer;
  background-color: #282828;
}
@media screen and (min-width: 1065px) {
  .service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 102.4rem;
    padding: 0;
    margin: 0 auto 25.6rem;
  }
  .service__title {
    width: 40%;
    margin: 0;
    text-align: left;
  }
  .service__pc {
    display: block;
    line-height: 0;
  }
  .service__content {
    width: 60%;
    height: 40rem;
    margin: 0;
  }
  .service__web {
    position: absolute;
    top: 10%;
    left: 10%;
    margin-bottom: 0;
  }
  .service__ads {
    position: absolute;
    top: 40%;
    right: 5%;
    margin-bottom: 0;
  }
  .service__create {
    position: absolute;
    right: 35%;
    bottom: 5%;
    margin-bottom: 0;
  }
}

.product {
  position: relative;
  padding: 12.8rem 1.6rem;
  overflow: hidden;
}
.product.profile {
  padding: 6.4rem 1.6rem;
}
.product__title {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 1065px) {
  .product {
    margin: 0 auto;
  }
  .product.create {
    margin-bottom: 12.8rem;
  }
  .product__inner {
    display: flex;
    justify-content: space-between;
    max-width: 102.4rem;
    margin: 0 auto;
  }
  .product__title {
    width: 48%;
    margin-bottom: 0;
  }
  .product__description {
    width: 48%;
  }
}

.shape__web, .shape__ads, .shape__create {
  position: absolute;
  top: -12rem;
  left: 0;
  z-index: -1;
  width: 10rem;
  height: 10rem;
  border-radius: 2rem;
  transition: 3s all ease;
  transform: rotate(45deg);
}
.shape__web.active, .shape__ads.active, .shape__create.active {
  transform: scale(100);
}
.shape__web {
  background-color: #e4e4e4;
}
.shape__ads {
  background-color: #c8c8c8;
  transition: 7s all ease;
}
.shape__create {
  background-color: #a3a3a3;
  transition: 9s all ease;
}
@media screen and (min-width: 1065px) {
  .shape__ads {
    background-color: #c8c8c8;
    transition: 4s all ease;
  }
  .shape__create {
    background-color: #c8c8c8;
    transition: 6s all ease;
  }
}

.achieve__container {
  padding: 0 1.6rem;
}
.achieve__text {
  margin-bottom: 6.4rem;
  text-align: center;
}
.achieve__main__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  border-top: 0.1rem solid #c8c8c8;
  transition: 0.3s all ease;
}
.achieve__main__headline:last-child {
  border-bottom: 0.1rem solid #c8c8c8;
}
.achieve__main__headline:hover {
  cursor: pointer;
  opacity: 0.6;
}
.achieve__main__toggle {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #a3a3a3;
}
.achieve__main__toggle-vertical {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1.5rem;
  height: 0.15rem;
  content: "";
  background-color: #000;
  transition: 0.3s all ease;
  transform: translate(50%, -50%) rotate(90deg);
}
.achieve__main__toggle-vertical.active {
  transform: translate(50%, -50%) rotate(360deg);
}
.achieve__main__toggle-beside {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 1.5rem;
  height: 0.15rem;
  content: "";
  background-color: #000;
  transition: 0.7s all ease;
  transform: translate(50%, -50%);
}
.achieve__sub__content {
  display: none;
  padding-bottom: 1.6rem;
  transition: 0.5s all ease;
}
.achieve__sub__content.active {
  display: block;
}
.achieve__sub__text {
  margin: 3.2rem 0 6.4rem;
  word-break: break-all;
}
.achieve__sub__item {
  display: flex;
  justify-content: space-around;
  max-height: 60rem;
  padding: 6.4rem 0;
  overflow: scroll;
  border: 2px solid #e4e4e4;
}
.achieve__sub__link {
  color: #0085ff;
  text-decoration: underline;
}
.achieve__sub__img {
  height: 100%;
}
.achieve__sub__img-link {
  display: block;
  height: 100%;
  padding: 16px;
  text-align: center;
  transition: 0.3s all ease;
}
.achieve__sub__img-link:hover {
  opacity: 0.6;
}
.achieve__attention {
  margin-top: 6.4rem;
  color: #878787;
}
@media screen and (min-width: 1065px) {
  .achieve__main__content {
    max-width: 102.4rem;
    margin: 0 auto 6.4rem;
  }
  .achieve__attention {
    max-width: 102.4rem;
    margin: 0 auto;
  }
}

/* ==============================
base
============================== */
/* ==============================
layout
============================== */
/* ==============================
object
============================== */
/* Component
------------------------------ */
/* Project
------------------------------ */
/* Utility
------------------------------ */