@charset "UTF-8";
@keyframes rotateElement {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(0);
  }
  11% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(15deg);
  }
  21% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(0);
  }
  31% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(15deg);
  }
  41% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes rotateElementReverse {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(0);
  }
  11% {
    transform: rotate(-15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  21% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(0);
  }
  31% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  41% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes jumpElement {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-5px);
  }
  10% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-5px);
  }
  20% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  55% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(-5px);
  }
  70% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes vibration {
  0% {
    transform: rotate(0);
  }
  3% {
    transform: translateX(3px) rotate(2.5deg);
  }
  6% {
    transform: translateX(0) rotate(0deg);
  }
  9% {
    transform: translateX(-5px) rotate(-2.5deg);
  }
  12% {
    transform: translateX(0) rotate(0deg);
  }
  15% {
    transform: translateX(3px) rotate(2.5deg);
  }
  18% {
    transform: translateX(0) rotate(0deg);
  }
  21% {
    transform: translateX(-5px) rotate(-2.5deg);
  }
  24% {
    transform: translateX(0) rotate(0deg);
  }
  27% {
    transform: translateX(3px) rotate(2.5deg);
  }
  30% {
    transform: translateX(0) rotate(0deg);
  }
  33% {
    transform: translateX(-5px) rotate(-2.5deg);
  }
  36% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(0) rotate(-2deg);
  }
  75% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  padding: 0;
  margin: 0;
  border: 0;
}

html {
  font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium",
    "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3",
    "HiraKakuProN-W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", -apple-system,
    BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 2;
}

* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
*::before,
*::after {
  box-sizing: inherit;
}

a,
a:visited {
  color: inherit;
}

/* Layout
* *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* Elements
* *********************************** */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
  vertical-align: top;
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

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

/* Attributes & states
* *********************************** */
[disabled] {
  cursor: not-allowed;
}

*:focus:not(:focus-visible) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

/* Utility classes
* *********************************** */
.cf::before,
.cf::after {
  display: table;
  content: " ";
}

.cf::after {
  clear: both;
}

.cf {
  *zoom: 1;
}

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

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

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

.pc-block {
  display: none;
}

.pc-inline {
  display: none;
}

.pc-inline-block {
  display: none;
}

.sp-block {
  display: block;
}

.sp-inline {
  display: inline;
}

.sp-inline-block {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
  .pc-inline {
    display: inline;
  }
  .pc-inline-block {
    display: inline-block;
  }
  .sp-block {
    display: none;
  }
  .sp-inline {
    display: none;
  }
  .sp-inline-block {
    display: none;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  will-change: transform;
}
.modal__container {
  box-sizing: border-box;
  width: 90.5%;
  max-width: 1080px;
  max-height: 80vh;
  padding-right: 10px;
  padding-left: 10px;
  overflow-y: auto;
  will-change: transform;
}
@media screen and (max-width: 736px) {
  .modal__container {
    width: 100%;
    max-height: 70vh;
    padding: 0;
  }
}
.modal__title {
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 70px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1em;
  color: #fff;
  text-align: center;
}
.modal__header {
  width: 90.5%;
  max-width: 1080px;
  text-align: right;
}
@media screen and (max-width: 736px) {
  .modal__header {
    padding-right: 5.33333vw;
  }
}
.modal__close {
  display: inline-block;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
  background-image: url("../img/common/modal-close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border: 0;
  outline: none;
}
@media screen and (max-width: 736px) {
  .modal__close {
    width: 6.94vw;
    height: 6.94vw;
  }
}
.modal__close:focus {
  outline: none;
}
.modal__content {
  padding: 45px 64px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
  background-color: #fff;
}
@media screen and (max-width: 736px) {
  .modal__content {
    padding: 13.33333vw 5.33333vw;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.modal__btn {
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  margin: 0;
  overflow: visible;
  font-size: 0.875rem;
  line-height: 1.15;
  color: rgba(0, 0, 0, 0.8);
  text-transform: none;
  cursor: pointer;
  background-color: #e6e6e6;
  border-style: none;
  border-width: 0;
  border-radius: 0.25rem;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transform: translateZ(0);
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}
.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}
.modal__btn-primary {
  color: #fff;
  background-color: #00449e;
}
.modal[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
  width: 60px;
  height: 42px;
  cursor: pointer;
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .menu {
    right: 20px;
  }
}
@media screen and (max-width: 736px) {
  .menu {
    right: 5.33333vw;
    width: 9.06667vw;
    height: 6.4vw;
  }
}
.menu__button {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 300ms;
}
.menu__button span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 6px;
  background-color: #f9632d;
  border-radius: 4px;
  transition: all 300ms;
}
@media screen and (max-width: 736px) {
  .menu__button span {
    height: 1.06667vw;
  }
}
.menu__button span:nth-of-type(1) {
  top: 0;
}
.menu__button span:nth-of-type(2) {
  top: 18px;
}
@media screen and (max-width: 736px) {
  .menu__button span:nth-of-type(2) {
    top: 2.66667vw;
  }
}
.menu__button span:nth-of-type(3) {
  bottom: 0;
}
.menu__button.js-active span:nth-of-type(1) {
  transform: translateY(19px) rotate(-45deg);
}
@media screen and (max-width: 736px) {
  .menu__button.js-active span:nth-of-type(1) {
    transform: translateY(2.66667vw) rotate(-45deg);
  }
}
.menu__button.js-active span:nth-of-type(2) {
  opacity: 0;
}
.menu__button.js-active span:nth-of-type(3) {
  transform: translateY(-19px) rotate(45deg);
}
@media screen and (max-width: 736px) {
  .menu__button.js-active span:nth-of-type(3) {
    transform: translateY(-2.66667vw) rotate(45deg);
  }
}

.navigation {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}
.navigation__inner {
  position: relative;
  top: 105px;
  display: flex;
  align-items: flex-start;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 736px) {
  .navigation__inner {
    top: 16vw;
  }
}
.navigation__box {
  padding: 30px 42px;
  margin-left: auto;
  text-align: center;
  background-image: url("../img/common/nav-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .navigation__box {
    margin-right: 20px;
  }
}
@media screen and (max-width: 736px) {
  .navigation__box {
    padding: 6.4vw 9.6vw;
    margin-right: 5vw;
  }
}
.navigation__item {
  margin-bottom: 24px;
}
@media screen and (max-width: 736px) {
  .navigation__item {
    margin-bottom: 6.4vw;
    line-height: 1;
  }
}
.navigation__item svg {
  height: auto;
}
.navigation__item:nth-child(1) svg {
  width: 214px;
}
@media screen and (max-width: 736px) {
  .navigation__item:nth-child(1) svg {
    width: 34.13333vw;
  }
}
.navigation__item:nth-child(2) svg {
  width: 133px;
}
@media screen and (max-width: 736px) {
  .navigation__item:nth-child(2) svg {
    width: 22.86667vw;
  }
}
.navigation__item:nth-child(3) svg {
  width: 147px;
}
@media screen and (max-width: 736px) {
  .navigation__item:nth-child(3) svg {
    width: 25vw;
  }
}
.navigation__item:nth-child(4) svg {
  width: 188px;
}
@media screen and (max-width: 736px) {
  .navigation__item:nth-child(4) svg {
    width: 33.06667vw;
  }
}
.navigation__item:last-child {
  margin-bottom: 0;
}
.navigation__link svg {
  transition: all 300ms ease;
  fill: #000;
}
.navigation__link:hover svg {
  fill: #f9642d;
}
.navigation__link--disabled svg {
  fill: #ddd;
}
.navigation__link--disabled:hover svg {
  fill: #ddd;
}

.contents-header {
  padding-top: 35px;
}
@media screen and (max-width: 736px) {
  .contents-header {
    padding-top: 5.33333vw;
  }
}
.contents-header__inner {
  position: relative;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .contents-header__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 736px) {
  .contents-header__inner {
    padding-right: 5.33333vw;
    padding-left: 5.33333vw;
  }
}
.contents-header__logo {
  width: 300px;
}
@media screen and (max-width: 736px) {
  .contents-header__logo {
    width: 49.33333vw;
  }
}

.contents-footer {
  width: 100%;
  background-image: url("../img/common/footer-bg.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
}
.contents-footer__inner {
  max-width: 1080px;
  padding: 20px 0 35px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .contents-footer__inner {
    padding: 8vw 0 6.66667vw;
  }
}
.contents-footer .copyrights small {
  font-size: 15px;
  color: #fff;
}
@media screen and (max-width: 736px) {
  .contents-footer .copyrights small {
    font-size: 3.73333vw;
  }
}

body {
  background-image: url("../img/common/back_img1000.png");
  background-position: center center;
}

#Main {
  width: 100%;
  overflow: hidden;
}

.main-visual__inner {
  position: relative;
  max-width: 1080px;
  padding-top: 35px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 736px) {
  .main-visual__inner {
    margin-bottom: 25vw;
  }
}

.main-visual__logo {
  position: relative;
  z-index: 2;
  width: 315px;
  margin-bottom: -45px;
  margin-left: 110px;
}
@media screen and (max-width: 736px) {
  .main-visual__logo {
    width: 46.66667vw;
    margin-bottom: 0;
    margin-left: 6.66667vw;
  }
}

.main-visual__bg {
  position: relative;
  z-index: 1;
  width: 1090px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__bg {
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 736px) {
  .main-visual__bg {
    display: none;
  }
}
@media screen and (min-width: 737px) {
  .main-visual__bg-sp {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .main-visual__bg-sp {
    position: relative;
    width: 100%;
    margin-top: -30vw;
  }
  .main-visual__bg-sp svg {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.main-visual__illust {
  position: absolute;
  z-index: 2;
}
.main-visual__illust:hover {
  animation-play-state: paused;
}
.main-visual__illust--c-chan {
  top: -150px;
  left: calc(50% - 363px);
}
@media screen and (max-width: 736px) {
  .main-visual__illust--c-chan {
    top: 5.33333vw;
    left: -2.66667vw;
    z-index: 1;
    width: 90.13333vw;
  }
}
.main-visual__illust--pop {
  top: 468px;
  left: calc(50% + 355px);
  width: 185px;
  cursor: pointer;
  animation-name: float;
  animation-duration: 6500ms;
  animation-delay: 100ms;
  animation-iteration-count: infinite;
}
.main-visual__illust--pop img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
@media screen and (min-width: 737px) {
  .main-visual__illust--pop:hover img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__illust--pop {
    left: calc(100% - 185px);
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--pop {
    top: 141.33333vw;
    left: 21.66667vw;
    width: 31.46667vw;
  }
}
.main-visual__illust--camera {
  top: 345px;
  left: calc(50% - 637px);
  animation-name: rotateElementReverse;
  animation-duration: 4500ms;
  animation-iteration-count: infinite;
}
.main-visual__illust--camera img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
@media screen and (min-width: 737px) {
  .main-visual__illust--camera:hover img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__illust--camera {
    left: -2%;
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--camera {
    top: 181vw;
    left: 18vw;
    width: 37.8vw;
  }
}
.main-visual__illust--kani {
  top: 580px;
  left: calc(50% + 310px);
  animation-name: rotateElement;
  animation-duration: 3500ms;
  animation-delay: 1500ms;
  animation-iteration-count: infinite;
}
.main-visual__illust--kani img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
@media screen and (min-width: 737px) {
  .main-visual__illust--kani:hover img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__illust--kani {
    left: calc(83% - 100px);
    transition: all 300ms ease;
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--kani {
    top: 157.33333vw;
    left: 6.93333vw;
    width: 22.66667vw;
  }
}
.main-visual__illust--table {
  top: -33px;
  left: calc(50% + 137px);
  width: 314px;
}
@media screen and (max-width: 736px) {
  .main-visual__illust--table {
    display: none;
  }
}
.main-visual__illust--note {
  top: 530px;
  left: calc(50% - 465px);
  animation-name: rotateElement;
  animation-duration: 3500ms;
  animation-iteration-count: infinite;
}
.main-visual__illust--note img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
.main-visual__illust--note:hover {
  animation: none;
}
@media screen and (min-width: 737px) {
  .main-visual__illust--note:hover img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__illust--note {
    left: 7.5%;
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--note {
    top: 11.26667vw;
    left: 62.2vw;
    width: 31.93333vw;
  }
}
.main-visual__illust--tori {
  top: 585px;
  left: calc(50% + 435px);
  width: 66px;
  animation-name: jumpElement;
  animation-duration: 2500ms;
  animation-delay: 1000ms;
  animation-iteration-count: infinite;
}

.main-visual__illust--tori img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__illust--tori {
    right: 2%;
    left: inherit;
  }
}
@media screen and (min-width: 737px) {
  .main-visual__illust--tori:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--tori {
    top: 188.66667vw;
    left: 79.2vw;
    width: 14.93333vw;
  }
}
.main-visual__illust--tel {
  top: 138px;
  left: calc(50% - 558px);
  width: 164px;
  animation-name: vibration;
  animation-duration: 1500ms;
  animation-delay: 1000ms;
  animation-iteration-count: infinite;
}
.main-visual__illust--tel img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
@media screen and (min-width: 737px) {
  .main-visual__illust--tel:hover img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .main-visual__illust--tel {
    left: 3%;
    transition: all 300ms ease;
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--tel {
    top: 31.66667vw;
    right: 0;
    left: inherit;
    width: 29.86667vw;
  }
}
.main-visual__illust--shirt {
  top: 0;
  left: calc(50% + 253px);
  animation-name: float;
  animation-duration: 10500ms;
  animation-delay: 100ms;
  animation-iteration-count: infinite;
}
.main-visual__illust--shirt img {
  transition: all 300ms cubic-bezier(0.5, 0, 0, 2);
}
@media screen and (min-width: 737px) {
  .main-visual__illust--shirt:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 736px) {
  .main-visual__illust--shirt {
    top: initial;
    bottom: 5vw;
    left: 53.53333vw;
    width: 42.66667vw;
  }
}
.main-visual__illust--box {
  top: 410px;
  left: calc(50% - 308px);
}
@media screen and (max-width: 736px) {
  .main-visual__illust--box {
    top: 106.66667vw;
    left: 4.26667vw;
    width: 50.66667vw;
  }
}
.main-visual__illust-wrap {
  position: relative;
  width: 100%;
  height: 615px;
}
@media screen and (max-width: 736px) {
  .main-visual__illust-wrap {
    height: 186.66667vw;
  }
}

.news {
  margin-bottom: 80px;
}
@media screen and (max-width: 736px) {
  .news {
    margin-bottom: 0;
  }
}
.news__inner {
  max-width: 1080px;
  padding-top: 85px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 737px) and (max-width: 1100px) {
  .news__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 736px) {
  .news__inner {
    padding-top: 14.66667vw;
  }
}
.news__title {
  margin-bottom: 90px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .news__title {
    width: 40vw;
    margin-right: auto;
    margin-bottom: 17.33333vw;
    margin-left: auto;
  }
}
.news__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 736px) {
  .news__list {
    flex-direction: column;
    width: 88vw;
    margin-right: auto;
    margin-left: auto;
  }
}
.news__item {
  position: relative;
  width: calc((100% - 80px) / 2);
  margin-bottom: 25px;
}
@media screen and (max-width: 736px) {
  .news__item {
    width: 100%;
    margin-bottom: 18.66667vw;
  }
}
.news__item.js-hidden {
  display: none;
}
.news__item::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  padding: 0 22px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background-color: #f9642d;
  border-radius: 30px;
  transform: translateY(-50%);
}
@media screen and (max-width: 736px) {
  .news__item::before {
    padding: 0 4.8vw;
    font-size: 4.8vw;
  }
}
.news__item--cat-write::before {
  content: "かいたよ";
}
.news__item--cat-media::before {
  content: "メディア";
}
.news__item--cat-design::before {
  content: "デザイン";
}
.news__item--cat-planning::before {
  content: "企画";
}
.news__item--cat-event::before {
  content: "イベント";
}
.news__item--cat-other::before {
  content: "その他";
}
.news__item:nth-child(odd) {
  margin-right: 80px;
}
@media screen and (max-width: 736px) {
  .news__item:nth-child(odd) {
    margin-right: 0;
  }
}
.news__item:nth-child(even) {
  margin-top: 110px;
}
@media screen and (max-width: 736px) {
  .news__item:nth-child(even) {
    margin-top: 0;
  }
}
.news__item-link {
  text-decoration: none;
}
.news__item-link:hover .news__item-eyecatch {
  background-color: #fff;
}
.news__item-link:hover .news__item-eyecatch img {
  opacity: 0.65;
  transform: scale(1.05);
}
.news__item-eyecatch {
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 300ms ease;
}
@media screen and (max-width: 736px) {
  .news__item-eyecatch {
    margin-bottom: 1.33333vw;
  }
}
.news__item-eyecatch img {
  width: 100%;
  transition: all 300ms ease;
}
.news__item-date {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 736px) {
  .news__item-date {
    font-size: 4.26667vw;
  }
}
.news__item-title {
  font-size: 20px;
  line-height: 1.5em;
}
@media screen and (max-width: 736px) {
  .news__item-title {
    font-size: 4.8vw;
  }
}
.news__viewmore {
  margin: 45px auto;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .news__viewmore {
    margin-top: 0;
  }
}
.news__viewmore.js-hidden {
  display: none;
}
.news__viewmore-button {
  display: inline-block;
  padding: 10px 36px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  background-color: #b7bdc2;
  border: solid 2px #b7bdc2;
  border-radius: 30px;
  transition: all 450ms ease;
}
.news__viewmore-button:hover {
  background-color: #fff;
}

.contact {
  margin-bottom: 80px;
}
.contact__inner {
  max-width: 1080px;
  padding-top: 80px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 736px) {
  .contact__inner {
    padding-top: 10.66667vw;
  }
}
.contact__title {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .contact__title {
    width: 31.73333vw;
    margin-right: auto;
    margin-bottom: 13.33333vw;
    margin-left: auto;
  }
}
.contact__text {
  padding: 0 20px;
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .contact__text {
    font-size: 4.8vw;
  }
}
.contact__text a {
  text-decoration: underline;
}
.contact__text a:hover {
  text-decoration: none;
}

.about a {
  outline: none;
}

.about__title {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .about__title {
    width: 52.53333vw;
    margin-right: auto;
    margin-bottom: 12vw;
    margin-left: auto;
  }
}

.about__lead-text {
  font-size: 20px;
  line-height: 2em;
}
@media screen and (max-width: 736px) {
  .about__lead-text {
    font-size: 4.8vw;
  }
}

.about__profile {
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  .about__profile {
    margin-bottom: 13.33333vw;
  }
}
.about__profile-img {
  margin-top: 60px;
  margin-bottom: 52px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .about__profile-img {
    margin-top: 18.66667vw;
    margin-bottom: 8vw;
  }
}
.about__profile-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}
@media screen and (max-width: 736px) {
  .about__profile-head {
    flex-direction: column;
  }
}
.about__profile-name {
  font-size: 28px;
}
@media screen and (max-width: 736px) {
  .about__profile-name {
    font-size: 6.93333vw;
  }
}
.about__profile-sns-list {
  display: flex;
  align-items: center;
}
.about__profile-sns-item {
  margin-right: 20px;
}
@media screen and (max-width: 736px) {
  .about__profile-sns-item {
    margin: 0 2.66667vw;
  }
}
.about__profile-sns-link {
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .about__profile-sns-link {
    font-size: 4.8vw;
  }
}
.about__profile-text {
  font-size: 20px;
  line-height: 2em;
}
@media screen and (max-width: 736px) {
  .about__profile-text {
    font-size: 4.8vw;
  }
}

.about__graph {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .about__graph {
    margin-bottom: 13.33333vw;
  }
}
.about__graph-title {
  margin-bottom: 15px;
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .about__graph-title {
    margin-bottom: 2.66667vw;
    font-size: 4.8vw;
  }
}
.about__graph-img {
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  .about__graph-img {
    margin-bottom: 0;
  }
}
.about__graph-caption {
  font-size: 16px;
}
@media screen and (max-width: 736px) {
  .about__graph-caption {
    font-size: 3.73333vw;
  }
}

.about__works {
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  .about__works {
    margin-bottom: 16vw;
  }
}
.about__works-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 736px) {
  .about__works-list {
    flex-direction: column;
  }
}
.about__works-item {
  width: calc((100% - (40px * 2)) / 3);
  margin-right: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 736px) {
  .about__works-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8vw;
  }
}
.about__works-item:nth-child(3n) {
  margin-right: 0;
}
.about__works-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .about__works-title {
    margin-bottom: 1.33333vw;
    font-size: 4.8vw;
  }
}
.about__works-img {
  margin-bottom: 15px;
  overflow: hidden;
  text-align: center;
  border-radius: 30px;
}
@media screen and (max-width: 736px) {
  .about__works-img img {
    width: 100%;
  }
}

.about__hellolife-works-title {
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .about__hellolife-works-title {
    margin-bottom: 5.33333vw;
    font-size: 6.4vw;
  }
}

.about__hellolife-works-lead {
  margin-bottom: 50px;
  font-size: 20px;
}
@media screen and (max-width: 736px) {
  .about__hellolife-works-lead {
    margin-bottom: 50px;
    font-size: 4.8vw;
  }
}

.about__hellolife-works-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 736px) {
  .about__hellolife-works-list {
    flex-direction: column;
  }
}

.about__hellolife-works-item {
  width: calc((100% - (40px * 2)) / 3);
  margin-right: 40px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .about__hellolife-works-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8vw;
  }
}
.about__hellolife-works-item:nth-child(3n),
.about__hellolife-works-item:last-child {
  margin-right: 0;
}

.about__hellolife-works-link {
  text-decoration: none;
}

.about__hellolife-works-img {
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
  border-radius: 30px;
}
@media screen and (max-width: 736px) {
  .about__hellolife-works-img {
    margin-bottom: 2.66667vw;
  }
  .about__hellolife-works-img img {
    width: 100%;
  }
}

.about__hellolife-works-name {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 736px) {
  .about__hellolife-works-name {
    font-size: 4.8vw;
  }
}
