@charset "UTF-8";
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Master Style CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* ---------------------------------------------------------------------------
BEM記述方法のマニュアル的なもの
https://qiita.com/Takuan_Oishii/items/0f0d2c5dc33a9b2d9cb1

フォントサイズの単位は、pxではなく、remを使ってください。
--------------------------------------------------------------------------- */
/* CSS Import */
@import url("https://fonts.googleapis.com/css2?family=Oswald&family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Settings */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Variables CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Variables - グローバル変数の定義
-------------------------------------------- */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Variables CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Variables
-------------------------------------------- */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

FUNCTIONS CSS function & mixin

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Responsive
-------------------------------------------- */
/**
 * SVG画像をアイコンに使いたい的ないろいろ
 *
 *  [Html] SVG塗りつぶしの色をBackground-Imageとして扱うときに変更する
 * https://code.i-harness.com/ja/q/cbfa3c
 */
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Common CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Common
-------------------------------------------- */
@import url(./plugin/magnific-popup.css);
@import url(./plugin/slick-theme.css);
@import url(./plugin/slick.css);
@import url(./plugin/scroll-hint.css);
@import url(./plugin/remodal.css);
@import url(./plugin/remodal-default-theme.css);
.pagetop {
  display: inline-block;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 101;
  display: none; }
  .pagetop a {
    transition: opacity .3s ease-in-out; }
    .pagetop a:hover {
      opacity: .7; }
  .pagetop__btn {
    display: block;
    position: relative;
    width: 58px;
    height: 58px;
    background: #E6001A; }
    .pagetop__btn::before {
      position: absolute;
      content: '';
      top: 50%;
      left: 22px;
      width: 15px;
      height: 15px;
      border-top: 1px solid #FFF;
      border-right: 1px solid #FFF;
      transform: rotate(-45deg); }
  .pagetop__solution {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 58px;
    height: 158px;
    background: #E6001A;
    color: #FFF;
    font-weight: bold;
    font-size: 1.4rem;
    top: -159px;
    right: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl; }
    @media (max-width: 600px) {
      .pagetop__solution {
        font-size: 1.1rem;
        height: 108px;
        top: -109px; } }

body.cn {
  font-family: 'Noto Sans SC', sans-serif; }

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out; }

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-out; }

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

.mfp-content {
  max-width: 1000px; }
  .mfp-content .mfp-close {
    color: #FFF;
    font-size: 4rem; }

.youtube {
  width: 100%;
  height: 100%; }
  .youtube__wrapper {
    width: 100%;
    aspect-ratio: 16 / 9; }

/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Animation CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
/* Loading
-------------------------------------------- */
.loading {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  background: #FFF url(/assets/img/common/loading.gif) no-repeat center center/50px auto; }
  .preload .loading {
    opacity: 1;
    pointer-events: auto; }

.result_loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  z-index: 10;
  border-radius: 10px;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  background: #FFF url(/assets/img/common/loading.gif) no-repeat center center/50px auto; }
  .result_loading.hide {
    opacity: 0;
    pointer-events: none; }

/* アニメーション用
-------------------------------------------- */
/* ------------------------------------
【オプション】
data-na-offset="画面下からのpx数で指定"
data-na-delay="ミリ秒で指定"
------------------------------------ */
.na-slide-cover {
  position: relative; }

.na-slide-cover::before,
.na-slide-cover::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: 3;
  background: #FFF;
  transition: width 0.5s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover::after {
  top: 49.5%;
  height: 50.5%;
  transition: width 0.5s 0.2s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover.up::before,
.na-slide-cover.up::after,
.na-slide-cover.down::before,
.na-slide-cover.down::after {
  top: 0;
  left: 0;
  right: auto;
  width: 50%;
  height: 100%;
  transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover.up::after,
.na-slide-cover.down::after {
  top: 0;
  left: 0;
  right: auto;
  width: 50%;
  height: 100%;
  transition: height 0.5s 0.2s cubic-bezier(0.77, 0, 0.175, 1); }

.na-slide-cover.up::after,
.na-slide-cover.down::after {
  left: 50%; }

.na-slide-cover.down::before,
.na-slide-cover.down::after {
  top: auto;
  bottom: 0; }

.na-slide-cover.gray::before,
.na-slide-cover.gray::after {
  background: #F5F5F5; }

.na-slide-cover.dark::before,
.na-slide-cover.dark::after {
  background: #333; }

.na-slide-cover.red::before,
.na-slide-cover.red::after {
  background: #red; }

.na-slide-cover.single::before {
  height: 100%; }

.na-slide-cover.single::after {
  display: none; }

.na-slide-cover.na-anim-init::before,
.na-slide-cover.na-anim-init::after {
  width: 0; }

.na-slide-cover.up.na-anim-init::before,
.na-slide-cover.up.na-anim-init::after,
.na-slide-cover.down.na-anim-init::before,
.na-slide-cover.down.na-anim-init::after {
  width: 50%;
  height: 0; }

.na-fade-in {
  opacity: 0;
  transition: opacity .8s; }

.na-fade-in.na-anim-init {
  opacity: 1; }

.na-lift-up {
  opacity: 0;
  transform: translateY(50px);
  transition: transform .6s ease-in-out, opacity .8s ease-in-out; }

.na-lift-up.na-anim-init {
  opacity: 1;
  transform: translateY(0); }

.na-lift-down {
  opacity: 0;
  transform: translateY(-50px);
  transition: transform .6s ease-in-out, opacity .8s ease-in-out; }

.na-lift-down.na-anim-init {
  opacity: 1;
  transform: translateY(0); }

.na-scale-in {
  opacity: 0;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.5, 0, 0.3, 1.2), opacity 0.6s ease-in-out; }

.na-scale-in.na-anim-init {
  opacity: 1;
  transform: scale(1); }

.na-txt-cover {
  display: inline-block;
  position: relative;
  color: transparent;
  transition: color 0s .3s; }

.na-txt-cover.na-anim-init {
  color: #BBB; }

.na-txt-cover::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #BBB;
  transform: scaleX(0);
  transform-origin: left top; }

.na-txt-cover.white::before {
  background: #FFF; }

.na-txt-cover.black::before {
  background: #000; }

.na-txt-cover.na-anim-init::before {
  animation: txt_cover cubic-bezier(0.77, 0, 0.175, 1) 0.6s forwards; }

.na-cont-cover {
  display: inline-block;
  position: relative; }
  .na-cont-cover::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100.5%;
    height: 100.5%;
    z-index: 2;
    background: #eee;
    transform-origin: right top;
    transform: scaleX(1);
    transition: transform cubic-bezier(0.65, 0, 0.2, 1) 0.5s 0.5s; }
  .na-cont-cover.white::before {
    background: #FFF; }
  .na-cont-cover.na-anim-init::before {
    transform: scaleX(0); }

.na-img-cover-01 {
  position: relative;
  overflow: hidden;
  opacity: 0; }
  .na-img-cover-01.na-anim-init {
    opacity: 1; }
    .na-img-cover-01.na-anim-init::before {
      transform: rotate(-210deg) scaleY(0); }
  .na-img-cover-01::before {
    content: "";
    display: block;
    width: 160%;
    height: 160%;
    position: absolute;
    top: 80%;
    left: 160%;
    background: #f6f6f6;
    z-index: 3;
    transform-origin: top left;
    transform: rotate(-210deg) scaleY(1);
    transition: transform cubic-bezier(0.65, 0, 0.2, 1) 1s; }

@keyframes txt_cover {
  0% {
    transform: scaleX(0);
    transform-origin: left top; }
  49% {
    transform: scaleX(1);
    transform-origin: left top; }
  51% {
    transform: scaleX(1);
    transform-origin: right top; }
  100% {
    transform: scaleX(0);
    transform-origin: right top; } }
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/

Reset CSS

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
:root {
  font-size: 10px; }

html {
  width: 100%;
  color: #000;
  background: #FFF; }

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", HiraKakuProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: .05em;
  font-feature-settings: "palt";
  width: 100%;
  background: #FFF; }
  body.yes {
    background: #F5FBF9; }

body > img,
body > noscript > img,
body > iframe {
  display: none; }

body, div, dl, dt, dd, ul, ol, li, h1, h2,
h3, h4, h5, h6, pre, code, form, fieldset,
legend, input, textarea, p, blockquote, th, td,
figure, address, label {
  margin: 0;
  padding: 0;
  word-break: break-word;
  -webkit-overflow-scrolling: touch; }

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

thead, tbody {
  -webkit-text-size-adjust: 100%; }

table br {
  display: none !important; }

table th br,
table td br {
  display: inline !important; }

fieldset,
img {
  border: 0; }

*,
::before,
::after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch; }

/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address, caption, cite, code, dfn, em, th, var, i {
  font-style: normal;
  font-weight: normal; }

ul {
  list-style: none; }

li {
  list-style-type: none; }

caption,
th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before,
q:after {
  content: ''; }

abbr,
acronym {
  border: 0;
  font-variant: normal; }

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top; }

sub {
  vertical-align: text-bottom; }

input[type=tel],
input[type=text],
input[type=file],
input[type=email],
input[type=reset],
input[type=image],
input[type=button],
input[type=submit],
input[type=number],
input[type=password],
button[type=submit],
textarea, select, optgroup {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", HiraKakuProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none; }

input {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", HiraKakuProN, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Helvetica Neue", HelveticaNeue, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: inherit;
  border: none;
  border-radius: 0;
  outline: none; }

select {
  outline: none;
  color: #000;
  text-overflow: '';
  text-indent: .01rem;
  vertical-align: middle;
  padding: 10px;
  padding-right: 31px !important;
  border: #DDD 1px solid;
  outline: none;
  background: #FFF url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211%22%20height%3D%226%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M0%2C0V1H1V0ZM1%2C1V2H2V1ZM2%2C2V3H3V2ZM3%2C3V4H4V3ZM4%2C4V5H5V4Zm6-4V1h1V0ZM9%2C2h1V1H9ZM8%2C3H9V2H8ZM7%2C4H8V3H7ZM6%2C5H7V4H6ZM5%2C6H6V5H5Z%22%2F%3E%3C%2Fsvg%3E") no-repeat center right 10px; }
  select optgroup, select option {
    color: #000;
    outline: none; }
  select::-ms-expand {
    display: none; }
  select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000; }

textarea {
  resize: vertical; }

/*because legend doesn't inherit in IE */
legend {
  color: #333; }

img, svg {
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: auto; }

/* clearfix */
.clearfix {
  min-height: 1px; }
  .clearfix::after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    font-size: 0;
    visibility: hidden; }

.js-tab-content {
  display: none; }
  .js-tab-content.js-active {
    display: block; }

a {
  color: #000000;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
  cursor: pointer; }

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */ }

a, area, button, [role="button"], input:not([type="range"]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

#fb-root {
  display: none; }

/* Plugin */
/* Pages */
html {
  position: relative;
  font-size: 62.5%; }
  html.scroll {
    overflow: hidden; }

@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw !important; } }
@media screen and (min-width: 768px) and (max-width: 1299px) {
  html {
    font-size: 0.7692307692vw !important; } }
body {
  color: #0d2e3b;
  font-family: 'Roboto', 'IBM Plex Sans', sans-serif; }
  body.no-scroll {
    overflow: hidden; }

a {
  color: #0d2e3b; }

.pcOnly {
  display: block !important; }
  @media (max-width: 768px) {
    .pcOnly {
      display: none !important; } }

.spOnly {
  display: none !important; }
  @media (max-width: 768px) {
    .spOnly {
      display: block !important; } }

.content-inner {
  width: calc((112 / 136)*100%);
  margin: auto; }
  @media (max-width: 768px) {
    .content-inner {
      width: calc((335 / 375)*100%); } }
.content-title__jp {
  font-size: 4.8rem;
  letter-spacing: .144rem;
  font-weight: 700;
  line-height: 1; }
  @media (max-width: 768px) {
    .content-title__jp {
      font-size: 3.2rem; } }
.content-title__en {
  font-family: Roboto Condensed;
  font-size: 2rem;
  line-height: 1;
  color: #78A61A;
  margin-bottom: 2rem; }
  @media (max-width: 768px) {
    .content-title__en {
      font-size: 1.6rem;
      margin-bottom: 1rem; } }
.content__readtext {
  font-size: 1.8rem;
  line-height: calc(30 / 18);
  letter-spacing: .054rem;
  margin-top: 4rem; }
  @media (max-width: 768px) {
    .content__readtext {
      font-size: 1.6rem;
      line-height: 1.5;
      letter-spacing: .048rem;
      margin-top: 2rem; } }
.content-annotation {
  font-size: 1.3rem;
  line-height: calc(19 / 13);
  letter-spacing: .039rem;
  text-indent: -1em;
  padding-left: 1em;
  text-align: justify; }
  @media (max-width: 768px) {
    .content-annotation {
      font-size: 1.2rem;
      line-height: calc(20 / 12);
      letter-spacing: .036rem; } }
.content__mv {
  width: 100%;
  padding: 17rem 0 9rem;
  background: linear-gradient(#325f73, #002330);
  color: #fff;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center; }
  .content__mv-img {
    width: 64rem; }
  .content__mv-title__main {
    width: 52rem; }
  .content__mv-title__sub {
    font-size: 2.4rem;
    line-height: calc(34 / 24);
    letter-spacing: 0.072rem; }
  .content__mv-title__text {
    margin-top: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: calc(34.3 / 20);
    letter-spacing: 0.1rem; }
  .content__mv-title__features {
    display: flex;
    gap: 3rem;
    margin-top: 3rem; }
    .content__mv-title__features li {
      width: 14rem;
      aspect-ratio: 1/1;
      border: 1px solid #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 1.8rem;
      line-height: calc(24 / 18);
      letter-spacing: 0.054rem; }
  @media (max-width: 768px) {
    .content__mv {
      flex-direction: column-reverse;
      gap: 0;
      padding: 10rem 0 7rem; }
      .content__mv-img {
        width: calc((335 / 375)*100%); }
      .content__mv-title {
        width: calc((315 / 375)*100%);
        margin: auto; }
        .content__mv-title__main {
          width: 100%; }
        .content__mv-title__sub {
          font-size: 1.6rem;
          line-height: calc(24 / 16);
          letter-spacing: 0.048rem; }
        .content__mv-title__text {
          margin-top: 1.5rem;
          font-size: 2rem;
          line-height: calc(19 / 13);
          letter-spacing: 0.065rem; }
        .content__mv-title__features {
          display: flex;
          gap: 0;
          margin-top: 1.5rem;
          justify-content: space-between; }
          .content__mv-title__features li {
            width: calc((100/315)*100%);
            font-size: 1.3rem;
            line-height: calc(16 / 13);
            letter-spacing: 0.039rem;
            justify-content: center; } }
.content__read {
  padding-top: 12rem; }
  .content__read .content-inner {
    position: relative;
    z-index: 1; }
  .content__read__title {
    font-size: 4.8rem;
    font-weight: 700;
    display: inline-block;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #0d2e3b 30%, #78a61a 50%, #0d2e3b 70%);
    background-size: 300%;
    animation: gradation 8s infinite linear; }
  .content__read__text {
    margin-top: 3rem;
    font-size: 2.4rem;
    line-height: calc(42 / 24);
    letter-spacing: 0.072rem; }
  .content__read__img {
    margin-left: auto;
    margin-top: -10rem;
    width: calc((116 / 136)*100%); }
  @media (max-width: 768px) {
    .content__read {
      padding-top: 6rem; }
      .content__read__title {
        font-size: 3.2rem;
        line-height: calc(48 / 32);
        letter-spacing: 0.016rem; }
      .content__read__text {
        margin-top: 3rem;
        font-size: 1.8rem;
        line-height: 2;
        letter-spacing: 0.054rem; }
      .content__read__img {
        width: calc((355 / 375)*100%); } }
.content__feature {
  padding: 12rem 0;
  background: #f3f5f5; }
  .content__feature__img {
    margin-top: 4rem; }
  .content__feature .c-figScroll {
    display: none; }
  @media (max-width: 768px) {
    .content__feature {
      padding: 6rem 0 8rem; }
      .content__feature__img {
        position: relative;
        height: 50rem;
        overflow-y: scroll; }
        .content__feature__img img {
          width: auto;
          height: 100%; }
      .content__feature .c-figScroll {
        position: absolute;
        display: block;
        margin: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 18rem;
        height: 18rem;
        opacity: 1;
        visibility: visible;
        transition: .4s; }
        .content__feature .c-figScroll.isHide {
          opacity: 0;
          visibility: hidden;
          -webkit-transition: .4s;
          transition: .4s; } }
.content__about {
  padding: 12rem 0; }
  .content__about-assignment, .content__about-solution {
    position: relative;
    width: 100%;
    padding: 8rem 6rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .content__about-assignment::before, .content__about-solution::before {
      position: absolute;
      display: flex;
      align-items: center;
      padding-left: 2rem;
      height: 3.8rem;
      top: 2rem;
      left: 0;
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: .1rem;
      color: #fff; }
  .content__about-assignment {
    background: #f3f5f5;
    margin-top: 4rem; }
    .content__about-assignment::before {
      content: "現状";
      width: 12rem;
      background: url("/assets/primox/img/about_assignment_pc.webp");
      background-size: cover; }
    .content__about-assignment:after {
      position: absolute;
      content: "";
      width: 5rem;
      height: 4.3rem;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 75%);
      background: url("/assets/primox/img/read_img_arrow.webp");
      background-size: cover;
      z-index: 1; }
  .content__about-solution {
    background: #f4f9e9;
    margin-top: 2rem; }
    .content__about-solution::before {
      content: "導入後";
      width: 14rem;
      background: url("/assets/primox/img/about_solution_pc.webp");
      background-size: cover; }
    .content__about-solution .content__about-textArea-list__title::before {
      background: #78a61a !important; }
  .content__about-textArea__title {
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: .16rem; }
  .content__about-textArea-list {
    display: grid;
    gap: 3rem;
    margin-top: 3rem; }
    .content__about-textArea-list__title {
      position: relative;
      padding-left: 2.5rem;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: .054rem; }
      .content__about-textArea-list__title::before {
        position: absolute;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: #0d2e3b;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: normal;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center; }
    .content__about-textArea-list__text {
      font-size: 1.6rem;
      line-height: 1.5;
      letter-spacing: .048rem;
      margin-top: 1.5rem; }
    .content__about-textArea-list li:nth-child(1) .content__about-textArea-list__title::before {
      content: "1"; }
    .content__about-textArea-list li:nth-child(2) .content__about-textArea-list__title::before {
      content: "2"; }
    .content__about-textArea-list li:nth-child(3) .content__about-textArea-list__title::before {
      content: "3"; }
  .content__about-textArea__text {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .048rem;
    margin-top: 4rem; }
  .content__about-img {
    width: 36rem; }
  .content__about__text {
    margin-top: 4rem;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: .14rem;
    text-align: center; }
    .content__about__text span {
      color: #78A61A; }
  @media (max-width: 768px) {
    .content__about {
      padding: 8rem 0 7rem; }
      .content__about-assignment, .content__about-solution {
        padding: 7rem 2rem 6rem;
        flex-direction: column; }
        .content__about-assignment::before, .content__about-solution::before {
          height: 3.4rem;
          font-size: 1.8rem;
          letter-spacing: .09rem; }
      .content__about-assignment::before {
        width: 9.6rem;
        background: url("/assets/primox/img/about_assignment_sp.webp");
        background-size: cover; }
      .content__about-assignment:after {
        width: 4.8rem;
        height: 4rem; }
      .content__about-solution::before {
        width: 11.6rem;
        background: url("/assets/primox/img/about_solution_sp.webp");
        background-size: cover; }
      .content__about-textArea__title {
        font-size: 2.2rem;
        line-height: calc(32 / 22);
        letter-spacing: .16rem; }
      .content__about-textArea-list {
        margin-left: 0;
        gap: 2rem; }
        .content__about-textArea-list__title {
          padding-left: 2.3rem;
          font-size: 1.6rem;
          letter-spacing: .048rem; }
          .content__about-textArea-list__title::before {
            width: 1.8rem;
            height: 1.8rem;
            font-size: 1.3rem; }
        .content__about-textArea-list__text {
          font-size: 1.4rem;
          line-height: calc(22 / 14);
          letter-spacing: .042rem;
          margin-top: 1rem; }
      .content__about-textArea__text {
        font-size: 1.4rem;
        line-height: calc(24 / 14);
        letter-spacing: .042rem;
        margin-top: 3rem; }
      .content__about-img {
        width: 100%;
        margin-top: 2rem; }
      .content__about__text {
        margin-top: 2rem;
        font-size: 2rem;
        line-height: 1.7;
        letter-spacing: .1rem; } }
.content__link {
  width: 100%;
  aspect-ratio: 1360 / 400;
  background: url("/assets/primox/img/link_bgimg.webp");
  background-size: cover;
  background-color: #002330;
  color: #fff;
  display: grid;
  align-items: center; }
  .content__link .content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .content__link__text {
    font-size: 2.8rem;
    line-height: calc(48 / 24);
    letter-spacing: .084rem; }
  .content__link-btn {
    width: 34rem;
    height: 10rem;
    border: 1px solid #fff;
    border-radius: 5rem; }
    .content__link-btn a {
      position: relative;
      display: flex;
      width: 100%;
      height: 100%;
      color: #fff;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
      font-weight: 700;
      letter-spacing: .072rem;
      transition: .4s; }
      .content__link-btn a::after {
        position: absolute;
        content: "";
        width: 3.3rem;
        height: 2.2rem;
        background: url("/assets/primox/img/link_icon.webp");
        background-size: cover;
        top: 50%;
        right: 3rem;
        transform: translateY(-50%); }
      .content__link-btn a:hover {
        opacity: .7;
        transition: .4s; }
  @media (max-width: 768px) {
    .content__link {
      aspect-ratio: 375 / 300;
      background: url("/assets/primox/img/link_bgimg_sp.webp");
      background-size: cover; }
      .content__link .content-inner {
        flex-direction: column; }
      .content__link__text {
        text-align: center;
        font-size: 2rem;
        line-height: 1, 7;
        letter-spacing: 0.06rem; }
      .content__link-btn {
        width: 25.5rem;
        height: 6rem;
        border-radius: 3rem;
        margin-top: 4rem; }
        .content__link-btn a {
          font-size: 1.8rem;
          letter-spacing: .054rem; }
          .content__link-btn a::after {
            width: 2.7rem;
            height: 1.8rem; } }
.content__function {
  padding-top: 12rem; }
  .content__function-area {
    position: relative;
    width: 100%;
    aspect-ratio: 1360/420;
    display: grid;
    align-items: center;
    margin-top: 6rem;
    overflow: hidden; }
    .content__function-area.left .content__function-area-movie {
      background: url("/assets/primox/img/function_bg_left_pc.webp");
      background-size: 100%;
      left: -100%;
      transition: all .5s; }
      .content__function-area.left .content__function-area-movie.scrollin {
        left: 0; }
    .content__function-area.left .content__function-area-textBox {
      margin-left: 20.5rem;
      margin-right: auto; }
    .content__function-area.left .content__function-area__img {
      margin-left: auto;
      margin-right: 4rem; }
    .content__function-area.right .content__function-area-movie {
      background: url("/assets/primox/img/function_bg_right_pc.webp");
      background-size: 100%;
      right: -100%;
      transition: all .5s; }
      .content__function-area.right .content__function-area-movie.scrollin {
        right: 0; }
    .content__function-area.right .content__function-area-textBox {
      margin-left: auto;
      margin-right: 20.5rem; }
    .content__function-area.right .content__function-area__img {
      margin-right: auto;
      margin-left: 4rem; }
    .content__function-area-movie {
      position: absolute;
      width: calc((116 / 136)*100%);
      aspect-ratio: 1160/420;
      display: grid;
      align-items: center; }
    .content__function-area-textBox {
      width: calc((48 / 116)*100%); }
      .content__function-area-textBox__num {
        width: calc((16 / 48)*100%);
        height: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .5rem;
        font-size: 1.8rem;
        line-height: normal;
        letter-spacing: .054rem;
        border: 1px solid #0d2e3b;
        border-radius: 2.5rem; }
        .content__function-area-textBox__num span {
          font-family: Roboto Condensed;
          font-size: 4.2rem;
          line-height: normal; }
      .content__function-area-textBox__title {
        margin-top: 2rem;
        font-weight: 700;
        font-size: 2.8rem;
        line-height: 1;
        letter-spacing: .14rem; }
      .content__function-area-textBox__text {
        margin-top: 4rem;
        font-size: 1.6rem;
        line-height: calc(28 / 16);
        letter-spacing: .048rem;
        text-align: justify; }
        .content__function-area-textBox__text span {
          font-size: 2rem;
          font-weight: 700;
          color: #78a61a; }
    .content__function-area__img {
      width: calc((68 / 136)*100%);
      z-index: 1; }
  @media (max-width: 768px) {
    .content__function {
      padding-top: 6rem; }
      .content__function-area {
        aspect-ratio: auto;
        margin-top: 4rem; }
        .content__function-area.left .content__function-area-textBox, .content__function-area.right .content__function-area-textBox {
          margin: auto; }
        .content__function-area.left .content__function-area__img, .content__function-area.right .content__function-area__img {
          margin: auto; }
        .content__function-area.left .content__function-area-movie {
          background: url("/assets/primox/img/function_bg_left_sp.webp");
          background-size: 100%;
          left: -100%;
          transition: all .5s; }
          .content__function-area.left .content__function-area-movie.scrollin {
            left: 0; }
        .content__function-area.right .content__function-area-movie {
          background: url("/assets/primox/img/function_bg_right_sp.webp");
          background-size: 100%;
          right: -100%;
          transition: all .5s; }
          .content__function-area.right .content__function-area-movie.scrollin {
            right: 0; }
        .content__function-area-movie {
          position: relative;
          width: 100%;
          aspect-ratio: 375/250;
          margin-top: -2rem; }
        .content__function-area-textBox {
          width: calc((335 / 375)*100%);
          z-index: 1; }
          .content__function-area-textBox__num {
            width: calc((110 / 375)*100%);
            height: 3rem;
            font-size: 1.4rem;
            letter-spacing: .042rem;
            border-radius: 1.5rem; }
            .content__function-area-textBox__num span {
              font-family: Roboto Condensed;
              font-size: 2.4rem;
              line-height: normal; }
          .content__function-area-textBox__title {
            margin-top: 1rem;
            font-size: 2.4rem;
            line-height: 1;
            letter-spacing: .1rem; }
          .content__function-area-textBox__text {
            margin-top: 2rem;
            font-size: 1.4rem;
            line-height: calc(24 / 14);
            letter-spacing: .042rem; }
            .content__function-area-textBox__text span {
              font-size: 1.8rem; }
        .content__function-area__img {
          width: 100%;
          z-index: 1; } }
.content__option {
  padding: 12rem 0; }
  .content__option-table {
    margin-top: 6rem; }
    .content__option-table-row {
      border-top: 1px solid #b6c0c4;
      font-size: 1.6rem;
      line-height: calc(26 / 16);
      letter-spacing: .048rem; }
      .content__option-table-row:nth-child(odd) {
        background: #f3f5f6; }
      .content__option-table-row:last-child {
        border-bottom: 1px solid #b6c0c4; }
      .content__option-table-row__name {
        padding-left: 4rem;
        width: calc((250/1120)*100%);
        border-right: 1px dashed #b6c0c4; }
      .content__option-table-row__description {
        width: calc((870/1120)*100%);
        padding: 2rem 4rem 2rem 3rem;
        text-align: justify; }
  @media (max-width: 768px) {
    .content__option {
      padding: 8rem 0; }
      .content__option-table {
        margin-top: 4rem; }
        .content__option-table-row {
          font-size: 1.4rem;
          line-height: calc(20 / 14);
          letter-spacing: .042rem; }
          .content__option-table-row__name {
            padding: 0 1.5rem;
            width: calc((110/335)*100%); }
          .content__option-table-row__description {
            width: calc((225/335)*100%);
            padding: 1.6rem 1.5rem; } }
.content__price {
  padding: 12rem 0;
  background: #f3f5f5; }
  .content__price-list {
    display: flex;
    gap: 4.1rem;
    margin: 5rem 0 3rem; }
    .content__price-list-model {
      width: calc((346/1120)*100%);
      background: #fff; }
      .content__price-list-model-titleArea {
        width: 100%;
        color: #fff;
        text-align: center;
        padding: 2rem 0; }
        .content__price-list-model-titleArea__title {
          font-size: 2.8rem;
          font-weight: 700;
          line-height: normal;
          letter-spacing: .084rem; }
        .content__price-list-model-titleArea__sub {
          font-size: 1.6rem;
          line-height: normal;
          letter-spacing: .048rem; }
      .content__price-list-model-priceArea {
        padding: 4rem 3rem 5rem; }
        .content__price-list-model-priceArea-priceList {
          display: grid;
          gap: 2rem; }
          .content__price-list-model-priceArea-priceList-price {
            display: flex;
            justify-content: space-between; }
            .content__price-list-model-priceArea-priceList-price__title {
              font-size: 1.6rem;
              line-height: normal;
              letter-spacing: .048rem; }
            .content__price-list-model-priceArea-priceList-price__value {
              font-size: 1.4rem;
              line-height: normal;
              letter-spacing: .042rem; }
              .content__price-list-model-priceArea-priceList-price__value span {
                font-weight: 700;
                font-size: 2.5rem; }
            .content__price-list-model-priceArea-priceList-price__possibility {
              font-size: 2rem;
              line-height: normal;
              letter-spacing: .06rem; }
              .content__price-list-model-priceArea-priceList-price__possibility sup {
                font-size: 1.2rem; }
      .content__price-list-model-optionArea {
        margin-top: 3rem; }
        .content__price-list-model-optionArea h4 {
          font-weight: 700;
          font-size: 2.2rem;
          letter-spacing: .066rem;
          text-align: center; }
        .content__price-list-model-optionArea-list {
          width: 100%; }
          .content__price-list-model-optionArea-list li {
            position: relative;
            border-top: 1px solid #b6c0c4;
            padding: 2rem 1rem;
            font-size: 1.6rem;
            line-height: normal;
            letter-spacing: .048rem; }
            .content__price-list-model-optionArea-list li:last-child {
              border-bottom: 1px solid #b6c0c4; }
            .content__price-list-model-optionArea-list li:after {
              position: absolute;
              content: "";
              width: 2rem;
              top: 50%;
              right: 1rem;
              transform: translateY(-50%); }
            .content__price-list-model-optionArea-list li.yes:after {
              height: 2rem;
              border-radius: 50%; }
            .content__price-list-model-optionArea-list li.none:after {
              height: 1px;
              background: #0d2e3b; }
      .content__price-list-model.start .content__price-list-model-titleArea {
        background: #8dc21f; }
      .content__price-list-model.start .content__price-list-model-priceArea-priceList-price__value span {
        color: #8dc21f; }
      .content__price-list-model.start .content__price-list-model-optionArea-list .yes:after {
        border: 2px solid #8dc21f; }
      .content__price-list-model.standard .content__price-list-model-titleArea {
        background: #3c8676; }
      .content__price-list-model.standard .content__price-list-model-priceArea-priceList-price__value span {
        color: #3c8676; }
      .content__price-list-model.standard .content__price-list-model-optionArea-list .yes:after {
        border: 2px solid #3c8676; }
      .content__price-list-model.premium .content__price-list-model-titleArea {
        background: #497a8d; }
      .content__price-list-model.premium .content__price-list-model-priceArea-priceList-price__value span {
        color: #497a8d; }
      .content__price-list-model.premium .content__price-list-model-optionArea-list .yes:after {
        border: 2px solid #497a8d; }
  @media (max-width: 768px) {
    .content__price {
      padding: 6rem 0 8rem; }
      .content__price-list {
        flex-direction: column;
        gap: 3rem;
        margin-top: 4rem; }
        .content__price-list-model {
          width: 100%; }
          .content__price-list-model-titleArea {
            width: 100%;
            color: #fff;
            text-align: center; }
          .content__price-list-model.start .content__price-list-model-titleArea {
            background: #8dc21f; }
          .content__price-list-model.standard .content__price-list-model-titleArea {
            background: #3c8676; }
          .content__price-list-model.premium .content__price-list-model-titleArea {
            background: #497a8d; } }
.content__flow {
  padding: 12rem 0; }
  .content__flow-list {
    display: flex;
    margin-top: 4rem; }
    .content__flow-list li {
      width: 25%;
      border-right: 1px solid #b6c0c4;
      padding: 2rem; }
      .content__flow-list li:last-child {
        border-right: none; }
    .content__flow-list__num {
      position: relative;
      width: fit-content;
      margin: auto;
      font-size: 4.9rem;
      font-weight: 400;
      line-height: normal;
      padding-bottom: 1.5rem; }
      .content__flow-list__num p {
        font-family: Roboto Condensed; }
      .content__flow-list__num:after {
        position: absolute;
        content: "";
        width: 2rem;
        height: 1px;
        background: #8dc21f;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%); }
    .content__flow-list__img {
      margin-top: 3rem; }
    .content__flow-list-textArea {
      margin-top: 3rem; }
      .content__flow-list-textArea__title {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: normal;
        letter-spacing: .14rem;
        text-align: center; }
      .content__flow-list-textArea__text {
        margin-top: 2rem;
        text-align: justify;
        font-size: 1.6rem;
        line-height: calc(28 / 16); }
      .content__flow-list-textArea .content-annotation {
        margin-top: 2rem; }
  @media (max-width: 768px) {
    .content__flow {
      padding: 6rem 0 3rem; }
      .content__flow-list {
        flex-direction: column;
        margin-top: 0; }
        .content__flow-list li {
          width: 100%;
          border-right: 0px;
          border-bottom: 1px solid #b6c0c4;
          padding: 3rem 1rem;
          display: flex;
          justify-content: space-between;
          align-items: center; }
          .content__flow-list li:last-child {
            border-bottom: none; }
        .content__flow-list__num {
          display: flex;
          align-items: center;
          position: relative;
          width: fit-content;
          margin: unset;
          font-size: 3.2rem;
          font-weight: 400;
          padding-bottom: 0;
          gap: 3rem; }
          .content__flow-list__num p {
            position: relative; }
            .content__flow-list__num p:after {
              position: absolute;
              content: "";
              width: 1px;
              height: 2.4rem;
              background: #8dc21f;
              top: 50%;
              right: -1.5rem;
              transform: translateY(-50%); }
          .content__flow-list__num:after {
            display: none; }
        .content__flow-list-textArea {
          margin-top: 0;
          width: calc((210/335)*100%); }
          .content__flow-list-textArea__title {
            font-size: 2rem;
            letter-spacing: .1rem; }
          .content__flow-list-textArea__text {
            margin-top: 2rem;
            font-size: 1.4rem;
            line-height: calc(24 / 14);
            letter-spacing: .021rem; }
          .content__flow-list-textArea .content-annotation {
            margin-top: 2rem; }
        .content__flow-list__img {
          margin-top: 0;
          width: calc((100/335)*100%); } }
.content__faq {
  padding: 12rem 0;
  background: #f3f5f5; }
  .content__faq__faqArea {
    margin-top: 6rem; }
  .content__faq-list {
    background: #fff;
    margin-top: 2rem; }
    .content__faq-list__question {
      position: relative;
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: .066rem;
      padding: 3.5rem 14rem; }
      .content__faq-list__question span {
        position: relative; }
        .content__faq-list__question span::before {
          position: absolute;
          content: "";
          width: 3.3rem;
          height: 4rem;
          background: url("/assets/primox/img/question.webp");
          background-size: cover;
          top: 50%;
          left: -5.7rem;
          transform: translateY(-50%); }
      .content__faq-list__question::before, .content__faq-list__question::after {
        position: absolute;
        content: "";
        width: 2.2rem;
        height: .2rem;
        background: #0d2e3b;
        top: 50%;
        right: 4rem;
        transform: translateY(-50%); }
      .content__faq-list__question::after {
        transform: translate(0, -50%) rotate(-90deg);
        transition: .6s all; }
      .content__faq-list__question.open::after {
        transform: translate(0, -50%) rotate(-180deg);
        transition: .6s all; }
    .content__faq-list__answer {
      display: none;
      position: relative;
      font-size: 1.6rem;
      line-height: calc(28 / 16);
      letter-spacing: .048rem;
      padding: 3.5rem 14rem;
      border-top: 1px dashed #b6c0c4;
      text-align: justify; }
      .content__faq-list__answer::before {
        position: absolute;
        content: "";
        width: 3.4rem;
        height: 3.5rem;
        background: url("/assets/primox/img/answer.webp");
        background-size: cover;
        top: 50%;
        left: 8rem;
        transform: translateY(-50%); }
  @media (max-width: 768px) {
    .content__faq {
      padding: 6rem 0; }
      .content__faq__faqArea {
        margin-top: 4rem; }
      .content__faq-list {
        margin-top: 1rem; }
        .content__faq-list__question {
          padding: 2rem 5.75rem;
          font-size: 1.6rem;
          line-height: calc(28 / 16);
          letter-spacing: .048rem; }
          .content__faq-list__question span::before {
            width: 2.3rem;
            height: 2.7rem;
            left: -3.5rem; }
          .content__faq-list__question::before, .content__faq-list__question::after {
            width: 2rem;
            right: 2rem; }
        .content__faq-list__answer {
          padding: 2rem 2rem 2rem 5.75rem;
          font-size: 1.4rem;
          line-height: calc(24 / 14);
          letter-spacing: .042rem; }
          .content__faq-list__answer::before {
            width: 2.2rem;
            height: 2.3rem;
            top: 2.5rem;
            left: 2rem;
            transform: translateY(0%); } }
.content__contact {
  padding: 12rem 0; }
  .content__contact-cpnBox {
    margin-top: 2.5rem;
    padding: 3rem 0;
    background: #f4f9e9; }
    .content__contact-cpnBox__title {
      position: relative;
      width: fit-content;
      margin: auto;
      text-align: center;
      font-size: 2.6rem;
      font-weight: 700;
      letter-spacing: .078rem; }
      .content__contact-cpnBox__title::before, .content__contact-cpnBox__title::after {
        position: absolute;
        content: "";
        width: 1.6rem;
        height: 2.7rem;
        background: url("/assets/primox/img/contact_icon_emphasis.webp");
        background-size: cover;
        top: 50%;
        transform: translateY(-50%); }
      .content__contact-cpnBox__title::before {
        left: -2.5rem; }
      .content__contact-cpnBox__title::after {
        right: -2.5rem;
        transform: translateY(-50%) rotateY(180deg); }
    .content__contact-cpnBox__text {
      text-align: center;
      margin-top: 2rem;
      font-size: 1.8rem;
      line-height: calc(30 / 18);
      letter-spacing: .054rem; }
  .content__contact__main-form {
    margin-top: 6rem;
    display: grid;
    gap: 3rem; }
    .content__contact__main-form-row {
      display: flex;
      justify-content: space-between; }
      .content__contact__main-form-row > label {
        font-size: 1.8rem;
        font-weight: 700;
        line-height: normal;
        letter-spacing: .054rem;
        display: flex;
        align-items: center;
        gap: 1rem; }
        .content__contact__main-form-row > label > span {
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 1.8rem;
          color: #B81C22;
          border: 1px solid #B81C22; }
      .content__contact__main-form-row.checkbox-row {
        flex-direction: column;
        align-items: center; }
        .content__contact__main-form-row.checkbox-row .policy-read {
          text-align: center;
          font-size: 1.6rem;
          line-height: calc(28 / 16);
          letter-spacing: .048rem; }
          .content__contact__main-form-row.checkbox-row .policy-read a {
            text-decoration: underline; }
        .content__contact__main-form-row.checkbox-row .mwform-checkbox-field label {
          display: flex;
          gap: 1rem; }
          .content__contact__main-form-row.checkbox-row .mwform-checkbox-field label span {
            font-size: 1.6rem;
            line-height: normal;
            letter-spacing: .048rem; }
    .content__contact__main-form-content {
      width: calc((880/1120)*100%);
      display: flex;
      justify-content: space-between; }
      .content__contact__main-form-content > span,
      .content__contact__main-form-content input,
      .content__contact__main-form-content textarea {
        display: block;
        border: 1px solid #b6c0c4;
        padding: 2rem; }
      .content__contact__main-form-content > span {
        width: calc((430/880)*100%); }
        .content__contact__main-form-content > span label {
          display: flex;
          gap: 1rem; }
          .content__contact__main-form-content > span label span {
            font-size: 1.6rem;
            line-height: normal;
            letter-spacing: .048rem;
            color: #0D2E3B; }
      .content__contact__main-form-content > input,
      .content__contact__main-form-content textarea {
        width: 100%;
        font-size: 1.6rem;
        line-height: calc(28 / 16);
        letter-spacing: .048rem; }
    .content__contact__main-form-btn {
      text-align: center; }
      .content__contact__main-form-btn button {
        position: relative;
        width: 36rem;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 6rem;
        letter-spacing: .048rem;
        color: #FFFFFF;
        background: #0d2e3b;
        border-radius: 3rem;
        transition: .3s; }
        .content__contact__main-form-btn button:hover {
          background: #8dc21f;
          transition: .3s; }
        .content__contact__main-form-btn button::after {
          position: absolute;
          content: "";
          width: 1rem;
          height: 1rem;
          top: 50%;
          right: 3rem;
          transform: translateY(-50%);
          background: url("/assets/primox/img/contact_icon.webp");
          background-size: cover; }
  @media (max-width: 768px) {
    .content__contact {
      padding: 6rem 0; }
      .content__contact-cpnBox {
        margin-top: 3rem;
        padding: 3rem 2rem; }
        .content__contact-cpnBox__title {
          font-size: 2.2rem;
          letter-spacing: .066rem; }
        .content__contact-cpnBox__text {
          text-align: justify;
          margin-top: 1.5rem;
          font-size: 1.6rem;
          line-height: 1.5;
          letter-spacing: .048rem; }
      .content__contact__main-form-row {
        flex-direction: column;
        gap: 1rem; }
        .content__contact__main-form-row.checkbox-row .policy-read {
          text-align: justify; }
      .content__contact__main-form-content {
        width: 100%;
        flex-direction: column;
        gap: 1rem; }
        .content__contact__main-form-content > span {
          width: 100%; }
        .content__contact__main-form-content > input,
        .content__contact__main-form-content textarea {
          width: 100%; }
      .content__contact__main-form-btn {
        text-align: center; }
        .content__contact__main-form-btn button {
          width: 25.5rem;
          font-size: 1.4rem;
          line-height: 5rem;
          letter-spacing: .042rem;
          border-radius: 2.5rem; }
          .content__contact__main-form-btn button::after {
            right: 2rem; } }

@keyframes gradation {
  0% {
    background-position: 100% 0%; }
  50% {
    background-position: 50% 0%; }
  100% {
    background-position: 0% 0%; } }
.header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  width: 100%;
  z-index: 999;
  animation: DownAnime 0.5s forwards; }
  .header.UpMove {
    animation: UpAnime 0.5s forwards; }
  .header__logo {
    background: #fff;
    background: #fff;
    width: calc((330 / 1360)* 100%);
    aspect-ratio: 33 / 12;
    border-radius: 0 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    .header__logo img {
      width: calc((240/330)*100%); }
  .header-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 4rem; }
    .header-links-list {
      display: flex;
      gap: 4.8rem;
      padding: 2rem 4rem;
      border-radius: 3rem;
      background: rgba(255, 255, 255, 0.9); }
      .header-links-list__link {
        font-size: 1.6rem;
        font-weight: 700;
        line-height: normal;
        letter-spacing: .048rem;
        transition: .4s; }
        .header-links-list__link:hover {
          opacity: .7;
          transition: .4s; }
    .header-links__gnavBtn {
      display: none;
      position: relative;
      width: 6rem;
      aspect-ratio: 1/1;
      background: #fff;
      border-radius: 50%; }
      .header-links__gnavBtn span {
        position: absolute;
        width: 2.4rem;
        height: .14rem;
        background: #0d2e3b;
        transition: all 400ms; }
        .header-links__gnavBtn span:nth-child(1) {
          top: 1.55rem;
          left: 50%;
          transform: translateX(-50%); }
        .header-links__gnavBtn span:nth-child(2) {
          top: 2.1rem;
          left: 50%;
          transform: translateX(-50%); }
        .header-links__gnavBtn span:nth-child(3) {
          top: 2.65rem;
          left: 50%;
          transform: translateX(-50%); }
      .header-links__gnavBtn .default {
        position: absolute;
        font-family: Roboto Condensed;
        font-size: 1rem;
        line-height: normal;
        width: 100%;
        text-align: center;
        top: 3.45rem; }
      .header-links__gnavBtn .change {
        display: none; }
      .header-links__gnavBtn.open span:nth-child(1) {
        top: 2.1rem;
        left: 30%;
        transform: rotate(-30deg); }
      .header-links__gnavBtn.open span:nth-child(2) {
        display: none; }
      .header-links__gnavBtn.open span:nth-child(3) {
        top: 2.1rem;
        left: 30%;
        transform: rotate(30deg); }
    .header-links__btn a {
      color: #fff;
      display: flex;
      gap: 1rem;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 6rem;
      letter-spacing: .048rem;
      width: 18rem;
      border-radius: 3rem;
      background: linear-gradient(#8dc21f, #599900);
      align-items: center;
      justify-content: center;
      transition: .4s; }
      .header-links__btn a img {
        width: 2.1rem;
        height: 1.4rem; }
      .header-links__btn a:hover {
        opacity: .7;
        transition: .4s; }
  .header__link-sp_gnavi {
    display: none; }
    .header__link-sp_gnavi__btn {
      margin-top: 2rem; }
      .header__link-sp_gnavi__btn a {
        display: flex;
        gap: 1rem;
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 5rem;
        letter-spacing: .048rem;
        width: 18rem;
        border-radius: 2.5rem;
        background: linear-gradient(#8dc21f, #599900);
        align-items: center;
        justify-content: center;
        transition: .4s; }
        .header__link-sp_gnavi__btn a img {
          width: 2.1rem;
          height: 1.4rem; }
  .header.bg-white {
    background: #fff; }
  @media (max-width: 768px) {
    .header {
      align-items: flex-end; }
      .header__logo {
        width: calc((187 / 375)* 100%);
        height: 7rem;
        aspect-ratio: auto;
        border-radius: 0 0 2rem; }
        .header__logo img {
          width: calc((146/187)*100%); }
      .header-links {
        margin-right: 1rem; }
        .header-links-list {
          display: none; }
        .header-links__gnavBtn {
          display: block;
          box-shadow: 0px 0px 20px -5px #777777; }
        .header-links__btn a {
          flex-direction: column;
          gap: .7rem;
          font-size: 1rem;
          font-weight: 400;
          line-height: normal;
          font-family: Roboto Condensed;
          width: 6rem;
          aspect-ratio: 1/1;
          border-radius: 50%;
          align-items: center;
          justify-content: center;
          transition: .4s; }
      .header__link-sp_gnavi {
        position: fixed;
        display: block;
        width: 100%;
        height: calc(100vh - 7rem);
        transform: translateY(-120%);
        transition: transform 0.3s ease-in-out;
        padding: 3rem 2rem;
        background: #fff;
        z-index: 500; }
        .header__link-sp_gnavi-link li {
          font-size: 1.6rem;
          letter-spacing: .048rem;
          border-top: .1rem solid #dbe0e2; }
          .header__link-sp_gnavi-link li:last-child {
            border-bottom: .1rem solid #dbe0e2; }
          .header__link-sp_gnavi-link li a {
            display: block;
            width: 100%;
            padding: 2rem; }
        .header__link-sp_gnavi.open {
          transform: translateY(7rem); } }

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(-100%); } }
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100%); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.footer {
  width: 100%;
  background: #0d2e3b;
  color: #fff;
  border-top: 1px solid #fff; }
  .footer a {
    color: #fff;
    transition: .4s; }
    .footer a:hover {
      opacity: .7;
      transition: .4s; }
  .footer-content {
    padding: 4rem 0 8rem;
    display: flex;
    justify-content: space-between; }
    .footer-content__logo {
      width: 32.8rem; }
    .footer-content-list {
      display: flex;
      gap: 6rem; }
    .footer-content-links {
      display: grid;
      gap: 2.5rem; }
      .footer-content-links__list {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: .048rem; }
      .footer-content-links__btn a {
        display: flex;
        gap: 1rem;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 6rem;
        letter-spacing: .048rem;
        width: 18rem;
        border-radius: 3rem;
        background: linear-gradient(#8dc21f, #599900);
        align-items: center;
        justify-content: center;
        transition: .4s; }
        .footer-content-links__btn a img {
          width: 2.1rem;
          height: 1.4rem; }
    .footer-content-under {
      padding: 2rem 0 3rem;
      border-top: .1rem solid #49626c; }
      .footer-content-under .content-inner {
        display: flex;
        align-items: center;
        justify-content: space-between; }
      .footer-content-under-list {
        display: flex;
        gap: 3rem; }
        .footer-content-under-list__link {
          font-size: 1.4rem;
          letter-spacing: .042rem;
          display: flex;
          align-items: center;
          gap: 1rem; }
          .footer-content-under-list__link img {
            width: 1.2rem;
            height: 1.2rem; }
      .footer-content-under__copyright {
        font-size: 1.2rem;
        letter-spacing: .036rem; }
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      gap: 3rem;
      padding: 4rem 0 5rem; }
      .footer-content__logo {
        width: 25.5rem; }
      .footer-content-list {
        flex-direction: column;
        gap: 2rem; }
      .footer-content-links {
        gap: 1.5rem 2rem; }
        .footer-content-links__btn a {
          line-height: 5rem;
          border-radius: 2.5rem; }
      .footer-content-under .content-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4rem; }
      .footer-content-under-list {
        gap: 2rem;
        flex-wrap: wrap; } }

/*# sourceMappingURL=style_primox.css.map */
