@charset "UTF-8";

:root {
  --white-color: #fff;
  --black-color: #000;
  --gray-color-500: #444648;
  --gray-color-400: #929292;
  --gray-color-300: #cccccc;
  --gray-color-200: #e0e0e0;
  --gray-color-100: #f5f5f5;
  --c-main-500: #237d06;
  --c-main-400: #40a41f;
  --c-main-300: #6cc64f;
  --c-main-200: #cae6c1;
  --c-main-100: #f1f8f7;
  --c-sub-500: #4050a5;
  --c-sub-400: #5e6dbd;
  --c-sub-300: #a7b0e5;
  --c-sub-200: #c6cbe5;
  --c-sub-100: #f2f4fd;
  --fs: 16;
}

/* ==========================================================================
  ELEMENT RESET
========================================================================== */

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

html {
  font-family: serif;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black-color, #000);
  font-weight: 400;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a {
  outline: 0;
}

a:focus,
button:focus {
  outline: 0;
}

em {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

input,
button,
select,
textarea {
  line-height: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  line-height: inherit;
}

hr {
  margin: 0;
}

hr {
  margin: 5rem 0;
  border: 1px #ccc solid;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ==========================================================================
  UTILL
========================================================================== */

/* 画像置換 */

.u-ir {
  display: block;
  overflow: hidden;
  font: 0/0 a;
  white-space: nowrap;
  text-indent: 100%;
}

/* PC、タブレットで画像置換 */

@media all and (min-width: 768px), print {
  .u-ir--tab-pc {
    display: block;
    overflow: hidden;
    font: 0/0 a;
    white-space: nowrap;
    text-indent: 100%;
  }
}

/* --------------------------------------------------------------------------
  非表示
-------------------------------------------------------------------------- */

/* PCで非表示 */

@media all and (min-width: 1025px), print {
  .u-hide-pc {
    display: none;
  }
}

/* PC、タブレットで非表示 */

@media all and (min-width: 768px), print {
  .u-hide-tab-pc {
    display: none;
  }
}

/* タブレットのみ非表示 */

@media all and (min-width: 768px) and (max-width: 1024px) {
  .u-hide-tab {
    display: none;
  }
}

/* SPで非表示 */

@media all and (max-width: 767px) {
  .u-hide-sp {
    display: none;
  }
}

/* --------------------------------------------------------------------------
  行揃え
-------------------------------------------------------------------------- */

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

/* TAB,PCのみテキストセンター */

@media all and (min-width: 768px), print {
  .u-center-tab-pc {
    text-align: center;
  }
}

/* SPのみテキストセンター */

@media all and (max-width: 767px) {
  .u-center-sp {
    text-align: center;
  }
}

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

/* TAB,PCのみテキストセンター */

@media all and (min-width: 768px), print {
  .u-left-tab-pc {
    text-align: left;
  }
}

/* SPのみテキストセンター */

@media all and (max-width: 767px) {
  .u-left-sp {
    text-align: left;
  }
}

.u-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.u-combine {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
}

/* --------------------------------------------------------------------------
  強調
-------------------------------------------------------------------------- */

.u-strong {
  font-weight: 700;
}

.u-bold {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
  背景
-------------------------------------------------------------------------- */

/* primary */

.u-bg-main-500 {
  background-color: var(--c-main-500);
}

/* --------------------------------------------------------------------------
  テキストカラー
-------------------------------------------------------------------------- */

/* primary */

.u-color-main-500 {
  color: var(--c-main-500);
}

/* ==========================================================================
  LAYOUT
========================================================================== */

/* --------------------------------------------------------------------------
  MAIN
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .l-main-container {
  }
  .l-main-container__in {
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  SECTION
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .l-sec {
  }
  .l-sec__in {
    max-width: calc(1000 / var(--fs) * 1rem);
    margin: auto;
    padding: 0 calc(20 / var(--fs) * 1rem);
  }
  .l-sec__body {
    padding: calc(80 / var(--fs) * 1rem) 0;
  }
  .l-sec__header {
    margin-bottom: calc(40 / var(--fs) * 1rem);
  }
  .l-sec__content {
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  BTN
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .l-btn-list {
    --col: 1;
    --gap-x: 32;
    --gap-y: 32;
    display: flex;
    gap: calc(var(--gap-y) / var(--fs) * 1rem) calc(var(--gap-x) / var(--fs) * 1rem);
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-btn-list-item {
    width: calc((100% - var(--gap-x) / var(--fs) * 1rem * (var(--col) - 1)) / var(--col));
  }

  /* postion */
  .l-btn-list--left {
    justify-content: left;
  }

  /* col */
  .l-btn-list--2col {
    --col: 2;
  }
  .l-btn-list--3col {
    --col: 3;
  }
  .l-btn-list--4col {
    --col: 4;
  }
  .l-btn-list--5col {
    --col: 5;
  }
  .l-btn-list--auto .l-btn-list-item {
    width: auto;
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  HEADER COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  その他
-------------------------------------------------------------------------- */

/* LV2 */

@media all and (min-width: 768px), print {
  .c-header-lv2 {
    --header-size: 28;
    --header-deco-color: var(--c-main-400);
  }
  .c-header-lv2__in {
    position: relative;
    display: block;
    padding-top: calc(24 / var(--fs) * 1rem);
    padding-left: calc(60 / var(--fs) * 1rem);
    border-top-left-radius: calc(8 / var(--fs) * 1rem);
    overflow: hidden;
  }
  .c-header-lv2__in::before {
    content: '';
    display: block;
    width: 100%;
    height: calc(3 / var(--fs) * 1rem);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--header-deco-color);
  }
  .c-header-lv2__in::after {
    content: '';
    position: absolute;
    border: solid var(--header-deco-color);
    border-width: calc(32 / var(--fs) * 1rem) calc(32 / var(--fs) * 1rem) 0 0;
    border-bottom-right-radius: calc(32 / var(--fs) * 1rem);
    top: 0;
    left: 0;
  }
  .c-header-lv2__txt {
    font-weight: 700;
    font-size: calc(var(--header-size) / var(--fs) * 1rem);
    line-height: 1.4;
  }
}

@media all and (max-width: 767px) {
}

/* LV3 */

@media all and (min-width: 768px), print {
  .c-header-lv3 {
    --header-size: 20;
    --header-lh: 1.5;
    --header-deco-color: var(--c-main-400);
    --header-deco-height: 4;
    font-size: calc(var(--header-size) / var(--fs) * 1rem);
    line-height: var(--header-lh);
  }
  .c-header-lv3__in {
    display: block;
    position: relative;
    display: flex;
  }
  .c-header-lv3__in::before {
    content: '';
    display: block;
    width: calc(40 / var(--fs) * 1rem);
    height: calc(var(--header-deco-height) / var(--fs) * 1rem);
    background-color: var(--header-deco-color);
    flex-shrink: 0;
    margin-top: calc((1lh - (var(--header-deco-height) / var(--fs) * 1rem)) / 2);
    border-radius: 9999px;
  }
  .c-header-lv3__txt {
    font-weight: 700;
    padding-left: calc(20 / var(--fs) * 1rem);
    display: block;
  }
}

@media all and (max-width: 767px) {
}

/* タイトル */

@media all and (min-width: 768px), print {
  .c-header-title {
    --header-fs: 34;
    --header-color: var(--black-color);
    font-size: calc(var(--header-fs) / var(--fs) * 1rem);

    text-align: center;
  }
  .c-header-title__label {
    color: var(--header-color);
    font-weight: bold;
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  TEXT COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  テキスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-txt {
    --txt-fs: 16;
    --txt-lh: 1.8;
    font-size: calc(var(--txt-fs) / var(--fs) * 1rem);
    line-height: var(--txt-lh);
  }
  .c-txt sub,
  .c-txt sub {
    font-size: 0.5em;
  }

  .c-txt sub {
    top: -0.5em;
  }

  .c-txt sub {
    bottom: -0.1em;
  }

  /* L */
  .c-txt--xxxl {
    --txt-fs: 28;
  }
  .c-txt--xxl {
    --txt-fs: 24;
  }
  .c-txt--xl {
    --txt-fs: 20;
  }
  .c-txt--l {
    --txt-fs: 18;
  }

  /* M */
  .c-txt--m {
    --txt-fs: 16;
  }

  /* S */
  .c-txt--s {
    --txt-fs: 14;
  }
  .c-txt--xs {
    --txt-fs: 12;
  }
  .c-txt--xxs {
    --txt-fs: 11;
  }
  .c-txt--xxxs {
    --txt-fs: 10;
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  リスト テキスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-list {
    --list-fs: 16;
    --list-lh: 1.6;
    font-size: calc(var(--list-fs) / var(--fs) * 1rem);
    line-height: var(--list-lh);
  }
  .c-list--desc {
    --list-desc-color: var(--c-main-500);
  }
  .c-list--num {
    counter-reset: item;
    > .c-list-item::before {
      content: counter(item) '.';
      counter-increment: item;
    }
  }
  .c-list-item {
    position: relative;
    display: flex;
  }
  .c-list-item::before {
    content: '・';
  }
  .c-list--desc .c-list-item::before {
    content: '';
    display: block;
    width: calc(var(--list-fs) / var(--fs) * 1rem);
    height: calc(var(--list-fs) / var(--fs) * 1rem);
    border-radius: 9999px;
    background-color: var(--list-desc-color);
    margin-top: calc((var(--list-fs) * var(--list-lh) - var(--list-fs)) / 2 / var(--fs) * 1rem);
    margin-right: calc(6 * var(--list-fs) / var(--fs) / var(--fs) * 1rem);
    flex-shrink: 0;
  }
  .c-list-item__in {
  }
  .c-list-item__in > a {
    color: var(--c-main-500);
    text-decoration: underline;
  }
  .c-list-item__in > a:hover {
    text-decoration: none;
  }

  /* L */
  .c-list--l {
    --list-fs: 18;
  }
  /* m */
  .c-list--m {
    --list-fs: 16;
  }
  /* s */
  .c-list--s {
    --list-fs: 14;
  }
  /* xs */
  .c-list--xs {
    --list-fs: 12;
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  番号付きリスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-num-list {
    --num-list-fs: 16;
    --num-list-color: var(--c-main-500);
  }
  .c-num-list__dl {
    position: relative;
    padding-left: 2rem;
  }
  .c-num-list__dt {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.95em;
    color: var(--white-color);
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.95;
    text-align: center;
    background-color: var(--num-list-color);
    border-radius: 9999px;
  }
  .c-num-list__dd {
    line-height: 1.5;
    font-size: calc(var(--num-list-fs) / var(--fs) * 1rem);
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  注釈 テキスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-note {
    --note-txt-fs: 16;
    --note-position: start;
  }
  .c-note-txt {
    font-size: calc(var(--note-txt-fs) / var(--fs) * 1rem);
    display: flex;
    justify-content: var(--note-position);
  }
  .c-note-txt::before {
    content: '※';
  }
  .c-note-txt__label {
  }
  .c-note--num {
    counter-reset: item;
    > .c-note-txt::before {
      counter-increment: item;
      content: '※' counter(item);
    }
  }

  /* CENTER */
  .c-note--center {
    --note-position: center;
  }

  /* M */
  .c-note--m {
    --note-txt-fs: 16;
  }
  /* S */
  .c-note--s {
    --note-txt-fs: 14;
  }
  /* XS */
  .c-note--xs {
    --note-txt-fs: 12;
  }
  /* XXS */
  .c-note--xxs {
    --note-txt-fs: 11;
  }
  /* XXXS */
  .c-note--xxxs {
    --note-txt-fs: 10;
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  BUTTON COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  ボタン
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-btn {
    --btn-bg-color: var(--c-main-500);
    --btn-border-color: var(--c-main-500);
    --btn-txt-color: var(--white-color);
    --btn-arrow-color: var(--white-color);
    --btn-txt-fs: 16;
    --btn-min-height: 56;
    --btn-px: 62;
    --btn-ico-size: 12;
    --btn-radius: 9999;

    display: block;
    width: 100%;
    font-size: calc(var(--btn-txt-fs) / var(--fs) * 1rem);
    line-height: 1.5;
  }
  a.c-btn:hover,
  a .c-btn:hover,
  button.c-btn:hover {
    --btn-bg-color: var(--white-color);
    --btn-txt-color: var(--btn-border-color);
    --btn-arrow-color: var(--btn-border-color);
  }
  .c-btn__in {
    background-color: var(--btn-bg-color);
    border-radius: calc(var(--btn-radius) / var(--fs) * 1rem);
    border: calc(1 / var(--fs) * 1rem) solid var(--btn-border-color);
    height: 100%;
    transition: all 0.2s;
  }
  .c-btn__body {
    position: relative;
    min-height: calc(var(--btn-min-height) / var(--fs) * 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(8 / var(--fs) * 1rem) calc(var(--btn-px) / var(--fs) * 1rem);
  }
  .c-btn-txt {
    color: var(--btn-txt-color);
    text-align: center;
    width: 100%;
    transition: all 0.2s;
  }
  .c-btn-txt__label {
    font-weight: bold;
  }
  .c-btn-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(var(--btn-px) / var(--fs) * 1rem);
    height: calc(var(--btn-min-height) / var(--fs) * 1rem);
  }
  .c-btn-arrow__label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .c-btn-arrow__label .c-svg {
    width: calc(var(--btn-ico-size) / var(--fs) * 1rem);
    fill: var(--btn-arrow-color);
    transition: all 0.2s;
  }

  /* square */
  .c-btn--square {
    --btn-radius: 8;
  }

  /* fontsize */
  .c-btn--xl {
    --btn-txt-fs: 18;
  }
  .c-btn--l {
    --btn-txt-fs: 16;
    --btn-min-height: 88;
    --btn-px: 78;
  }
  .c-btn--m {
    --btn-txt-fs: 16;
  }
  .c-btn--s {
    --btn-txt-fs: 13;
    --btn-min-height: 48;
  }
  .c-btn--xs {
    --btn-txt-fs: 12;
    --btn-min-height: 40;
  }
  .c-btn--xs .c-btn-arrow {
    display: none;
  }

  /* color */
  .c-btn--stroke {
    --btn-bg-color: var(--white-color);
    --btn-txt-color: var(--btn-border-color);
    --btn-arrow-color: var(--btn-border-color);
  }
  .c-btn--stroke:hover {
    --btn-bg-color: var(--btn-border-color);
    --btn-txt-color: var(--white-color);
    --btn-arrow-color: var(--white-color);
  }

  /* back */
  .c-btn--back .c-btn-arrow {
    left: 0;
    right: unset;
    transform: translateY(-50%) rotate(180deg);
  }

  /* disable */
  .c-btn--disable {
    --btn-bg-color: var(--gray-color-300);
    --btn-border-color: var(--gray-color-300);
    pointer-events: none;
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  TABLE COMPONENT
========================================================================== */

@media all and (min-width: 768px), print {
  .c-table {
  }
  .c-table__in {
  }
  .c-table__header {
    margin-bottom: calc(10 / var(--fs) * 1rem);
  }
  .c-table__body {
  }
  .c-table-chart {
    border-radius: calc(16 / var(--fs) * 1rem);
    overflow: hidden;
    border: var(--c-sub-200) calc(2 / var(--fs) * 1rem) solid;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--white-color);
    width: 100%;
  }
  .c-table-chart__thead {
  }
  .c-table-chart__thead + .c-table-chart__tbody {
    border-top: var(--c-sub-200) calc(2 / var(--fs) * 1rem) solid;
  }
  .c-table-chart__thead .c-table-chart__tr {
    text-align: left;
  }
  .c-table-chart__tr {
  }
  .c-table-chart__tr + .c-table-chart__tr .c-table-chart-cell {
    border-top: var(--c-sub-200) calc(2 / var(--fs) * 1rem) solid;
  }
  .c-table-chart-cell {
    padding: calc(16 / var(--fs) * 1rem) calc(24 / var(--fs) * 1rem);
  }
  .c-table-chart-cell + .c-table-chart-cell {
    border-left: var(--c-sub-200) calc(2 / var(--fs) * 1rem) solid;
  }
  .c-table__footer {
    margin-top: calc(10 / var(--fs) * 1rem);
  }

  .table-cell-size {
  }
  .table-cell-size--l {
    width: calc(300 / var(--fs) * 1rem);
  }
  .table-cell-size--m {
    width: calc(200 / var(--fs) * 1rem);
  }
  .table-cell-size--s {
    width: calc(100 / var(--fs) * 1rem);
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  IMG SVG COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  img
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-img {
  }
  .c-img__label {
    width: 100%;
  }
  .c-img__caption {
    margin-top: calc(16 / var(--fs) * 1rem);
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  svg
-------------------------------------------------------------------------- */

.c-svg {
  position: relative;
  display: block;
  width: 100%;
}

.c-svg::before {
  display: block;
  padding-top: 100%;
  content: '';
}

.c-svg > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
  COMMON
========================================================================== */

/* --------------------------------------------------------------------------
  GLOBAL HEADER
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .gheader {
    --header-ham-color: var(--c-sub-400);
  }
  .gheader__in {
    padding: calc(22 / var(--fs) * 1rem) 0;
    position: relative;
  }
  .gheader__body {
    padding: 0 0 0 calc(32 / var(--fs) * 1rem);
  }
  .gheader-logo {
    position: absolute;
    width: calc(167 / var(--fs) * 1rem);
    top: 13px;
    right: 15px;
  }
  .gheader-logo__label {
    font-size: calc(32 / var(--fs) * 1rem);
  }
}

@media all and (max-width: 767px) {
  .gheader-logo {
    display: none;
  }
}

/* --------------------------------------------------------------------------
  GLOBAL FOOTER
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .gfooter {
    --gfooter-bg: var(--c-main-500);
  }
  .gfooter__in {
  }
  .gfooter__body {
    position: relative;
  }
  .gfooter-copyright {
    text-align: center;
    background: var(--gfooter-bg);
    padding: calc(16 / var(--fs) * 1rem) calc(20 / var(--fs) * 1rem);
  }
  .gfooter-copyright-txt {
    color: var(--white-color);
    font-size: calc(10 / var(--fs) * 1rem);
    line-height: 1.5;
  }
}

@media all and (max-width: 767px) {
}

@font-face {
  font-family: yugo;
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular"); }

@font-face {
  font-family: yugo;
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic"); }

  html[lang]:not([lang="ja"]) * {
    letter-spacing: 0;
  }
  
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, footer, header, nav, section {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

figcaption, figure, main {
  display: block; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active, a:hover {
  outline-width: 0; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b, strong {
  font-weight: inherit; }

b, strong {
  font-weight: bolder; }

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

dfn {
  font-style: italic; }

mark {
  background-color: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

audio, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  display: inline-block;
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details, menu {
  display: block; }

summary {
  display: list-item; }

canvas {
  display: inline-block; }

template {
  display: none; }

[hidden] {
  display: none; }

/* ==========================================================================
   element reset
   ======================================================================= */
html {
  cursor: default; }

h1, h2, h3, h4, h5, h6, p {
  font-weight: normal;
  font-size: 100%;
  margin-top: 0;
  margin-bottom: 0; }

dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0; }

ol, ul {
  list-style: none; }

li {
  list-style: none; }

figure {
  margin: 0; }

em {
  font-style: normal; }

a {
  color: inherit;
  text-decoration: none; }

table {
  border-collapse: collapse; }

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none; }
  button:focus {
    outline: none; }

input,
button,
select,
textarea {
  line-height: inherit; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
  line-height: inherit; }

/* ==========================================================================
   base
   ======================================================================= */

html {
  font-family: yugo, YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino kaku Gothic ProN", Meiryo, Verdana, sans-serif;
  /*font-family: "Hiragino kaku Gothic ProN", Meiryo, Verdana, sans-serif;*/
  font-size: 62.5%;
}

body {
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  vertical-align: top;
  letter-spacing: 0.08em;
  overflow-x: hidden;
}

button,
input,
optgroup,
select,
textarea {
  font-family: yugo, YuGothic, -apple-system, BlinkMacSystemFont, "Hiragino kaku Gothic ProN", Meiryo, Verdana, sans-serif;
  /*font-family: "Hiragino kaku Gothic ProN", Meiryo, Verdana, sans-serif;*/
}

i {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

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

/* ==========================================================================
   util parts
   ======================================================================= */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}
.u-ir {
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: 0 0 no-repeat;
  background-size: cover;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.u-ir::after {
  content: '';
  display: block;
}

/* ---------- section ---------- */
@media all and (min-width: 768px) {
}

@media all and (max-width: 767px){
  .u-hide-sp {
    display: none;
  }
}

/* device display */
@media all and (min-width: 768px) {
  .u-hide-pc {
    display: none;
  }
}
@media all and (max-width: 767px){
  .u-hide-large {
    display: none;
  }
}
@media all and (min-width: 1366px) {
  .u-hide-large {
    display: none;
  }
}

/* ==========================================================================
   btn
   ======================================================================= */
@media all and (min-width: 768px){
.u-btn {
  display: block;
  width: 100%;
  height: 36px;
  text-align: center;
}
.u-btn-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  transition: all 200ms ease-out;
  background-color: #fe710e;
  position: relative;
}
.u-btn-inner::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 18px solid #fe710e;
  border-right: 18px solid transparent;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  position: absolute;
  top: 0;
  right: -36px;
  transition: all 200ms ease-out;
}
.u-btn-inner .txt {
  font-size: 120%;
  display: block;
  width: 100%;
  color: #ffffff;
  padding: 9px 0 9px 8px;
}
.no-touchevents .u-btn-inner:hover {
  opacity: .7;
  /*background-color: #000000;*/
}
.no-touchevents .u-btn-inner:hover::after {
  /*border-left-color: #000000;*/
}

/* back btn */
.u-btn.is--back .u-btn-inner::after {
  border-left: 18px solid transparent;
  border-right: 18px solid #fe710e;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  left: -36px;
  right: auto;
}
.no-touchevents .u-btn.is--back .u-btn-inner:hover::after {
  /*border-right-color: #000000;*/
}

/* green */
.u-btn.is--green .u-btn-inner {
  background-color: #02893e;
}
.u-btn.is--green .u-btn-inner::after {
  border-left-color: #02893e;
}
.no-touchevents .u-btn.is--green .u-btn-inner:hover {
  /*background-color: #000000;*/
}
.no-touchevents .u-btn.is--green .u-btn-inner:hover::after {
  /*border-left-color: #000000;*/
}
.u-btn.is--back.is--green .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #02893e;
}
.no-touchevents .u-btn.is--back.is--green .u-btn-inner:hover::after {
  border-left-color: transparent;
  /*border-right-color: #000000;*/
}

/* pink */
.u-btn.is--pink .u-btn-inner {
  background-color: #fa5f71;
}
.u-btn.is--pink .u-btn-inner::after {
  border-left-color: #fa5f71;
}
.no-touchevents .u-btn.is--pink .u-btn-inner:hover {
  /*background-color: #000000;*/
}
.no-touchevents .u-btn.is--pink .u-btn-inner:hover::after {
  /*border-left-color: #000000;*/
}
.u-btn.is--back.is--pink .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #fa5f71;
}
.no-touchevents .u-btn.is--back.is--pink .u-btn-inner:hover::after {
  border-left-color: transparent;
  /*border-right-color: #000000;*/
}

/* blue */
.u-btn.is--blue .u-btn-inner {
  background-color: #0068b7;
}
.u-btn.is--blue .u-btn-inner::after {
  border-left-color: #0068b7;
}
.no-touchevents .u-btn.is--blue .u-btn-inner:hover {
  /*background-color: #000000;*/
}
.no-touchevents .u-btn.is--blue .u-btn-inner:hover::after {
  /*border-left-color: #000000;*/
}
.u-btn.is--back.is--blue .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #0068b7;
}
.no-touchevents .u-btn.is--back.is--blue .u-btn-inner:hover::after {
  border-left-color: transparent;
  /*border-right-color: #000000;*/
}

/* purple */
.u-btn.is--purple .u-btn-inner {
  background-color: #824c9c;
}
.u-btn.is--purple .u-btn-inner::after {
  border-left-color: #824c9c;
}
.no-touchevents .u-btn.is--purple .u-btn-inner:hover {
  /*background-color: #000000;*/
}
.no-touchevents .u-btn.is--purple .u-btn-inner:hover::after {
  /*border-left-color: #000000;*/
}
.u-btn.is--back.is--purple .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #824c9c;
}
.no-touchevents .u-btn.is--back.is--purple .u-btn-inner:hover::after {
  border-left-color: transparent;
  /*border-right-color: #000000;*/
}
}


@media all and (max-width: 767px){
.u-btn {
  display: block;
  width: 100%;
  height: 38px;
  text-align: center;
}
.u-btn-inner {
  display: table;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  transition: all 200ms ease-out;
  background-color: #fe710e;
  position: relative;
}
.u-btn-inner::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 19px solid #fe710e;
  border-right: 19px solid transparent;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  position: absolute;
  top: 0;
  right: -38px;
  transition: all 200ms ease-out;
}
.u-btn-inner .txt {
  font-size: 130%;
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  color: #ffffff;
  padding-left: 8px;
  padding-top: 1px;
}

/* back btn */
.u-btn.is--back .u-btn-inner::after {
  border-left: 19px solid transparent;
  border-right: 19px solid #fe710e;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  left: -38px;
  right: auto;
}

/* green */
.u-btn.is--green .u-btn-inner {
  background-color: #02893e;
}
.u-btn.is--green .u-btn-inner::after {
  border-left-color: #02893e;
}
.u-btn.is--back.is--green .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #02893e;
}

/* pink */
.u-btn.is--pink .u-btn-inner {
  background-color: #fa5f71;
}
.u-btn.is--pink .u-btn-inner::after {
  border-left-color: #fa5f71;
}
.u-btn.is--back.is--pink .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #fa5f71;
}

/* blue */
.u-btn.is--blue .u-btn-inner {
  background-color: #0068b7;
}
.u-btn.is--blue .u-btn-inner::after {
  border-left-color: #0068b7;
}
.u-btn.is--back.is--blue .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #0068b7;
}

/* purple */
.u-btn.is--purple .u-btn-inner {
  background-color: #824c9c;
}
.u-btn.is--purple .u-btn-inner::after {
  border-left-color: #824c9c;
}
.u-btn.is--back.is--purple .u-btn-inner::after {
  border-left-color: transparent;
  border-right-color: #824c9c;
}

}


/* ==========================================================================
   scroll
   ======================================================================= */
@media all and (min-width: 768px){
.u-scroll {
  width: 12px;
  position: absolute;
  right: 35px;
  top: 550px;
  z-index: 99;
}
.u-scroll__txt {
  line-height: 0;
}
.u-scroll__txt img {
  width: 100%;
  height: auto;
}
.u-scroll__arrow {
  line-height: 0;
  margin-top: 10px;
}
.u-scroll__arrow img {
  width: 100%;
  height: auto;
}
}


@media all and (max-width: 767px){
.u-scroll {
  display: none;
}
}


@keyframes scroll-animation {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 15px);
    opacity: 0;
  }
}
@-webkit-keyframes scroll-animation {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 15px);
    opacity: 0;
  }
}
.u-scroll__arrow {
  -webkit-animation: scroll-animation 1400ms ease-out infinite normal;
  animation: scroll-animation 1400ms ease-out infinite normal;
}



/* ==========================================================================
   gheader
   ======================================================================= */
#gheader {
  z-index: 102;
  position: relative;
}
/* menu close */
.gheader-nav-wrapper {
  transition: all 600ms ease;
  transform: translateX(100%);
}
.gheader-btn__txt--menu {
  transition: all 300ms ease;
  opacity: 1;
}
.gheader-btn__txt--close {
  transition: all 300ms ease;
  opacity: 0;
}
.gheader-btn__close-line {
  opacity: 0;
}

/* menu open */
.is--gnav-open .gheader-nav-wrapper {
  transform: translateX(0);
  overflow-y: scroll;
}
.is--gnav-open .gheader-btn__txt--menu {
  opacity: 0;
}
.is--gnav-open .gheader-btn__txt--close {
  opacity: 1;
}
.is--gnav-open .gheader-btn__line {
  opacity: 0;
}
.is--gnav-open .gheader-btn__line--top {
  top: 10px;
}
.is--gnav-open .gheader-btn__line--bottom {
  top: 10px;
}
.is--gnav-open .gheader-btn__close-line {
  opacity: 1
}
.is--gnav-open .gheader-btn__close-line--top {
  transform: rotate(-30deg);
}
.is--gnav-open .gheader-btn__close-line--bottom {
  transform: rotate(30deg);
}
.txt--secondary{
  margin-left: 1.5em;
}
.txt--secondarya {
  line-height: 1.6;
  padding-left: 0;
  text-indent: 0;
}
.txt--secondarya span {
  background: linear-gradient(transparent 92%, #000000 100%);
  padding-bottom: .25em;
}


@media all and (min-width: 768px){
.gheader {
  position: relative;
}
.gheader__ministry {
  position: absolute;
  top: 32px;
  left: 34px;
  z-index: 100;
}
.gheader__ministry a {
  display: block;
}
.gheader__ministry a img {
  width: auto;
  height: 32px;
}
.gheader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
/* lang dropdown menu */
.lang-dropdown {
  display: block;
  position: absolute;
  width: 100px;
  top: 32px;
  right: 139px;
  z-index: 100;
}
.dropdown-trigger {
  cursor: pointer;
}
.lang-header {
  position: relative;
  padding-right: 20px;
  border-bottom: 2px #000 solid;
}
.lang-header__txt {
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  letter-spacing: 0.1em;
}
.lang-header__icon {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 4px;
  top: 2px;
}
.lang-header__icon::before {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
}
.lang-dropdown.is-open .lang-header__icon {
  top: 5px;
}
.lang-dropdown.is-open .lang-header__icon::before {
  transform: rotate(135deg);
}
.lang-dropdown__content {
  background-color: rgba(255, 255, 255, 0.95);
  max-width: 100px;
  visibility: hidden;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.2s ease-out,transform 0.2s ease, visibility 0.05s;
  padding: 4px;
}
.lang-dropdown.is-open .lang-dropdown__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(5px);
}
.lang-list {
  display: flex;
  flex-direction: column;
}
.lang-txt a[data-stt-active] {
  pointer-events: none;
}
.lang-txt a[data-stt-active]::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.lang-txt a {
  position: relative;
  display: inline-block;
  padding: 4px 2px;
}
.lang-txt a:hover::before {
  width: 100%;
}
.lang-txt a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
}
.lang-list-item {
}
.lang-txt {
  font-weight: bold;
}
/* menu btn */
.gheader-btn {
  display: none;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 27px;
  right: 27px;
  z-index: 102;
}
.gheader-btn a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 200ms ease;
}
.no-touchevents .gheader-btn a:hover,
.no-touchevents .gheader-btn a:hover {
  opacity: 0.6;
}
.gheader-btn__line {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #000000;
  position: absolute;
  left: 0;
  transition: all 400ms ease;
}
.gheader-btn__line--top {
  top: 0;
}
.gheader-btn__line--middle {
  top: 10px;
}
.gheader-btn__line--bottom {
  top: 20px;
}
.gheader-btn__close-line {
  display: block;
  width: 50px;
  height: 4px;
  background-color: #000000;
  position: absolute;
  left: 0;
  transition: all 400ms ease;
  top: 10px;
}
.gheader-btn__txt {
  position: absolute;
  width: 50px;
  bottom: 2px;
  left: 0;
}
.gheader-btn__txt img {
  width: 100%;
  height: auto;
}

/* nav list */
.gheader-nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 101;
}
.gheader-nav-inner {
  position: absolute;
  top: 0;
  left:9%;
  right: 9%;
  padding: 60px 0;
}
.gheader-nav-list {
}
.gheader-nav-item {
}
.gheader-nav-item:first-child {
}
.gheader-nav-item a {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}
.gheader-nav-wrapper {
  border-bottom: 2px solid transparent;
  transition: .3s ease-in-out;
}
.gheader-nav-item__txt {
}
.gheader-nav-item__txt .icon {
  width: 51px;
  height: 31px;
  position: absolute;
  top: -4px;
  left: 0;
  background: url(../img/common/gheader_icon.png) 0 0 no-repeat;
  background-size: cover;
}
.gheader-nav-item__txt .txt {
  font-size: 250%;
  font-weight: bold;
  line-height: 1;
}
.txt--secondary {
  margin-left: 10px;
  font-size: 250%;
  font-weight: bold;
  line-height: 1;
  &::before {
    content: "・";
  }
  &:first-child {
    margin-top: 30px;
  }
  &:last-child {
    margin-bottom: 40px;
  }
}
.txt--secondary > a {
  text-decoration: underline;
  text-underline-offset: 10px;
  padding-left: 1em;
  text-indent: -1em;
  padding-top: 20px;
  padding-bottom: 20px;
}
.no-touchevents .gheader-nav-item a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  margin: 0px 0 -2px;
  transition: .5s all;
  background-color: #53A949;
}
.no-touchevents .txt--secondary a:after {
  display: none;
}
/* .no-touchevents .gheader-nav-item__txt .txt--secondarya:after {
  display: block;
  padding-left: 0;
  background-color:#000;
  height: 1px;
  width: 100%;
  transition: none;
} */
.no-touchevents .gheader-nav-item a:hover::after {
    width: 100%;
}
}

@media all and (min-width: 768px) and (max-width: 1024px){
.gheader-nav-item__txt .txt,
.gheader-nav-item__txt .txt--secondary {
  font-size: 180%;
}
.txt--secondary {
  font-size: 180%;
  margin-left: 67px;
  padding-left: 1em;
  text-indent: -1em;
}
.gheader-nav-inner {
  left: 8%;
  right: 8;
}
.gheader__ministry {
  top: 20px;
  left: 20px;
}
.gheader__ministry a img {
  height: 18px;
}
.no-touchevents .gheader-nav-item a::after {
  margin: 0px 0 -8px;
}
}

@media all and (max-width: 767px){
.gheader {
  position: relative;
}
.gheader__ministry {
  position: absolute;
  top: 16px;
  left: 17px;
  z-index: 100;
}
.gheader__ministry a {
  display: block;
}
.gheader__ministry a img {
  width: auto;
  height: 24px;
}
.gheader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
/* lang dropdown menu */
.lang-dropdown {
  display: block;
  position: absolute;
  width: 100px;
  top: 23px;
  right: 60px;
  z-index: 100;
}
.dropdown-trigger {
  cursor: pointer;
}
.lang-header {
  position: relative;
  padding-right: 20px;
  border-bottom: 2px #000 solid;
}
.lang-header__txt {
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  letter-spacing: 0.1em;
}
.lang-header__icon {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  right: 4px;
  top: 2px;
}
.lang-header__icon::before {
  display: block;
  content: '';
  width: 6px;
  height: 6px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
}
.lang-dropdown.is-open .lang-header__icon {
  top: 5px;
}
.lang-dropdown.is-open .lang-header__icon::before {
  transform: rotate(135deg);
}
.lang-dropdown__content {
  max-width: 100px;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.2s ease-out,transform 0.2s ease, visibility 0.05s;
  padding: 4px;
}
.lang-dropdown.is-open .lang-dropdown__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(5px);
}
.lang-list {
  display: flex;
  flex-direction: column;
}
.lang-txt a[data-stt-active] {
  pointer-events: none;
}
.lang-txt a[data-stt-active]::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.lang-txt a {
  position: relative;
  display: inline-block;
  padding: 4px 2px;
}
.lang-txt a:hover::before {
  width: 100%;
}
.lang-txt a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.3s;
}
.lang-list-item {
}
.lang-txt {
  font-weight: bold;
}
/* menu btn */
.gheader-btn {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 102;
}
.gheader-btn a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 200ms ease;
}
.gheader-btn__line {
  display: block;
  width: 35px;
  height: 3px;
  background-color: #000000;
  position: absolute;
  left: 0;
  transition: all 400ms ease;
}
.gheader-btn__line--top {
  top: 0;
}
.gheader-btn__line--middle {
  top: 8px;
}
.gheader-btn__line--bottom {
  top: 16px;
}
.gheader-btn__close-line {
  display: block;
  width: 35px;
  height: 3px;
  background-color: #000000;
  position: absolute;
  left: 0;
  transition: all 400ms ease;
  top: 8px;
}
.gheader-btn__txt {
  position: absolute;
  width: 35px;
  bottom: 2px;
  left: 0;
}
.gheader-btn__txt img {
  width: 100%;
  height: auto;
}

/* nav list */
.gheader-nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 101;
}
.gheader-nav-inner {
  width: 78.3%;
  margin: 65px auto 0;
  overflow-y: scroll;
  height: calc(100vh - 80px);
}
.gheader-nav-list {
  padding-bottom: 28px;
}
.gheader-nav-item {
  margin-top: 24px;
}
.gheader-nav-item:first-child {
  margin-top: 0;
}
.gheader-nav-item:has(.txt--secondary) + .gheader-nav-item {
  margin-top: 42px;
}
.gheader-nav-item a {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.gheader-nav-item__txt {
}
.txt--secondary {
  font-size: 140%;
  line-height: 1;
  display: flex;
  gap: 3px;
  margin-left: 13px;
  font-weight: 700;
  margin-top: 22px;
  &::before {
    content: "・";
  }
  &:first-child {
  }
  &:last-child {
  }
}
.txt--secondary + .txt--secondary {
  margin-top: 20px;
}
.txt--secondary a {
  padding-left: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0;
}
.gheader-nav-item__txt .icon {
  width: 35px;
  height: 21px;
  position: absolute;
  top: -4px;
  left: 0;
  background: url(../img/common/gheader_icon.png) 0 0 no-repeat;
  background-size: cover;
}
.gheader-nav-item__txt .txt {
  font-size: 140%;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}
.gheader-nav-logo {
  border: 1px solid #000;
  margin-inline: auto;
  padding-block: 20px;
  padding-inline: 70.88px;
}
}


/* ==========================================================================
   gfooter
   ======================================================================= */

@media all and (min-width: 768px){
.gfooter {
}
.gfooter-link {
  background-color: #22ac38;
  padding-top: 64px;
  padding-bottom: 56px;
}
.gfooter-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1064px;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.gfooter-inner {
}

/* link */
.gfooter-link-inner {
  float: left;
  width: 67%;
}
.gfooter-link-list {
  float: left;
}
.gfooter-link-list--1 {
  width: 42%;
}
.gfooter-link-list--2 {
  width: 45%;
}
.gfooter-link-list--3 {
  width: 20%;
}
.gfooter-link-item {
}
.gfooter-link-item a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
}
.gfooter-link-item .icon {
  width: 12px;
  height: 12px;
  background-color: #000000;
  margin-right: 5px;
  position: absolute;
  top: 5px;
  left: 0;
}
.gfooter-link-item .txt {
  display: inline-block;
  font-size: 140%;
  color: #000000;
  vertical-align: top;
  line-height: 1.7;
}
.gfooter-copyright {
}
.gfooter-copyright__ministry {
}
.gfooter-copyright__txt {
}
.no-touchevents .gfooter-link-item a:hover {
  border-color: #000000;
}
.gfooter__logo {
  float: left;
  width: 30%;
  margin-left: 3%;
  line-height: 0;
}
.gfooter__logo img {
  width: 100%;
  height: auto;
}

/* copyright */
.gfooter-copyright {
  padding-top: 34px;
  padding-bottom: 28px;
  text-align: center;
}
.gfooter-copyright__ministry {
}
.gfooter-copyright__ministry img {
  width: auto;
  height: 48px;
}
.gfooter-copyright__txt {
  font-size: 120%;
  margin-top: 10px;
}
}

@media all and (min-width: 768px) and (max-width: 1024px){
.gfooter-link-inner {
  float: none;
  width: 90%;
  margin: 0 auto;
}
.gfooter__logo {
  float: none;
  margin: 0 auto;
  margin-top: 30px;
}
}


@media all and (max-width: 767px){
.gfooter {
}
.gfooter-link {
  background-color: #22ac38;
  padding-top: 40px;
  padding-bottom: 35px;
}
.gfooter-wrapper {
  width: 89.333%;
  margin: 0 auto;
}
.gfooter-inner {
}

/* link */
.gfooter-link-inner {
}
.gfooter-link-list {
}
.gfooter-link-list--1 {
}
.gfooter-link-list--2 {
}
.gfooter-link-list--3 {
}
.gfooter-link-item {
}
.gfooter-link-item a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  margin-bottom: 7px;
  position: relative;
  padding-left: 20px;
}
.gfooter-link-item .icon {
  width: 12px;
  height: 12px;
  background-color: #000000;
  margin-right: 5px;
  position: absolute;
  top: 5px;
  left: 0;
}
.gfooter-link-item .txt {
  display: inline-block;
  font-size: 140%;
  color: #000000;
  vertical-align: top;
  line-height: 1.7;
}
.gfooter-copyright {
}
.gfooter-copyright__ministry {
}
.gfooter-copyright__txt {
}
.gfooter__logo {
  width: 83%;
  margin: 10px auto 0;
  line-height: 0;
}
.gfooter__logo img {
  width: 100%;
  height: auto;
}

/* copyright */
.gfooter-copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.gfooter-copyright__ministry {
}
.gfooter-copyright__ministry img {
  width: auto;
  height: 36px;
}
.gfooter-copyright__txt {
  font-size: 110%;
  margin-top: 5px;
}
}


/* ==========================================================================
  page format
   ======================================================================= */

@media all and (min-width: 768px){

/* -------------------- bg -------------------- */
.main {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.u-page-bg {
  width: 86%;
  height: 300vh;
  position: absolute;
  top: 0;
  right: 20%;
  background-color: #22ac38;
  transform: skew(-47deg, 0);
  z-index: -1;
}

/* -------------------- section -------------------- */
.u-section-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1064px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.u-section-inner {
  position: relative;
}

/* -------------------- hd -------------------- */
.u-hd {
  padding-top: 95px;
  height: 550px;
  position: relative;
}
.u-hd__img {
  background: 50% 0 no-repeat;
  background-size: cover;
  height: 550px;
}
.u-hd-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.u-hd-inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1064px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 70px;
  position: relative;
  height: 100%;
  text-align: center;
}
.u-hd-box {
  display: inline-block;
}
.u-hd__ttl {
  margin-bottom: 8px;
  line-height: 0;
}
.u-hd__ttl img {
  width: auto;
  height: 61px;
}
.u-hd__txt {
  margin-bottom: 15px;
  font-size: 200%;
  font-weight: bold;
}
.u-hd__label {
  font-size: 180%;
  text-align: center;
  line-height: 1;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  margin-top: 13px;
  margin-bottom: 8px;
}

/* -------------------- hd small -------------------- */
.u-hd-s {
  position: relative;
}
.u-hd-s-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1064px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.u-hd-s-inner {
  text-align: center;
  margin-top: 75px;
}
.u-hd-s__category {
  line-height: 0;
  margin-bottom: 10px;
}
.u-hd-s__category img {
  width: auto;
  height: 33px;
}
.u-hd-s__label {
  font-size: 180%;
  margin-bottom: 25px;
}
.u-hd-s__ttl {
  font-size: 400%;
  font-weight: bold;
}
.u-hd-s__txt {
  font-size: 180%;
  line-height: 2;
}
.u-hd-s__img {
}
.u-hd-s__img img {
  width: 100%;
  height: auto;
}


/* -------------------- index page format -------------------- */
.u-article-index {
}
.u-article {
  margin-top: 75px;
  padding-top: 65px;
  border-top: 1px solid #000000;
}
.u-article:first-child {
  margin-top: 90px;
  padding-top: 0;
  border-top: 0;
}
.u-article__ttl {
  font-size: 340%;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
/*  max-width: 850px;*/
  margin: 0 auto 35px;
}
.u-article__img {
  margin-bottom: 35px;
  line-height: 0;
}
.u-article__img a {
  display: block;
  background-color: #ffffff;
}
.u-article__img img {
  width: 100%;
  height: auto;
  transition: all 200ms ease;
}
.no-touchevents .u-article__img a:hover img {
  opacity: 0.85;
}
.u-article-txt-box {
  max-width: 850px;
  margin: 0 auto;
}
.u-article__txt {
  font-size: 160%;
  line-height: 1.85;
  margin-bottom: 15px;
}
.u-article__btn {
  width: 180px;
  margin: 35px auto 0;
}


/* -------------------- detail page format -------------------- */
.u-article-detail {
}
.u-case-list {
  margin-top: 95px;
}
.u-case-item {
  padding-top: 60px;
  border-top: 1px solid #000000;
  margin-top: 60px;
}
.u-case-item:last-child {
  padding-bottom: 60px;
  border-bottom: 1px solid #000000;
}
.u-case__ttl {
}
.u-case__img {
  float: left;
  width: 44.921%;
  line-height: 0;
}
.u-case__img img {
  width: 100%;
  height: auto;
}
.u-case-txt-box {
  width: 49.804%;
}
.u-case__subhead {
  line-height: 0;
  margin-bottom: 13px;
}
.u-case__subhead img {
  width: auto;
  height: 17px;
}
.u-case__num {
  line-height: 0;
  margin-bottom: 10px;
}
.u-case__num img {
  width: auto;
  height: 48px;
}
.u-case__num .num {
  margin-left: 25px;
}
.u-case__ttl {
  font-size: 220%;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
}
.u-case__txt {
  font-size: 160%;
  line-height: 1.85;
  margin-bottom: 5px;
}
.u-case__example {
  font-size: 120%;
  line-height: 1.8;
  margin-bottom: 20px;
}
.u-case__btn {
  width: 180px;
}
.u-case__back-btn {
  width: 180px;
  margin: 60px auto 0;
}

/* photo left */
.u-case-item.is--photo-left .u-case__img {
  float: left;
}
.u-case-item.is--photo-left .u-case-txt-box {
  float: left;
  margin-left: 5.273%;
}

/* photo right */
.u-case-item.is--photo-right .u-case__img {
  float: right;
}
.u-case-item.is--photo-right .u-case-txt-box {
  float: right;
  margin-right: 5.273%;
}

/* -------------------- footer banner -------------------- */
.u-banner {
  background-color: #e5eded;
  padding-top: 95px;
  padding-bottom: 95px;
  margin-top: 95px;
}
.u-banner-list {
}
.u-banner-item {
  float: left;
  width: 31.25%;
  margin-left: 3.125%;
}
.u-banner-item:first-child {
  margin-left: 0;
}
.u-banner-item a {
  display: block;
}
.u-banner-item__img {
  transition: all 200ms ease;
}
.no-touchevents .u-banner-item__img:hover {
  opacity: 0.85;
}
.u-banner-item__img img {
  width: 100%;
  height: auto;
}

}

@media all and (min-width: 768px) and (max-width: 1024px){
.u-page-bg {
  width: 86%;
  height: 300vh;
  right: 70%;
}
.u-hd__ttl img {
  height: 40px;
}
}


@media all and (max-width: 767px){
/* -------------------- bg -------------------- */
.main {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.u-page-bg {
  width: 86%;
  height: 300vh;
  position: absolute;
  top: 0;
  right: 20%;
  background-color: #22ac38;
  transform: skew(-47deg, 0);
  z-index: -1;
}

/* -------------------- section -------------------- */
.u-section-wrapper {
  width: 89.333%;
  margin: 0 auto;
}
.u-section-inner {
  position: relative;
}

/* -------------------- hd -------------------- */
.u-hd {
  padding-top: 80px;
  height: 380px;
  position: relative;
}
.u-hd__img {
  background: 50% 0 no-repeat;
  background-size: cover;
  height: 380px;
}
.u-hd-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.u-hd-inner {
  width: 89.333%;
  margin: 0 auto;
  padding-top: 66px;
  text-align: center;
}
.u-hd-box {
  display: inline-block;
}
.u-hd__ttl {
  margin-bottom: 8px;
  line-height: 0;
}
.u-hd__ttl img {
  width: auto;
  height: 30px;
}
.u-hd__txt {
  margin-bottom: 15px;
  font-size: 140%;
  font-weight: bold;
}
.u-hd__label {
  font-size: 110%;
  text-align: center;
  line-height: 1;
  border-bottom: 1px solid #000000;
  padding-bottom: 8px;
  margin-top: 5px;
  margin-bottom: 8px;
}

/* -------------------- hd small -------------------- */
.u-hd-s {
  position: relative;
}
.u-hd-s-wrapper {
}
.u-hd-s-inner {
  text-align: center;
  margin-top: 75px;
}
.u-hd-s__category {
  margin-bottom: 7px;
  line-height: 0;
}
.u-hd-s__category img {
  width: auto;
  height: 21px;
}
.u-hd-s__label {
  font-size: 110%;
  margin-bottom: 15px;
}
.u-hd-s__ttl {
  font-size: 400%;
  font-weight: bold;
}
.u-hd-s__txt {
  font-size: 180%;
  line-height: 2;
}
.u-hd-s__img {
  width: 89.333%;
  margin: 0 auto;
}
.u-hd-s__img img {
  width: 100%;
  height: auto;
}


/* -------------------- index page format -------------------- */
.u-article-index {
}
.u-article {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #000000;
}
.u-article:first-child {
  margin-top: 30px;
  padding-top: 0;
  border-top: 0;
}
.u-article__ttl {
  font-size: 180%;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}
.u-article__img {
  margin-bottom: 25px;
  line-height: 0;
}
.u-article__img a {
  display: block;
}
.u-article__img img {
  width: 100%;
  height: auto;
  transition: all 200ms ease;
}
.u-article-txt-box {
}
.u-article__txt {
  font-size: 140%;
  line-height: 1.8;
  margin-bottom: 10px;
}
.u-article__btn {
  width: 180px;
  margin: 20px auto 0;
}


/* -------------------- detail page format -------------------- */
.u-article-detail {
}
.u-case-list {
  margin-top: 30px;
}
.u-case-item {
  padding-top: 40px;
  border-top: 1px solid #000000;
  margin-top: 40px;
}
.u-case-item:last-child {
  padding-bottom: 50px;
  border-bottom: 1px solid #000000;
}
.u-case__ttl {
}
.u-case__img {
  line-height: 0;
}
.u-case__img img {
  width: 100%;
  height: auto;
}
.u-case__sp-img {
  line-height: 0;
}
.u-case__sp-img img {
  width: 100%;
  height: auto;
}
.u-case-txt-box {
}
.u-case__subhead {
  line-height: 0;
  margin-bottom: 8px;
  margin-left: 2px;
}
.u-case__subhead img {
  width: auto;
  height: 10px;
}
.u-case__num {
  line-height: 0;
  margin-bottom: 8px;
}
.u-case__num img {
  width: auto;
  height: 31px;
}
.u-case__num .num {
  margin-left: 15px;
}
.u-case__ttl {
  font-size: 170%;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 13px;
}
.u-case__txt {
  font-size: 140%;
  line-height: 1.8;
  margin-top: 15px;
  margin-bottom: 5px;
}
.u-case__example {
  font-size: 110%;
  line-height: 1.6;
  margin-bottom: 15px;
}
.u-case__btn {
  width: 180px;
  margin: 15px auto 0;
}
.u-case__back-btn {
  width: 180px;
  margin: 50px auto 0;
}

/* photo left */
.u-case-item.is--photo-left .u-case__img {
}
.u-case-item.is--photo-left .u-case-txt-box {
}

/* photo right */
.u-case-item.is--photo-right .u-case__img {
}
.u-case-item.is--photo-right .u-case-txt-box {
}


/* -------------------- footer banner -------------------- */
.u-banner {
  background-color: #e5eded;
  padding-top: 50px;
  padding-bottom: 40px;
  margin-top: 50px;
}
.u-banner-list {
  width: 70%;
  margin: 0 auto;
}
.u-banner-item {
  margin-bottom: 10px;
}
.u-banner-item a {
  display: block;
}
.u-banner-item__img {
  transition: all 200ms ease;
}
.no-touchevents .u-banner-item__img:hover {
  opacity: 0.85;
}
.u-banner-item__img img {
  width: 100%;
  height: auto;
}

}


/* ==========================================================================
   legacy browser
   ======================================================================= */



/* ==========================================================================
   Magnific Popup CSS
   ======================================================================= */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-iframe-scaler button{
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  -ms-transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.mfp-iframe-scaler button::before,
.mfp-iframe-scaler button::after{
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background-color: #00a180;
  position: relative;
  top: 0;
  -ms-transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.mfp-iframe-scaler button::before{
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mfp-iframe-scaler button::after{
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.no-touchevents .mfp-iframe-scaler button:hover:before,
.no-touchevents .mfp-iframe-scaler button:hover:after {
  background-color: #ffffff;
}
.mfp-close {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
}
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #ffffff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -50px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);*/
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


    /* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  -moz-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* ---------- customize for pasona ---------- */
.mfp-zoom-out-cur {
  cursor: pointer;
}
.mfp-arrow {
  transition: all 200ms ease;
  opacity: 0.5;
}
.mfp-arrow:before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 55px;
  left: 25px;
  border: 0;
  margin: 0;
  opacity: 1;
}
.mfp-arrow:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 48px;
  left: 0;
  border: 0;
  margin: 0;
  opacity: 1;
}
.mfp-arrow-left:after {
  transform: rotate(-45deg);
  left: 21px;
}
.mfp-arrow-right:after {
  transform: rotate(45deg);
  left: 49px;
}
.mfp-arrow:active {
  margin-top: -55px;
}

/* close btn */
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.45;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  transition: all 200ms ease;
}
.mfp-close {
  font-size: 0;
  top: 20px;
  right: 20px;
  opacity: 0.8;
}
.mfp-close:hover {
  opacity: 1;
}
.mfp-close:last-child:before, .mfp-close:last-child:after {
  content: '';
  display: block;
  width: 45px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 20px;
  left: 0;
}
.mfp-close:last-child:before {
  transform: rotate(45deg);
}
.mfp-close:last-child:after {
  transform: rotate(-45deg);
}
.mfp-close:active {
  top: 20px;
}


@media all and (max-width: 767px){
button.mfp-arrow {
  width: 50px;
  opacity: 1;
}
.mfp-arrow:before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 55px;
  left: 12px;
  border: 0;
  margin: 0;
  opacity: 1;
}
.mfp-arrow:after {
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 50px;
  left: 0;
  border: 0;
  margin: 0;
  opacity: 1;
}
.mfp-arrow-left:after {
  transform: rotate(-45deg);
  left: 9px;
}
.mfp-arrow-right:after {
  transform: rotate(45deg);
  left: 21px;
}
.mfp-arrow:active {
  margin-top: -55px;
}

/* close */
.mfp-close {
  width: 30px;
  height: 30px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.45;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 0;
  top: 5px;
  right: 10px;
  opacity: 1;
}
.mfp-close:last-child:before, .mfp-close:last-child:after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 20px;
  left: 0;
}
.mfp-close:last-child:before {
  transform: rotate(45deg);
}
.mfp-close:last-child:after {
  transform: rotate(-45deg);
}
.mfp-close:active {
  top: 7px;
}
}


/* ==========================================================================
   slick
   ======================================================================= */

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
/*    overflow: hidden;*/

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* ==========================================================================
   言語選択レイアウト調整
   ======================================================================= */

   /* --------------------------------------------------------------------------
  ACCORDION
-------------------------------------------------------------------------- */

.js-accordion {
}

.js-accordion.is-accordion-active {
}

.js-accordion-trigger {
}

.js-accordion-container {
  transition: all 0.3s;
  display: none;
  opacity: 0;
  visibility: hidden;
}
.js-accordion.is-accordion-active .js-accordion-container {
  display: block;
  opacity: 1;
  visibility: visible;
}

   @media all and (min-width: 768px) {
    .lang-accordion{
    }
    .lang-accordion__in{
    }
    .lang-accordion__body{
    }
    .lang-accordion__header{
    }
    .lang-header{
    }
    .lang-header__txt{
    }
    .lang-accordion__content{
    }
    .lang-list {
    }
    .lang-list-item {
    }
   }
   @media all and (max-width: 767px) {
   }