/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

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

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
@charset "UTF-8";
body {
  font-family: "メイリオ", "Meiryo", sans-serif;
  margin: 0;
  background-color: #FEF8BE;
}

#page {
  color: #000000;
  font-size: 16px;
  background-color: #fff;
  display: block;
}
#page p {
  margin: 0;
}
#page h2, #page h3 {
  margin: 0;
}
#page .container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
#page .container-deep {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}
a.pdflink {
    background-image: url("pdfLink.png");
    background-repeat: no-repeat;
    background-position: right center;
    padding: 2px 15px 0 5px;
	color: #0000ff;
}
@media screen and (max-width: 767px) {
  #page .container-deep {
    padding: 0 28px;
  }
}
#page p {
  line-height: 1.625;
}
#page img {
  max-width: 100%;
  width: auto;
  height: auto;
}
#page .fx-spacer {
  flex: 1 1 auto;
}
#page header {
  padding: 0 40px;
  height: 110px;
  background-color: #FEF8BE;
}
@media screen and (max-width: 767px) {
  #page header {
    padding: 0 20px;
    height: 55px;
  }
}
#page header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
#page header img {
  height: 40px;
}
@media screen and (max-width: 767px) {
  #page header img {
    height: 20px;
  }
}
#page main section {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  #page main section {
    padding: 15px 0;
  }
}
#page main section:nth-child(even) {
  background-color: #FEF8BE;
}
#page main .copy {
  margin: 40px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page main .copy {
    margin-top: 20px;
  }
}
#page main .copy-description {
  margin-top: 70px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #page main .copy-description {
    margin-top: 35px;
  }
}
#page main .copy-description .images {
  margin: 0 -2px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #page main .copy-description .images {
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
#page main .copy-description .images .image-l {
  flex: 0 0 50%;
  padding: 0 2px;
}
@media screen and (max-width: 767px) {
  #page main .copy-description .images .image-l {
    flex-basis: 100%;
  }
}
#page main .copy-description .images .image-s {
  /*flex: 0 0 30%;*/
  flex: 0 0 30.4%;
  padding: 0 2px;
}
@media screen and (max-width: 767px) {
  #page main .copy-description .images .image-s {
    flex-basis: 60%;
    margin-top: 4px;
  }
}
#page main .copy-description .images .image-xs {
  flex: 0 0 16%;
  padding: 0 2px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  #page main .copy-description .images .image-xs {
    flex-basis: 32%;
  }
}
#page main .copy-description .images img {
  width: 100%;
}
#page main .copy-description p {
  margin-top: 20px;
}
#page main .about .description .head, #page main .video-description .description .head {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  #page main .about .description .head, #page main .video-description .description .head {
    margin-top: 9px;
  }
}
@media screen and (max-width: 767px) {
  #page main .about .description .head img, #page main .video-description .description .head img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #page main .about .description .head .height-1, #page main .video-description .description .head .height-1 {
    height: 22px;
  }
}
@media screen and (max-width: 767px) {
  #page main .about .description .head .height-2, #page main .video-description .description .head .height-2 {
    height: 50px;
  }
}
#page main .about .description p, #page main .video-description .description p {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #page main .about .description p, #page main .video-description .description p {
    margin-top: 10px;
  }
}
#page main .about {
  overflow: hidden;
}
#page main .about .images {
  margin: 12px -2px -2px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #page main .about .images {
    display: block;
  }
}
#page main .about .images .image {
  flex: 1 1 50%;
  padding: 2px;
}
#page main .about .images .image img {
  width: 100%;
}
#page main .video-description .container-video {
  width: 500px;
  max-width: 100%;
  margin: 10px auto 0;
}
#page main .video-description .container-video .aspect-ratio-16-9 {
  padding-top: 56.25%;
  position: relative;
}
#page main .video-description .container-video .aspect-ratio-16-9 .container-iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#page main .video-description .container-video .aspect-ratio-16-9 iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
#page main .about-kda {
  margin: 28px 0;
  border: 1px solid #9FA0A0;
  padding: 15px 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #page main .about-kda {
    /*padding-left: 30px;
    padding-right: 30px;*/
	padding-left: 15px;
    padding-right: 15px;
  }
}
#page main .about-kda .flex-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 -12px;
}
@media screen and (max-width: 767px) {
  #page main .about-kda .flex-container {
    margin: 0;
    display: block;
  }
}
#page main .about-kda .image {
  flex: 0 0 130px;
  margin: 0 12px;
}
@media screen and (max-width: 767px) {
  #page main .about-kda .image {
    width: 110px;
    margin: 0 auto;
  }
}
#page main .about-kda .image img {
  width: 100%;
}
#page main .about-kda .description {
  margin: 0 12px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #page main .about-kda .description {
    margin: 15px 8px 0;
    font-size: 12px;
  }
}
#page main .about-kda .description p {
  line-height: 1.2;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 767px) {
  #page main .about-kda .description p {
    letter-spacing: 0.057em;
  }
}
#page main .about-kda .description .link {
  font-size: 12px;
  margin-top: 5px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #page main .about-kda .description .link {
    font-size: 13px;
  }
}
#page main .about-kda .description .link a {
  color: #EB5A2F;
  text-decoration: none;
}
#page footer {
  background-color: #FDE800;
  overflow: hidden;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
#page footer .container-footer {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 75px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #page footer .container-footer {
    padding: 35px 0;
  }
}
#page footer h3 {
  font-size: 26px;
  font-weight: normal;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  #page footer h3 {
    font-size: 15px;
    margin: 0 auto;
  }
}
#page footer .actions {
  margin-top: 42px;
  margin-bottom: -8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page footer .actions {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
  }
}
#page footer .actions .button-container {
  flex: 0 0 auto;
  margin: 8px 0;
}
#page footer .actions .button {
  text-decoration: none;
  user-select: none;
}
#page footer .actions .button-box {
  width: 378px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 45px;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 6px #EB5A2F;
  transform: translate(-5px, -5px);
  box-shadow: 1px 1px 0 #EB5A2F, 2px 2px 0 #EB5A2F, 3px 3px 0 #EB5A2F, 4px 4px 0 #EB5A2F, 5px 5px 0 #EB5A2F;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  #page footer .actions .button-box {
    width: 219px;
    height: 54px;
    border-radius: 27px;
    border-width: 3px;
    transform: translate(-3px, -3px);
    box-shadow: 1px 1px 0 #EB5A2F, 2px 2px 0 #EB5A2F, 3px 3px 0 #EB5A2F;
  }
}
#page footer .actions .button-box:hover {
  transform: translate(0);
  box-shadow: 0 0 0 #EB5A2F, 0 0 0 #EB5A2F, 0 0 0 #EB5A2F, 0 0 0 #EB5A2F, 0 0 0 #EB5A2F;
}
@media screen and (max-width: 767px) {
  #page footer .actions .button-box:hover {
    box-shadow: 0 0 0 #EB5A2F, 0 0 0 #EB5A2F, 0 0 0 #EB5A2F;
  }
}
#page footer .actions .button-box .text {
  font-size: 25px;
  letter-spacing: -0.025em;
  color: #EB5A2F;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #page footer .actions .button-box .text {
    font-size: 16px;
  }
}
#page footer .actions .button-box .arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #page footer .actions .button-box .arrow {
    right: 12.5px;
  }
}
#page footer .actions .button-box .arrow img {
  height: 18px;
}
@media screen and (max-width: 767px) {
  #page footer .actions .button-box .arrow img {
    width: 9px;
  }
}
#page footer .logo {
  margin-top: 80px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #page footer .logo {
    height: 14px;
    margin-top: 26px;
  }
  #page footer .logo img {
    height: 100%;
  }
}
#page footer small {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.538461538;
}
@media screen and (max-width: 767px) {
  #page footer small {
    font-size: 14px;
    line-height: 1.5;
  }
}
#page footer small a {
  text-decoration: none;
  color: #000000;
}
#page footer small address {
  font-style: normal;
}
#page footer .social {
  margin: 0 -20px;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page footer .social {
    margin-top: 35px;
  }
}
#page footer .social .ico {
  margin: 0 20px;
}
#page footer .social img {
  width: 60px;
}
@media screen and (max-width: 767px) {
  #page footer .social img {
    width: 30px;
  }
}