/***
  The new CSS reset - version 1.11.2 (last updated 15.11.2023)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
  - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:root {
  --color-primary: #1a4080;
  --color-text-base: #424242;
}

* {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9em!important;
  letter-spacing: 0.08em;
  color: var(--color-text-base);
}

html {
  min-width: 1400px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 0;
  }
}

::-moz-placeholder {
  color: #c6c6c6;
}

::placeholder {
  color: #c6c6c6;
}

textarea {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  resize: none;
}

textarea::-webkit-scrollbar {
  display: none;
}

input[type=checkbox] {
  display: none;
}

.checkbox {
  font-size: 16px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .checkbox {
    font-size: 14px;
  }
}

.checkbox::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #c6c6c6;
  border-radius: 2px;
  margin: 0 15px 0 0;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 767px) {
  .checkbox::before {
    margin: 0 10px 0 0;
  }
}

.checkbox::after {
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background-image: url(../images/contact/check.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 3px;
  bottom: 5px;
  opacity: 0;
  transition: all 0.3s;
}

input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.under {
  width: 100%;
  position: relative;
  padding: 160px 0 112px 0;
}
@media screen and (max-width: 767px) {
  .under {
    padding: 100px 0 80px 0;
  }
}
.under__inner {
  width: 880px;
  margin: 0 auto;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .under__inner {
    width: 100%;
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.under__titleEn {
  font-size: 12px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: var(--color-primary);
  line-height: 1em;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .under__titleEn {
    font-size: 10px;
  }
}
.under__titleEn::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/nav/plus.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 767px) {
  .under__titleEn::before {
    width: 10px;
    height: 10px;
  }
}
.under__titleJa {
  font-size: 30px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1em;
  margin: 16px 0 0 0;
}
@media screen and (max-width: 767px) {
  .under__titleJa {
    font-size: 18px;
    margin: 10px 0 0 0;
  }
}
.under__bird {
  width: 186px;
  height: auto;
  position: relative;
  bottom: 10px;
}
@media screen and (max-width: 767px) {
  .under__bird {
    width: 80px;
    bottom: 0;
  }
}
.under .wave01 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: auto;
  }
}
.header__inner {
  width: 100%;
  max-width: 92%;
  height: 100%;
  margin: 0 auto;
  padding: 20px 0 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }
}
.header__logo {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 120px;
  }
}
.header .nav {
  position: fixed;
  bottom: 20px;
  left: 4%;
}
@media screen and (max-width: 767px) {
  .header .nav {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/nav/ink_push_2.svg);
    background-size: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    bottom: unset;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  .header .nav__inner {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .header .nav__inner.active {
    animation-name: spread;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
  }
}
.header .nav__list {
  margin: 35px 0 0 0;
}
.header .nav__item:nth-child(n+2) {
  margin: 32px 0 0 0;
}
.header .nav__link {
  width: 100%;
  font-size: 14px;
  line-height: 1em;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header .nav__link {
    color: #ffffff;
  }
}
.header .nav__link::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../images/nav/plus.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 13px 0 0;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header .nav__link::before {
    background-image: url(../images/nav/plus_w.svg);
  }
}
@media screen and (min-width: 768px) {
  .header .nav__link:hover {
    opacity: 0.5;
  }
  .header .nav__link:hover::before {
    opacity: 0.5;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .header .nav.active {
    opacity: 0.9;
    visibility: visible;
    animation-name: ink_button;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
  }
}
@keyframes ink_button {
  0% {
    background-size: 500px;
  }
  40% {
    background-size: 300px;
  }
  100% {
    background-size: 5000px;
  }
}
@keyframes spread {
  0% {
    opacity: 0;
    filter: blur(5px);
  }
  60% {
    opacity: 0;
    filter: blur(5px);
  }
  70% {
    opacity: 1;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
.header .home {
  width: 20px;
  display: block;
  transition: all 0.3s;
}
.header .home__icon {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .header .home:hover {
    opacity: 0.5;
  }
}
.header .instagram {
  width: 22px;
  display: block;
  margin: 35px 0 0 0;
  transition: all 0.3s;
}
.header .instagram__icon {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .header .instagram:hover {
    opacity: 0.5;
  }
}
.header .push {
  display: none;
  transition: background-image 0.3s;
}
@media screen and (max-width: 767px) {
  .header .push {
    width: 50px;
    height: 44.8px;
    display: block;
    cursor: pointer;
    background-image: url(../images/nav/ink_push_2.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 10;
  }
}
.header .push.active {
  background-image: url(../images/nav/ink_push_2_w.svg);
}
.header .scroll {
  height: 62px;
  margin: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  .header .scroll {
    display: none;
  }
}
.header .scroll__inner {
  width: 2px;
  background-color: var(--color-primary);
  position: relative;
  animation-name: smooth;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.header .scroll__inner::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: -2.5px;
}
@keyframes smooth {
  0% {
    opacity: 0.5;
    height: 0px;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    height: 62px;
  }
  100% {
    opacity: 0;
    height: 62px;
  }
}

.footer {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 140px 0 0 0;
}
@media screen and (max-width: 767px) {
  .footer {
    margin: 80px 0 0 0;
  }
}
.footer__inner {
  width: 100%;
  padding: 0 0 40px 0;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 0 110px 0;
  }
}
.footer__logo {
  width: 160px;
  height: auto;
  margin: 85px 0 0 0;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100px;
    margin: 40px 0 0 0;
  }
}
.footer .instagram {
  width: 22px;
  display: block;
  margin: 16px 0 0 0;
  transition: all 0.3s;
}
.footer .instagram__icon {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer .instagram:hover {
    opacity: 0.5;
  }
}
.footer small {
  font-size: 10px;
  line-height: 1em;
  margin: 70px 0 0 0;
}
@media screen and (max-width: 767px) {
  .footer small {
    margin: 20px 0 0 0;
  }
}
.footer .octopus {
  width: 38.35%;
  height: auto;
  position: absolute;
  top: 57%;
  left: 3.5%;
}
@media screen and (max-width: 767px) {
  .footer .octopus {
    width: 100%;
    top: 205px;
    left: -50px;
  }
}

main {
  width: 100%;
  overflow: hidden;
}

.keyvisual {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .keyvisual {
    height: 90vh;
  }
}
.keyvisual__txt {
  width: 20.25%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .keyvisual__txt {
    width: 65%;
  }
}
.keyvisual__bird {
  width: 15.25%;
  height: auto;
  top: 25%;
  left: 10%;
  position: absolute;
  animation-name: bird;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 767px) {
  .keyvisual__bird {
    width: 30%;
    top: 16.5%;
    left: 5%;
  }
}
.keyvisual .octopus {
  width: 40.5%;
  right: -3%;
  bottom: -47.5%;
  position: absolute;
  animation-name: octopus;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 767px) {
  .keyvisual .octopus {
    width: 100%;
    right: -8%;
    bottom: -24.5%;
  }
}
.keyvisual .octopus__silhouette {
  width: 100%;
  height: auto;
}
.keyvisual .octopus__ink {
  width: 30.45%;
  height: auto;
  position: absolute;
  top: -17%;
  right: 10%;
  animation-name: ink;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.keyvisual .wave01 {
  left: 0;
  bottom: 0;
  position: absolute;
}

.top {
  width: 1000px;
  margin: 0 auto;
  margin: 150px auto 0 auto;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .top {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    margin: 50px auto 0 auto;
  }
}

.section {
  margin: 290px 0 0 0;
  scroll-margin-top: 95px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section {
    margin: 100px 0 0 0;
  }
}
.section--01 {
  margin: 0 0 0 0;
}
.section__en {
  width: 14px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.section__en span:nth-child(1) {
  display: block;
  width: 14px;
  height: 14px;
  background-image: url(../images/nav/plus.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 0 12px 0;
}
.section__en span:nth-child(2) {
  font-size: 12px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  writing-mode: vertical-lr;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.section__en--w:nth-child(1) {
  background-image: url(../images/nav/plus_w.svg);
}
.section__ja {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  margin: 15px 0 0 0;
}
@media screen and (max-width: 767px) {
  .section__ja {
    font-size: 18px;
    margin: 10px 0 0 0;
  }
}
.section__txt {
  width: calc(100% - 350px);
  font-size: 14px;
  line-height: 2em;
  margin: 40px 0 0 0;
}
@media screen and (max-width: 767px) {
  .section__txt {
    width: 100%;
    margin: 10px 0 0 0;
  }
}
.section__more {
  width: 200px;
  display: block;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section__more {
    width: 100px;
    font-size: 10px;
    position: relative;
    margin: 40px 0 0 auto;
  }
}
.section__more span {
  width: 100%;
  height: 1px;
  display: block;
  margin: 6px 0 0 0;
  background-color: var(--color-primary);
  position: relative;
  animation-name: more;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
}
.section__more span::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  bottom: -3px;
  right: -2.5px;
}
.section__more--info {
  top: 140px;
}
@media screen and (max-width: 767px) {
  .section__more--info {
    top: unset;
  }
}
@keyframes more {
  0% {
    opacity: 0.5;
    width: 0%;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    width: 100%;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}
.section--01::after {
  content: "";
  display: block;
  width: 646px;
  height: 284px;
  background-image: url(../images/index/wave01.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -160px;
  right: -50%;
}
@media screen and (max-width: 767px) {
  .section--01::after {
    display: none;
  }
}
.section--02::after {
  content: "";
  display: block;
  width: 449px;
  height: 139px;
  background-image: url(../images/index/wave02.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -350px;
  right: -50%;
}
@media screen and (max-width: 767px) {
  .section--02::after {
    display: none;
  }
}
.section--03::after {
  content: "";
  display: block;
  width: 804px;
  height: 141px;
  background-image: url(../images/index/wave03.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -240px;
  right: -60%;
}
@media screen and (max-width: 767px) {
  .section--03::after {
    display: none;
  }
}
.section--04::after {
  content: "";
  display: block;
  width: 459px;
  height: 149px;
  background-image: url(../images/index/wave04.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -230px;
  right: -55%;
}
@media screen and (max-width: 767px) {
  .section--04::after {
    display: none;
  }
}
.section--05::after {
  content: "";
  display: block;
  width: 646px;
  height: 212px;
  background-image: url(../images/index/wave05.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -220px;
  right: -50%;
}
@media screen and (max-width: 767px) {
  .section--05::after {
    display: none;
  }
}

.contact {
  margin: 140px 0 0 0;
}
@media screen and (max-width: 767px) {
  .contact {
    margin: 50px 0 0 0;
  }
}
.contact__instagram {
  width: 140px;
  margin: 0 auto;
  display: block;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .contact__instagram:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .contact__instagram:hover .contact__icon {
    transform: rotate(10deg);
  }
}
.contact__icon {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.contact__tag {
  font-size: 14px;
  text-decoration: underline;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .contact__tag {
    font-size: 12px;
  }
}
.contact__link {
  width: 730px;
  height: 100px;
  margin: 96px auto 0 auto;
  background-color: #ececec;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__link {
    width: 100%;
    height: 80px;
    margin: 50px auto 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .contact__link:hover {
    color: #ffffff;
    background-color: var(--color-primary);
  }
}
@media screen and (min-width: 768px) {
  .contact__link:hover .contact__txt {
    color: #ffffff;
  }
}
.contact__link::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
}
.contact__link::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-bottom: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.contact__txt {
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__txt {
    font-size: 14px;
  }
}
.contact__txt::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-top: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  position: absolute;
  top: 0;
  right: 0;
}
.contact__txt::after {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-bottom: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact__info {
  width: 600px;
  margin: 30px auto 0 auto;
  font-size: 14px;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .contact__info {
    width: 100%;
    margin: 20px auto 0 auto;
    font-size: 14px;
  }
}

.service {
  width: 930px;
  margin: 50px 0 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .service {
    width: 100%;
    margin: 20px 0 0 auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
.service__item {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
}
.service__item:nth-child(n+3) {
  margin: 60px 0 0 0;
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(n+3) {
    margin: 0 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  .service__item:nth-child(n+2) {
    margin: 50px 0 0 0;
    padding: 50px 0 0 0;
    border-top: 1px solid #c6c6c6;
  }
}
.service__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service__img {
    height: 150px;
    aspect-ratio: 1/1;
  }
}
.service__txt {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin: 28px 0 0 0;
}
@media screen and (max-width: 767px) {
  .service__txt {
    margin: 20px 0 0 0;
  }
}
.service__no {
  font-size: 10px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  writing-mode: vertical-lr;
  color: var(--color-primary);
}
.service__info {
  width: calc(100% - 60px);
}
@media screen and (max-width: 767px) {
  .service__info {
    width: calc(100% - 30px);
  }
}
.service__info h3 {
  font-size: 20px;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .service__info h3 {
    font-size: 18px;
  }
}
.service__info p {
  font-size: 14px;
  line-height: 2em;
  margin: 20px 0 0 0;
}
@media screen and (max-width: 767px) {
  .service__info p {
    margin: 10px 0 0 0;
  }
}

.price {
  width: 100%;
  max-width: 910px;
  margin: 50px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .price {
    width: 100%;
    height: auto;
    margin: 20px 0 0 0;
  }
}
.price__flex {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .price__flex {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
.price__list {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .price__list {
    width: 100%;
  }
}
.price__item {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 28px;
}
@media screen and (max-width: 767px) {
  .price__item {
    padding: 10px 15px;
  }
}
.price__item:nth-child(odd) {
  background-color: #eeeeee;
}
.price__item--dubble {
  padding: 24px 28px;
}
@media screen and (max-width: 767px) {
  .price__item--dubble {
    padding: 10px 15px;
  }
}
.price__service {
  font-size: 14px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}
.price__service::before {
  content: "";
  display: block;
  width: 7.66px;
  height: 7.66px;
  background-image: url(../images/index/plus.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 18px;
  position: relative;
  top: 1px;
}
.price__no {
  width: 130px;
  font-size: 14px;
  text-align: left;
}
.price__no span {
  font-size: 14px;
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .price__no span {
    margin-top: 14px;
  }
}

.info {
  width: 100%;
  max-width: 910px;
  margin: 40px 0 0 auto;
}
@media screen and (max-width: 767px) {
  .info {
    margin: 20px 0 0 0;
  }
}
.info__tagList {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 35px 0;
  border-bottom: 1px solid #c6c6c6;
}
@media screen and (max-width: 767px) {
  .info__tagList {
    padding: 0 0 30px 0;
  }
}
.info__switch {
  width: 115px;
  height: 26px;
  border-radius: 30px;
  margin: 0 30px 0 0;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #c6c6c6;
  font-size: 12px;
  line-height: 1em;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .info__switch:hover {
    color: #ffffff;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
  }
}
@media screen and (max-width: 767px) {
  .info__switch {
    width: 80px;
    height: 20px;
    margin: 0 10px 0 0;
    font-size: 10px;
  }
}
.info__switch.active {
  color: #ffffff;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.info__list {
  width: 100%;
  max-width: 910px;
  margin: 55px 0 0 auto;
  display: none;
}
@media screen and (max-width: 767px) {
  .info__list {
    margin: 20px 0 0 0;
  }
}
.info__item:nth-child(n+2) {
  margin: 40px 0 0 0;
}
@media screen and (max-width: 767px) {
  .info__item:nth-child(n+2) {
    margin: 20px 0 0 0;
  }
}
.info__link {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .info__link:hover {
    opacity: 0.5;
  }
}
.info__img {
  width: 250px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 45px 0 0;
}
@media screen and (max-width: 767px) {
  .info__img {
    width: 114px;
    height: 74px;
    margin: 0 15px 0 0;
  }
}
.info__meta {
  width: 100%;
  position: relative;
}
.info__date {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .info__date {
    font-size: 12px;
  }
}
.info__title {
  font-size: 14px;
  line-height: 2em;
  margin: 10px 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .info__title {
    font-size: 12px;
    margin: 0 0 0 0;
  }
}
.info__tag {
  font-size: 12px;
  margin: 14px 0 0 0;
  padding: 10px 0 0 0;
  border-top: 1px solid #c6c6c6;
}
@media screen and (max-width: 767px) {
  .info__tag {
    font-size: 10px;
    margin: 8px 0 0 0;
    padding: 8px 0 0 0;
  }
}
.info__gosingle {
  width: 64px;
  height: 1px;
  display: block;
  margin: 6px 0 0 0;
  background-color: var(--color-primary);
  position: relative;
  animation-name: goSingle;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out;
  position: absolute;
  top: 40px;
  left: 520px;
}
.info__gosingle::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  bottom: -3px;
  right: -2.5px;
}
@media screen and (max-width: 767px) {
  .info__gosingle {
    display: none;
  }
}
@keyframes octopus {
  0% {
    bottom: -47.5%;
  }
  50% {
    bottom: -38.5%;
  }
  100% {
    bottom: -47.5%;
  }
}
@keyframes ink {
  0% {
    top: -2%;
    right: 18%;
    opacity: 0;
    transform: scale(0.3);
  }
  10% {
    top: -17%;
    right: 10%;
    opacity: 1;
    transform: scale(1);
  }
  50% {
    top: -17%;
    right: 10%;
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
  }
  60% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(10px);
    opacity: 0;
  }
}
@keyframes bird {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
@keyframes goSingle {
  0% {
    opacity: 0.5;
    width: 0px;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
    width: 64px;
  }
  100% {
    opacity: 0;
    width: 64px;
  }
}

.info__list.active {
  display: block !important;
}/*# sourceMappingURL=index.css.map */