@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 2;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

img,
video,
canvas {
  overflow: hidden;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #121212;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
html body {
  overflow-x: hidden;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.upper {
  text-transform: uppercase;
}

.cont {
  width: 89%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.description {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .description {
    font-size: 1.5rem;
	text-align: left !important;
  }
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-block {
    display: none;
  }
}

.none {
  display: none;
}

a {
  color: #121212;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

.wrapper {
  width: 100%;
}

li {
  list-style: none;
}

.inter {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

video {
  overflow: hidden;
  display: block;
}

.header {
  position: fixed;
  width: 100%;
  mix-blend-mode: difference;
  top: 0;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 11;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__inner {
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 44px 0px 20px 70px;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu-open {
  mix-blend-mode: unset;
}

.gnav {
  height: 100%;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 14px;
}
.gnav ul .ham_block {
  display: none;
}
.gnav ul li {
  position: relative;
}
.gnav ul li a {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  height: 100%;
  display: grid;
  place-content: center;
}
.gnav ul .download-btn {
  margin-left: 18px;
  border: solid 1px #fff;
  padding: 9px 30px;
}

.gnav ul li.has-child {
  position: relative;
}
.gnav ul li.has-child > .sub-menu {
  display: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  padding: 16px 0;
  z-index: 100;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-transform: capitalize;
  background: #fff;
}
@media screen and (max-width: 1099.9px) {
  .gnav ul li.has-child > .sub-menu {
    display: block;
  }
}
.gnav ul li.has-child > .sub-menu li {
  margin: 0;
}
.gnav ul li.has-child > .sub-menu li a {
  color: #121212;
  padding: 10px 24px;
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
  background: none;
}
.gnav ul li.has-child:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
.gnav ul li.has-child > p {
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0;
  padding: 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media screen and (min-width: 1100px) {
  .sub-menu-container {
    position: fixed;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .sub-menu-container .sub-menu {
    display: block;
    min-width: 220px;
    padding: 16px 0;
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    text-transform: capitalize;
    background: #121212;
  }
  .sub-menu-container .sub-menu li {
    margin: 0;
  }
  .sub-menu-container .sub-menu li a {
    color: #fff;
    padding: 10px 24px;
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    white-space: nowrap;
    background: none;
  }
  .sub-menu-container.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1099.9px) {
  .sub-menu-container {
    display: none !important;
  }
  .gnav ul li.has-child > .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
  }
  .gnav ul li.has-child > .sub-menu li a {
    color: #fff;
  }
}
.h_logo {
  width: 202px;
  position: absolute;
  top: 55px;
  left: 78px;
  z-index: 10;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1099.9px) {
  .h_logo {
    width: 140px;
    top: 20px;
    left: 20px;
  }
}
.h_logo a {
  width: 100%;
  height: 100%;
}
.h_logo img {
  display: block;
  mix-blend-mode: difference;
}
.h_logo.active {
  width: 150px;
}
@media screen and (max-width: 1099.9px) {
  .h_logo.active {
    width: 100px;
  }
}

@media screen and (max-width: 1099.9px) {
  .menu-open .h_logo {
    width: 100px;
  }
}

@media screen and (max-width: 1099.9px) {
  .header {
    height: 80px;
    width: 100%;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
    position: fixed;
  }
  .header .header__inner {
    padding: 0 20px;
    height: 100%;
  }
  .header .header-wrap {
    border-radius: 0;
    background: #121212;
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    opacity: 0;
    visibility: hidden;
    padding-right: 0;
    padding: 100px 30px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
  }
  .header .gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 100px;
  }
  .header .gnav li a {
    display: block;
  }
  .header .gnav .has-child > p {
    padding: 0;
  }
  .header .gnav .download-btn {
    margin-left: 0;
    margin-top: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .gnav ul li.has-child > .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    padding: 10px 0;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .gnav ul li.has-child > .sub-menu li a {
    padding: 0 10px;
    font-size: 1.2rem;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1099.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 12px;
    right: 17px;
    z-index: 99;
    background: none;
    border: none;
    color: #bcbcbc;
    text-align: center;
  }
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 20px;
    height: 2px;
    background: #bcbcbc;
  }
  .hamburger__line {
    left: 10px;
    top: 12px;
  }
  .hamburger__line::before {
    content: "";
    top: 7px;
    left: 0;
  }
  .hamburger__line::after {
    content: "";
    top: 14px;
    left: 0;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .hamburger.active span {
    top: 13px;
    -webkit-transform: translateY(6px) rotate(-35deg);
            transform: translateY(6px) rotate(-35deg);
    width: 24px;
  }
  .hamburger.active span::before {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .hamburger.active span::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    width: 24px;
  }
  .header-wrap.active {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
.main_visual {
  width: 100%;
  height: 100svh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  padding-bottom: 1px;
  background: #121212;
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    min-height: 600px;
    max-width: 100svh;
  }
}
.main_visual .main_visual_inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.main_visual .main_visual_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.main_visual .main_visual_img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
}
.main_visual .main_visual_img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.main_visual .main_visual_text {
  z-index: 1;
  mix-blend-mode: difference;
  position: absolute;
  bottom: 72px;
  left: 100px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_text {
    left: 20px;
    bottom: 40px;
  }
}
.main_visual .main_visual_text .main_lead {
  color: #fff;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.40625;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_text .main_lead {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}
.main_visual .main_visual_text .sub_lead {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1.5151515152;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_text .sub_lead {
    font-size: 1.6rem;
  }
}

.header {
  background: transparent;
}

.header__inner .h_logo img,
.header__inner .gnav ul li a,
.header__inner .gnav ul .download-btn {
  mix-blend-mode: difference;
}

.p-logo-frame {
  display: block;
  overflow: hidden;
}

.logo_slider1 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .logo_slider1 {
    margin-bottom: 80px;
  }
}

.p-logo-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 78px;
}
@media screen and (max-width: 767.9px) {
  .p-logo-slide {
    height: 45px;
  }
}

.p-logo-slide__wrap {
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  -webkit-animation: slide 40s linear infinite;
          animation: slide 40s linear infinite;
}
@media screen and (max-width: 767.9px) {
  .p-logo-slide__wrap {
    gap: 40px;
  }
}

.p-logo-slide__item {
  list-style: none;
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-logo-slide__item img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 150px;
  min-height: 24px;
  max-height: 50px;
  width: auto;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .p-logo-slide__item img {
    max-width: 100px;
    min-height: 16px;
    max-height: 30px;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/*流れるテキスト*/
.loop-wrap {
  width: 100vw;
  overflow: hidden;
}
.loop-wrap .loop-wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loop-wrap p {
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 30px;
}
.loop-wrap p img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 155px;
  width: auto;
  aspect-ratio: 3588/155;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .loop-wrap p img {
    height: 96px;
  }
}

.sub_heading {
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .sub_heading {
    font-size: 2.4rem;
    gap: 10px;
  }
}
.sub_heading::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3099a2;
}
@media screen and (max-width: 767.9px) {
  .sub_heading::before {
    width: 10px;
    height: 10px;
  }
}

.sub_heading.rl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767.9px) {
  .sub_heading.rl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.heading1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.heading1 span {
  color: #fff;
  font-size: 4.6rem;
  font-weight: 700;
  position: relative;
  padding-right: 4px;
  line-height: 1.3;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .heading1 span {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
.heading1 span::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 3px;
  left: 0;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, from(#71c086), to(#3099a2));
  background-image: linear-gradient(90deg, #71c086, #3099a2);
}
@media screen and (max-width: 767.9px) {
  .heading1 span::before {
    height: 6px;
    bottom: 0;
  }
}

.heading2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .heading2.sp-none {
    display: none;
  }
}
.heading2.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .heading2.sp-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
  }
}
.heading2 span {
  font-size: 3.6rem;
  font-weight: 700;
  position: relative;
  padding-right: 4px;
  padding-bottom: 12px;
  line-height: 1.3;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .heading2 span {
    font-size: 2.4rem;
    padding-bottom: 6px;
  }
}
.heading2 span::before {
  content: "";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, from(#71c086), to(#3099a2));
  background-image: linear-gradient(90deg, #71c086, #3099a2);
}
@media screen and (max-width: 767.9px) {
  .heading2 span::before {
    height: 6px;
    bottom: 0;
  }
}

.more_btn a {
  position: relative;
  padding-right: 100px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  .more_btn a {
    height: 50px;
    padding-right: 80px;
  }
}
.more_btn a span {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline;
  padding: 3px 0;
}
@media screen and (max-width: 767.9px) {
  .more_btn a span {
    font-size: 1.6rem;
  }
}
.more_btn a span::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.more_btn a span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #121212;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.more_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 68px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 767.9px) {
  .more_btn a::before {
    width: 50px;
  }
}
.more_btn a::after {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 767.9px) {
  .more_btn a::after {
    right: 19px;
    width: 14px;
    height: 14px;
  }
}
.more_btn a:hover {
  opacity: 1;
}
.more_btn a:hover::before {
  background-color: #fff;
  border-color: #fff;
}
.more_btn a:hover::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.more_btn a:hover span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.more_btn.color a span {
  color: #121212;
}
.more_btn.color a span::after {
  background-color: #fff;
  height: 3px;
}
.more_btn.color a span::before {
  background-color: #121212;
}
.more_btn.color a::before {
  background: #121212;
  border-color: #121212;
}
.more_btn.color a:hover {
  opacity: 1;
}
.more_btn.color a:hover::before {
  background-color: #fff;
  border-color: #121212;
}
.more_btn_back a {
  padding-left: 100px;
  padding-right: 0;
}
@media screen and (max-width: 767.9px) {
  .more_btn_back a {
    padding-left: 80px;
  }
}
.more_btn_back a::before {
  right: auto;
  left: 0;
}
.more_btn_back a::after {
  right: auto;
  left: 26px;
  -webkit-transform: scaleX(-1) translateY(-50%);
          transform: scaleX(-1) translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .more_btn_back a::after {
    left: 19px;
  }
}

.top-concept {
  background: #121212;
  padding: 52px 0 225px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-concept {
    padding: 30px 0 60px;
  }
}
.top-concept .sub_heading {
  margin-top: 16px;
}
.top-concept .loop-wrap {
  position: absolute;
  bottom: 116px;
  left: 0;
  z-index: 1;
  width: 100vw;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .top-concept .loop-wrap {
    bottom: 40px;
  }
}
.top-concept .loop-wrap p {
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 60px;
}
.top-concept .loop-wrap p img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 112px;
  width: auto;
  aspect-ratio: 4110/120;
  max-width: unset;
}
@media screen and (max-width: 767.9px) {
  .top-concept .loop-wrap p img {
    height: 80px;
  }
}
.top-concept .loop-wrap p:nth-child(1) {
  -webkit-animation: MoveLeft 84s -42s infinite linear;
          animation: MoveLeft 84s -42s infinite linear;
}
.top-concept .loop-wrap p:nth-child(2) {
  -webkit-animation: MoveLeft2 84s infinite linear;
          animation: MoveLeft2 84s infinite linear;
}
.top-concept .cont {
  gap: 30px 70px;
}
.top-concept .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.top-concept .heading1 {
  margin-bottom: 52px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .heading1 {
    margin-bottom: 40px;
  }
}
.top-concept .description {
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.top-concept .top-concept_img {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: -30px;
}
@media screen and (max-width: 767.9px) {
  .top-concept .top-concept_img {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
    margin-top: 30px;
  }
}
.top-concept .top-concept_img img {
  border-radius: 5px;
}
.top-concept .top-concept_img img:nth-child(1) {
  margin-top: 120px;
  width: 67%;
  aspect-ratio: 703/469;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .top-concept .top-concept_img img:nth-child(1) {
    width: 80%;
    aspect-ratio: 223/148;
    margin-top: -30px;
  }
}
.top-concept .top-concept_img img:nth-child(2) {
  margin-left: -148px;
  width: 47%;
  aspect-ratio: 493/329;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .top-concept .top-concept_img img:nth-child(2) {
    margin-left: auto;
    width: 60%;
    aspect-ratio: 223/148;
    z-index: 2;
  }
}
.top-concept .more_btn {
  position: absolute;
  bottom: 80px;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .top-concept .more_btn {
    position: relative;
    bottom: 0;
    margin-bottom: 40px;
  }
  .top-concept .more_btn a {
    margin-left: auto;
  }
}

/*流れるテキスト*/
@-webkit-keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes MoveLeft {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes MoveLeft2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes MoveUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes MoveUp {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes MoveUp2 {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}
@keyframes MoveUp2 {
  from {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  to {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}
.top-vision {
  padding: 112px 0 230px;
  margin-top: -5px;
  background: #121212;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .top-vision {
    padding: 60px 0 80px;
  }
}
.top-vision::before {
  content: "";
  width: 82%;
  height: auto;
  aspect-ratio: 1134/416;
  background-image: url(../img/top-vision.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  max-height: 92%;
}
@media screen and (max-width: 767.9px) {
  .top-vision::before {
    aspect-ratio: 7/4;
    background-position: left;
  }
}
.top-vision .cont {
  position: relative;
  z-index: 2;
}
.top-vision .sub_heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top-vision .sub_heading {
    margin-bottom: 40px;
  }
}
.top-vision h2 {
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.875;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .top-vision h2 {
    font-size: 1.8rem;
  }
}

.top-works {
  padding: 152px 0 110px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-works {
    padding: 80px 0 80px;
  }
}
.top-works .sub_heading {
  margin-bottom: 60px;
  color: #121212;
}
@media screen and (max-width: 767.9px) {
  .top-works .sub_heading {
    margin-bottom: 40px;
  }
}
.top-works .swiper-works {
  position: relative;
  margin-bottom: 40px;
}
.top-works .swiper-slide {
  width: 487px;
  max-width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-works .swiper-slide .img_wrap {
  padding-bottom: 40px;
  margin-bottom: 24px;
  border-bottom: solid 1px #e4e4e4;
}
@media screen and (max-width: 767.9px) {
  .top-works .swiper-slide .img_wrap {
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
}
.top-works .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 487/325;
  display: block;
  border-radius: 5px;
}
.top-works .swiper-slide p {
  font-size: 1.8rem;
  font-weight: 700;
  gap: 12px;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767.9px) {
  .top-works .swiper-slide p {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top-works .swiper-button-prev,
.top-works .swiper-button-next {
  top: -70px;
  left: auto;
}
@media screen and (max-width: 767.9px) {
  .top-works .swiper-button-prev,
  .top-works .swiper-button-next {
    top: -55px;
  }
}
.top-works .swiper-button-prev::after,
.top-works .swiper-button-next::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../img/swiper_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .top-works .swiper-button-prev::after,
  .top-works .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }
}
.top-works .swiper-button-next {
  right: 60px;
}
@media screen and (max-width: 767.9px) {
  .top-works .swiper-button-next {
    right: 20px;
  }
}
.top-works .swiper-button-prev {
  right: 120px;
}
@media screen and (max-width: 767.9px) {
  .top-works .swiper-button-prev {
    right: 60px;
  }
}
.top-works .swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.top-works .more_btn a {
  margin: 0 auto;
}

.top-service {
  padding: 140px 0 130px;
  background-image: url(../img/top-service.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .top-service {
    padding: 80px 0;
  }
}
.top-service .cont {
  gap: 70px 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .top-service .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.top-service .sub_heading {
  font-size: 4.6rem;
  padding-right: 8%;
  padding-top: 8px;
}
@media screen and (max-width: 767.9px) {
  .top-service .sub_heading {
    font-size: 2.4rem;
    padding-right: 0;
  }
}
.top-service .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 960px;
}
.top-service .heading1 {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-service .heading1 span {
  font-size: 4.2rem;
}
@media screen and (max-width: 767.9px) {
  .top-service .heading1 span {
    font-size: 2.4rem;
  }
}
.top-service .heading1::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #fff;
  min-width: 36px;
}
@media screen and (max-width: 767.9px) {
  .top-service .heading1::after {
    display: none;
  }
}
.top-service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.top-service .heading_wrap {
  margin-bottom: 30px;
}
.top-service .heading_wrap p {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .top-service .heading_wrap p {
    font-size: 3rem;
  }
}
.top-service .heading_wrap span.inter {
  color: #929292;
  font-size: 2.1rem;
  margin-top: 6px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .top-service .heading_wrap span.inter {
    font-size: 1.4rem;
  }
}
.top-service .description {
  color: #fff;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 2.5;
}
@media screen and (max-width: 767.9px) {
  .top-service .description {
    margin-bottom: 30px;
  }
}
.top-service .more_btn a {
  margin-left: auto;
}
.top-service .loop-wrap {
  height: auto;
  position: absolute;
  top: 0;
  right: 70px;
  overflow: hidden;
  z-index: 0;
  width: 106px;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .top-service .loop-wrap {
    right: 0;
  }
}
.top-service .loop-wrap .loop-wrap__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .top-service .loop-wrap .loop-wrap__inner {
    zoom: 0.8;
  }
}
.top-service .loop-wrap p {
  padding: 0;
  padding-bottom: 40px;
}
.top-service .loop-wrap p img {
  aspect-ratio: 106/3092;
  height: auto;
  width: 100%;
  width: auto;
  max-width: unset;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-service .loop-wrap {
  overflow: hidden;
}

.top-service .loop-wrap__inner {
  display: block;
}

.top-service .loop-wrap__inner p {
  margin: 0 0 60px 0;
  padding: 0;
  height: 3092px;
}

.top-service .loop-wrap__inner p:last-child {
  margin-bottom: 0;
}

.top-blog {
  background: #fff;
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 767.9px) {
  .top-blog {
    padding: 80px 0;
  }
}
.top-blog .sub_heading {
  color: #121212;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .top-blog .sub_heading {
    margin-bottom: 40px;
  }
}
.top-blog .blog-list {
  margin-bottom: 60px;
}
.top-blog .more_btn a {
  margin: 0 auto;
}

.time_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px 22px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .time_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.time_wrap time {
  font-size: 1.4rem;
  color: #121212;
  font-weight: 500;
}
.time_wrap .category {
  gap: 5px;
}
.time_wrap .category span {
  font-size: 1rem;
  color: #fff;
  background: #121212;
  border-radius: 2px;
  padding: 0 10px;
}

.blog-list {
  gap: 30px;
}
.blog-list li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 767.9px) {
  .blog-list li {
    width: 100%;
    max-width: 375px;
  }
}
.blog-list li a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.blog-list img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 379/230;
  margin-bottom: 30px;
  border-radius: 5px;
}
@media screen and (max-width: 767.9px) {
  .blog-list img {
    margin-bottom: 20px;
  }
}
.blog-list h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8888888889;
}
@media screen and (max-width: 767.9px) {
  .blog-list h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-list p.flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 1.4rem;
  }
}

.top-partners {
  position: relative;
  padding: 160px 0 140px;
}
@media screen and (max-width: 767.9px) {
  .top-partners {
    padding: 120px 0;
  }
}
.top-partners .top-partners_bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-partners .top-partners_bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-partners .top-partners_bg span:nth-child(1)::before, .top-partners .top-partners_bg span:nth-child(1)::after {
  content: "";
  width: 41px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/plus.svg);
  position: absolute;
  top: 67px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(1)::before, .top-partners .top-partners_bg span:nth-child(1)::after {
    width: 25px;
    top: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(1)::before {
  left: 150px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(1)::before {
    left: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(1)::after {
  right: 150px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(1)::after {
    right: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(2)::before, .top-partners .top-partners_bg span:nth-child(2)::after {
  content: "";
  width: 41px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: auto;
  bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(2)::before, .top-partners .top-partners_bg span:nth-child(2)::after {
    width: 25px;
    bottom: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(2)::before {
  left: 100px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(2)::before {
    left: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(2)::after {
  right: 100px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(2)::after {
    right: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(1)::before, .top-partners .top-partners_bg span:nth-child(1)::after {
  content: "";
  width: 41px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../img/plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 67px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(1)::before, .top-partners .top-partners_bg span:nth-child(1)::after {
    width: 25px;
    top: 30px;
  }
}
.top-partners .top-partners_bg span:nth-child(1)::before {
  left: 100px;
}
@media screen and (max-width: 767.9px) {
  .top-partners .top-partners_bg span:nth-child(1)::before {
    left: 30px;
  }
}
instagram-operation .top-partners .top-partners_bg span:nth-child(1)::after {
  right: 100px;
}
@media screen and (max-width: 767.9px) {
  instagram-operation .top-partners .top-partners_bg span:nth-child(1)::after {
    right: 30px;
  }
}
.top-partners .cont {
  position: relative;
  z-index: 2;
}
.top-partners .sub_heading {
  margin-bottom: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .top-partners .sub_heading {
    margin-bottom: 35px;
  }
}
.top-partners .sub_heading::before {
  content: none;
}
.top-partners h2 {
  color: #fff;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.4347826087;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .top-partners h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}
.top-partners .description {
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
.top-partners .more_btn a {
  margin: 0 auto;
}

.footer {
  background: #121212;
  padding: 114px 0 70px;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding: 60px 0;
  }
}
.footer .contact_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .footer .contact_btn a {
    gap: 20px;
  }
}
.footer .contact_btn .inter-wrap {
  position: relative;
  display: inline-block;
  height: 11rem;
  overflow: hidden;
  width: 415px;
  height: 133px;
}
@media screen and (max-width: 767.9px) {
  .footer .contact_btn .inter-wrap {
    width: 200px;
    height: 60px;
  }
}
.footer .contact_btn .inter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 5px 0;
  font-size: 10.8rem;
  font-weight: 600;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer .contact_btn .inter {
    font-size: 5rem;
  }
}
.footer .contact_btn .inter span {
  display: inline-block;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  line-height: 1;
}
.footer .contact_btn .inter-1 {
  top: -37px;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.footer .contact_btn .inter-2 {
  top: 100%;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.footer .contact_btn a:hover .inter-1 {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}
.footer .contact_btn a:hover .inter-1 span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.footer .contact_btn a:hover {
  opacity: 1;
}
.footer .contact_btn a:hover .inter-2 {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 1;
}
.footer .contact_btn a:hover .inter-2 span {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.07s;
          transition-delay: 0.07s;
}
.footer .contact_btn .arrow {
  width: 133px;
  height: auto;
  aspect-ratio: 1/1;
  border: solid 1px #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .footer .contact_btn .arrow {
    width: 80px;
  }
}
.footer .contact_btn .arrow img {
  width: 33px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media screen and (max-width: 767.9px) {
  .footer .contact_btn .arrow img {
    width: 20px;
  }
}
.footer .contact_btn .arrow img:first-child {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer .contact_btn .arrow img:last-child {
  -webkit-transform: translate(-50%, calc(-50% + 90px));
          transform: translate(-50%, calc(-50% + 90px));
}
.footer .contact_btn a:hover .arrow img:first-child {
  -webkit-transform: translate(-50%, calc(-50% - 90px));
          transform: translate(-50%, calc(-50% - 90px));
}
.footer .contact_btn a:hover .arrow img:last-child {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer .f_content {
  margin-top: 50px;
  border-top: solid 1px #fff;
  padding-top: 80px;
  gap: 50px 60px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_content {
    padding-top: 60px;
  }
}
.footer .f_left .f_logo {
  width: 196px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_left .f_logo {
    width: 150px;
    margin-bottom: 40px;
  }
}
.footer .f_left .f_logo img {
  display: block;
  width: 100%;
}
.footer .f_left .f_company-name {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_left .f_company-name {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.footer .f_left address {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  font-style: normal;
}
@media screen and (max-width: 767.9px) {
  .footer .f_left address {
    font-size: 1.4rem;
  }
}
.footer .f_right nav {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px 70px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_right nav {
    row-gap: 11px;
  }
}
.footer .f_right nav .inter {
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer .f_right nav .inter {
    font-size: 1.6rem;
  }
}
.footer .f_right nav ul li ul a {
  color: #a8a8a8;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1428571429;
}
.footer .f_right nav ul .insta a {
  font-size: 2rem;
}
@media screen and (max-width: 767.9px) {
  .footer .f_right nav ul .insta a {
    font-size: 1.6rem;
  }
}
.footer .f_right nav ul:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
.footer .f_right nav ul:nth-child(2) ul {
  border: none;
  padding: 12px 0 16px;
  border-bottom: solid 1px #a8a8a8;
  margin-bottom: 16px;
}
.footer .f_right nav .insta a img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 2px;
}
.footer .f_bottom .flex {
  gap: 5px 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_bottom .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
}
.footer .f_bottom a {
  color: #a8a8a8;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.1428571429;
}
@media screen and (max-width: 767.9px) {
  .footer .f_bottom a {
    font-size: 1.2rem;
  }
}
.footer .f_bottom small {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .footer .f_bottom small {
    font-size: 1rem;
  }
}

.page_wrapper {
  background: #fff;
  overflow: clip;
}

.page_top {
  height: 400px;
  background-size: cover;
  background-position: right center;
  background-color: #121212;
}
@media screen and (max-width: 767.9px) {
  .page_top {
    height: auto;
  }
}
.page_top .cont {
  padding-top: 210px;
  max-width: 1100px;
}
@media screen and (max-width: 767.9px) {
  .page_top .cont {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.page_top .page_title2 {
  color: #fff;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title2 {
    font-size: 3.2rem;
  }
}
.page_top .line-height-1 {
  line-height: 1.1538461538;
}
.page_top .page_title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .page_top .page_title {
    font-size: 1.4rem;
  }
}
.page_top.high {
  height: 600px;
}
@media screen and (max-width: 767.9px) {
  .page_top.high {
    height: 300px;
  }
}
.page_top.high .cont {
  padding-top: 0;
  height: 100%;
  padding-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_top.high .cont .page_title2 {
  margin-top: auto;
}

.page-id-280 .page_top {
  background-image: url(../img/page_top-company.jpg);
}

.page-id-301 .page_top {
  background-image: url(../img/page_top-message.jpg);
  background-position: center;
}

.page-id-303 .page_top {
  background-image: url(../img/page_top-insta.jpg);
  background-position: center;
}

.page-id-305 .page_top {
  background-image: url(../img/page_top-photograph.jpg);
}

.page-id-307 .page_top {
  background-image: url(../img/page_top-video-camp.jpg);
}

.post-type-archive-blogs .page_top,
.single-blogs .page_top,
.tax-cat_blog .page_top {
  background-image: url(../img/page_top-blog.jpg);
}

.page-id-13 .page_top,
.page-id-15 .page_top,
.page-id-17 .page_top {
  background-image: url(../img/page_top-contact.jpg);
}

.menu_fixed {
  padding-top: 40px;
  padding-right: 10px;
  padding-left: 123px;
  position: sticky;
  top: 100px;
  left: 0;
  width: 320px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .menu_fixed {
    padding-left: 60px;
  }
}
.menu_fixed li {
  margin-bottom: 4px;
}
.menu_fixed a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  -webkit-transition: none;
  transition: none;
  font-weight: 400;
  color: #919191;
  mix-blend-mode: difference;
}
.menu_fixed a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .menu_fixed {
    display: none;
  }
}
.menu_fixed .menu__link.is-active {
  font-weight: 700;
}
.menu_fixed .menu__link.is-active::before {
  background: #3099a2;
}

.two_columns-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .two_columns-content {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.heading3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
.heading3 .inter {
  background: -webkit-gradient(linear, left top, left bottom, from(#71c086), to(#3099a2));
  background: linear-gradient(to bottom, #71c086, #3099a2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.company_content-flex {
  padding-right: 15%;
}
@media screen and (max-width: 1024px) {
  .company_content-flex {
    padding-right: 8%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .company_content-flex {
    padding-inline: 5.5%;
  }
}
.company_content-flex .left {
  width: 270px;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .company_content-flex .left {
    width: 100%;
  }
}
.company_content-flex .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.company_content-flex .detail .heading2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .company_content-flex .detail .heading2 {
    margin-bottom: 30px;
  }
}

.company1 {
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .company1 {
    padding: 60px 0;
  }
}

.company2,
.company3 {
  position: relative;
  z-index: 2;
}
.company2 .company_content-flex,
.company3 .company_content-flex {
  position: relative;
}
.company2::before,
.company3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #121212;
  z-index: 0;
}
.company2 .heading3,
.company3 .heading3 {
  color: #fff;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.company2 .description,
.company3 .description {
  color: #fff;
}
.company2 .bg_text,
.company3 .bg_text {
  position: absolute;
  line-height: 1;
  color: #383838;
  font-size: 14.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .company2 .bg_text,
  .company3 .bg_text {
    font-size: 7rem;
  }
}

.company2 {
  padding: 140px 0 160px;
}
@media screen and (max-width: 767.9px) {
  .company2 {
    padding: 80px 0 60px;
  }
}
.company2 .bg_text {
  top: 70px;
  right: 10px;
}
@media screen and (max-width: 767.9px) {
  .company2 .bg_text {
    top: 50px;
  }
}
.company2 .left .flex-top {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.company2 .left .flex-top p {
  padding-top: 96px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-left: -13px;
}
@media screen and (max-width: 1024px) {
  .company2 .left .flex-top p {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 767.9px) {
  .company2 .left .flex-top p {
    padding-top: 30px;
    margin-left: 0;
    font-size: 2.4rem;
  }
}
.company2 .description {
  padding-top: 90px;
}
@media screen and (max-width: 1024px) {
  .company2 .description {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .company2 .description {
    padding-top: 10px;
  }
}

.company3 {
  padding: 130px 0 300px;
  margin-top: -1px;
}
@media screen and (max-width: 767.9px) {
  .company3 {
    padding: 80px 0;
  }
}
.company3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #444;
  width: 83%;
  height: 1px;
}
@media screen and (max-width: 767.9px) {
  .company3::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}
.company3 .bg_text {
  top: 160px;
  right: 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767.9px) {
  .company3 .bg_text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    top: 50px;
  }
}
.company3 .detail {
  margin-top: 10px;
}
.company3 h3 {
  color: #fff;
  margin-bottom: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.company3 h3 span {
  background: -webkit-gradient(linear, right top, left top, from(#3099a2), to(#71c086));
  background: linear-gradient(to left, #3099a2, #71c086);
  padding: 10px 22px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 3.6rem;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .company3 h3 span {
    font-size: 1.8rem;
    padding: 6px 10px;
    margin-bottom: 10px;
  }
}
.company3 h3 span:nth-child(2) {
  padding-left: 50px;
}
@media screen and (max-width: 767.9px) {
  .company3 h3 span:nth-child(2) {
    padding-left: 10px;
  }
}

.company4 {
  padding: 170px 0 240px;
}
@media screen and (max-width: 767.9px) {
  .company4 {
    padding: 80px 0;
  }
}
.company4 .heading3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .company4 .heading3 {
    margin-bottom: 0;
  }
}

.table1 {
  width: 100%;
}
.table1 tr {
  padding: 45px 0 27px;
  border-bottom: solid 1px #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .table1 tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
}
.table1 th,
.table1 td {
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .table1 th,
  .table1 td {
    font-size: 1.5rem;
  }
}
.table1 th {
  width: 270px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .table1 th {
    width: 100%;
  }
}
.table1 td {
  font-weight: 400;
}

.law_content {
  padding: 120px 0;
}
@media screen and (max-width: 767.9px) {
  .law_content {
    padding: 60px 0;
  }
}
.law_content .cont {
  max-width: 1000px;
}
.law_content h2 {
  margin-bottom: 40px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .law_content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.message1 .cont {
  max-width: 1000px;
}

.message1-top {
  background: #fff;
  padding: 100px 0 20px;
}
@media screen and (max-width: 767.9px) {
  .message1-top {
    padding-top: 80px;
  }
}
.message1-top .heading2 span {
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .message1-top .heading2 span {
    margin-bottom: 12px;
  }
}

.message1-bottom {
  position: relative;
  padding-bottom: 110px;
}
@media screen and (max-width: 767.9px) {
  .message1-bottom {
    padding-bottom: 80px;
  }
}
.message1-bottom::before {
  content: "";
  position: absolute;
  background: #121212;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 240px);
}
@media screen and (max-width: 767.9px) {
  .message1-bottom::before {
    height: calc(100% - 100px);
  }
}
.message1-bottom .cont {
  position: relative;
  z-index: 2;
}
.message1-bottom img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000/490;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .message1-bottom img {
    margin-bottom: 40px;
  }
}
.message1-bottom .description {
  color: #fff;
  font-weight: 400;
}
.message1-bottom .sign {
  text-align: right;
  margin-top: 85px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .message1-bottom .sign {
    margin-top: 30px;
    font-size: 1.6rem;
  }
}
.message1-bottom h3 {
  margin-top: 130px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .message1-bottom h3 {
    margin-top: 60px;
  }
}
.message1-bottom h3 span {
  padding: 10px 22px 16px 0;
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2857142857;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .message1-bottom h3 span {
    font-size: 1.8rem;
    padding: 8px 10px 8px 0;
    margin-bottom: 10px;
  }
}
.message1-bottom h3 span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + (100vw - 89%) / 2);
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#3099a2), to(#71c086));
  background: linear-gradient(to left, #3099a2, #71c086);
  z-index: -1;
}
@media screen and (min-width: 1124px) {
  .message1-bottom h3 span::before {
    width: calc(100% + (100vw - 1000px) / 2);
  }
}
.message1-bottom .comment {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}

.blog-navigation {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .blog-navigation {
    margin-top: 60px;
  }
}
.blog-navigation .nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 767.9px) {
  .blog-navigation .nav-buttons {
    gap: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.blog-navigation .back-to-list {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 10px;
}
@media screen and (max-width: 767.9px) {
  .blog-navigation .back-to-list {
    font-size: 1.5rem;
  }
}
.blog-navigation .prev-post,
.blog-navigation .next-post {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #121212;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
@media screen and (max-width: 767.9px) {
  .blog-navigation .prev-post,
  .blog-navigation .next-post {
    width: 40px;
    height: 40px;
  }
}
.blog-navigation .prev-post img,
.blog-navigation .next-post img {
  width: 17px;
  height: 17px;
}
@media screen and (max-width: 767.9px) {
  .blog-navigation .prev-post img,
  .blog-navigation .next-post img {
    width: 14px;
    height: 14px;
  }
}
.blog-navigation .prev-post.prev-post img,
.blog-navigation .next-post.prev-post img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.blog-navigation .prev-post.next-post img,
.blog-navigation .next-post.next-post img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.members {
  padding: 220px 0 150px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .members {
    padding: 80px 0;
  }
}
.members .sub_heading {
  color: #121212;
  font-size: 3.8rem;
  line-height: 1;
  position: absolute;
  top: 100px;
  left: 100px;
}
@media (max-width: 1300px) {
  .members .sub_heading {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: static;
    top: 0;
    left: 0;
    width: 89%;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .members .sub_heading {
    font-size: 2.4rem;
  }
}
.members .cont {
  max-width: 1000px;
}
.members ul {
  row-gap: 70px;
}
@media screen and (max-width: 767.9px) {
  .members ul {
    row-gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.members ul li {
  width: 33.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 270px;
}
@media screen and (max-width: 1024px) {
  .members ul li {
    width: 50%;
  }
}
@media screen and (max-width: 430px) {
  .members ul li {
    width: 100%;
  }
}
.members ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 334/297;
  -o-object-fit: cover;
     object-fit: cover;
}
.members ul li p {
  color: #fff;
}
.members ul li .detail {
  position: relative;
  padding: 45px 26px 30px;
  background: #1a3933;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.members ul li .inter {
  position: absolute;
  top: -85px;
  left: 26px;
  font-weight: 100;
  font-size: 4.5rem;
  line-height: 1.2222222222;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.members ul li .position {
  font-size: 1.2rem;
  line-height: 1;
}
.members ul li .name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.members ul li h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.6rem;
  line-height: 1.875;
  min-height: 60px;
}
.members ul li .comment {
  font-size: 1.4rem;
  line-height: 1.8571428571;
}
.members ul li:nth-child(3n+2) .detail {
  background: #121212;
}
@media screen and (max-width: 1024px) {
  .members ul li:nth-child(3n+2) .detail {
    background: #1a3933;
  }
}
@media screen and (max-width: 1024px) {
  .members ul li:nth-child(4n-2) .detail,
  .members ul li:nth-child(4n-1) .detail {
    background: #121212;
  }
}
@media screen and (max-width: 1024px) and (max-width: 430px) {
  .members ul li:nth-child(4n-2) .detail,
  .members ul li:nth-child(4n-1) .detail {
    background: #1a3933;
  }
}
@media screen and (max-width: 430px) {
  .members ul li:nth-child(2n) .detail {
    background: #121212;
  }
}

.archive_wrapper,
.single_blog {
  padding: 130px 0 180px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper,
  .single_blog {
    padding: 60px 0;
  }
}
.archive_wrapper .cont,
.single_blog .cont {
  max-width: 1100px;
}
.archive_wrapper .archive_content,
.single_blog .archive_content {
  gap: 90px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .archive_content,
  .single_blog .archive_content {
    gap: 70px;
  }
}
.archive_wrapper .archive_content .left,
.single_blog .archive_content .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.archive_wrapper .archive_content .right,
.single_blog .archive_content .right {
  width: 220px;
  position: sticky;
  top: 120px;
}
.archive_wrapper .blog-list,
.single_blog .blog-list {
  gap: 70px 30px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .blog-list,
  .single_blog .blog-list {
    gap: 40px;
    margin-bottom: 60px;
  }
}
.archive_wrapper .blog-list li,
.single_blog .blog-list li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767.9px) {
  .archive_wrapper .blog-list li,
  .single_blog .blog-list li {
    width: 100%;
    max-width: 375px;
  }
}
.archive_wrapper .blog-list img,
.single_blog .blog-list img {
  margin-bottom: 25px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page-numbers a,
.page-numbers span {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 5px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .page-numbers a,
  .page-numbers span {
    font-size: 1.8rem;
  }
}
.page-numbers .current::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #121212;
}
.page-numbers .next::after,
.page-numbers .prev::after {
  content: "";
  width: 25px;
  height: auto;
  aspect-ratio: 25/31;
  background-image: url(../img/swiper_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .next::after,
  .page-numbers .prev::after {
    width: 12px;
  }
}
.page-numbers .next::after {
  margin-left: 30px;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .next::after {
    margin-left: 20px;
  }
}
.page-numbers .prev::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  margin-right: 30px;
}
@media screen and (max-width: 767.9px) {
  .page-numbers .prev::after {
    margin-right: 20px;
  }
}

.archive-wrap {
  position: sticky;
  top: 120px;
}
.archive-wrap .archive-cont {
  position: relative;
  max-width: 320px;
}
.archive-wrap .archive-cont .heading3 {
  padding-bottom: 10px;
  border-bottom: solid 1px #cccccc;
  font-weight: 700;
}
.archive-wrap .archive-cont ul {
  padding: 20px 0;
}
.archive-wrap .archive-cont ul li {
  margin-bottom: 15px;
}
.archive-wrap .archive-cont ul li a {
  line-height: 1;
  letter-spacing: normal;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont ul li a {
    font-size: 1.5rem;
  }
}
.archive-wrap .archive-cont ul li .time_wrap {
  margin-bottom: 10px;
}
.archive-wrap .archive-cont.category {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont.category {
    margin-bottom: 40px;
  }
}
.archive-wrap .archive-cont.archive ul li {
  margin-bottom: 0;
  padding-bottom: 30px;
  /*アイコン>*/
  /*　closeというクラスがついたら形状変化　*/
}
.archive-wrap .archive-cont.archive ul li .title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  cursor: pointer;
  outline: none;
}
.archive-wrap .archive-cont.archive ul li .title:focus {
  outline: 2px solid #3099a2;
  outline-offset: 2px;
}
.archive-wrap .archive-cont.archive ul li .title::after {
  position: absolute;
  content: "";
  background-image: url(../img/arrow_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  aspect-ratio: 19/15;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont.archive ul li .title::after {
    width: 15px;
  }
}
.archive-wrap .archive-cont.archive ul li .title.close::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  top: 30%;
}
.archive-wrap .archive-cont.archive ul p,
.archive-wrap .archive-cont.archive ul a {
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .archive-wrap .archive-cont.archive ul p,
  .archive-wrap .archive-cont.archive ul a {
    font-size: 1.5rem;
  }
}
.archive-wrap .archive-cont.archive ul .title {
  font-weight: 700;
}
.archive-wrap .archive-cont.archive ul .box {
  padding-top: 13px;
}
.archive-wrap .archive-cont.archive ul .box a {
  padding: 12px 0 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.archive-wrap .box {
  display: none;
}

.blog_content .blog_content_top .time_wrap {
  margin-bottom: 20px;
}
.blog_content .blog_content_top .time_wrap .category span {
  padding-inline: 20px;
  font-size: 1.4rem;
  line-height: 1.4;
}
.blog_content .blog_content_top h1 {
  font-size: 3.2rem;
  line-height: 1.5625;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .blog_content .blog_content_top h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.blog_content .blog_content_top .work_detail {
  border-top: solid 1px #cccccc;
  gap: 0 40px;
  margin-bottom: 30px;
  margin-top: -20px;
  padding-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .blog_content .blog_content_top .work_detail {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: -10px;
  }
}
@media screen and (max-width: 767.9px) {
  .blog_content .blog_content_top .work_detail p {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 1.4rem;
  }
}

.blog_content_inner {
  padding-bottom: 60px;
  border-bottom: solid 1px #cccccc;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
}
.blog_content_inner img {
  display: block;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner img {
    margin-bottom: 30px;
  }
}
.blog_content_inner p {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner p {
    font-size: 1.5rem;
  }
}
.blog_content_inner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.blog_content_inner h3 {
  font-size: 2rem;
  font-weight: 700;
	margin-top: 30px;
  margin-bottom: 30px;
	margin-bottom: 30px;
    border-left: 5px solid #333333;
    padding-left: 10px;
}
.blog_content_inner blockquote {
	position: relative;
    color: rgba(0, 0, 0, 0.6);
	margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em 2.4em;
    box-shadow: none;
    background: rgba(0, 0, 0, 2%);
    border: none;
    border-left: 3px solid #000;
}

.blog_content_inner blockquote:before, .blog_content_inner blockquote:after {
	    content: '"';
    font-style: italic;
    font-size: 30px;
    font-weight: normal;
    color: #000;
    width: 30px;
    height: 30px;
    position: absolute;
}
.blog_content_inner blockquote:before {
	line-height: 40px;
    top: 5px;
    left: 10px;
}
.blog_content_inner blockquote:after {
	text-align: left;
    line-height: 60px;
    bottom: 10px;
    right: -2px;
}
.blog_content_inner .btn_instagram {
	color: #fff;
    background-image: linear-gradient(135deg, #fbcc73, #c851c0 50%, #8b5cf6);
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
	margin: 30px 0;
	display: inline-block;
}
.blog_content_inner .btn_bk {
	color: #fff;
	background-color: #32373c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
	margin: 30px 0;
	display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .blog_content_inner h3 {
    font-size: 1.6rem;
	  margin-top: 20px;
    margin-bottom: 20px;
  }
}

#toc_container {
  margin: 70px 0 50px !important;
  padding: 40px 50px !important;
  border: solid 1px #cccccc !important;
}
@media screen and (max-width: 767.9px) {
  #toc_container {
    margin: 40px 0 50px !important;
    padding: 30px 20px !important;
  }
}
#toc_container .toc_title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  #toc_container .toc_title {
    font-size: 2rem;
  }
}
#toc_container .toc_title .toc_toggle {
  margin-left: 20px;
  font-size: 1.6rem;
  color: #919191;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  #toc_container .toc_title .toc_toggle {
    font-size: 1.5rem;
  }
}
#toc_container .toc_list li {
  padding-top: 20px;
}
@media screen and (max-width: 767.9px) {
  #toc_container .toc_list li {
    padding-top: 5px;
  }
}
#toc_container .toc_list a {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  #toc_container .toc_list a {
    font-size: 1.5rem;
  }
}
#toc_container .toc_list .toc_number {
  margin-right: 10px;
}

.contracted {
  width: 100% !important;
}

.blogs_card {
  position: relative;
  margin-top: 44px;
  margin-bottom: 75px;
}
@media screen and (max-width: 767.9px) {
  .blogs_card {
    margin: 30px 0 50px;
  }
}
.blogs_card::before {
  content: "この記事も合わせて読む";
  background: -webkit-gradient(linear, left top, right top, from(#71c086), to(#3099a2));
  background: linear-gradient(to right, #71c086, #3099a2);
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 12px 15px 14px;
  position: absolute;
  top: -44px;
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .blogs_card::before {
    font-size: 1.5rem;
    top: -40px;
  }
}
.blogs_card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 28px 30px 30px;
  border: solid 1px #cccccc;
  gap: 45px;
}
@media screen and (max-width: 767.9px) {
  .blogs_card a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 20px 20px;
    gap: 10px;
  }
}
.blogs_card a img {
  width: 38%;
  height: auto;
  aspect-ratio: 276/158;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .blogs_card a img {
    width: 100%;
    max-width: 300px;
  }
}
.blogs_card .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767.9px) {
  .blogs_card .detail {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.blogs_card .detail .blog_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8888888889;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .blogs_card .detail .blog_title {
    font-size: 1.6rem;
  }
}
.blogs_card .detail .blog_excerpt {
  font-size: 1.8rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
}
@media screen and (max-width: 767.9px) {
  .blogs_card .detail .blog_excerpt {
    font-size: 1.4rem;
  }
}

#scroll-top {
  position: fixed;
  right: 100px;
  bottom: 100px;
  z-index: 11;
  display: none;
}
@media screen and (max-width: 767.9px) {
  #scroll-top {
    right: 20px;
    bottom: 40px;
  }
}
#scroll-top a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  width: 68px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  border: solid 1px #121212;
}
@media screen and (max-width: 767.9px) {
  #scroll-top a {
    width: 50px;
  }
}
#scroll-top img {
  width: 17px;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  mix-blend-mode: difference;
}
@media screen and (max-width: 767.9px) {
  #scroll-top img {
    width: 14px;
  }
}

.form_stage {
  margin-top: 70px;
  margin-bottom: 85px;
}
@media screen and (max-width: 767.9px) {
  .form_stage {
    margin: 40px 0 50px;
  }
}
.form_stage .progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .form_stage .progressbar {
    max-width: 250px;
  }
}
.form_stage .progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #333333;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .form_stage .progressbar li {
    font-size: 1.6rem;
  }
}
.form_stage .progressbar li::before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 15px auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background: #cccccc;
}
@media screen and (max-width: 767.9px) {
  .form_stage .progressbar li::before {
    width: 20px;
    height: 20px;
  }
}
.form_stage .progressbar li::after {
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #cccccc;
}
@media screen and (max-width: 767.9px) {
  .form_stage .progressbar li::after {
    top: 17px;
  }
}
.form_stage .progressbar li:last-child::after {
  content: none;
}
.form_stage .progressbar li.active::before,
.form_stage .progressbar li.complete::before {
  background: #3099a2;
}
.form_stage .progressbar li.active::after,
.form_stage .progressbar li.complete::after {
  background-color: #3099a2;
}

.contact_wrap {
  padding: 120px 0 240px;
}
@media screen and (max-width: 767.9px) {
  .contact_wrap {
    padding: 60px 0 40px;
  }
}
.contact_wrap .cont {
  position: relative;
  max-width: 1000px;
}
.contact_wrap h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .contact_wrap h2 {
    font-size: 2.2rem;
  }
}

.form {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .form {
    margin-top: 40px;
    padding-bottom: 60px;
  }
}
.form .wpcf7-response-output {
  position: absolute;
}
.form .cont {
  width: 100%;
}
.form .check {
  color: #ff0000;
  display: inline-block;
  margin-left: 0.5em;
}
.form table {
  width: 100%;
  display: block;
  margin-bottom: 80px;
  padding-bottom: 240px;
}
@media screen and (max-width: 767.9px) {
  .form table {
    margin-bottom: 50px;
  }
}
.form table tbody {
  display: block;
}
.form table tr {
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr {
    margin-bottom: 32px;
  }
}
.form table tr th,
.form table tr .zip_title {
  margin-bottom: 10px;
  display: block;
}
.form table tr th p,
.form table tr .zip_title p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .form table tr th p,
  .form table tr .zip_title p {
    font-size: 1.6rem;
  }
}
.form table tr .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.form table tr td {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
}
.form table tr td br {
  display: none;
}
.form table tr td input[type=text],
.form table tr td input[type=email],
.form table tr td input[type=tel],
.form table tr td textarea {
  font-weight: 500;
  width: 100%;
  font-size: 1.6rem;
  padding: 13px 25px;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  background: #ededed;
  margin-left: 0;
}
@media screen and (max-width: 767.9px) {
  .form table tr td input[type=text],
  .form table tr td input[type=email],
  .form table tr td input[type=tel],
  .form table tr td textarea {
    padding: 8px 20px;
  }
}
.form table tr td input[type=text]::-webkit-input-placeholder, .form table tr td input[type=email]::-webkit-input-placeholder, .form table tr td input[type=tel]::-webkit-input-placeholder, .form table tr td textarea::-webkit-input-placeholder {
  color: #999999;
  font-size: 1.6rem;
}
.form table tr td input[type=text]::-moz-placeholder, .form table tr td input[type=email]::-moz-placeholder, .form table tr td input[type=tel]::-moz-placeholder, .form table tr td textarea::-moz-placeholder {
  color: #999999;
  font-size: 1.6rem;
}
.form table tr td input[type=text]:-ms-input-placeholder, .form table tr td input[type=email]:-ms-input-placeholder, .form table tr td input[type=tel]:-ms-input-placeholder, .form table tr td textarea:-ms-input-placeholder {
  color: #999999;
  font-size: 1.6rem;
}
.form table tr td input[type=text]::-ms-input-placeholder, .form table tr td input[type=email]::-ms-input-placeholder, .form table tr td input[type=tel]::-ms-input-placeholder, .form table tr td textarea::-ms-input-placeholder {
  color: #999999;
  font-size: 1.6rem;
}
.form table tr td input[type=text]::placeholder,
.form table tr td input[type=email]::placeholder,
.form table tr td input[type=tel]::placeholder,
.form table tr td textarea::placeholder {
  color: #999999;
  font-size: 1.6rem;
}
.form table tr td select {
  cursor: pointer;
  width: 100%;
  max-width: 538px;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 13px 40px 13px 25px;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  margin: 0;
  background: #ededed;
  border-right: solid 10px #ededed;
  color: #121212;
}
@media screen and (max-width: 767.9px) {
  .form table tr td select {
    padding: 8px 25px;
    height: 48px;
  }
}
.form table tr td textarea {
  height: 280px;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .form table tr td textarea {
    height: 174px;
  }
}
.form table tr td .zip_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.form table tr td .zip_wrap::before {
  content: "〒";
  margin-right: 30px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap::before {
    margin-right: 20px;
  }
}
.form table tr td .zip_wrap input {
  width: 260px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap input {
    width: 150px;
  }
}
.form table tr td .zip_wrap button {
  margin-left: 15px;
  background: #121212;
  color: #fff;
  padding: 18px;
  border-radius: 2px;
  line-height: 1;
  font-weight: 400;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .zip_wrap button {
    padding: 16px 18px;
    font-size: 1.6rem;
  }
}
.form table tr td .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .wpcf7-checkbox {
    gap: 9px;
  }
}
.form table tr td .wpcf7-checkbox span {
  font-size: 1.6rem;
  vertical-align: middle;
}
@media screen and (max-width: 767.9px) {
  .form table tr td .wpcf7-checkbox span {
    font-size: 1.5rem;
  }
}
.form table tr td.flex {
  gap: 12px 4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form table tr td.flex label {
  margin-right: 15px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767.9px) {
  .form table tr td.flex label {
    font-size: 1.5rem;
    min-width: 30px;
  }
}
.form table tr td.flex div {
  width: 48%;
}
@media screen and (max-width: 767.9px) {
  .form table tr td.flex div {
    width: 100%;
  }
}
.form table tr td.flex div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form table tr td.flex div .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form table tr .sp-none {
  display: inline;
}
@media screen and (max-width: 767.9px) {
  .form table tr .sp-none {
    display: none;
  }
}
.form table tr .sp-block {
  font-size: 1.3rem;
}
.form table tr .address_wrap textarea {
  height: 60px;
}
@media screen and (max-width: 767.9px) {
  .form table tr .address_wrap textarea {
    height: 48px;
  }
}
.form .wpcf7-not-valid-tip {
  position: absolute;
}
.form input[type=checkbox] {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background: #fff;
  border-radius: 4px;
  padding: 0;
}
.form .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check {
    margin-bottom: 30px;
  }
}
.form .privacy_policy_check .wpcf7-not-valid-tip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-wrap: nowrap;
}
.form .privacy_policy_check .wpcf7-list-item {
  margin-left: 0;
}
.form .privacy_policy_check label,
.form .privacy_policy_check p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .privacy_policy_check a,
.form .privacy_policy_check p {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check a,
  .form .privacy_policy_check p {
    font-size: 1.5rem;
  }
}
.form .privacy_policy_check .check {
  line-height: 1.4285714286;
}
@media screen and (max-width: 767.9px) {
  .form .privacy_policy_check .check {
    line-height: 1.4615384615;
  }
}
.form .privacy_policy_check .wpcf7-list-item {
  vertical-align: middle;
}
.form .wpcf7-response-output {
  font-size: 1.5rem;
}
.form p.submit {
  position: relative;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 386px;
  height: 67px;
  max-width: 100%;
}
@media screen and (max-width: 767.9px) {
  .form p.submit {
    height: 56px;
  }
}
.form p.submit br {
  display: none;
}
.form p.submit .wpcf7-spinner {
  position: absolute;
}
.form p.submit input {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#71c086), to(#3099a2));
  background: linear-gradient(to right, #71c086, #3099a2);
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 20px;
  border: none;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .form p.submit input {
    padding: 15px 22px;
  }
}
.form p.submit:hover input {
  opacity: 0.7;
}
.form p.submit2 {
  margin-top: 20px;
}

.privacypolicy_cont {
  position: absolute;
  bottom: 230px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  border: solid 1px #cccccc;
  overflow: hidden;
  padding: 25px 70px 40px;
  padding-right: 2px;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont {
    padding: 25px 0px 20px 30px;
  }
}
.privacypolicy_cont div {
  height: 166px;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 12px solid #fff;
  background: #fff;
  padding-right: 46px;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont div {
    padding-right: 20px;
  }
}
.privacypolicy_cont div::-webkit-scrollbar {
  width: 13px;
}
.privacypolicy_cont div::-webkit-scrollbar-thumb {
  background-color: #121212;
  border-radius: 2px;
}
.privacypolicy_cont div::-webkit-scrollbar-track {
  margin: 0 32px;
}
.privacypolicy_cont div h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
  margin-top: 30px;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont div h2 {
    font-size: 1.8rem;
  }
}
.privacypolicy_cont div h2:first-child {
  margin-top: 0;
}
.privacypolicy_cont div p,
.privacypolicy_cont div li {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .privacypolicy_cont div p,
  .privacypolicy_cont div li {
    font-size: 1.3rem;
  }
}
.privacypolicy_cont div li {
  list-style: decimal;
  margin-left: 20px;
}
.privacypolicy_cont div ul,
.privacypolicy_cont div ol {
  margin-top: 10px;
}
.privacypolicy_cont div ol ol {
  margin-bottom: 10px;
}

input.wpcf7-form-control.wpcf7-text.inquiry-type {
  position: absolute;
  top: 0;
  left: -200vw;
}

.thanks_wrap p {
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap p {
    margin-bottom: 50px;
  }
}
.thanks_wrap .more_btn_back a {
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .thanks_wrap .more_btn_back {
    margin-bottom: 50px;
  }
}

.insta_content section,
.photograph_content section {
  padding-right: 15%;
}
@media screen and (max-width: 1024px) {
  .insta_content section,
  .photograph_content section {
    padding-right: 8%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .insta_content section,
  .photograph_content section {
    padding-inline: 5.5%;
  }
}
.insta_content section .description,
.photograph_content section .description {
  font-weight: 400;
}

.sub_title {
  color: #919191;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .sub_title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.insta1,
.photograph1 {
  background: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 767.9px) {
  .insta1,
  .photograph1 {
    padding: 60px 0;
  }
}

.insta2 {
  position: relative;
  padding: 90px 0;
}
@media screen and (max-width: 767.9px) {
  .insta2 {
    padding: 60px 0;
  }
}
.insta2::before {
  content: "";
  background-image: url(../img/insta1.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
}
.insta2 .heading2 span {
  color: #fff;
  position: relative;
}
.insta2 .heading2 {
  margin-bottom: 58px;
}
@media screen and (max-width: 767.9px) {
  .insta2 .heading2 {
    margin-bottom: 30px;
  }
}
.insta2 .description {
  color: #fff;
  position: relative;
}

.insta3 {
  padding-top: 120px;
}
@media screen and (max-width: 767.9px) {
  .insta3 {
    padding-top: 60px;
  }
}
.insta3 .heading2 {
  margin-bottom: 44px;
}
@media screen and (max-width: 767.9px) {
  .insta3 .heading2 {
    margin-bottom: 30px;
  }
}
.insta3 .description {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .insta3 .description {
    margin-bottom: 30px;
  }
}
.insta3 ul {
  gap: 10px 25px;
}
.insta3 ul li {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: solid 1px #121212;
  width: 292px;
  height: 292px;
}
@media screen and (max-width: 767.9px) {
  .insta3 ul li {
    width: 200px;
    height: 200px;
  }
}
.insta3 ul li p {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .insta3 ul li p {
    font-size: 1.8rem;
  }
}

.insta4 {
  padding-top: 140px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .insta4 {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
.insta4 .heading2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .insta4 .heading2 {
    margin-bottom: 30px;
  }
}

.case_wrapper {
  padding: 80px 0 100px;
}
@media screen and (max-width: 767.9px) {
  .case_wrapper {
    padding: 60px 0 60px;
  }
}
.case_wrapper .heading2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .case_wrapper .heading2 {
    margin-bottom: 30px;
  }
}
.case_wrapper .heading2 span::before {
  height: 6px;
}
.case_wrapper .blog-list {
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .case_wrapper .blog-list {
    margin-bottom: 60px;
  }
}
.case_wrapper .blog-list li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767.9px) {
  .case_wrapper .blog-list li {
    width: 100%;
    max-width: 375px;
  }
}
.case_wrapper .blog-list img {
  margin-bottom: 20px;
}
.case_wrapper .more_btn a {
  margin: 0 auto;
}

.insta4-2 {
  padding: 90px 0 110px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .insta4-2 {
    padding: 60px 0 60px;
  }
}
.insta4-2::before {
  content: "";
  background: #121212;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.insta4-2 .heading2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .insta4-2 .heading2 {
    margin-bottom: 30px;
  }
}
.insta4-2 .heading2 span {
  color: #fff;
}
.insta4-2 .description {
  color: #fff;
  position: relative;
}

.insta5 {
  padding: 90px 0 120px;
}
@media screen and (max-width: 767.9px) {
  .insta5 {
    padding: 60px 0 60px;
  }
}
.insta5 .heading2 {
  margin-bottom: 65px;
}
@media screen and (max-width: 767.9px) {
  .insta5 .heading2 {
    margin-bottom: 50px;
  }
}
.insta5 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .insta5 table {
    margin-bottom: 60px;
  }
}
.insta5 table thead {
  border-bottom: 20px solid transparent;
}
.insta5 table thead th {
  height: 70px;
  position: relative;
}
.insta5 table thead p {
  position: absolute;
  width: calc(100% - 16px);
  height: 100%;
  top: 0;
  right: 0;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  display: grid;
  place-content: center;
  line-height: 1.5;
  margin: 0 8px;
}
@media screen and (max-width: 1024px) {
  .insta5 table thead p {
    font-size: 1.4rem;
    margin: 0;
    width: calc(100% - 6px);
  }
}
.insta5 table thead p span {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .insta5 table thead p span {
    font-size: 1rem;
  }
}
.insta5 table th,
.insta5 table th:nth-child(1) {
  width: 28%;
}
.insta5 table th:nth-child(2) {
  width: 35%;
  margin-right: 2%;
}
.insta5 table th:nth-child(2) p {
  background: -webkit-gradient(linear, right top, left top, from(#3099a2), to(#71c086));
  background: linear-gradient(to left, #3099a2, #71c086);
  padding: 10px;
}
.insta5 table th:nth-child(3) {
  width: 35%;
  margin-left: 2%;
}
.insta5 table th:nth-child(3) p {
  background: #121212;
  color: #fff;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .insta5 table th:nth-child(3) p {
    font-size: 1.4rem;
  }
}
.insta5 table td:nth-child(1) {
  margin-right: 2%;
}
.insta5 table td:nth-child(2) {
  margin-left: 2%;
}
.insta5 table tbody {
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .insta5 table tbody {
    font-size: 1.2rem;
  }
}
.insta5 table tbody th {
  font-weight: 700;
}
.insta5 table tbody td {
  font-weight: 400;
  text-align: center;
}
.insta5 table tbody th,
.insta5 table tbody td {
  line-height: 1.5;
  height: 60px;
}
@media screen and (max-width: 1024px) {
  .insta5 table tbody th,
  .insta5 table tbody td {
    line-height: 1.5;
    height: 55px;
    vertical-align: middle;
  }
}
.insta5 ul {
  background: #1a3933;
  padding: 35px 40px 45px;
}
@media screen and (max-width: 767.9px) {
  .insta5 ul {
    padding: 20px 30px;
  }
}
.insta5 ul li {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .insta5 ul li {
    font-size: 1.5rem;
  }
}

.photograph2 {
  padding: 90px 0;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.9px) {
  .photograph2 {
    padding: 60px 0;
    margin-bottom: 0;
  }
}
.photograph2::before {
  content: "";
  background: #121212;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.photograph2 .heading2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .heading2 {
    margin-bottom: 30px;
  }
}
.photograph2 * {
  color: #fff;
}
.photograph2 .inner {
  position: relative;
  z-index: 1;
}
.photograph2 ul {
  margin-top: 90px;
  gap: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .photograph2 ul {
    margin-top: 40px;
    gap: 60px;
  }
}
.photograph2 .reel_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 70px;
  max-width: 91.5%;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_wrap {
    max-width: 100%;
  }
}
.photograph2 .reel_wrap .reel_item {
  width: 30%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 257/495;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_wrap .reel_item {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 430px) {
  .photograph2 .reel_wrap .reel_item {
    max-width: unset;
  }
}
.photograph2 .reel_wrap .reel_item .video_wrap {
  overflow: hidden;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-left: 1px;
  padding-right: 1px;
  z-index: 1;
}
.photograph2 .reel_wrap .reel_item.mockup {
  margin-right: 20px;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_wrap .reel_item.mockup {
    margin-right: auto;
  }
}
.photograph2 .reel_wrap .reel_item.mockup img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.photograph2 .reel_wrap .reel_item.mockup .video_wrap {
  width: 89%;
  height: auto;
  aspect-ratio: 225/476;
  z-index: 1;
  -webkit-mask-image: url("../img/mask.png");
  mask-image: url("../img/mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.photograph2 .reel_wrap .reel_item.mockup video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  display: block;
}
.photograph2 .reel_wrap .reel_item.mocknone .video_wrap {
  width: 86.7%;
  height: auto;
  aspect-ratio: 224/443;
  z-index: 1;
  -webkit-mask-image: none;
  mask-image: none;
}
.photograph2 .reel_wrap .reel_item.mocknone video {
  -webkit-mask-image: url("../img/mask2.png");
  mask-image: url("../img/mask2.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: relative;
  display: block;
}
.photograph2 .reel_detail {
  border-radius: 20px;
  padding: 20px 30px 40px;
  border: dashed 2px #fff;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_detail {
    padding: 20px 20px 30px;
  }
}
.photograph2 .reel_detail p {
  line-height: 2.6666666667;
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_detail p {
    font-size: 1.6rem;
    line-height: 2.5;
  }
}
.photograph2 .reel_detail .head {
  width: 200px;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_detail .head {
    width: 100%;
    font-weight: 700;
  }
  .photograph2 .reel_detail .head::after {
    content: "：";
  }
}
.photograph2 .reel_detail .description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_detail .description {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 10px;
    line-height: 1.8;
  }
}
.photograph2 .reel_detail .description::before {
  content: "：　";
}
@media screen and (max-width: 767.9px) {
  .photograph2 .reel_detail .description::before {
    content: none;
  }
}

.photograph3 {
  padding: 90px 0;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .photograph3 {
    padding: 60px 0;
  }
}
.photograph3::before {
  content: "";
  background: #121212;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.photograph3 .heading2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .photograph3 .heading2 {
    margin-bottom: 30px;
  }
}
.photograph3 * {
  color: #fff;
}
.photograph3 p {
  position: relative;
}

.photograph4 {
  background: #fff;
  padding: 110px 0 120px;
}
@media screen and (max-width: 767.9px) {
  .photograph4 {
    padding: 60px 0 80px;
  }
}
.photograph4 .heading2 {
  margin-bottom: 10px;
}
.photograph4 .sub_title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .photograph4 .sub_title {
    margin-bottom: 20px;
  }
}
.photograph4 .description {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .photograph4 .description {
    margin-bottom: 40px;
  }
}
.photograph4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul {
    gap: 40px;
  }
}
.photograph4 ul li {
  padding: 23px 52px 50px;
  border: solid 1px #cccccc;
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul li {
    padding: 20px 30px 40px;
  }
}
.photograph4 ul li h3 {
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul li h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
}
.photograph4 ul li h3::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #3099a2;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul li h3::before {
    left: -20px;
    width: 12px;
    height: 12px;
  }
}
.photograph4 ul li h4 {
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul li h4 {
    font-size: 1.6rem;
  }
}
.photograph4 ul li .description {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul li .description {
    line-height: 1.8;
  }
}
.photograph4 ul .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .photograph4 ul .flex {
    gap: 20px;
  }
}

.canmp_wrapper .description {
  font-weight: 400;
}
.canmp_wrapper .sub_heading {
  color: #121212;
  font-size: 3.8rem;
  gap: 10px;
}
@media screen and (max-width: 767.9px) {
  .canmp_wrapper .sub_heading {
    font-size: 2.4rem;
  }
}
.canmp_wrapper .cont {
  max-width: 1100px;
}

.camp1 {
  background: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 767.9px) {
  .camp1 {
    padding: 60px 0;
  }
}
.camp1 .heading2 {
  margin-bottom: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .camp1 .heading2 {
    margin-bottom: 30px;
  }
}
.camp1 .description {
  text-align: center;
}

.camp2 {
  background: #121212;
  padding: 100px 0 140px;
}
@media screen and (max-width: 767.9px) {
  .camp2 {
    padding: 60px 0 80px;
  }
}
.camp2 * {
  color: #fff;
}
.camp2 .flex {
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .camp2 .flex {
    gap: 10px;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.camp2 .flex p {
  background: -webkit-gradient(linear, right top, left top, from(#3099a2), to(#71c086));
  background: linear-gradient(to left, #3099a2, #71c086);
  padding: 10px 32px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .camp2 .flex p {
    font-size: 1.6rem;
    padding: 4px 20px;
  }
}
.camp2 h2 {
  text-align: center;
  font-size: 3.6rem;
  line-height: 1.6666666667;
  margin-bottom: 40px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .camp2 h2 {
    font-size: 2.4rem;
    line-height: 1.7142857143;
    margin-bottom: 30px;
  }
}
.camp2 .description {
  text-align: center;
}

.camp3 {
  background: #fff;
  padding: 90px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .camp3 {
    padding: 60px 0 0;
  }
}
.camp3 .heading2 {
  margin-bottom: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .camp3 .heading2 {
    margin-bottom: 30px;
  }
}
.camp3 .description {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .camp3 .description {
    margin-bottom: 30px;
  }
}
.camp3 .reel_wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 35px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.camp3 .reel_wrap::before {
  content: "";
  background: #121212;
  width: 100vw;
  height: calc(100% - 100px);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.camp3 .reel_wrap .inner {
  position: relative;
  max-width: 942px;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .camp3 .reel_wrap .inner {
    overflow: hidden;
	max-width: 300px;
  }
}
.camp3 .reel_wrap .description {
  color: #fff;
}
.camp3 .reel_wrap .flex {
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .camp3 .reel_wrap .flex {
    margin-bottom: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 430px) {
  .camp3 .reel_wrap .flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.camp3 .reel_wrap .flex .video_wrap {
  width: 31.5%;
  /*aspect-ratio: 294/630;*/
  height: auto;
  background: #121212;
}
@media screen and (max-width: 430px) {
  .camp3 .reel_wrap .flex .video_wrap {
    width: unset;
    max-width: unset;
    margin: 0 auto;
  }
}
.camp3 .reel_wrap .flex .video_wrap video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-swiper2,
.video-swiper {
  position: relative;
}
@media screen and (max-width: 430px) {
  .video-swiper2,
  .video-swiper {
    overflow: hidden;
  }
}

.camp4,
.camp7 {
  padding: 90px 0 140px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .camp4,
  .camp7 {
    padding: 60px 0 80px;
  }
}
.camp4 .cont,
.camp7 .cont {
  position: relative;
}
.camp4 .sub_heading,
.camp7 .sub_heading {
  position: absolute;
  top: 0;
  left: -50px;
}
@media screen and (max-width: 767.9px) {
  .camp4 .sub_heading,
  .camp7 .sub_heading {
    position: static;
    margin-bottom: 30px;
  }
}
.camp4 .member_item,
.camp7 .member_item {
  padding-top: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item,
  .camp7 .member_item {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.camp4 .member_item.re,
.camp7 .member_item.re {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item.re,
  .camp7 .member_item.re {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.camp4 .member_item img,
.camp7 .member_item img {
  width: 313px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 313/469;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item img,
  .camp7 .member_item img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    aspect-ratio: 313/400;
  }
}
@media screen and (max-width: 430px) {
  .camp4 .member_item img,
  .camp7 .member_item img {
    width: 100%;
    max-width: unset;
    height: auto;
    aspect-ratio: 334/400;
    -o-object-position: top;
       object-position: top;
  }
}
.camp4 .member_item .detail,
.camp7 .member_item .detail {
  background: #1a3933;
  padding: 20px 45px 30px;
  color: #fff;
  width: 490px;
  max-width: 100%;
  min-height: 370px;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item .detail,
  .camp7 .member_item .detail {
    margin-top: -50px;
    width: 100%;
    padding: 70px 30px 30px;
    min-height: auto;
  }
}
@media screen and (max-width: 430px) {
  .camp4 .member_item .detail,
  .camp7 .member_item .detail {
    margin-top: 0;
    position: relative;
    padding: 45px 26px 30px;
    z-index: 2;
  }
}
.camp4 .member_item .detail .inter,
.camp7 .member_item .detail .inter {
  font-weight: 100;
  font-size: 4.5rem;
  line-height: 1.2222222222;
  margin-bottom: 26px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item .detail .inter,
  .camp7 .member_item .detail .inter {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .camp4 .member_item .detail .inter,
  .camp7 .member_item .detail .inter {
    position: absolute;
    top: -85px;
    left: 26px;
    font-weight: 100;
    font-size: 4.5rem;
    line-height: 1.2222222222;
  }
}
.camp4 .member_item .detail .position,
.camp7 .member_item .detail .position {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item .detail .position,
  .camp7 .member_item .detail .position {
    font-size: 1.1rem;
  }
}
.camp4 .member_item .detail .name,
.camp7 .member_item .detail .name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item .detail .name,
  .camp7 .member_item .detail .name {
    font-size: 1.8rem;
  }
}
.camp4 .member_item .detail .comment,
.camp7 .member_item .detail .comment {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8571428571;
}
@media screen and (max-width: 767.9px) {
  .camp4 .member_item .detail .comment,
  .camp7 .member_item .detail .comment {
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}

.camp5 {
  padding: 100px 0 110px;
  background-image: url("../img/camp2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .camp5 {
    padding: 60px 0;
  }
}
.camp5 .cont {
  max-width: 1000px;
  gap: 90px;
}
@media screen and (max-width: 767.9px) {
  .camp5 .cont {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.camp5 h2 {
  margin-top: 10px;
}
.camp5 h2 span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 13px 30px;
  background: -webkit-gradient(linear, left top, right top, from(#71c086), to(#3099a2));
  background: linear-gradient(to right, #71c086, #3099a2);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.9px) {
  .camp5 h2 span {
    margin: 0 auto;
  }
}
.camp5 h2 span:nth-child(1) {
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .camp5 h2 span:nth-child(1) {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.camp5 h2 span:nth-child(2) {
  font-size: 4rem;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .camp5 h2 span:nth-child(2) {
    font-size: 2.8rem;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.camp5 .description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.camp6 {
  padding: 140px 0 20px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .camp6 {
    padding: 80px 0 20px;
  }
}
.camp6 .heading2 {
  margin-bottom: 16px;
}
.camp6 .camp6_sub_title {
  font-size: 2rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767.9px) {
  .camp6 .camp6_sub_title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.camp6 .camp6_sub_title::before {
  content: "";
  width: 25px;
  height: 1px;
  background: #121212;
}
.camp6 ol li,
.camp6 .camp-program_description .flex-top {
  margin-bottom: 36px;
  padding: 40px 45px;
  gap: 30px 0;
}
@media screen and (max-width: 767.9px) {
  .camp6 ol li,
  .camp6 .camp-program_description .flex-top {
    margin-bottom: 30px;
    padding: 30px 25px;
    gap: 20px 0;
  }
}
.camp6 ol li .detail,
.camp6 .camp-program_description .flex-top .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.camp6 ol li .list-title,
.camp6 .camp-program_description .flex-top .list-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .camp6 ol li .list-title,
  .camp6 .camp-program_description .flex-top .list-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.camp6 .camp6_program li {
  border: solid 1px #cccccc;
}
@media screen and (max-width: 767.9px) {
  .camp6 .camp6_program li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.camp6 .camp6_program li .day {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  width: 262px;
}
@media screen and (max-width: 767.9px) {
  .camp6 .camp6_program li .day {
    font-size: 3.2rem;
    width: 100%;
  }
}
.camp6 .camp6_program li h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .camp6 .camp6_program li h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.camp6 .camp-program_description {
  color: #fff;
}
.camp6 .camp-program_description h3 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  width: 262px;
}
@media screen and (max-width: 767.9px) {
  .camp6 .camp-program_description h3 {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    width: 100%;
  }
}
.camp6 .camp-program_description .item1 {
  background: #1a3933;
}
.camp6 .camp-program_description .item2 {
  background: #121212;
}
.camp6 .camp-program_description ul {
  margin-bottom: 10px;
}
.camp6 .camp-program_description ul li {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .camp6 .camp-program_description ul li {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767.9px) {
  .camp7 {
    padding-bottom: 40px;
  }
}
.camp7 .member_item {
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .camp7 .member_item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .camp7 .member_item img {
    margin-right: 0;
  }
}
.camp7 .member_item:nth-child(2n+1) .detail {
  background: #121212;
}
.camp7 .member_item:nth-child(2n+1) .detail .inter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767.9px) {
  .camp7 .member_item:nth-child(2n+1) img {
    margin-right: auto;
    margin-left: 0;
  }
}
.camp7 .member_item:last-child {
  margin-bottom: 50px;
}

.camp8 {
  color: #fff;
  background: #121212;
  padding: 50px 0 80px;
}
@media screen and (max-width: 767.9px) {
  .camp8 {
    padding: 20px 0 30px;
  }
}
.camp8 table {
  width: 100%;
}
.camp8 table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 0 70px;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0 50px;
    gap: 20px;
  }
}
.camp8 table tr:last-child {
  border-bottom: none;
}
.camp8 table th {
  width: 313px;
  padding-left: 50px;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .camp8 table th {
    width: 100%;
    padding-left: 0;
    font-size: 2.2rem;
  }
}
.camp8 table th:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.camp8 table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.camp8 table td .under_line {
  border-bottom: dashed 1px #fff;
}
.camp8 table td .flex {
  padding: 12px 0 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .camp8 table td .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 8px 0 15px;
  }
}
.camp8 table td .flex p:first-child {
  font-size: 2rem;
  font-weight: 700;
  width: 130px;
}
@media screen and (max-width: 767.9px) {
  .camp8 table td .flex p:first-child {
    font-size: 1.6rem;
    width: 100%;
  }
}
.camp8 table td .font-medium {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .camp8 table td .font-medium {
    font-size: 1.6rem;
  }
}
.camp8 table tr:nth-child(2) .font-medium {
  margin-bottom: 16px;
}
.camp8 table tr:nth-child(3) .font-medium {
  margin-bottom: 40px;
}
.camp8 table tr:nth-child(3) table {
  margin-top: 25px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) table {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.camp8 table tr:nth-child(3) table thead {
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
.camp8 table tr:nth-child(3) table td,
.camp8 table tr:nth-child(3) table th {
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) table td,
  .camp8 table tr:nth-child(3) table th {
    font-size: 1.4rem;
  }
}
.camp8 table tr:nth-child(3) table th {
  font-weight: 700;
  padding: 15px;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) table th {
    padding: 10px;
  }
}
.camp8 table tr:nth-child(3) table th:nth-child(1) {
  width: 140px;
  border-right: dashed 1px #fff;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) table th:nth-child(1) {
    width: 100px;
  }
}
.camp8 table tr:nth-child(3) table tr {
  border-bottom: dashed 1px #fff;
  padding: 0;
}
.camp8 table tr:nth-child(3) table td {
  padding: 15px 25px;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) table td {
    padding: 10px 15px;
  }
}
.camp8 table tr:nth-child(3) img {
  display: block;
  width: 702px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .camp8 table tr:nth-child(3) img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.camp9 {
  padding: 90px 0 130px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .camp9 {
    padding: 60px 0 80px;
  }
}
.camp9 .cont {
  max-width: 1000px;
}
.camp9 .heading2 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .camp9 .heading2 {
    margin-bottom: 40px;
  }
}
.camp9 .heading2 span span {
  font-size: 1.8rem;
  font-weight: 700;
}
.camp9 .heading2 span span::before {
  content: none;
}
.camp9 .flex {
  margin-bottom: 60px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767.9px) {
  .camp9 .flex {
    margin-bottom: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 430px) {
  .camp9 .flex {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.camp9 .flex .video_wrap {
  background: #121212;
  width: 30%;
  aspect-ratio: 300/450;
  height: auto;
}
@media screen and (max-width: 430px) {
  .camp9 .flex .video_wrap {
    width: unset;
    max-width: unset;
    margin: 0 auto;
  }
}
.camp9 .flex .video_wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.camp9 .description {
  text-align: center;
}
.camp9 .description a {
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* fadeUp */
.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fade {
  opacity: 0;
}

.page-id-15 .form table {
  padding-bottom: 0;
}

.notfound_wrap {
  padding: 100px 0;
}
@media screen and (max-width: 767.9px) {
  .notfound_wrap {
    padding: 60px 0;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #3099a2;
}

.video-swiper .swiper-pagination {
  bottom: 30px;
}

.camp3 .video-swiper2 .swiper-pagination {
  bottom: 30px;
}

.camp9 .video-swiper2 .swiper-pagination {
  bottom: 0;
}

.page_wrap {
  background: #fff;
  padding-bottom: 160px;
}
.page_wrap li {
  list-style: initial;
}
.page_wrap ul,
.page_wrap ol {
  margin-left: 1em;
}
@media screen and (max-width: 767.9px) {
  .page_wrap {
    padding-bottom: 80px;
  }
}

.page_only_title {
  padding: 200px 0;
}
@media screen and (max-width: 767.9px) {
  .page_only_title {
    padding: 100px 0 80px;
  }
}
.page_only_title h1 {
  text-align: center;
  font-size: 3.6rem;
}
@media screen and (max-width: 767.9px) {
  .page_only_title h1 {
    font-size: 2rem;
  }
}

.thanks-editmovie_content {
  max-width: 700px;
}
@media (min-width: 768px) {
  .thanks-editmovie_content .has-small-font-size {
    font-size: 1.6rem !important;
  }
}/*# sourceMappingURL=theme.css.map */