@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* Scss Document */
/* Scss Document */
:root {
  --placeholder: #afafaf;
  --formInputHeight:28px;
}

input:not([type=range]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  display: block;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: 100%;
  height: calc(var(--formInputHeight) + 20px);
  box-sizing: border-box;
  padding: 10px 28px;
  border: 1px solid #5A5A5A;
  color: #333;
  background: #FFF;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: calc((var(--formInputHeight) + 20px) / 2);
  line-height: var(--formInputHeight);
}
@media (max-width: 520px) {
  input:not([type=range]),
  textarea,
  select {
    height: calc(var(--formInputHeight) + 10px + 20px);
  }
  input:not([type=range]):active,
  textarea:active,
  select:active {
    line-height: calc(var(--formInputHeight) + 10px - 2px);
    font-size: 22px;
  }
}
input:not([type=range]):not(.filled),
textarea:not(.filled),
select:not(.filled) {
  background: rgba(29, 32, 136, 0.05);
}

select {
  border-radius: calc(var(--radius) / 2);
}
select option[value=""] {
  display: none;
}
select.empty {
  color: var(--placeholder);
}
select::-ms-expand {
  display: none;
}

textarea {
  min-height: 12rem;
  line-height: 1.5;
}

label {
  display: inline-flex;
  margin-right: 2rem;
  height: clac(var(--formInputHeight)20px);
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
label input {
  display: none !important;
}
label input + .txt,
label input + .mwform-checkbox-field-text,
label input + .mwform-radio-field-text {
  padding-left: 36px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: #333;
}
label input + .txt::before, label input + .txt::after,
label input + .mwform-checkbox-field-text::before,
label input + .mwform-checkbox-field-text::after,
label input + .mwform-radio-field-text::before,
label input + .mwform-radio-field-text::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  content: "";
  box-sizing: border-box;
}
label input + .txt::before,
label input + .mwform-checkbox-field-text::before,
label input + .mwform-radio-field-text::before {
  width: 24px;
  height: 24px;
  border: 1px solid #5A5A5A;
  background: #F7F7F7;
  border-radius: calc(var(--radius) / 2);
}
label input[type=radio] + .txt::before,
label input[type=radio] + .txt::after,
label input[type=radio] + .mwform-radio-field-text::before,
label input[type=radio] + .mwform-radio-field-text::after {
  border-radius: 50%;
}
label input[type=radio] + .txt::after,
label input[type=radio] + .mwform-radio-field-text::after {
  width: 10px;
  height: 10px;
  left: 4px;
  background: var(--primarycolor);
}
label input[type=checkbox] + .txt::before,
label input[type=checkbox] + .mwform-checkbox-field-text::before {
  border-radius: calc(var(--radius) / 2);
}
label input[type=checkbox] + .txt::after,
label input[type=checkbox] + .mwform-checkbox-field-text::after {
  width: 14px;
  height: 8px;
  border: 3px solid var(--primarycolor);
  border-top: 0;
  border-right: 0;
  left: 6px;
  bottom: 4px;
  transform: rotate(-45deg);
}
label input[type=checkbox].nomark + .txt,
label input[type=checkbox].nomark + .mwform-checkbox-field-text,
label input[type=checkbox].nomark + .mwform-radio-field-text {
  padding: 0;
  min-width: 80px;
  justify-content: center;
  height: calc(var(--buttonheight) * 3 / 4);
  border-radius: calc(var(--buttonheight) * 3 / 8);
  background: #FFF;
  border: 1px solid #5A5A5A;
  color: #5A5A5A;
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 0.86rem;
}
label input[type=checkbox].nomark + .txt::before, label input[type=checkbox].nomark + .txt::after,
label input[type=checkbox].nomark + .mwform-checkbox-field-text::before,
label input[type=checkbox].nomark + .mwform-checkbox-field-text::after,
label input[type=checkbox].nomark + .mwform-radio-field-text::before,
label input[type=checkbox].nomark + .mwform-radio-field-text::after {
  display: none !important;
}
label input[type=checkbox].nomark:checked + .txt,
label input[type=checkbox].nomark:checked + .mwform-checkbox-field-text,
label input[type=checkbox].nomark:checked + .mwform-radio-field-text {
  background: var(--secondarycolor);
  border: 1px solid var(--secondarycolor);
  color: #FFF;
}
label input:not(:checked) + .txt::after,
label input:not(:checked) + .mwform-checkbox-field-text::after,
label input:not(:checked) + .mwform-radio-field-text::after {
  display: none;
}

button {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  background: var(--primarycolor);
}

button:not(:disabled),
input[type=button]:not(:disabled) {
  cursor: pointer;
}

.textarea_wrap {
  position: relative;
  width: 100%;
}
.textarea_wrap .placeholder {
  pointer-events: none;
  color: #5A5A5A;
  box-sizing: border-box;
  padding: 10px 28px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.textarea_wrap textarea:not(.empty) + .placeholder,
.textarea_wrap textarea:focus + .placeholder {
  display: none;
}

.select_wrap {
  position: relative;
}
.select_wrap select {
  padding-right: 4rem;
}
.select_wrap.free {
  width: -moz-fit-content;
  width: fit-content;
}
.select_wrap.free select {
  min-width: 120px;
}
.select_wrap::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 0;
  right: 1rem;
  pointer-events: none;
  border-width: 4px;
  border-style: solid;
  border-color: #5A5A5A transparent transparent transparent;
  width: 0;
  height: 0;
  margin: auto;
}

::-moz-placeholder {
  color: var(--placeholder);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: calc(var(--formInputHeight) - 2px);
  font-size: 1rem;
}

::placeholder {
  color: var(--placeholder);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: calc(var(--formInputHeight) - 2px);
  font-size: 1rem;
}
@media (max-width: 520px) {
  ::-moz-placeholder {
    font-size: 14px;
    line-height: 34px;
  }
  ::placeholder {
    font-size: 14px;
    line-height: 34px;
  }
}

.part {
  margin: 0 auto 20px auto;
  max-width: 640px;
}
.part > .label {
  margin-bottom: 0.5rem;
  box-sizing: border-box;
  font-size: 0.86rem;
}
.part .w100p {
  width: 100%;
}
.part .w50p {
  width: 50%;
}
.part .w70p {
  width: 70%;
}
.part .cont {
  position: relative;
}
.part .cont .example {
  position: absolute;
  bottom: -1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 0.86rem;
  color: #5A5A5A;
}
.part .cont .example::before {
  content: "記入例";
  display: block;
  width: 60px;
}
.part.required > .label::after {
  width: 40px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #DC3832;
  color: #FFF;
  font-size: 0.86rem;
  content: "必須";
}
.part.part_birthday .flex input {
  width: 100px;
}
.part.part_agree .cont {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .part {
    margin-bottom: 40px;
    box-sizing: border-box;
    position: relative;
  }
}
@media (min-width: 960px) {
  .part {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .part > .label {
    width: 140px;
    padding-top: 14px;
    line-height: 1.5;
    position: absolute;
    top: 0;
    left: -140px;
  }
  .part > .cont {
    width: 100%;
  }
}

.mw_wp_form_confirm .part .cont .example {
  display: none;
}
.mw_wp_form_confirm .part .cont .red {
  display: none;
}
@media (min-width: 960px) {
  .mw_wp_form_confirm .part > .label {
    padding-top: 0;
  }
}

.steps {
  max-width: 324px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.steps::before, .steps::after {
  width: calc((100% - 144px - 80px) / 2);
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  background: #5A5A5A;
}
.steps::before {
  left: 68px;
}
.steps::after {
  right: 68px;
}
.steps .step {
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: normal;
  color: #5A5A5A;
}

.mw_wp_form.mw_wp_form_input .steps .step_input {
  color: #333;
}
.mw_wp_form.mw_wp_form_confirm .steps .step_confirm {
  color: #333;
}
.mw_wp_form.mw_wp_form_complete .steps .step_complete {
  color: #333;
}
.mw_wp_form:not(.mw_wp_form_confirm) .for_confirm {
  display: none;
}
.mw_wp_form:not(.mw_wp_form_input) .for_input {
  display: none;
}
.mw_wp_form:not(.mw_wp_form_complete) .for_complete {
  display: none;
}
.mw_wp_form .to_link {
  margin: 40px auto;
  flex-direction: column;
  grid-gap: 10px;
}

.mw_wp_form_confirm .part {
  margin-bottom: 4rem;
}
.mw_wp_form_confirm .with_label {
  padding-top: 3rem;
}
.mw_wp_form_confirm .with_label .label {
  transform: translate(0, 0) !important;
  top: 0;
  padding: 0 !important;
}
.mw_wp_form_confirm .not_for_confirm {
  display: none;
}

.privacy_txt_wrap {
  height: 180px;
  padding: 30px;
  overflow: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  background: #F7F7F7;
}
.privacy_txt_wrap::-webkit-scrollbar {
  width: 8px;
  background: #5A5A5A;
}
.privacy_txt_wrap::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #333;
}

.p-country-name {
  display: none !important;
}

/* Scss Document */
/* Scss Document */
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}

:root {
  --maxWidth1:1080px;
  --maxWidth2:840px;
  --maxWidth3:568px;
  --maxWidth4: calc(100vw - var(--cont_margin) * 2);
  --headHeight:60px;
  --buttonHeight:48px;
  --cont_margin: var(--space2);
  --hamburgerSize: var(--headHeight);
  --breakPoint1:520px;
  --breakPoint2:768px;
  --breakPoint3:960px;
  --breakPoint4:640px;
  --breakPoint5:1440px;
  --breakPoint6:1280px;
  --primaryColor:#DC3832;
  --secondaryColor:#333333;
  --tertiaryColor:#999999;
  --textColor:#333;
  --linkColor: var(--primaryColor);
  --bodyColor:#FFF;
  --colorWeakGray:#F7F7F7;
  --spaceBase:10px;
  --space1: calc(var(--spaceBase) * 1);
  --space2: calc(var(--spaceBase) * 2);
  --space3: calc(var(--spaceBase) * 3);
  --space4: calc(var(--spaceBase) * 4);
  --space5: calc(var(--spaceBase) * 8);
  --animationDuration:0.33s;
  --fontSizeBase:calc((100vw - 40px) / 24);
  --fontSize_n: var(--fontSizeBase);
  --fontSize_s: calc(var(--fontSizeBase) * 0.86);
  --fontSize_ss: calc(var(--fontSizeBase) * 0.72);
  --fontSize_l: calc(var(--fontSizeBase) * 1.25);
  --fontSize_ll: calc(var(--fontSizeBase) * 1.5);
  --radius:4px;
  --columnGap: var(--space3);
  --rowGap: var(--space3);
}

@media (min-width: 768px) {
  :root {
    --headHeight:100px;
    --cont_margin: var(--space3) ;
  }
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../plugins/fontawesome/webfonts/fa-solid-900.ttf") format("woff2"), url("../plugins/fontawesome/webfonts/fa-solid-900.woff2") format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("../plugins/fontawesome/webfonts/fa-brands-400.ttf") format("woff2"), url("../plugins/fontawesome/webfonts/fa-brands-400.woff2") format("truetype");
}
body,
html {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  transition: none !important;
  font-size: var(--fontSizeBase);
  scroll-behavior: smooth;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
}

@media (min-width: 521px) {
  :root {
    --fontSizeBase: calc((100vw - 80px) / 48);
  }
}
@media (min-width: 640px) {
  :root {
    --fontSizeBase: calc((100vw - 80px) / 56);
  }
}
@media (min-width: 768px) {
  :root {
    --fontSizeBase: calc((100vw - 80px) / 68);
    --columnGap: var(--space4);
    --rowGap: var(--space4);
  }
}
@media (min-width: 960px) {
  :root {
    --fontSizeBase: 16px;
  }
}
@media (max-width: 1440px) and (-webkit-max-device-pixel-ratio: 1.8), (max-width: 1440px) and (max-resolution: 1.8dppx), (-webkit-max-device-pixel-ratio: 1.8) {
  :root {
    --cont_margin: var(--space4);
    --fontSizeBase: 14px;
  }
}
html {
  height: -webkit-fill-available;
}

body {
  background: #FFF;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  color: var(--textcolor);
  word-wrap: break-word;
  min-height: -webkit-fill-available;
  position: relative;
  scroll-margin-top: var(--headHeight);
}

div,
p,
img,
iframe {
  padding: 0;
  margin: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
}

h1,
.h1 {
  font-size: 3rem;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}

h2,
.h2 {
  font-size: 1.7rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 3rem;
  }
}

h3,
.h3 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 1.5rem;
  }
}

h4,
.h4 {
  font-size: 1.2rem;
}

h5,
.h5 {
  font-size: 1.1rem;
}

a {
  text-decoration: underline;
  color: var(--linkColor);
}
a.blank::after {
  font-family: "Font Awesome 6 Free";
  content: "\f08e";
  margin-left: var(--space1);
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  line-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  max-width: 100%;
}

.fit_image {
  position: relative;
}
.fit_image img {
  width: 100%;
  height: auto;
}

.photo .bg {
  height: 0;
  padding-top: 66%;
  background-color: var(--colorWeakGray);
  background-image: url(../images/common/thumb.jpg);
}

.video video {
  width: 100%;
  height: auto;
}

figure {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
figure img {
  max-width: 100%;
  height: auto !important;
}
figure figcaption {
  font-size: 0.86rem;
}
figure.bridge {
  width: 100vw;
  height: 50vh;
  max-height: 320px;
  background: #5A5A5A;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
figure.bridge img {
  width: 100%;
  height: auto;
  max-width: none;
}
@media (min-height: 641px) and (max-aspect-ratio: 3/2) {
  figure.bridge img {
    height: 100% !important;
    width: auto;
  }
}
@media (orientation: portrait) {
  figure.bridge {
    height: 30vh;
  }
}

picture {
  width: 100%;
  max-width: 100%;
}
picture source,
picture img {
  width: 100%;
}

span {
  display: inline-block;
}

.with_comma:not(:last-child)::after {
  content: "、";
}

sub {
  vertical-align: baseline;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: ".";
  /* 新しい要素を作る */
  display: block;
  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}
table td,
table th {
  padding: var(--space1) var(--space2);
}
table td .inner,
table th .inner {
  display: flex;
  align-items: center;
}
table th {
  text-align: left;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
table thead {
  font-size: 0.8rem;
  border-bottom: 1px solid #5A5A5A;
}
table tbody th {
  font-size: 0.86rem;
  min-width: 80px;
}
table tr:not(:last-child) {
  border-bottom: 1px solid #5A5A5A;
}

.a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.a > * {
  pointer-events: none;
}
.a:not(.disabled) {
  cursor: pointer;
}
.a:not(.disabled) > * {
  cursor: pointer;
}

.nw {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.b {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
}

.w40 {
  width: 40px !important;
}

.w60 {
  width: 60px !important;
}

.w80 {
  width: 80px !important;
}

.w100 {
  width: 100px !important;
}

.w120 {
  width: 120px !important;
}

.w140 {
  width: 140px !important;
}

.w160 {
  width: 160px !important;
}

.w180 {
  width: 180px !important;
}

.over100 {
  width: 100vw !important;
  transform: translateX(calc(-1 * var(--cont_margin)));
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.ml10 {
  margin-left: 1rem !important;
}

.mr10 {
  margin-right: 1rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.caption {
  font-size: 0.9rem;
  line-height: 1.5;
}

.caption_wrap {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.caption_wrap .caption:not(:last-child) {
  margin-bottom: 5px;
}

.text {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .text {
    line-height: 2;
  }
}

.mini {
  font-size: 0.85rem;
  position: relative;
}
@media (min-width: 768px) {
  .mini {
    font-size: 1rem;
  }
}

.red {
  color: #DC3832;
}

.blue {
  color: var(--primaryColor);
}

.underline {
  text-decoration: underline;
}

.title_wrap .title .eng {
  color: var(--primaryColor);
}
.title_wrap .title.white .eng {
  color: #FFF !important;
}
.title_wrap .title.white .ja {
  color: #FFF;
}
@media (min-width: 768px) {
  .title_wrap .title.h2 {
    font-size: 2.8rem;
    letter-spacing: 0.02rem;
  }
}

.box_wrap,
.box_wrap_slendar,
.box_wrap_minimum,
.container {
  position: relative;
  margin: 0 auto;
  width: calc(100% - var(--cont_margin) * 2);
  box-sizing: border-box;
  --wrapMaxWidth: var(--maxWidth1);
  max-width: var(--wrapMaxWidth);
}

.box_wrap_minimum {
  --wrapMaxWidth: var(--maxWidth3);
}

.box_wrap_slendar {
  --wrapMaxWidth: var(--maxWidth2);
}

.container {
  --wrapMaxWidth: var(--maxWidth4);
}

.section {
  position: relative;
  width: 100%;
}
.section.section_wblue {
  background: rgba(29, 32, 136, 0.05);
}
.section.section_cont_sb_blue {
  padding-bottom: 0;
}
.section.section_cont_sb_blue .section_body_wrap {
  padding-top: var(--space5);
  padding-bottom: var(--space5);
  background: rgba(29, 32, 136, 0.05);
}
.section.section_cont_sb_dblue {
  padding-bottom: 0;
}
.section.section_cont_sb_dblue .section_body_wrap {
  padding-top: var(--space5);
  padding-bottom: var(--space5);
  background: linear-gradient(20deg, #1D2088 0%, #1D2088 30%, #00AFEC);
}
.section.section_fit_height {
  min-height: 100vh;
  height: 100%;
  box-sizing: border-box;
}
.section.section_cont {
  padding-top: var(--space4);
  padding-bottom: var(--space4);
}
@media (min-width: 960px) {
  .section.section_cont {
    padding-top: var(--space5);
    padding-bottom: var(--space5);
  }
}
.section.section_cont.section_cont_pt0 {
  padding-top: 0 !important;
}
.section.section_cont.section_cont_pb0 {
  padding-bottom: 0 !important;
}
.section.section_cont.bg_gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colorWeakGray);
  z-index: -1;
}
.section.section_scroller_sticky {
  width: 100vw;
  padding-top: 0;
  padding-bottom: 0;
}
.section.section_scroller_sticky .section_body_wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  padding-top: var(--space4);
  padding-bottom: var(--space4);
  overflow: hidden;
}
.section.section_scroller_sticky .box_wrap {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.section .section_title_wrap {
  margin-bottom: var(--space3);
}
.section .section_title_wrap .title_wrap .title .eng {
  color: var(--primaryColor);
  margin-bottom: 5px;
}
.section .section_title_wrap .section_text {
  margin-top: calc(var(--space4) * 1.2);
}
@media (min-width: 768px) {
  .section .section_title_wrap .title_wrap .title {
    display: flex;
    align-items: center;
    grid-gap: var(--space2);
  }
  .section .section_title_wrap .title_wrap .title .eng {
    margin-bottom: 0;
  }
}
.section.section_cont_sub .section_title_wrap {
  margin-bottom: calc(var(--space4) * 1.5);
}

.tc {
  text-align: center !important;
}

.tr {
  text-align: right !important;
}

.tl {
  text-align: left !important;
}

@media (max-width: 520px) {
  .tl_for_sp {
    text-align: left !important;
  }
}
@media (min-width: 521px) {
  .for_sp {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .not_for_sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .for_device {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .not_for_device {
    display: none !important;
  }
}

@media (max-width: 959px) {
  .for_pc {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .not_for_pc {
    display: none !important;
  }
}

.fixed_center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.radius {
  border-radius: var(--radius);
}

.icon {
  width: 100%;
  height: 100%;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.fixed_center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.movie {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 56.25%;
}
.movie > .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.movie > .inner video {
  width: 100%;
  height: auto;
}

.movie > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.vertical_adjust_wrap {
  display: flex;
  flex-direction: column;
}
.vertical_adjust_wrap .vertical_adjust_margin {
  margin-bottom: auto;
}

.gmap {
  position: relative;
  padding-top: 80%;
  background: #5A5A5A;
}

.eng {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.mincho {
  font-family: "Times", "Noto Serif JP", serif;
}

.to_pagetop {
  top: var(--space5);
  bottom: auto;
  left: auto;
  right: var(--space1);
  width: 40px;
}
@media (min-width: 768px) {
  .to_pagetop {
    width: 80px;
  }
}
.to_pagetop .a {
  color: #FFF;
}
.to_pagetop .bar {
  height: 80px;
  background: rgba(255, 255, 255, 0.33);
}
.to_pagetop .bar::after {
  background: #FFF;
}

.to_scroll {
  top: auto;
  bottom: var(--space2);
  left: auto;
  right: var(--space2);
  width: 40px;
}
.to_scroll .bar {
  height: 80px;
}

.animate:not(.active),
.effect:not(.active) {
  transform: translateY(30px);
  opacity: 0;
  filter: Alpha(opacity=0);
}
.animate.active,
.effect.active {
  transition: calc(var(--animationDuration) * 2) transform, calc(var(--animationDuration) * 2) opacity;
}
.animate.block:not(.active),
.effect.block:not(.active) {
  transform: translateY(0);
  opacity: 1;
  filter: Alpha(opacity=100);
}
.animate.block:not(.active) > *,
.effect.block:not(.active) > * {
  transform: translateY(100px);
  opacity: 0;
  filter: Alpha(opacity=0);
}
.animate.block.active > *,
.effect.block.active > * {
  transition: calc(var(--animationDuration) * 2) transform, calc(var(--animationDuration) * 2) opacity;
}

.to_link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: var(--space2);
  margin: var(--space2) auto;
}
.to_link.tl {
  justify-content: flex-start;
}
.to_link.tc {
  justify-content: center;
}
.to_link.tr {
  justify-content: flex-end;
}
.to_link.to_link_more .txt::before {
  content: "View More";
}
.to_link .a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  grid-gap: 0 var(--space1);
  width: -moz-fit-content;
  width: fit-content;
  max-width: 400px;
  min-width: 160px;
  height: var(--buttonHeight);
  background: var(--primaryColor);
  border-radius: calc(var(--buttonHeight) / 2);
  text-decoration: none;
  cursor: pointer;
  padding: 0 var(--space4);
  transition: var(--animationDuration) color, var(--animationDuration) background;
  position: relative;
  overflow: hidden;
  letter-spacing: normal;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
  color: #FFF;
}
.to_link .a > * {
  z-index: 1;
}
.to_link .a > *:not(.fixed_center) {
  position: relative;
}
.to_link .a .txt,
.to_link .a .category {
  font-size: 1;
}
@media (max-width: 520px) {
  .to_link .a .txt,
  .to_link .a .category {
    font-size: 0.9rem;
  }
}
.to_link .a .icon {
  width: 24px;
  height: 24px;
}
.to_link .a .icon svg * {
  fill: var(--primaryColor) !important;
}
.to_link .a .arrow {
  width: 24px;
  height: 24px;
}
.to_link .a.white {
  background: #FFF;
  color: var(--primaryColor);
}
.to_link .a.white .icon svg * {
  fill: #FFF !important;
}
.to_link .a.border {
  border: 1px solid var(--primaryColor);
  background: #FFF;
  color: var(--primaryColor);
}
.to_link .a.border .icon svg * {
  fill: var(--primaryColor) !important;
}
.to_link .a.border.white {
  border: 1px solid #FFF;
  background: var(--primaryColor);
  color: #FFF;
}
.to_link .a.border.white .icon svg * {
  fill: #FFF !important;
}
.to_link .a.text_link {
  border: 0;
  text-decoration: underline;
  color: var(--primaryColor);
  min-width: 0;
  max-width: none;
  height: auto;
  border-radius: 0;
  line-height: 2;
  background: none;
}
.to_link .a.text_link::before, .to_link .a.text_link::after {
  display: none;
}
@media (max-width: 520px) {
  .to_link.tc_for_sp {
    justify-content: center;
  }
}

.to_load_more .a .txt::before {
  content: "もっと読み込む";
}
.to_load_more .a::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-width: 1px;
  border-bottom-color: #FFF;
  border-right-color: #FFF;
  position: relative;
  top: -2px;
}

.to_text_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  grid-gap: var(--space2);
}
.to_text_link.tl {
  justify-content: flex-start;
}
.to_text_link.tc {
  justify-content: center;
}
.to_text_link .a {
  width: auto;
  color: var(--secondaryColor);
}
.to_text_link.to_return .a {
  overflow: visible;
  align-items: center;
  grid-gap: var(--space1);
  line-height: 15.96px;
  text-decoration: none;
}
.to_text_link.to_return .a::before {
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  width: 12px;
  height: 12px;
  content: "";
  border-left-color: var(--secondaryColor);
  border-bottom-color: var(--secondaryColor);
  transition: var(--animationDuration) left;
}

.btns {
  display: flex;
  align-items: center;
  grid-gap: var(--space2);
  justify-content: flex-start;
  letter-spacing: 0.025rem;
}
.btns.tc {
  justify-content: center;
}
.btns.sns .btn {
  width: var(--buttonHeight);
  height: var(--buttonHeight);
}
.btns.sns .btn .a {
  text-decoration: none;
}
.btns.sns .btn .icon {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btns.sns .btn[key=facebook] .a {
  color: #3B5998;
}
.btns.sns .btn[key=twitter] .a {
  color: #00acee;
}
.btns.sns .btn[key=instagram] .a {
  color: #333;
}
.btns.btns_cont_move .a {
  background: #000;
  color: #FFF;
  text-decoration: none;
  position: relative;
}
.btns.btns_cont_move .a .bg {
  opacity: 0.8;
  filter: Alpha(opacity=80);
  padding-top: 60%;
  height: 0;
  transition: var(--animationDuration) opacity;
}
.btns.btns_cont_move .a .inner {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btns.btns_cont_move .a .icon {
  width: 12px;
  height: 12px;
  right: var(--space1);
  top: var(--space1);
  bottom: auto;
  left: auto;
}
.btns.btns_cont_move .a .icon svg * {
  fill: #FFF !important;
}
.btns.btns_move_archives {
  width: 100%;
  justify-content: space-between;
  margin-top: var(--space5);
}
.btns.btns_move_archives .btn {
  margin-bottom: 0;
  max-width: 160px;
}
.btns.btns_move_archives .btn .a {
  background: #0081CC;
  height: calc(var(--buttonHeight) * 3 / 4);
  color: #FFF;
  padding: 0 var(--space1);
  box-sizing: border-box;
  text-decoration: none;
}
.btns.btns_move_archives .btn .a .txt {
  font-size: 0.66rem;
  text-align: center;
}
.btns.btns_move_archives .btn div.a {
  background: #5A5A5A;
  opacity: 0.5;
  filter: Alpha(opacity=50);
}
.btns.btns_move_archives .btn.btn_prev .a .txt::before {
  content: "〈 前へ";
}
.btns.btns_move_archives .btn.btn_next .a .txt::before {
  content: "次へ";
}
.btns.btns_move_archives .btn.btn_next .a .txt::after {
  content: " 〉";
}

.section_cont_move .section_title_wrap {
  margin-bottom: var(--space4) !important;
}
.section_cont_move .section_title_wrap .title_wrap {
  color: #CCC;
}
.section_cont_move .btns {
  grid-gap: 0;
  justify-content: center;
}
@media (min-width: 768px) {
  .section_cont_move .btns {
    grid-gap: var(--space4);
  }
}
.section_cont_move .btns .btn {
  height: 200px;
  width: 100%;
  flex: 1;
  max-width: 360px;
}
.section_cont_move .btns .btn .a {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: var(--space2);
  text-decoration: none;
  color: #FFF;
}
.section_cont_move .btns .btn .a .h1 {
  font-size: 2rem;
}
.section_cont_move .btns .btn .a .ex {
  font-size: 0.72rem;
}
.section_cont_move .btns .btn[key=bf] .a {
  background: #1D2088;
}
.section_cont_move .btns .btn[key=project] .a {
  background: #0081CC;
}
.section_cont_move .btns .btn[key=solution] .a {
  background: #00AFEC;
}
@media (max-width: 767px) {
  .section_cont_move .btns .btn {
    height: 180px;
  }
  .section_cont_move .btns .btn .a .h1 {
    font-size: 1.2rem;
  }
  .section_cont_move .btns .btn .a .ex {
    font-size: 0.86rem;
  }
}
@media (min-width: 521px) {
  .section_cont_move .btns {
    grid-gap: var(--space2);
  }
}

.share {
  margin: var(--space3) auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.share .sns {
  grid-gap: var(--space1);
}
.share .sns .btn {
  width: var(--buttonHeight);
  height: var(--buttonHeight);
  margin: 0;
  flex-wrap: wrap;
}
.share .sns .btn .icon {
  width: calc(var(--buttonHeight) / 2);
  height: calc(var(--buttonHeight) / 2);
  font-size: calc(var(--buttonHeight) * 1 / 3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: "Font Awesome 6 Brands";
  color: var(--primaryColor);
}
.share .sns .btn .a {
  box-sizing: content-box;
}
.share .sns .btn .a .txt {
  font-size: 0.86rem;
}
.share .sns .btn.btn_facebook .icon::before, .share .sns .btn[key=facebook] .icon::before {
  content: "\f39e";
}
.share .sns .btn.btn_twitter .icon::before, .share .sns .btn[key=twitter] .icon::before {
  content: "\f099";
}
.share .sns .btn.btn_line .icon::before, .share .sns .btn[key=line] .icon::before {
  content: "\f3c0";
}
.share .sns .btn.btn_note .icon, .share .sns .btn[key=note] .icon {
  width: 40px;
  height: 40px;
  background-image: url(../images/common/icon_note.svg);
}

.textures {
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.textures .texture {
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.textures .texture:not(.active) {
  transform: translateY(0);
}

.fav_wrap label {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.fav_wrap .wpulike {
  width: 100%;
}
.fav_wrap .wpulike.wpulike-animated-heart .wp_ulike_btn {
  background: none;
  box-shadow: none;
}
.fav_wrap .wpulike.wpulike-animated-heart .wp_ulike_btn svg * {
  fill: #FFF !important;
}
.fav_wrap .wpulike.wpulike-animated-heart .count-box {
  color: #FFF;
}
.fav_wrap .wpulike .wp_ulike_general_class {
  display: flex;
  height: var(--buttonHeight);
  background: #00AFEC;
  color: #FFF;
  font-size: 0.86rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0 var(--space1);
}
.fav_wrap .wpulike .wp_ulike_general_class .count-box::before {
  content: "この記事にいいねする（";
}
.fav_wrap .wpulike .wp_ulike_general_class .count-box::after {
  content: "）";
}
.fav_wrap .wpulike .wp_ulike_general_class.wp_ulike_is_liked {
  background: #0081CC;
}
.fav_wrap .wpulike .wp_ulike_general_class.wp_ulike_is_liked .count-box::before {
  content: "この記事にいいねしました（";
}

.category_btns_wrap {
  /*background:var(--primaryColor);
  padding:var(--space1) 0;*/
  position: absolute;
  top: calc(var(--headHeight) + var(--space2));
  right: 0;
  z-index: 1;
  display: none;
  width: calc(100% - 240px);
}
@media (min-width: 768px) {
  .category_btns_wrap {
    display: block;
  }
}
.category_btns_wrap .btns {
  width: 100%;
  grid-gap: 0 var(--space2);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.category_btns_wrap .btns .btn {
  position: relative;
}
.category_btns_wrap .btns .btn .a {
  height: 40px;
  /*color:#FFF;*/
  text-decoration: none;
  font-size: 0.72rem;
}
.category_btns_wrap .btns .btn.here .a {
  position: relative;
  color: #0081CC;
}
.category_btns_wrap .btns .btn.here .a::after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  background: #0081CC;
}
.category_btns_wrap .btns .btn:not(:last-child)::after {
  width: var(--space2);
  content: "|";
  position: absolute;
  right: -var(--space2);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  /*color:#FFF;*/
  opacity: 0.5;
  filter: Alpha(opacity=50);
}

.btns_wrap {
  border-top: 1px solid #5A5A5A;
  border-bottom: 1px solid #5A5A5A;
  height: 48px;
  margin-bottom: 4rem;
}
.btns_wrap .btns .btn {
  position: relative;
}
.btns_wrap .btns .btn.here::after {
  width: 100%;
  height: 3px;
  background: #5A5A5A;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.btns_wrap .btns .btn .a {
  text-decoration: none !important;
}
.btns_wrap .btns .btn .a .txt {
  transition: var(--animationDuration) opacity;
}
@media (max-width: 767px) {
  .btns_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
  }
}
@media (min-width: 768px) {
  .btns_wrap {
    height: 64px;
  }
  .btns_wrap .btns {
    height: 100%;
  }
  .btns_wrap .btns .btn {
    height: 100%;
  }
  .btns_wrap .btns .btn:not(:last-child) {
    margin-right: 2rem;
  }
}

.categories,
.tags {
  flex-wrap: wrap;
  grid-gap: var(--space1);
}
.categories .btn,
.tags .btn {
  margin: 0;
}
.categories .btn .a,
.tags .btn .a {
  min-width: 60px;
  text-decoration: none;
  box-sizing: border-box;
  padding: 0 var(--space1);
  box-sizing: border-box;
  height: 24px;
  border-radius: 12px;
}
.categories .btn .a .txt,
.tags .btn .a .txt {
  font-size: 0.86rem;
}

.categories .btn .a {
  background: #00AFEC;
  color: #FFF;
}

.tags .btn .a {
  background: #FFF;
}

.category_select_wrap .categories {
  grid-gap: var(--space1) var(--space2);
}
.category_select_wrap .categories .btn .a {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 0;
  padding: 0;
  height: auto;
  border: 0;
  color: #5A5A5A;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.category_select_wrap .categories .btn .a .txt {
  font-size: 1rem;
}
.category_select_wrap .categories .btn.active .a {
  color: var(--textcolor);
}

.tabs .tab {
  height: var(--buttonHeight);
  margin: 0 var(--space2);
}
.tabs .tab .a {
  position: relative;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
.tabs .tab .a .txt {
  font-size: 1rem;
}
.tabs .tab .a::after {
  width: 100%;
  height: 4px;
  background: var(--primaryColor);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.tabs .tab .a:not(.active)::after {
  display: none;
}
.tabs .tab .a.active {
  color: var(--primaryColor);
}

.tabs_wrap > .tabs {
  margin-bottom: var(--space2);
}

.accordion_wrap {
  position: relative;
  left: -var(--space2);
  width: calc(100% + var(--space2) * 2);
  --btnheight: 48px;
}
.accordion_wrap .accordion_head {
  cursor: pointer;
  padding: 0 var(--space2)var(--space2) 0 var(--space2);
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: var(--btnheight);
  border-bottom: 1px solid #5A5A5A;
  position: relative;
}
.accordion_wrap .accordion_head::after {
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
  border-bottom-color: #5A5A5A;
  border-right-color: #5A5A5A;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: var(--space1);
  margin: auto;
}
.accordion_wrap .accordion_body {
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  box-sizing: border-box;
  padding: 0 var(--space2);
  background: #FFF;
}
.accordion_wrap .accordion_body > .btns {
  display: block;
}
.accordion_wrap .accordion_body > .btns .btn {
  width: 100%;
  margin: 0 !important;
  min-height: var(--btnheight);
  height: -moz-fit-content;
  height: fit-content;
}
.accordion_wrap .accordion_body > .btns .btn:not(:last-child) {
  border-bottom: 1px solid #5A5A5A;
}
.accordion_wrap .accordion_body > .btns .btn .a {
  width: 100%;
  height: 100%;
  padding: 0;
  min-height: var(--btnheight);
  background: transparent;
  border: 0;
  border-radius: 0;
  justify-content: flex-start;
  align-items: center;
}
.accordion_wrap.active > .accordion_head::after {
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
  border-top-color: #5A5A5A;
  border-left-color: #5A5A5A;
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.accordion_wrap:not(.active) > .accordion_body {
  height: 0;
}
.accordion_wrap:not(.active) > .accordion_head {
  border-bottom: 0;
}
.accordion_wrap + .accordion_wrap {
  border-top: 1px solid #5A5A5A;
}

.list_wrap .list {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  padding: 1rem 0;
}
.list_wrap .list:not(:last-child) {
  border-bottom: 1px solid #5A5A5A;
}
.list_wrap .list > .a {
  display: block;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.list_wrap .list > .a > * {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.list_wrap .list > .a > *:not(:last-child) {
  padding-right: 0;
}
@media (max-width: 520px) {
  .list_wrap .list > .a > *:not(:last-child) {
    padding-right: 0;
  }
}
.list_wrap .list .head {
  display: flex;
  justify-content: space-between;
  color: var(--primaryColor);
}
.list_wrap .list .label .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.list_wrap .list .cont {
  width: 100%;
}
.list_wrap .list .cont .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.list_wrap.list_wrap_slendar {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--space5) * 2);
  min-width: 320px;
}
.list_wrap.list_info_wrap {
  margin-bottom: var(--space4);
}
.list_wrap.list_info_wrap.mb0 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .list_wrap.list_info_wrap .list {
    display: block;
  }
  .list_wrap.list_info_wrap .list .label {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .list_wrap.list_info_wrap .list {
    padding: var(--space2) 0;
    align-items: flex-start;
  }
  .list_wrap.list_info_wrap .list .label {
    width: 120px;
  }
  .list_wrap.list_info_wrap .list .cont {
    width: calc(100% - 120px - var(--space2));
  }
}
.list_wrap.list_news_wrap .list > .a {
  padding: 0;
  text-decoration: none;
}
.list_wrap.list_news_wrap .list > .a > * {
  padding: 0;
}
.list_wrap.list_news_wrap .list > .a .date_wrap {
  justify-content: flex-start;
}
.list_wrap.list_news_wrap .list > .a .title {
  font-size: 1.25rem;
}
.list_wrap.list_news_wrap .list > .a .categories .category .a {
  min-width: 120px;
}
@media (max-width: 767px) {
  .list_wrap.list_news_wrap .list > .a {
    display: block;
  }
  .list_wrap.list_news_wrap .list > .a .label {
    margin-bottom: var(--space1);
  }
}
@media (min-width: 768px) {
  .list_wrap.list_news_wrap .list > .a {
    flex-wrap: nowrap;
    grid-gap: var(--space4);
    align-items: flex-start;
  }
  .list_wrap.list_news_wrap .list > .a .label {
    width: 360px;
    padding-top: 3px;
  }
  .list_wrap.list_news_wrap .list > .a .cont {
    width: 100%;
  }
}
.list_wrap.list_link_wrap .list {
  padding: 0;
  border: 0;
}
.list_wrap.list_link_wrap .list > .a {
  justify-content: flex-start;
  align-items: center;
  padding: var(--space1) 0;
  grid-gap: var(--space4);
}
.list_wrap.list_link_wrap .list > .a > * {
  padding: 0;
}
.list_wrap.list_link_wrap .list > .a .categories .btn .a {
  min-width: 120px;
  background: #333;
  color: #FFF;
}
.list_wrap.list_link_wrap .list > .a .categories .btn .a .txt {
  font-size: 0.66rem;
}
.list_wrap.list_link_wrap .list > .a .title {
  font-size: 1rem;
}
@media (max-width: 520px) {
  .list_wrap.list_link_wrap .list > .a {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: var(--space1);
  }
}
.list_wrap.mini_list_wrap .list:not(:last-child) {
  border-bottom: 0;
}
.list_wrap.mini_list_wrap .list .label {
  width: 120px;
  height: 24px;
  border: 1px solid #5A5A5A;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.86rem;
}
.list_wrap.mini_list_wrap .list .cont {
  line-height: 24px;
}
@media (max-width: 520px) {
  .list_wrap.mini_list_wrap .list {
    display: block;
  }
  .list_wrap.mini_list_wrap .list .label {
    margin-bottom: var(--space1);
  }
}
@media (min-width: 521px) {
  .list_wrap.mini_list_wrap .list {
    justify-content: space-between;
    align-items: flex-start;
  }
  .list_wrap.mini_list_wrap .list .cont {
    width: calc(100% - 120px - var(--space3));
  }
}

ol {
  padding-inline-start: 20px;
  margin-block-start: 0;
  margin-block-end: 0;
}
ol li {
  padding-top: var(--space1);
  padding-bottom: var(--space1);
  list-style: decimal;
}
ol:first-child li:first-child {
  padding-top: 0;
}

.dotted {
  padding-left: var(--space1);
  box-sizing: border-box;
  position: relative;
}
.dotted::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.block {
  width: 100%;
}
.block:not(:last-child) {
  margin-bottom: calc(var(--space4) * 1.5);
}
.block .head {
  margin-bottom: var(--space2);
  position: relative;
}
.block .copy,
.block .title {
  letter-spacing: 0.2rem;
}
.block .title.black {
  background: var(--primaryColor);
  color: #FFF;
  box-sizing: border-box;
  padding: var(--space1) var(--space2);
}
.block > .foot {
  margin-top: var(--space4);
}
.block.article .head,
.block.article .body .text,
.block.article .foot {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space2);
}
.block.article .head .date_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: var(--space1) var(--space2);
  align-items: center;
}
.block.article .body .text {
  grid-gap: var(--space4);
}
.block.article .body .text .to_link {
  width: 100%;
}
.block.article .foot {
  grid-gap: var(--space4);
}
.block.block_not_found .head .not_found {
  font-size: 3rem;
}
.block.block_not_found .head .sub {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .block.block_not_found .head .not_found {
    font-size: 4rem;
  }
  .block.block_not_found .head .sub {
    font-size: 1.5rem;
  }
}

.sub_block:not(:last-child) {
  margin-bottom: var(--space4);
}
.sub_block > h4 {
  margin-bottom: var(--space1);
}
.sub_block .head {
  margin-bottom: var(--space1);
}

.photo + .article_wrap {
  margin-top: var(--space3);
}

.boxes {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space4) var(--space2);
}

.box {
  background: var(--colorWeakGray);
  box-sizing: border-box;
  padding: var(--space2);
}
.box .title {
  font-size: 1rem;
  margin-bottom: var(--space1);
}
.box.box_attention .title {
  font-size: 0.86rem;
}
.box.box_attention .text {
  font-size: 0.66rem;
}

.article_move_btns {
  justify-content: space-between;
  padding: var(--space4) 0 calc(var(--space5) * 1.5) 0;
}
.article_move_btns .btn .arrow {
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
}

.article_options .btns {
  flex-wrap: wrap;
}
.article_options .btns .btn {
  margin-bottom: var(--space1);
}
.article_options .btns .btn .a .num::before {
  content: "（";
}
.article_options .btns .btn .a .num::after {
  content: "）";
}
.article_options .tag_clouds a {
  margin: 0 var(--space1) var(--space1) 0;
}

.ai_c {
  align-items: center;
}

.ai_fs {
  align-items: flex-start;
}

.ai_fe {
  align-items: flex-end;
}

.jc_c {
  justify-content: center;
}

.jc_sb {
  justify-content: space-between;
}

.jc_fs {
  justify-content: flex-start;
}

.jc_fe {
  justify-content: flex-end;
}

.fd_column {
  flex-direction: column;
}

.fd_row {
  flex-direction: row;
}

.f_nowrap {
  flex-wrap: nowrap;
}

.f_wrap {
  flex-wrap: wrap;
}

.flex {
  display: flex;
  --flexColumnGap: var(--columnGap);
  --flexRowGap: var(--rowGap);
  grid-column-gap: var(--flexColumnGap);
  grid-row-gap: var(--flexRowGap);
}
.flex.gap_zero {
  --flexColumnGap: 0px;
  --flexRowGap: 0px;
}
.flex.column_gap_zero {
  --flexColumnGap: 0px;
}
.flex.row_gap_zero {
  --flexRowGap: 0px;
}
.flex.gap_slim {
  --flexColumnGap: var(--columnGap_slim);
  --flexRowGap: var(--rowGap_slim);
}
.flex.column_gap_slim {
  --flexColumnGap: var(--columnGap_slim);
}
.flex.row_gap_slim {
  --flexRowGap: var(--rowGap_slim);
}
.flex.gap_wide {
  --flexColumnGap: var(--columnGap_wide);
  --flexRowGap: var(--rowGap_wide);
}
.flex.column_gap_wide {
  --flexColumnGap: var(--columnGap_wide);
}
.flex.row_gap_wide {
  --flexRowGap: var(--rowGap_wide);
}

.columns {
  display: flex;
  --columnColumnGap: var(--columnGap);
  --columnRowGap: var(--rowGap);
  grid-column-gap: var(--columnColumnGap);
  grid-row-gap: var(--columnRowGap);
  --columnWidth: 100%;
  flex-wrap: wrap;
}
.columns.gap_zero {
  --columnColumnGap: 0px;
  --columnRowGap: 0px;
}
.columns.column_gap_zero {
  --columnColumnGap: 0px;
}
.columns.row_gap_zero {
  --columnRowGap: 0px;
}
.columns.gap_slim {
  --columnColumnGap: var(--columnGap_slim);
  --columnRowGap: var(--rowGap_slim);
}
.columns.column_gap_slim {
  --columnColumnGap: var(--columnGap_slim);
}
.columns.row_gap_slim {
  --columnRowGap: var(--rowGap_slim);
}
.columns.gap_wide {
  --columnColumnGap: var(--columnGap_wide);
  --columnRowGap: var(--rowGap_wide);
}
.columns.column_gap_wide {
  --columnColumnGap: var(--columnGap_wide);
}
.columns.row_gap_wide {
  --columnRowGap: var(--rowGap_wide);
}
.columns .column {
  width: var(--columnWidth);
  max-width: 100%;
}
.columns .column.w2 {
  width: calc(var(--columnWidth) * 2 + var(--columnColumnGap));
}
.columns .column.w3 {
  width: calc(var(--columnWidth) * 3 + var(--columnColumnGap) * 2);
}
.columns .column.w4 {
  width: calc(var(--columnWidth) * 4 + var(--columnColumnGap) * 3);
}
.columns .column.w5 {
  width: calc(var(--columnWidth) * 5 + var(--columnColumnGap) * 4);
}
.columns .column.w6 {
  width: calc(var(--columnWidth) * 6 + var(--columnColumnGap) * 5);
}
.columns .column.w7 {
  width: calc(var(--columnWidth) * 7 + var(--columnColumnGap) * 6);
}
.columns .column.w8 {
  width: calc(var(--columnWidth) * 7 + var(--columnColumnGap) * 7);
}
@media (min-width: 768px) {
  .columns.column2 {
    --columnWidth: calc((100% - var(--columnColumnGap)) / 2);
  }
}
@media (min-width: 768px) {
  .columns.column3 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 2) / 3);
  }
}
.columns.column4 {
  --columnWidth: calc((100% - var(--columnColumnGap)) / 2);
}
@media (min-width: 768px) {
  .columns.column4 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 3) / 4);
  }
}
.columns.column5 {
  --columnWidth: calc((100% - var(--columnColumnGap)) / 2);
}
@media (min-width: 768px) {
  .columns.column5 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 4) / 5);
  }
}
.columns.column6 {
  --columnWidth: calc((100% - var(--columnColumnGap) * 2) / 3);
}
@media (min-width: 768px) {
  .columns.column6 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 3) / 4);
  }
}
@media (min-width: 960px) {
  .columns.column6 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 5) / 6);
  }
}
.columns.column7 {
  --columnWidth: calc((100% - var(--columnColumnGap) * 2) / 3);
}
@media (min-width: 768px) {
  .columns.column7 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 3) / 4);
  }
}
@media (min-width: 960px) {
  .columns.column7 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 6) / 7);
  }
}
.columns.column8 {
  --columnWidth: calc((100% - var(--columnColumnGap) * 2) / 3);
}
@media (min-width: 768px) {
  .columns.column8 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 3) / 4);
  }
}
@media (min-width: 960px) {
  .columns.column8 {
    --columnWidth: calc((100% - var(--columnColumnGap) * 7) / 8);
  }
}

.search_wrap {
  max-width: 320px;
  min-width: 280px;
  margin: var(--space2) auto 0 auto;
}
.search_wrap form {
  width: 100%;
}
.search_wrap .inner {
  width: 100%;
  position: relative;
}
.search_wrap .inner input {
  width: 100%;
  border-radius: calc(var(--buttonHeight) / 2);
  padding-left: calc(var(--buttonHeight) / 2);
  padding-right: calc(var(--buttonHeight) * 3 / 2);
  border: 0;
  background: var(--colorWeakGray);
}
.search_wrap .inner button {
  left: auto;
  right: calc(var(--buttonHeight) / 4);
  width: var(--buttonHeight);
  height: var(--buttonHeight);
  background: none;
}
.search_wrap .inner button .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.search_categories_wrap {
  margin-top: var(--space2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search_categories_wrap .category_wrap {
  max-width: 320px;
}
.search_categories_wrap .category_wrap::after {
  border-top-color: #FFF;
}
.search_categories_wrap .category_wrap select {
  background: #0081CC;
  color: #FFF;
  border: 0;
}
.search_categories_wrap .search_wrap {
  margin: 0;
}

.new {
  position: relative;
  top: -2px;
}
.new::before {
  content: "New!";
  color: var(--secondaryColor);
  font-size: 0.66rem;
  margin-right: var(--space1);
}

.date {
  font-size: 0.9rem;
  letter-spacing: 0.01rem;
}
.date .new {
  margin-left: var(--space1);
}

.date_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  grid-gap: var(--space1) var(--space2);
}

.archives .archive > .a {
  text-decoration: none;
  flex-direction: column;
  justify-content: flex-start;
  color: #333;
  grid-gap: var(--space1);
}
.archives .archive > .a.disabled {
  pointer-events: none;
}
.archives .archive .photo {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.archives .archive .photo .bg {
  transition: var(--animationDuration) transform;
}
.archives .archive .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: var(--space1);
}
.archives .archive .info .inner {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space1)/2;
}
.archives .archive .info .title {
  font-size: 1rem;
}
.archives .archive .info .ex {
  font-size: 0.66rem;
}
.archives .archive.to_archive_list > .a {
  flex-direction: row;
  color: #FFF;
  min-height: 120px;
}
.archives .archive.to_archive_list > .a .photo {
  background: var(--primaryColor);
}
.archives .archive.to_archive_list > .a .photo .bg {
  background: var(--primaryColor);
}
.archives .archive.to_archive_list > .a .photo .txt {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.archives.archives_column .archive .photo .bg {
  padding-top: 100%;
}
.archives.archives_column .archive .photo .bg.pressrelease {
  background-image: url("../images/common/thumb_pressrelease.jpg");
}
.archives.archives_column .archive .photo .bg.information {
  background-image: url("../images/common/thumb_information.jpg");
}
.archives.archives_column .archive .photo .bg.technique {
  background-image: url("../images/common/thumb_technique.jpg");
}
.archives.archives_column .archive .photo .bg.talksession {
  background-image: url("../images/common/thumb_talk.jpg");
}
.archives.archives_news .archive > .a {
  flex-direction: row;
  grid-gap: var(--space2);
  align-items: center;
}
.archives.archives_news .archive > .a .photo {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
}
.archives.archives_news .archive > .a .info {
  width: 100%;
}
.archives.archives_news .archive > .a .info .date_wrap {
  font-size: 0.86rem;
}
.archives.archives_news .archive > .a .info .date_wrap .categories .btn .a {
  height: 16px;
}
.archives.archives_news .archive > .a .info .date_wrap .categories .btn .a .txt {
  font-size: 0.66rem;
}
.archives.archives_news .archive > .a .info .title {
  font-size: 0.86rem;
}
.archives.archives_bf_category {
  grid-gap: 0;
  justify-content: center;
}
.archives.archives_bf_category .archive {
  width: 33.33%;
}
.archives.archives_bf_category .archive > .a {
  background: var(--primaryColor);
}
.archives.archives_bf_category .archive > .a .photo {
  height: 100%;
}
.archives.archives_bf_category .archive > .a .photo::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(20deg, #1D2088 0%, #1D2088 30%, #00AFEC);
  content: "";
  opacity: 0.5;
  filter: Alpha(opacity=50);
  mix-blend-mode: multiply;
  transition: var(--animationDuration) opacity;
}
.archives.archives_bf_category .archive > .a .photo .bg {
  padding-top: 66%;
  height: 0;
}
.archives.archives_bf_category .archive > .a .info {
  width: 100%;
  height: calc(100% - var(--space4) * 2);
  align-items: center;
  justify-content: flex-end;
  color: #FFF;
}
.archives.archives_bf_category .archive > .a .info .inner {
  width: calc(100% - var(--space4) * 2);
}
.archives.archives_bf_category .archive > .a .info .inner .h3 {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.archives.archives_bf_category .archive > .a .info .inner .eng {
  font-size: 0.66rem;
}
.archives.archives_bf_category .archive:nth-child(1) > .a .photo .bg {
  background-image: url("../images/bf/photo_mobility.jpg");
}
.archives.archives_bf_category .archive:nth-child(2) > .a .photo .bg {
  background-image: url(../images/bf/photo_healthcare.jpg);
}
.archives.archives_bf_category .archive:nth-child(3) > .a .photo .bg {
  background-image: url("../images/bf/photo_kyoso.jpg");
}
.archives.archives_bf_category .archive:nth-child(4) > .a .photo .bg {
  background-image: url("../images/bf/photo_eco.jpg");
}
.archives.archives_bf_category .archive:nth-child(5) > .a .photo .bg {
  background-image: url("../images/bf/photo_cashless.jpg");
}
.archives.archives_bf_category .archive:nth-child(6) > .a .photo .bg {
  background-image: url("../images/bf/photo_sightseeing.jpg");
}
.archives.archives_bf_category .archive:nth-child(7) > .a .photo .bg {
  background-image: url(../images/bf/photo_cashless.jpg);
}
.archives.archives_bf_category .archive:nth-child(8) > .a .photo .bg {
  background-image: url("../images/bf/photo_cooperation.jpg");
}
@media (max-width: 520px) {
  .archives.archives_casestudy .archive > .a {
    flex-direction: row;
    grid-gap: var(--space2);
    align-items: center;
  }
  .archives.archives_casestudy .archive > .a .photo {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
  }
  .archives.archives_casestudy .archive > .a .info {
    width: 100%;
  }
  .archives.archives_casestudy .archive > .a .info .date_wrap {
    font-size: 0.86rem;
  }
  .archives.archives_casestudy .archive > .a .info .date_wrap .categories .btn .a {
    height: 16px;
  }
  .archives.archives_casestudy .archive > .a .info .date_wrap .categories .btn .a .txt {
    font-size: 0.66rem;
  }
  .archives.archives_casestudy .archive > .a .info .title {
    font-size: 0.86rem;
  }
}
@media (max-width: 767px) {
  .archives.archives_bf_category .archive:nth-child(2) > .a, .archives.archives_bf_category .archive:nth-child(3) > .a, .archives.archives_bf_category .archive:nth-child(6) > .a {
    background: #00AFEC;
  }
}
@media (min-width: 768px) {
  .archives.archives_news .archive .a {
    grid-gap: var(--space4);
  }
  .archives.archives_news .archive .a .photo {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
  }
}
.archives + .to_link {
  margin-top: var(--space5);
}

.relation {
  color: var(--primaryColor);
  font-size: 0.72rem;
  display: flex;
  flex-direction: row;
  grid-gap: 0 var(--space2);
  flex-wrap: wrap;
}
.relation > span {
  position: relative;
}
.relation > span:not(:last-child)::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -var(--space1);
  height: 8px;
  background: var(--primaryColor);
  content: "";
  width: 1px;
}

.slick .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--buttonHeight);
  height: var(--buttonHeight);
  cursor: pointer;
  background: #333;
  transition: var(--animationDuration) background;
  z-index: 1;
}
.slick .slick-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
  border-width: 2px;
}
.slick .slick-arrow.slick-disabled {
  background: #5A5A5A;
  pointer-events: none;
  display: none !important;
}
.slick .slick-arrow.slick-next {
  right: 0;
}
.slick .slick-arrow.slick-next::before {
  border-right-color: #FFF;
  border-top-color: #FFF;
  right: calc(var(--space1) * 1 / 3);
}
.slick .slick-arrow.slick-prev {
  left: 0;
}
.slick .slick-arrow.slick-prev::before {
  border-left-color: #FFF;
  border-bottom-color: #FFF;
  position: relative;
  left: calc(var(--space1) * 1 / 3);
}

.scroller_wrap {
  position: relative;
  overflow: hidden;
  overflow-x: scroll;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
  left: -var(--space2);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroller_wrap::-webkit-scrollbar {
  display: none;
}
.scroller_wrap.moving .scroller .archives .archive .a {
  pointer-events: none;
}
.scroller_wrap .scroller {
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
  box-sizing: border-box;
}
.scroller_wrap .scroller > * {
  width: -moz-fit-content;
  width: fit-content;
  padding-left: var(--space2);
  padding-right: var(--space2);
}
.scroller_wrap .scroller .archives {
  display: flex;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  flex-wrap: nowrap;
}
.scroller_wrap .scroller .archives .archive {
  width: 75vw;
  max-width: 280px;
}
.scroller_wrap .btn_move_control {
  left: auto;
  bottom: auto;
  top: calc(-1 * var(--buttonHeight) - var(--space3));
}
.scroller_wrap .scroll_alert {
  pointer-events: none;
  width: calc(var(--buttonHeight) * 2);
  height: calc(var(--buttonHeight) * 2);
}
.scroller_wrap .scroll_alert .inner {
  width: 100%;
  height: 100%;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(166, 166, 166, 0.33);
  border-radius: calc(var(--radius) / 2);
}
.scroller_wrap .scroll_alert .inner::before {
  content: "↔︎";
  font-size: 1rem;
  line-height: 1;
}
.scroller_wrap .scroll_alert .inner::after {
  content: "swipe";
  font-size: 0.66rem;
}
.scroller_wrap .scroll_alert .inner i {
  font-size: 2rem;
  margin-bottom: var(--space1)/2;
}
@media (min-width: 768px) {
  .scroller_wrap {
    left: -var(--space3);
  }
  .scroller_wrap .scroller > * {
    padding-left: var(--space3);
    padding-right: var(--space3);
  }
  .scroller_wrap .scroller .archives .archive {
    max-width: calc((100vw - var(--space3) * 2 - var(--space4) * 2) / 3);
  }
}
@media (min-width: 960px) {
  .scroller_wrap {
    left: -var(--space4);
  }
  .scroller_wrap .scroller {
    /*left:-var(--space4);*/
  }
  .scroller_wrap .scroller > * {
    padding-left: var(--space4);
    padding-right: var(--space4);
  }
  .scroller_wrap .scroller .archives .archive {
    max-width: calc((100vw - var(--cont_margin) * 2 - var(--space4) * 2) / 3);
  }
}
@media (min-width: calc(1080px + 40px * 2 + 1px)) {
  .scroller_wrap {
    left: calc((var(--maxWidth1) - 100vw) / 2);
  }
  .scroller_wrap .scroller > * {
    padding-left: calc((100vw - var(--maxWidth1)) / 2);
    padding-right: calc((100vw - var(--maxWidth1)) / 2);
  }
  .scroller_wrap .scroller .archives .archive {
    max-width: calc((var(--maxWidth1) - var(--cont_margin) * 2) / 3);
  }
}
@media (max-width: 767px) {
  .scroller_wrap.tile_for_sp .scroller {
    overflow: auto;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .scroller_wrap.tile_for_sp .scroller .archives {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .scroller_wrap.tile_for_sp .scroller .archives > .archive {
    width: calc(50% - var(--space1));
  }
  .scroller_wrap.tile_for_sp .btn_control {
    display: none !important;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
    filter: Alpha(opacity=100);
  }
  100% {
    opacity: 0;
    filter: Alpha(opacity=0);
  }
}
.scroller_control_wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: var(--space2);
}
.scroller_control_wrap .arrow {
  width: var(--buttonheight);
  min-width: btnheight;
  max-width: btnheight;
  height: var(--buttonheight);
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroller_control_wrap .arrow::before {
  width: 12px;
  height: 12px;
  border: 2px solid transparent;
  transform: rotate(45deg);
  display: inline-block;
  box-sizing: border-box;
  content: "";
  width: 24px;
  height: 24px;
  transform: scaleX(0.66) rotate(45deg);
}
.scroller_control_wrap .arrow:not(.disabled) {
  cursor: pointer;
}
.scroller_control_wrap .arrow.disabled {
  opacity: 0.5;
  filter: Alpha(opacity=50);
}
.scroller_control_wrap .arrow.arrow_prev::before {
  border-bottom-color: var(--primaryColor);
  border-left-color: var(--primaryColor);
}
.scroller_control_wrap .arrow.arrow_next::before {
  border-top-color: var(--primaryColor);
  border-right-color: var(--primaryColor);
}
.scroller_control_wrap .range {
  width: 100%;
  max-width: 200px;
  margin: auto;
  height: 1px;
  position: relative;
}
.scroller_control_wrap .range::before {
  background: #FFFFFF;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
}
.scroller_control_wrap .range .here {
  height: 5px;
  width: 100%;
  position: absolute;
  top: -2px;
  left: 0;
  background: #FFFFFF;
}
.scroller_control_wrap.white .arrow.arrow_prev::before {
  border-bottom-color: #FFF;
  border-left-color: #FFF;
}
.scroller_control_wrap.white .arrow.arrow_next::before {
  border-top-color: #FFF;
  border-right-color: #FFF;
}
.scroller_control_wrap.white .range::before {
  background: #FFF;
}
.scroller_control_wrap.white .range .here {
  background: #FFF;
}
.scroller_control_wrap + .to_link {
  margin-top: var(--space5);
}

.logo_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tag_clouds {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  grid-gap: var(--space1);
}
.tag_clouds.tc {
  justify-content: center;
}
.tag_clouds a {
  min-width: 60px;
  height: 24px;
  border-radius: 12px;
  padding: 0 var(--space1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(29, 32, 136, 0.05);
}

.relation_link_wrap {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space2);
}
.relation_link_wrap::before {
  content: "関連リンク";
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.relation_link_wrap > p {
  padding-left: var(--space3);
  box-sizing: border-box;
  position: relative;
}
.relation_link_wrap > p::before {
  content: "";
  width: var(--space2);
  height: 1px;
  background: var(--primaryColor);
  left: 0;
  top: 0.75rem;
  position: absolute;
}

.share_link_wrap {
  background: rgba(29, 32, 136, 0.05);
  padding: var(--space3);
}
.share_link_wrap::before {
  content: "SHARE!";
  display: flex;
  justify-content: center;
}
.share_link_wrap .share {
  margin-bottom: 0;
}

.scroll {
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  --h: 240px;
  --w: 180px;
  --barHeight: 160px;
  height: var(--h);
}
.scroll .a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #FFF;
  text-decoration: none;
  width: var(--w);
  grid-gap: var(--space1);
}
.scroll > *:not(:last-child) {
  margin-bottom: var(--space1);
}
.scroll .txt {
  font-size: var(--fontSize_s);
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
}
.scroll .txt.rotate {
  transform: rotate(90deg);
  width: 100px;
  height: 100px;
}
.scroll .bar {
  width: 1px;
  height: var(--barHeight);
  background: rgba(255, 255, 255, 0.33);
  position: relative;
  overflow: hidden;
}
.scroll .bar::after {
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  animation-name: expansion;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
}
.scroll.scroll_down .txt::before {
  content: "Scroll Down";
}
.scroll.scroll_down .bar {
  transform: rotate(180deg);
}
.scroll.scroll_up .txt::before {
  content: "Scroll Up";
}

@keyframes expansion {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes expansion2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.to_pagetop {
  bottom: auto !important;
  top: calc(-1 * var(--barHeight) / 2) !important;
  --h: calc(var(--barHeight) + 24px);
  --w: 40px;
  --barHeight: 80px;
}
@media (min-width: 768px) {
  .to_pagetop {
    --w: 80px;
  }
}
.to_pagetop .a .txt::before {
  content: "SCROLL";
}

.to_scroll {
  top: auto !important;
  bottom: calc(-1 * var(--barHeight) / 2) !important;
  --h: calc(var(--barHeight) + 24px);
  --w: 40px;
  --barHeight: 80px;
}
@media (min-width: 768px) {
  .to_scroll {
    --w: 80px;
  }
}
.to_scroll .a .txt::before {
  content: "SCROLL";
}

.fixed_scroll_area {
  height: 0;
  position: relative;
  width: 100%;
  mix-blend-mode: exclusion;
  z-index: 1;
}
.fixed_scroll_area .scroll {
  --h: 160px;
  position: absolute;
  bottom: calc(-1 * var(--h) / 2);
  left: 0;
  right: 0;
  margin: auto;
}
.fixed_scroll_area.to_pagetop_wrap .scroll {
  bottom: calc(100% + var(--space2));
}
.fixed_scroll_area.to_pagetop_wrap .scroll .a {
  grid-gap: calc(var(--space1) / 2);
  position: relative;
  overflow: visible;
}
.fixed_scroll_area.to_pagetop_wrap .scroll .a .txt {
  font-size: var(--fontSize_n);
}
.fixed_scroll_area.to_pagetop_wrap .scroll .a .txt::before {
  content: "PAGE TOP";
}

.to_modal {
  cursor: pointer;
}

.black {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  transition: var(--animationDuration) opacity;
}
.black:not(.active) {
  opacity: 0;
  filter: Alpha(opacity=0);
  pointer-events: none !important;
  transition-duration: 0s;
}
@media (max-width: 520px) {
  .black {
    background: rgb(255, 255, 255);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: var(--animationDuration) opacity;
}
.modal[stl=youtube] .modal_inner_wrap {
  width: calc(100% - var(--space2) * 2);
  max-width: 1280px;
}
.modal[stl=youtube] .modal_inner_wrap .modal_inner .movie {
  padding-top: 56.25%;
}
.modal .modal_inner_wrap {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-width: calc(100vw - var(--space2) * 2);
  max-height: calc(100vh - var(--space2) * 2);
  min-height: 240px;
  min-width: 240px;
  background: #FFF;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  overflow-y: auto;
}
.modal .modal_inner_wrap .modal_inner {
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  box-sizing: border-box;
  padding: var(--space3);
}
@media (max-width: 520px) {
  .modal .modal_inner_wrap {
    max-height: calc(100vh - var(--space2) * 2 - 96px);
  }
}
.modal:not(.active) {
  opacity: 0;
  filter: Alpha(opacity=0);
  pointer-events: none !important;
  transition-duration: 0s;
}
.modal .btn_close.btn {
  cursor: pointer;
  width: var(--buttonheight);
  height: var(--buttonheight);
  background: var(--primaryColor);
  bottom: auto;
  left: auto;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .btn_close.btn::after {
  content: "×";
}
@media (min-width: 1280px) {
  .modal .modal_inner_wrap {
    max-width: var(--maxWidth1);
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  transition: calc(var(--animationDuration) * 2) opacity;
}
#loading .bg {
  background: var(--primaryColor);
  transition: var(--animationDuration) transform;
}
#loading .icon {
  width: 120px;
  height: 154px;
  transition: var(--animationDuration) transform;
}

.navi .navi_btn .a {
  text-decoration: none;
}
.navi .navi_btn .a .txt {
  transition: var(--animationDuration) opacity;
}
.navi .navi_btn[key=home] > .a .txt::before {
  content: "Home";
}
.navi .navi_btn[key=concept] > .a .txt::before {
  content: "Concept";
}
.navi .navi_btn[key=bf] > .a .txt::before {
  content: "Business Field";
}
.navi .navi_btn[key=project] > .a .txt::before {
  content: "Project";
}
.navi .navi_btn[key=news] > .a .txt::before {
  content: "News";
}
.navi .navi_btn[key=casestudy] > .a .txt::before {
  content: "Case Study";
}
.navi .navi_btn[key=solution] > .a .txt::before {
  content: "Solution";
}
.navi .navi_btn[key=contact] > .a .txt::before {
  content: "Contact";
}
.navi .navi_btn[key=guide] .txt::before {
  content: "ご利用にあたって";
}
.navi .navi_btn[key=privacy] .txt::before {
  content: "個人情報保護について";
}
.navi .navi_btn[key=securitypolicy] .txt::before {
  content: "情報セキュリティ基本方針";
}
.navi .navi_btn[key=socialmediapolicy] .txt::before {
  content: "ソーシャルメディアポリシー";
}
.navi .navi_btn[key=webaccessibility] .txt::before {
  content: "ウェブアクセシビリティ";
}
.navi.horizontal {
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: row;
  grid-gap: var(--space2);
}
.navi.horizontal .navi_btn {
  width: auto;
}
.navi.horizontal .navi_btn .a {
  width: -moz-fit-content;
  width: fit-content;
}

nav {
  display: flex;
  flex-wrap: wrap;
}
nav .navi {
  flex-direction: column;
  grid-gap: 0;
}
nav .navi .btn {
  width: 100%;
}
nav .navi .btn .a {
  height: var(--buttonheight);
  justify-content: flex-start;
  color: #333;
}
nav .navi .btn.here .a {
  color: #0081CC;
}
nav .navi .btn:not(.sub_navi_btn) {
  font-size: 1.2rem;
}
nav .navi.sub_navi {
  margin-top: var(--space1) !important;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: var(--space1) var(--space3) !important;
}
nav .navi.sub_navi .btn.sub_navi_btn {
  width: -moz-fit-content;
  width: fit-content;
}
nav .navi.sub_navi .btn.sub_navi_btn .a {
  padding-left: var(--space2);
  font-size: 0.86rem;
}
nav .navi.sub_navi .btn.sub_navi_btn .a::before {
  width: var(--space1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  background: #FFF;
  content: "";
  height: 1px;
  opacity: 0.5;
  filter: Alpha(opacity=50);
}
@media (min-width: 521px) {
  nav .navi .btn.sub_navi_btn .a {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  nav .navi .btn .a {
    font-size: 1.2rem;
  }
}

.navi_wrap {
  width: 0px;
  height: 100vh;
  position: fixed;
  z-index: 15;
  overflow: hidden;
  background: var(--primaryColor);
  color: #FFF;
  top: 0;
  right: 0;
  transition: var(--animationDuration) width;
}
.navi_wrap .cont_wrap,
.navi_wrap .box_wrap {
  height: 100% !important;
  box-sizing: border-box;
}
.navi_wrap .logo_wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.navi_wrap .logo_wrap.sponsored_logo {
  width: 212px;
  margin: 0 auto;
}
.navi_wrap .for_sp {
  padding-top: var(--space3);
  box-sizing: border-box;
  position: relative;
  height: 100%;
}
.navi_wrap > .inner {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  overflow-y: auto;
}
.navi_wrap .cont_wrap {
  padding-top: var(--headHeight);
  padding-bottom: var(--space4);
  height: -moz-fit-content;
  height: fit-content;
}
.navi_wrap .logo_wrap {
  margin-bottom: var(--space3);
  max-width: 400px;
}
.navi_wrap .btns {
  display: block;
}
.navi_wrap .btns .btn:not(:last-child) {
  margin-bottom: var(--space3);
}
.navi_wrap .btns .btn .a {
  justify-content: flex-start;
  grid-gap: var(--space2);
}
.navi_wrap .btns .btn .a .en {
  font-size: 1.7rem;
}
.navi_wrap .btns .btn .a .ja {
  font-size: 0.8rem;
}
.navi_wrap .btns .btn:not(.here) .a {
  color: #FFF !important;
}
.navi_wrap .scroller_wrap .scroller .archives {
  grid-gap: 30px;
}
.navi_wrap .scroller_wrap .scroller .archives .archive {
  width: 200px;
  height: 200px;
}
.navi_wrap .scroller_wrap .scroller .archives .archive .a {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}
.navi_wrap .scroller_wrap .scroller .archives .archive .a .en {
  font-size: 1.5rem;
}
.navi_wrap .scroller_wrap .scroller .archives .archive .a .ja {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .navi_wrap .logo_wrap {
    margin-bottom: var(--space4);
  }
  .navi_wrap .btns .btn:not(:last-child) {
    margin-bottom: var(--space4);
  }
}
@media (min-width: 960px) {
  .navi_wrap .box_wrap {
    max-width: 1200px;
    height: 100%;
  }
  .navi_wrap .cont_wrap {
    padding-top: 160px;
    box-sizing: border-box;
    height: 100%;
    position: relative;
  }
  .navi_wrap .cont_bottom {
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space2);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .navi_wrap .cont_bottom .logo_wrap.event_logo {
    width: 160px;
  }
  .navi_wrap .cont_bottom .logo_wrap.sponsored_logo {
    width: 212px;
    margin: auto;
  }
}
@media (min-width: 1281px) {
  .navi_wrap .scroller_wrap {
    left: calc((1200px - 100vw) / 2);
  }
  .navi_wrap .scroller_wrap .scroller > * {
    padding-left: calc((100vw - 1200px) / 2);
    padding-right: calc((100vw - 1200px) / 2);
  }
}

.copyrigh_wrap {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space4);
  align-items: center;
}
.copyrigh_wrap .caption_connectx {
  font-size: 0.66rem;
  margin-right: auto;
}
@media (min-width: 768px) {
  .copyrigh_wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.7rem;
  font-weight: normal;
  letter-spacing: normal;
}

.cont_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: var(--space4);
}
.cont_wrap .flex {
  flex-direction: column;
  grid-gap: var(--space2);
}
.cont_wrap .cont_upper .logo_wrap {
  width: 180px;
}
.cont_wrap .cont_upper .logo_wrap .logo {
  width: 100%;
}
.cont_wrap .cont_upper .logo_wrap .logo svg * {
  fill: #FFF !important;
}
.cont_wrap .cont_bottom .flex {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space4);
  margin-bottom: var(--space1);
}
.cont_wrap .cont_bottom .flex .flex_inner_right {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space2);
}
.cont_wrap .cont_bottom .flex .flex_inner_right .banners .banner {
  width: 200px;
}
.cont_wrap .cont_bottom .flex .flex_inner_right .btns {
  flex-direction: column;
}
.cont_wrap .cont_bottom .flex .flex_inner_right .btns .btn {
  width: 100%;
}
.cont_wrap .cont_bottom .flex .flex_inner_right .btns .btn .a {
  justify-content: flex-start;
}
.cont_wrap .cont_bottom .flex .flex_inner_left {
  margin-top: var(--space2);
}
.cont_wrap .cont_bottom .flex .flex_inner_left .logo_wrap {
  justify-content: flex-start;
  align-items: flex-start;
}
.cont_wrap .cont_bottom .flex .flex_inner_left .logo_wrap .logo {
  width: 120px;
  height: 26px;
}
.cont_wrap .cont_bottom .flex .flex_inner_left .logo_wrap .logo .icon svg * {
  fill: #FFF !important;
}
.cont_wrap .cont_bottom .flex .flex_inner_left .logo_wrap .logo .icon svg > g > g:nth-child(2) > path {
  fill: var(--primaryColor) !important;
}
.cont_wrap .cont_bottom .btns {
  font-size: 0.66rem;
}
.cont_wrap .sitemaps {
  padding-left: 60px;
}
.cont_wrap .sitemaps .navi {
  margin-top: var(--space2);
  grid-gap: var(--space1);
}
.cont_wrap .sitemaps .navi .btn:not(.sub_navi_btn) > .a {
  height: calc(var(--buttonHeight) * 2 / 3);
}
.cont_wrap .sitemaps .navi .btn.sub_navi_btn > .a {
  height: calc(var(--buttonHeight) / 2);
}
.cont_wrap .sitemaps .navi .sub_navi {
  padding-left: var(--space2);
}
@media (min-width: 768px) {
  .cont_wrap {
    grid-gap: calc(var(--space4) * 1.5);
  }
  .cont_wrap .flex {
    width: 100%;
    grid-gap: var(--space5);
    flex-direction: row-reverse;
  }
  .cont_wrap .sitemaps .navi {
    margin-top: var(--space3);
    grid-gap: var(--space2);
  }
  .cont_wrap .sitemaps .navi .btn .a {
    height: var(--buttonHeight);
    font-size: 1.2rem;
  }
  .cont_wrap .cont_upper .flex {
    align-items: center;
    justify-content: space-between;
  }
  .cont_wrap .cont_upper .flex .flex_inner_left {
    min-width: 320px;
    max-width: 320px;
  }
  .cont_wrap .cont_upper .flex .flex_inner_right {
    width: 100%;
  }
  .cont_wrap .cont_bottom .flex {
    align-items: center;
    grid-gap: var(--space4);
    margin-bottom: var(--space4);
    justify-content: flex-end;
    padding-top: var(--space2);
  }
  .cont_wrap .cont_bottom .flex .flex_inner_left {
    width: auto;
    margin-top: 0;
  }
  .cont_wrap .cont_bottom .flex .flex_inner_right {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .cont_wrap .cont_bottom .flex .flex_inner_right .navi {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cont_wrap .cont_bottom .flex .flex_inner_right .navi .btn {
    width: -moz-fit-content;
    width: fit-content;
  }
  .cont_wrap .cont_bottom .flex .flex_inner_right .navi .btn .a .txt {
    font-size: 0.66rem;
  }
  .cont_wrap .cont_bottom .flex .flex_inner_right .navi .btn .a.blank::after {
    font-size: 0.5rem;
  }
  .cont_wrap .sitemaps .navi .navi_btn .a {
    height: calc(var(--buttonHeight) * 2 / 3);
  }
}
@media (min-width: 1280px) {
  .cont_wrap .cont_bottom .flex .flex_inner_right {
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
  }
}

body.scrolled #head,
body.scrolled #hamburger {
  opacity: 1;
}
body.scrolled #head {
  background: rgba(255, 255, 255, 0.8);
}
body.scrolled #hamburger .lines .line {
  background: var(--primaryColor);
  height: 3px;
}

#head {
  position: fixed;
  width: 100%;
  height: var(--headHeight);
  z-index: 14;
  transition: var(--animationDuration) opacity, var(--animationDuration) background;
  box-sizing: border-box;
  padding-right: var(--hamburgerSize);
  top: 0;
  opacity: 0;
}
#head .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#head .logo_wrap {
  display: none;
  padding-bottom: var(--space1);
}
#head .logo_wrap.event_logo {
  width: 160px;
}
#head .logo_wrap.sponsored_logo {
  width: 212px;
}
#head .logo_wrap .logo {
  width: 100%;
}
#head nav {
  display: none;
}
#head nav .navi {
  grid-gap: var(--space3);
}
#head nav .navi.sub_navi {
  grid-gap: var(--space1) var(--space2) !important;
  top: auto;
  left: auto;
}
#head nav .navi.sub_navi .a {
  height: calc(var(--buttonHeight) * 2 / 3);
  text-decoration: none;
  color: var(--textcolor);
  padding-left: 0;
}
#head nav .navi.sub_navi .a .txt {
  font-size: 0.72rem;
}
#head nav .navi.sub_navi .btn.here .a {
  color: #0081CC;
}
#head nav .navi.sub_navi .btn.here .a::before {
  width: calc(100% + 10px);
  bottom: 1px;
  top: auto;
  height: 2px;
  content: "";
  background: #0081CC;
  position: absolute;
  opacity: 1;
  filter: Alpha(opacity=100);
  left: -5px;
}
@media (min-width: 768px) {
  #head {
    padding-right: 0;
  }
}
@media (min-width: 960px) {
  #head {
    background: none;
    display: flex;
    align-items: center;
  }
  #head .container {
    border-bottom: 2px solid var(--primaryColor);
    height: 80%;
  }
  #head .logo_wrap {
    display: block;
  }
}

#hamburger {
  width: var(--hamburgerSize);
  height: var(--hamburgerSize);
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: auto;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
  transition: var(--animationDuration) opacity, var(--animationDuration) background;
  /*&::after{
      content:"menu";
      font-size:0.66rem !important;
      position:absolute;
      display:flex;
      justify-content: center;
      bottom:auto;
      top:calc( 50% - 0.5rem + 100px / 2 );
      margin:auto;
      text-align:center;
      height:1rem;
      letter-spacing:normal;
      color:#FFF;
  }*/
}
#hamburger > .a {
  width: calc(var(--headHeight) - var(--space2));
  height: calc(var(--hamburgerSize) - var(--space2));
}
#hamburger .lines {
  width: 30px;
  height: 12px;
  position: relative;
}
#hamburger .lines .line {
  background: #FFF;
  height: 4px;
  transition: var(--animationDuration) all;
  width: 100%;
}
#hamburger .lines .line:nth-child(1) {
  bottom: auto;
  left: auto;
}
#hamburger .lines .line:nth-child(2) {
  top: auto;
  right: auto;
}
#hamburger .new {
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  z-index: 1;
  border-radius: 50%;
  background: #DC3832;
  bottom: 40px;
  left: 50px;
}
#hamburger .new::before {
  display: none;
}
@media (min-width: 960px) {
  #hamburger {
    height: calc(100px);
  }
}

#contents {
  position: relative;
  box-sizing: border-box;
}
#contents > .section {
  position: relative;
}
#contents > .section:last-child:not(.section_cont_move) {
  padding-bottom: calc(var(--space5) * 2);
}
@media (min-width: 768px) {
  #contents > .section:last-child:not(.section_cont_move) {
    padding-bottom: calc(var(--space5) * 3);
  }
}

@keyframes scrollup {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}
.scguide {
  position: absolute;
  display: none;
  z-index: 5;
  right: 0;
  top: -50px;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

@media (min-width: 960px) {
  .scguide {
    display: block;
  }
}
.scguide .inner {
  mix-blend-mode: exclusion;
  flex-direction: column;
  grid-gap: 10px;
  align-items: center;
  display: flex;
}

.scguide .inner:before {
  animation: scrollup 2s infinite;
  background-color: var(--textcolor);
  content: "";
  height: 100px;
  width: 1px;
  margin: auto;
  display: block;
}

.scguide .a {
  color: var(--textcolor);
  text-decoration: none;
  height: 100px;
}

.scguide .text {
  white-space: nowrap;
  transform: rotate(90deg);
}

.scguide .text:before {
  content: "PAGE TOP";
  display: block;
  font-size: 1rem;
}

.scguide.on .inner {
  flex-direction: column-reverse;
}

#foot {
  position: relative;
  background: var(--colorWeakGray);
  padding-top: calc(var(--space5) * 1.5);
  padding-bottom: var(--space2);
}
#foot .fixed_scroll_area {
  position: absolute;
  bottom: auto;
}
#foot .fixed_scroll_area .scroll .a .txt::before {
  content: "SCROLL";
}
#foot .box_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  grid-gap: var(--space4);
  z-index: 10;
}
#foot .cont_wrap .event_logo {
  margin-bottom: var(--space4);
}
#foot .cont_wrap .event_logo .logo {
  width: 320px;
  aspect-ratio: 460/117;
}
#foot .cont_wrap .event_logo .logo .icon {
  background-image: url("../images/common/logo.png");
}
#foot .cont_wrap .sponsor_wrap {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space3);
  align-items: center;
}
#foot .cont_wrap .sponsor_wrap .sponsor .logo_wrap .logo {
  width: 268px;
  height: 54px;
}
#foot .cont_wrap .sponsor_wrap .sponsor .logo_wrap .logo .a[name=manatec] .icon {
  background-image: url("../images/common/logo_foot_manatec.png");
}
#foot .cont_wrap .info_wrap .text {
  line-height: 2;
}
#foot .cont_wrap .info_wrap .a {
  display: inline;
  color: var(--textcolor);
  text-decoration: underline;
}
#foot .contact_wrap {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space2);
  align-items: center;
}
#foot .contact_wrap > p {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--fontSize_s);
}
#foot .contact_wrap .to_link {
  margin: 0 auto;
}
#foot .contact_wrap .to_link .a {
  text-decoration: none;
  color: var(--textColor);
}
@media (min-width: 768px) {
  #foot .cont_wrap .event_logo .logo {
    width: 389px;
  }
}
@media (min-width: 960px) {
  #foot .cont_wrap .event_logo .logo {
    width: 460px;
  }
  #foot .cont_wrap .sponsor_wrap {
    margin-bottom: var(--space4);
  }
  #foot .cont_wrap .sponsor_wrap .sponsor .logo_wrap .logo {
    width: 363px;
    height: 72px;
  }
}

#cont_head {
  position: absolute;
  top: calc(var(--headHeight) + var(--space2));
  width: 100%;
  z-index: 2;
}
#cont_head .container {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cont_head .cont_title {
  position: relative;
}
#cont_head .cont_title::before {
  width: var(--space2)-6px;
  height: 1px;
  background: #5A5A5A;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -var(--space2);
  opacity: 0.66;
  filter: Alpha(opacity=66);
  content: "";
}
@media (min-width: 768px) {
  #cont_head .cont_title::before {
    width: var(--space3)-8px;
    left: -var(--space3);
  }
}
@media (min-width: 960px) {
  #cont_head .cont_title::before {
    width: var(--space4)-8px;
    left: -var(--space4);
  }
}

#pan {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-gap: var(--space4);
}
#pan .a {
  text-decoration: none;
  overflow: visible;
  font-size: 0.86rem;
}
#pan .root .txt::before {
  content: "HOME";
}
#pan .txt {
  position: relative;
  top: -1px;
}
#pan > *:not(:last-child) {
  position: relative;
}
#pan > *:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  right: -var(--space4)8px;
  width: calc(var(--space4) - 16px);
  background: #5A5A5A;
  opacity: 0.66;
  filter: Alpha(opacity=66);
}
@media (max-width: 520px) {
  #pan {
    display: none;
  }
}

#float_navi_wrap {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: var(--space2) 0;
  margin-top: var(--space5);
}
#float_navi_wrap .container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 0;
  grid-gap: var(--space2);
}
#float_navi_wrap .movie_link_wrap {
  width: 160px;
}
#float_navi_wrap .movie_link_wrap .comment_wrap {
  margin-bottom: -var(--space4)-var(--space1);
}
#float_navi_wrap .movie_link_wrap .comment_wrap::before, #float_navi_wrap .movie_link_wrap .comment_wrap::after {
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
}
#float_navi_wrap .movie_link_wrap .comment_wrap .comment {
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.1);
}
#float_navi_wrap .movie_link_wrap .thumb {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 520px) {
  #float_navi_wrap .movie_link_wrap {
    width: 120px;
  }
  #float_navi_wrap .movie_link_wrap .comment_wrap {
    margin-bottom: -var(--space4);
  }
  #float_navi_wrap .movie_link_wrap .comment_wrap .comment {
    width: 120px;
    height: 120px;
  }
  #float_navi_wrap .movie_link_wrap .comment_wrap::before {
    bottom: calc(50% + 50px);
    left: calc(50% + 40px);
  }
  #float_navi_wrap .movie_link_wrap .comment_wrap::after {
    bottom: calc(50% + 30px);
    right: calc(50% + 60px);
  }
}
@media (max-width: 767px) {
  #float_navi_wrap .container {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  #float_navi_wrap nav {
    display: none;
  }
}

body:not(.touch) .for_touch {
  display: none !important;
}
body:not(.touch) a.tel {
  text-decoration: none;
  color: var(--textcolor);
  cursor: default;
  pointer-events: none;
}
body:not(.touch):not(.navi_on) #hamburger:hover .lines .line {
  width: 100% !important;
}
body:not(.touch) .to_link .a:not(.text_link):hover {
  background: #0081CC;
}
body:not(.touch) .to_link .a.text_link:hover {
  text-decoration: none;
}
body:not(.touch) .to_text_link.to_return .a:hover::before {
  left: -4px;
}
body:not(.touch) nav .navi .btn .a:not(.disabled):hover .txt {
  opacity: 0.5;
  filter: Alpha(opacity=50);
}
body:not(.touch) .btns.btns_cont_move .a:hover .bg {
  opacity: 1;
  filter: Alpha(opacity=100);
}
body:not(.touch) .btns:not(.btns_cont_move) .btn .a:hover {
  opacity: 0.5;
  filter: Alpha(opacity=50);
}
body:not(.touch) .archives .a:hover .photo .bg {
  transform: scale(1.1);
}
body:not(.touch) .slick .slick-arrow:hover {
  background: #5A5A5A;
}
body:not(.touch) .steps_wrap .column > .a:hover {
  background-color: #00AFEC;
}
body.touch .not_for_touch {
  display: none !important;
}
body:not(.navi_on) .navi_wrap {
  pointer-events: none;
}
body.navi_on {
  height: 100vh !important;
  overflow: hidden !important;
}
body.navi_on .navi_wrap {
  width: 100vw;
}
body.navi_on #contents {
  pointer-events: none;
}
body.navi_on #hamburger .lines .line {
  background: #FFF;
}
body.navi_on #hamburger .lines .line:nth-child(1) {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: rotate(30deg);
}
body.navi_on #hamburger .lines .line:nth-child(2) {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: rotate(-30deg);
}
body.navi_on .scroll {
  display: none !important;
}
body.reach_to_foot #head {
  transform: translateY(calc(-1 * var(--headHeight)));
}
body.loaded #loading {
  opacity: 0;
  filter: Alpha(opacity=0);
  pointer-events: none;
}
body.loaded #loading .icon {
  transform: rotateY(90deg);
}

/*WP用追記*/
.article .wp-block-button__link {
  padding-left: 40px;
  padding-right: 40px;
  text-decoration: none;
}

.wp-block-image {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.wp-block-image.tl {
  align-items: flex-start;
}
.wp-block-image.tr {
  align-items: flex-end;
}
.wp-block-image img {
  max-width: 100%;
  height: auto !important;
}
.wp-block-image figcaption {
  font-size: 0.66rem;
  text-align: left;
}
.wp-block-image.no_flex {
  display: block;
}

.wp-block-embed {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin: var(--space2) 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-bottom: 0;
}
.wp-block-embed.wp-block-embed-youtube, .wp-block-embed.wp-embed-aspect-16-9, .wp-block-embed.wp-block-embed-vimeo {
  max-width: 960px;
}
.wp-block-embed.wp-block-embed-youtube > .wp-block-embed__wrapper, .wp-block-embed.wp-embed-aspect-16-9 > .wp-block-embed__wrapper, .wp-block-embed.wp-block-embed-vimeo > .wp-block-embed__wrapper {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.wp-block-embed.wp-block-embed-youtube > .wp-block-embed__wrapper iframe, .wp-block-embed.wp-embed-aspect-16-9 > .wp-block-embed__wrapper iframe, .wp-block-embed.wp-block-embed-vimeo > .wp-block-embed__wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.wp-block-columns.photos .wp-block-image figure {
  display: flex;
  flex-direction: column;
}
.wp-block-columns.photos .wp-block-image figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (min-width: 782px) {
  .wp-block-columns.photos .photo {
    max-width: 50%;
  }
}
.wp-block-columns.two_col {
  align-items: center;
}
.wp-block-columns.two_col .wp-block-image figure {
  display: flex;
  flex-direction: column;
}
.wp-block-columns.two_col .wp-block-image figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .wp-block-columns > .wp-block-column:not(:last-child) {
    margin-bottom: 1.75em;
  }
}

.caution {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  padding: 20px;
  margin: 40px auto 0;
  max-width: 818px;
}
.caution .txt:first-child {
  margin-bottom: 1rem;
}

.tab_change_tgt:not(.active) {
  display: none;
}

.section[key=magazine] {
  background: var(--colorWeakGray);
}

.connectx_magazine_wrap .inner {
  display: flex;
  flex-direction: column;
  grid-gap: var(--space2);
  align-items: center;
  justify-content: center;
}
.connectx_magazine_wrap .inner .banners .banner {
  max-width: 320px;
}
.connectx_magazine_wrap .inner .banners .banner .a {
  overflow: visible;
  transition: var(--animationDuration) transform;
  position: relative;
}
.connectx_magazine_wrap .inner .banners .banner .a img {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
}
.connectx_magazine_wrap .inner .banners .banner .a::after {
  position: absolute;
  top: var(--space1)/2;
  margin-left: 0;
  right: var(--space1)/2;
  font-size: 0.66rem;
}
.connectx_magazine_wrap .inner .banners .banner .a:hover {
  transform: scale(1.1);
}