@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

html {
  scroll-behavior: smooth;
}

/* Smooth scrolling for users that don't prefer reduced motion */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* SVG's without a fill attribute */
:where(svg):where(:not([fill])) {
  /* Remove fill and set stroke colour to the inherited font colour */
  stroke: currentColor;
  fill: none;
  /* Rounded stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Set a size for SVG's without a width attribute */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* Fix h1 font size inside article, aside, nav, and section */
h1 {
  font-size: 2em;
}

/* Position list marker inside */
:where(ul, ol) {
  list-style-position: inside;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* Disabled cursor for disabled buttons */
:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
  cursor: not-allowed;
}

/* Variables */
:root {
  --color-01: #be3e3e; /* Navy Blue: Trust, Professionalism */
  --color-02: #ff7600; /* Gold: Emphasis, Status */
  --color-03: #ffeb00;
  --color-04: #f7f2f2;
  --color-05: #333;
  --color-06: #00b50e;
  --font-base: "Noto Sans JP", sans-serif;
}

em,
strong {
  font-style: normal;
  color: #f00;
}

rt {
  font-size: 0.3em; /* ルビのサイズ */
  padding-bottom: 0.25em;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

a {
  text-decoration: none;
}
a:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.919);
  top: 0;
}
header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--color-01);
}
@media screen and (max-width: 850px) {
  header a {
    padding-left: 20px;
  }
}
@media screen and (max-width: 769px) {
  header a {
    padding-left: 0;
  }
}
header a img {
  width: 100px;
}
@media screen and (max-width: 850px) {
  header a img {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  header a img {
    display: block;
  }
}
header a > div span {
  display: block;
  white-space: nowrap;
}
header a > div span:nth-of-type(1) {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
}
header a > div span:nth-of-type(2) {
  font-size: 1rem;
  line-height: 1.2;
}
header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-right: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 769px) {
  header > div {
    display: none;
  }
}
header > div > nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header > div > nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  header > div > nav ul {
    gap: 0 15px;
  }
}
header > div > nav ul li {
  white-space: nowrap;
}
header > div > nav ul li a {
  font-weight: bold;
  color: var(--color-05);
}
@media screen and (max-width: 960px) {
  header > div > nav ul li a {
    font-size: 13px;
  }
}
header > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
header > div > div a {
  padding: 0.5rem 1rem;
  background-color: var(--color-06);
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1200px) {
  header > div > div a {
    font-size: 13px;
  }
}
header > div > div a::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/icon_maile.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

main {
  margin-top: 67px;
}
main .minImg {
  background-image: url("../img/m001.jpg");
  background-size: cover;
  background-position: right top;
  height: 60vw;
}
@media screen and (max-width: 769px) {
  main .minImg {
    height: 60vh;
    background-position: -270px top;
  }
}
@media screen and (max-width: 630px) {
  main .minImg {
    height: 60vh;
    background-position: -370px top;
  }
}
@media screen and (max-width: 481px) {
  main .minImg {
    background-position: -440px top;
  }
}
main .minImg .inner {
  background-image: url(../img/map.svg);
  background-size: 70vw;
  background-position: -127px top;
  height: 100%;
}
@media screen and (max-width: 769px) {
  main .minImg .inner {
    background-size: 48vw;
    background-position: 0px top;
  }
}
@media screen and (max-width: 481px) {
  main .minImg .inner {
    background-size: 54vw;
    background-position: 0px top;
  }
}
main .minImg .inner .rap {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 40px 20px 30px;
}
@media screen and (max-width: 769px) {
  main .minImg .inner .rap {
    padding: 40px 20px 20px;
  }
}
main .minImg .inner .rap h1 {
  color: #fff;
  font-size: 60px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 769px) {
  main .minImg .inner .rap h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 481px) {
  main .minImg .inner .rap h1 {
    font-size: 30px;
  }
}
main .minImg .inner .rap h1 span {
  display: block;
  font-size: 0.5em;
}
main .minImg .inner .rap .copy {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  width: 100%;
  word-wrap: break-word;
  max-width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  main .minImg .inner .rap .copy {
    max-width: 100%;
  }
}
main .minImg .inner .rap .copy p:nth-of-type(1) {
  margin-bottom: 1rem;
  font-size: 36px;
  font-weight: bold;
  color: var(--color-01);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(20%, yellow));
  background: linear-gradient(transparent 70%, yellow 20%);
}
@media screen and (max-width: 769px) {
  main .minImg .inner .rap .copy p:nth-of-type(1) {
    font-size: 24px;
  }
}
@media screen and (max-width: 481px) {
  main .minImg .inner .rap .copy p:nth-of-type(1) {
    font-size: 18px;
  }
}
main .minImg .inner .rap .copy p:nth-of-type(1) em {
  color: var(--color-02);
}
main .minImg .inner .rap .copy p:nth-of-type(2) {
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  main .minImg .inner .rap .copy p:nth-of-type(2) {
    font-size: 18px;
  }
  main .minImg .inner .rap .copy p:nth-of-type(2) br {
    display: none;
  }
}
@media screen and (max-width: 481px) {
  main .minImg .inner .rap .copy p:nth-of-type(2) {
    font-size: 14px;
  }
  main .minImg .inner .rap .copy p:nth-of-type(2) br {
    display: none;
  }
}
main .entry01 {
  background-color: #531c1c;
}
main .entry01 .inner {
  background-image: url(../img/txt_box.svg);
  background-size: 15px;
  background-repeat: repeat;
  background-position: center;
  padding: 30px 20px;
}
@media screen and (max-width: 769px) {
  main .entry01 .inner {
    padding: 20px 20px;
  }
}
main .entry01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  list-style: none;
  margin-bottom: 20px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 769px) {
  main .entry01 ul {
    margin: 0 auto 20px;
  }
}
main .entry01 ul li img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 769px) {
  main .entry01 ul li:nth-of-type(5) {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  main .entry01 ul li:nth-of-type(6) {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  main .entry01 ul li:nth-of-type(7) {
    display: none;
  }
}
main .entry01 .link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 0;
}
main .entry01 .link a {
  background-color: var(--color-06);
  color: #fff;
  padding: 1em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  gap: 4px;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 769px) {
  main .entry01 .link a {
    font-size: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
main .entry01 .link a br {
  display: none;
}
@media screen and (max-width: 769px) {
  main .entry01 .link a br {
    display: block;
  }
}
main .entry01 .link a:before {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background-image: url("../img/icon_maile.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
main .entry01 .link a:nth-of-type(2) {
  background-color: var(--color-02);
}
main .entry01 .link a:nth-of-type(2):before {
  background-image: url("../img/icon_book.png");
}
main .banner .inner {
  max-width: 1200px;
  padding: 30px 20px;
  margin: 0 auto;
  width: 100%;
}
main .banner .inner ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}
@media screen and (max-width: 769px) {
  main .banner .inner ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
main .banner .inner ul li {
  width: 100%;
}
main .banner .inner ul li:nth-of-type(1) a {
  position: relative;
  background-color: var(--color-04);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  display: block;
}
main .banner .inner ul li:nth-of-type(1) a img {
  position: absolute;
  bottom: 10px;
  left: 0;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  width: 150px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 481px) {
  main .banner .inner ul li:nth-of-type(1) a img {
    position: unset;
    margin: 0 auto;
    width: 120px;
    padding: 10px;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
main .banner .inner ul li:nth-of-type(1) a .rap h2 {
  background-color: var(--color-01);
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  padding-left: 180px;
  word-break: keep-all;
}
@media screen and (max-width: 481px) {
  main .banner .inner ul li:nth-of-type(1) a .rap h2 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main .banner .inner ul li:nth-of-type(1) a .rap > div {
  padding: 10px 20px;
  padding-left: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 481px) {
  main .banner .inner ul li:nth-of-type(1) a .rap > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
main .banner .inner ul li:nth-of-type(1) a .rap > div p {
  color: var(--color-05);
  font-size: 14px;
  margin-bottom: 1em;
}
main .banner .inner ul li:nth-of-type(1) a .rap > div .btn {
  background-color: var(--color-02);
  color: #fff;
  border-radius: 8px;
  padding: 0.25em 0.5em;
  text-align: center;
  margin: 0 20px 0;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main .banner .inner ul li:nth-of-type(1) a .rap > div .btn::after {
  content: "";
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
}
main .banner .inner ul li:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 481px) {
  main .banner .inner ul li:nth-of-type(2) {
    grid-template-columns: 1fr;
  }
}
main .banner .inner ul li:nth-of-type(2) {
  background-color: var(--color-04);
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
main .banner .inner ul li:nth-of-type(2) img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media screen and (max-width: 481px) {
  main .banner .inner ul li:nth-of-type(2) img {
    height: unset;
  }
}
main .banner .inner ul li:nth-of-type(2) > div {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 0.25em;
}
main .banner .inner ul li:nth-of-type(2) > div > div {
  background-color: #a7a7a7;
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 30px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
}
main .banner .inner ul li:nth-of-type(2) > div h2 {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
main .banner .inner ul li:nth-of-type(2) > div h2 img {
  width: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
main .banner .inner ul li:nth-of-type(2) > div p {
  font-size: 14px;
}
main #sec01 {
  background-color: var(--color-01);
  background-image: url(../img/txt_box.svg);
  background-size: 15px;
  background-repeat: repeat;
  background-position: center;
  color: #fff;
  padding: 30px 0;
}
main #sec01 > p {
  background-color: var(--color-04);
  padding: 0.75em;
  max-width: 780px;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 769px) {
  main #sec01 > p {
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    word-break: keep-all;
  }
  main #sec01 > p br {
    display: none;
  }
}
main #sec01 .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 769px) {
  main #sec01 .inner {
    grid-template-columns: 1fr;
  }
}
main #sec01 .inner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
main #sec01 .inner > div {
  max-width: 480px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  padding-left: 20px;
}
@media screen and (max-width: 769px) {
  main #sec01 .inner > div {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    margin-left: unset;
  }
}
main #sec01 .inner > div h2 {
  font-size: 32px;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 980px) {
  main #sec01 .inner > div h2 {
    font-size: 26px;
  }
}
main #sec01 .inner > div h2 em {
  color: var(--color-03);
}
main #sec01 .inner > div p {
  line-height: 1.8;
  font-size: 16px;
}
main #sec01 .inner > div p:nth-of-type(1) {
  margin-bottom: 1rem;
  background-color: #fff;
  text-align: center;
  border-radius: 200px;
  font-weight: bold;
  padding: 0.5em 1em;
  color: var(--color-01);
}
main #sec01 .inner > div p:nth-of-type(2) {
  margin-bottom: 1rem;
}
main #about {
  background-image: url(../img/map02.svg);
  background-size: contain;
  background-position: center top;
  padding: 30px 0;
}
main #about .world {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 2px;
  list-style: none;
}
@media screen and (max-width: 769px) {
  main #about .world {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 481px) {
  main #about .world {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
main #about .world li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 769px) {
  main #about .world li:nth-last-of-type(1) {
    display: none;
  }
}
main #about .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
main #about .inner h2 {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
main #about .inner h2 span {
  display: block;
}
main #about .inner h2 span:nth-of-type(1) {
  font-size: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
@media screen and (max-width: 481px) {
  main #about .inner h2 span:nth-of-type(1) {
    font-size: 32px;
  }
}
main #about .inner h2 span:nth-of-type(1):before {
  content: "";
  background-image: url(../img/c01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (max-width: 481px) {
  main #about .inner h2 span:nth-of-type(1):before {
    width: 50px;
    height: 50px;
  }
}
main #about .inner h2 span:nth-of-type(1):after {
  content: "";
  background-image: url(../img/c02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (max-width: 481px) {
  main #about .inner h2 span:nth-of-type(1):after {
    width: 60px;
    height: 60px;
  }
}
main #about .inner h2 span:nth-of-type(2) {
  background-color: var(--color-01);
  color: #fff;
  display: block;
  padding: 0.5em 1em;
}
main #about .inner h2 span:nth-of-type(2) em {
  color: var(--color-03);
}
main #about .inner ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  list-style: none;
  margin-bottom: 60px;
}
@media screen and (max-width: 769px) {
  main #about .inner ul {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 481px) {
  main #about .inner ul {
    grid-template-columns: 1fr;
  }
}
main #about .inner ul li h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  text-align: center;
}
main #about .inner ul li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
main #about .inner ul li p {
  font-size: 16px;
  line-height: 1.8;
}
main #tokutei {
  background-color: #ffe5e5;
}
main #tokutei .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 481px) {
  main #tokutei .inner {
    gap: 15px;
  }
}
main #tokutei .inner > p:nth-of-type(1) {
  font-size: 30px;
  line-height: 1.1;
  background-color: var(--color-01);
  color: #fff;
  padding: 0.25em 1em;
  font-weight: bold;
  border-radius: 200px;
}
main #tokutei .inner > p:nth-of-type(2) {
  font-size: 32px;
  background-color: #fff;
  color: var(--color-01);
  border-radius: 8px;
  font-weight: bold;
  padding: 0.25em 1em;
  line-height: 1.6;
}
@media screen and (max-width: 481px) {
  main #tokutei .inner > p:nth-of-type(2) {
    font-size: 26px;
  }
}
main #tokutei .inner > p:nth-of-type(2) em {
  color: var(--color-02);
}
main #tokutei .inner > p:nth-of-type(3) {
  font-size: 1.2em;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  main #tokutei .inner > p:nth-of-type(3) {
    font-size: 1em;
  }
}
main #tokutei .inner h2 {
  color: var(--color-01);
  font-size: 42px;
}
@media screen and (max-width: 769px) {
  main #tokutei .inner h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 481px) {
  main #tokutei .inner h2 {
    font-size: 28px;
  }
}
main #tokutei .inner dl {
  display: grid;
  grid-template-columns: 9em 1fr;
  gap: 10px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 769px) {
  main #tokutei .inner dl {
    gap: 10px 10px;
  }
}
@media screen and (max-width: 481px) {
  main #tokutei .inner dl {
    grid-template-columns: 1fr;
  }
}
main #tokutei .inner dl dt,
main #tokutei .inner dl dd {
  font-weight: bold;
  font-size: 1.2em;
}
@media screen and (max-width: 769px) {
  main #tokutei .inner dl dt,
  main #tokutei .inner dl dd {
    font-size: 1em;
  }
}
main #tokutei .inner dl dt {
  background-color: var(--color-01);
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 200px;
}
main #overseas .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
main #overseas .inner h2 {
  text-align: center;
  color: var(--color-01);
  font-size: 42px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 769px) {
  main #overseas .inner h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 481px) {
  main #overseas .inner h2 {
    font-size: 28px;
  }
}
main #overseas .inner h2 + p {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.8;
}
main #overseas .inner ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 769px) {
  main #overseas .inner ul {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
main #overseas .inner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main #overseas .inner ul li h3 {
  background-color: var(--color-01);
  color: var(--color-03);
  font-weight: bold;
  text-align: center;
  padding: 0.25em 2em;
  border-radius: 300px;
}
@media screen and (max-width: 769px) {
  main #overseas .inner ul li h3 {
    padding: 0.25em 1em;
    width: 100%;
  }
}
@media screen and (max-width: 481px) {
  main #overseas .inner ul li h3 {
    font-size: 14px;
  }
}
main #support {
  background-color: #ffe5e5;
}
main #support .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 481px) {
  main #support .inner {
    gap: 15px;
  }
}
main #support .inner > p:nth-of-type(1) {
  font-size: 30px;
  line-height: 1.1;
  background-color: var(--color-01);
  color: #fff;
  padding: 0.25em 1em;
  font-weight: bold;
  border-radius: 200px;
}
main #support .inner > p:nth-of-type(2) {
  font-size: 32px;
  background-color: #fff;
  color: var(--color-01);
  border-radius: 8px;
  font-weight: bold;
  padding: 0.25em 1em;
  line-height: 1.6;
}
@media screen and (max-width: 481px) {
  main #support .inner > p:nth-of-type(2) {
    font-size: 26px;
  }
}
main #support .inner > p:nth-of-type(2) em {
  color: var(--color-02);
}
main #support .inner > p:nth-of-type(3) {
  font-size: 1.2em;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  main #support .inner > p:nth-of-type(3) {
    font-size: 1em;
  }
}
main #support .inner h2 {
  color: var(--color-01);
  font-size: 42px;
  text-align: center;
}
@media screen and (max-width: 769px) {
  main #support .inner h2 {
    font-size: 32px;
    text-align: left;
  }
}
@media screen and (max-width: 481px) {
  main #support .inner h2 {
    font-size: 28px;
    text-align: left;
  }
}
main #support .inner ul {
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 10px;
  max-width: 780px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 769px) {
  main #support .inner ul {
    padding: 40px 20px;
  }
}
main #support .inner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main #support .inner ul li::before {
  content: "";
  margin-right: 10px;
  background-image: url("../img/li.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 30px;
  display: inline-block;
}
main #support .inner ul li h3 {
  color: var(--color-01);
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
main #flow {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(75, 9, 9)), to(rgb(149, 41, 41)));
  background-image: linear-gradient(0deg, rgb(75, 9, 9), rgb(149, 41, 41));
}
main #flow .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-image: url(../img/map02.svg);
  background-size: contain;
  background-position: center top;
}
main #flow .inner h2 {
  text-align: center;
  color: var(--color-03);
  font-size: 42px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 769px) {
  main #flow .inner h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 481px) {
  main #flow .inner h2 {
    font-size: 26px;
  }
}
main #flow .inner h2 + p {
  text-align: center;
  color: var(--color-04);
  margin-bottom: 60px;
  line-height: 1.8;
}
@media screen and (max-width: 769px) {
  main #flow .inner h2 + p {
    margin-bottom: 30px;
  }
}
main #flow .inner ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  max-width: 680px;
  margin: 0 auto;
  background-image: url(../img/line-h.svg);
  background-repeat: no-repeat;
  background-position: 37px bottom;
  background-size: contain;
}
@media screen and (max-width: 769px) {
  main #flow .inner ol {
    background-position: 24px bottom;
  }
}
@media screen and (max-width: 481px) {
  main #flow .inner ol {
    background-position: center;
  }
}
main #flow .inner ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 769px) {
  main #flow .inner ol li {
    gap: 20px;
  }
}
@media screen and (max-width: 481px) {
  main #flow .inner ol li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
main #flow .inner ol li .num {
  background-color: rgba(255, 255, 255, 0.98);
  color: var(--color-01);
  font-size: 60px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.65em;
  line-height: 1.1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 769px) {
  main #flow .inner ol li .num {
    font-size: 28px;
  }
}
main #flow .inner ol li .doc {
  background-color: #fff;
  border-radius: 8px;
  padding: 1em;
  width: 100%;
}
main #flow .inner ol li .doc h3 {
  color: var(--color-01);
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
main #flow .inner ol li .doc p {
  font-size: 1em;
  margin-bottom: 0.5em;
}
main #staff {
  background-color: #ffe5e5;
}
main #staff .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 0px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
main #staff .inner .po00 {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  background-image: url(../img/sankaku.svg);
  background-size: cover;
  background-position: center bottom;
  padding-top: 60px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 769px) {
  main #staff .inner .po00 {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
@media screen and (max-width: 769px) {
  main #staff .inner .po00 img {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 481px) {
  main #staff .inner .po00 img {
    max-width: 70%;
  }
}
main #staff .inner .po00 > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 769px) {
  main #staff .inner .po00 > div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
main #staff .inner .po00 > div > p:nth-of-type(1) {
  background-color: #333;
  color: #fff;
  font-size: 1.5em;
  display: inline-block;
  padding: 0.25em 1em;
}
@media screen and (max-width: 769px) {
  main #staff .inner .po00 > div > p:nth-of-type(1) {
    font-size: 1.2em;
    display: block;
  }
}
main #staff .inner .po00 > div > p:nth-of-type(2) {
  margin-bottom: 1em;
  padding: 0 20px;
  line-height: 1.8;
}
@media screen and (max-width: 481px) {
  main #staff .inner .po00 > div > p:nth-of-type(2) {
    font-size: 14px;
  }
}
main #staff .inner .po00 > div .nameRap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main #staff .inner .po00 > div .nameRap h3 {
  font-size: 4em;
}
@media screen and (max-width: 769px) {
  main #staff .inner .po00 > div .nameRap h3 {
    font-size: 3em;
  }
}
main #staff .inner .staffRap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 769px) {
  main #staff .inner .staffRap {
    grid-template-columns: 1fr;
  }
}
main #staff .inner .staffRap article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.819);
  padding: 20px;
}
@media screen and (max-width: 769px) {
  main #staff .inner .staffRap article {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
}
main #staff .inner .staffRap article img {
  border-radius: 100px;
}
@media screen and (max-width: 769px) {
  main #staff .inner .staffRap article img {
    border-radius: 80px;
  }
}
main #staff .inner .staffRap article > div h4 {
  color: var(--color-01);
  font-weight: bold;
  line-height: 1.2;
}
main #staff .inner .staffRap article > div > div {
  margin-bottom: 1em;
  font-size: 0.8em;
  font-weight: bold;
}
main #staff .inner .staffRap article > div .name {
  margin-bottom: 0.25em;
}
main #staff .inner .staffRap article > div .name span {
  line-height: 1.2;
  color: var(--color-01);
  font-weight: bold;
  font-size: 1em;
}
main #staff .inner .staffRap article > div .name span:nth-of-type(2) {
  font-size: 0.5em;
  padding-left: 0.5em;
}
main #staff .inner .staffRap article > div p {
  font-size: 14px;
  line-height: 1.6;
}
main #staff .inner .po01 {
  padding-left: 20px;
  padding-right: 20px;
}
main #staff .inner .po01 article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.819);
  padding: 20px;
}
@media screen and (max-width: 769px) {
  main #staff .inner .po01 article {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }
}
main #staff .inner .po01 article img {
  border-radius: 100px;
}
@media screen and (max-width: 769px) {
  main #staff .inner .po01 article img {
    border-radius: 80px;
  }
}
main #staff .inner .po01 article > div h4 {
  color: var(--color-01);
  font-weight: bold;
  line-height: 1.6;
}
main #staff .inner .po01 article > div > div {
  margin-bottom: 0.25em;
  font-size: 1em;
  color: var(--color-01);
  color: var(--color-01);
  line-height: 1.2;
}
main #staff .inner .po01 article > div .name {
  margin-bottom: 0.5em;
}
main #staff .inner .po01 article > div .name span {
  line-height: 1.2;
  color: var(--color-01);
  color: var(--color-01);
  font-size: 1.2em;
}
main #staff .inner .po01 article > div .name span:nth-of-type(2) {
  font-size: 0.5em;
  padding-left: 0.5em;
}
main #staff .inner .po01 article > div p {
  font-size: 14px;
  line-height: 1.6;
}
main #faq .inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 481px) {
  main #faq .inner {
    padding: 30px 20px;
  }
}
main #faq .inner h2 {
  text-align: center;
  color: var(--color-01);
  font-size: 42px;
  margin-bottom: 1em;
}
@media screen and (max-width: 769px) {
  main #faq .inner h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 481px) {
  main #faq .inner h2 {
    font-size: 28px;
  }
}
main #faq .inner dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffe5e5;
  border: solid 2px var(--color-01);
  border-radius: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25em 1em;
  font-size: 1.2em;
  gap: 10px;
  margin-bottom: 20px;
}
main #faq .inner dl dt:before {
  content: "Q";
  color: var(--color-01);
  font-size: 42px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.1;
}
main #faq .inner dl dd {
  background-image: url(../img/ls.svg);
  background-repeat: no-repeat;
  background-position: 20px bottom;
  background-size: 30px;
}
@media screen and (max-width: 769px) {
  main #faq .inner dl dd {
    background-position: 20px 7px;
    background-size: 30px;
  }
}
@media screen and (max-width: 481px) {
  main #faq .inner dl dd {
    background-position: 10px 41px;
    background-size: 40px;
  }
}
main #faq .inner dl dd p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--color-04);
  padding: 0.25em 1em;
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 12px;
  margin-left: 60px;
}
main #faq .inner dl dd p:before {
  content: "A";
  color: var(--color-01);
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.1;
}
main #contact {
  background-color: var(--color-01);
  background-image: url(../img/txt_box.svg);
  background-size: 15px;
  background-repeat: repeat;
  background-position: center;
  color: #fff;
  padding: 30px 0;
}
main #contact > .inner {
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 481px) {
  main #contact > .inner {
    padding: 30px 20px;
  }
}
main #contact > .inner > p {
  text-align: center;
}
main #contact > .inner > p:nth-of-type(1) {
  color: var(--color-03);
  font-weight: bold;
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 769px) {
  main #contact > .inner > p:nth-of-type(1) {
    font-size: 28px;
    text-align: left;
  }
  main #contact > .inner > p:nth-of-type(1) br {
    display: none;
  }
}
main #contact > .inner > p:nth-of-type(2) {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 769px) {
  main #contact > .inner > p:nth-of-type(2) {
    text-align: left;
  }
  main #contact > .inner > p:nth-of-type(2) br {
    display: none;
  }
}
main #contact > .inner .form_rap {
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 20px;
  color: #000;
}
@media screen and (max-width: 481px) {
  main #contact > .inner .form_rap {
    padding: 30px 20px;
  }
}
main #contact > .inner .form_rap form h2 {
  text-align: center;
  color: var(--color-01);
  font-size: 42px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 769px) {
  main #contact > .inner .form_rap form h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 481px) {
  main #contact > .inner .form_rap form h2 {
    font-size: 24px;
  }
}
main #contact > .inner .form_rap form > .inner {
  max-width: 560px;
  margin: 0 auto;
}
main #contact > .inner .form_rap form > .inner fieldset {
  padding: 1em;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 769px) {
  main #contact > .inner .form_rap form > .inner fieldset {
    padding: 1em;
    text-align: left;
    margin-bottom: 20px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 481px) {
  main #contact > .inner .form_rap form > .inner fieldset {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
main #contact > .inner .form_rap form > .inner fieldset legend {
  background-color: #fff;
  padding: 1em;
}
main #contact > .inner .form_rap form > .inner > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 1em 0.25em;
  border-bottom: solid #ccc 1px;
  gap: 20px;
}
@media screen and (max-width: 769px) {
  main #contact > .inner .form_rap form > .inner > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
main #contact > .inner .form_rap form > .inner > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main #contact > .inner .form_rap form > .inner > div > div label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: bold;
}
main #contact > .inner .form_rap form > .inner > div > div p {
  font-size: 12px;
  margin-top: 1em;
}
main #contact > .inner .form_rap form > .inner > div input,
main #contact > .inner .form_rap form > .inner > div textarea {
  border: solid 1px #9ea4af;
  border-radius: 10px;
  line-height: 1.4;
  padding: 8px 12px;
}
main #contact > .inner .form_rap form > .inner .privacy-check {
  display: block;
  border: unset;
  text-align: center;
}
main #contact > .inner .form_rap form > .inner .privacy-check a {
  text-decoration: underline;
}
main #contact > .inner .form_rap form > .inner .privacy-check .checkboxItem {
  margin: 20px auto 0;
}
main #contact > .inner .form_rap form > .inner .entry {
  display: block;
  border: unset;
  text-align: center;
}
main #contact > .inner .form_rap form > .inner .entry input {
  background-color: #0f8300;
  color: #fff;
  padding: 0.5em 4em;
  border-radius: 10px;
  border: unset;
  font-size: 28px;
}
@media screen and (max-width: 481px) {
  main #contact > .inner .form_rap form > .inner .entry input {
    font-size: 24px;
    width: 100%;
    padding: 0.5em 1em;
  }
}
main #contact > .inner .form_rap form > .inner .entry input:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.hisu {
  background-color: var(--color-01);
  color: #fff;
  font-size: 12px;
  padding: 0.25em 1em;
  border-radius: 30px;
  line-height: 1.6;
}

.nini {
  background-color: #aaa;
  color: #fff;
  font-size: 12px;
  padding: 0.25em 1em;
  border-radius: 30px;
  line-height: 1.6;
}

.radioItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  line-height: 1;
  cursor: pointer;
}

.radioItem:not(:last-of-type) {
  margin-right: 16px;
}

.radioButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-01);
  border-radius: 9999px;
  cursor: pointer;
}

.radioButton:checked {
  border: none;
  background-color: var(--color-01);
}

.radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 9999px;
  background-color: #ffffff;
}

.checkboxItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

.checkboxItem:not(:last-of-type) {
  margin-bottom: 15px;
}

.checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 39px;
  height: 39px;
  border: 1px solid var(--color-01);
  border-radius: 10px;
  cursor: pointer;
}

.checkbox:checked {
  background-color: var(--color-01);
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 38px;
  height: 19px;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

footer nav {
  padding: 30px 1em;
}
footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#copy p {
  text-align: center;
  color: #666;
  margin: 0;
  padding: 30px 1em;
  font-size: 12px;
}

.privacy-page main {
  margin-top: 67px;
  background-color: #f9f9f9;
  padding: 60px 20px;
  min-height: calc(100vh - 67px);
}
@media screen and (max-width: 769px) {
  .privacy-page main {
    padding: 40px 20px;
  }
}
.privacy-page .privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 481px) {
  .privacy-page .privacy-content {
    padding: 30px 20px;
  }
}
.privacy-page .privacy-content h1 {
  font-size: 36px;
  color: var(--color-01);
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--color-01);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 481px) {
  .privacy-page .privacy-content h1 {
    font-size: 24px;
  }
}
.privacy-page .privacy-content .privacy-intro {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid var(--color-01);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content .privacy-intro {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.privacy-page .privacy-content .privacy-intro p {
  line-height: 1.8;
  color: var(--color-05);
  margin: 0;
}
.privacy-page .privacy-content article {
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content article {
    margin-bottom: 30px;
  }
}
.privacy-page .privacy-content article h2 {
  font-size: 22px;
  color: var(--color-01);
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 4px solid var(--color-02);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content article h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 481px) {
  .privacy-page .privacy-content article h2 {
    font-size: 18px;
  }
}
.privacy-page .privacy-content article p {
  line-height: 1.8;
  color: var(--color-05);
  margin-bottom: 15px;
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content article p {
    font-size: 15px;
  }
}
@media screen and (max-width: 481px) {
  .privacy-page .privacy-content article p {
    font-size: 14px;
  }
}
.privacy-page .privacy-content article ul {
  list-style: none;
  padding-left: 0;
}
.privacy-page .privacy-content article ul li {
  padding-left: 25px;
  position: relative;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--color-05);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content article ul li {
    font-size: 15px;
  }
}
@media screen and (max-width: 481px) {
  .privacy-page .privacy-content article ul li {
    font-size: 14px;
  }
}
.privacy-page .privacy-content article ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-02);
}
.privacy-page .privacy-content article .contact-info {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-top: 20px;
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content article .contact-info {
    padding: 20px;
  }
}
.privacy-page .privacy-content article .contact-info p {
  margin-bottom: 10px;
}
.privacy-page .privacy-content article .contact-info p:last-child {
  margin-bottom: 0;
}
.privacy-page .privacy-content article .contact-info p strong {
  color: var(--color-01);
  font-size: 18px;
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content article .contact-info p strong {
    font-size: 16px;
  }
}
.privacy-page .privacy-content .policy-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
  text-align: right;
  color: var(--color-05);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content .policy-footer {
    margin-top: 40px;
    padding-top: 20px;
  }
}
.privacy-page .privacy-content .policy-footer p {
  margin-bottom: 8px;
  font-size: 14px;
}
@media screen and (max-width: 481px) {
  .privacy-page .privacy-content .policy-footer p {
    font-size: 13px;
  }
}
.privacy-page .privacy-content .policy-footer p:last-child {
  margin-top: 15px;
  font-weight: bold;
}
.privacy-page .privacy-content .back-to-top {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content .back-to-top {
    margin-top: 40px;
  }
}
.privacy-page .privacy-content .back-to-top .btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--color-02);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 769px) {
  .privacy-page .privacy-content .back-to-top .btn-primary {
    padding: 12px 30px;
    font-size: 15px;
  }
}
.privacy-page .privacy-content .back-to-top .btn-primary:hover {
  background-color: rgb(204, 94.4, 0);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1000;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
.page-top::before {
  content: "";
  background-image: url(../img/arrow.svg);
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.page-top:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 769px) {
  .page-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
    right: 15px;
    bottom: 15px;
  }
}

/* ===== メールフォーム確認画面・完了画面 ===== */
.mail-confirm-page .mail-confirm-content,
.mail-confirm-page .mail-complete-content,
.mail-complete-page .mail-confirm-content,
.mail-complete-page .mail-complete-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 769px) {
  .mail-confirm-page .mail-confirm-content,
  .mail-confirm-page .mail-complete-content,
  .mail-complete-page .mail-confirm-content,
  .mail-complete-page .mail-complete-content {
    padding: 40px 20px;
  }
}
.mail-confirm-page .mail-confirm-content .error-message h1,
.mail-confirm-page .mail-confirm-content .confirm-message h1,
.mail-confirm-page .mail-confirm-content .complete-message h1,
.mail-confirm-page .mail-complete-content .error-message h1,
.mail-confirm-page .mail-complete-content .confirm-message h1,
.mail-confirm-page .mail-complete-content .complete-message h1,
.mail-complete-page .mail-confirm-content .error-message h1,
.mail-complete-page .mail-confirm-content .confirm-message h1,
.mail-complete-page .mail-confirm-content .complete-message h1,
.mail-complete-page .mail-complete-content .error-message h1,
.mail-complete-page .mail-complete-content .confirm-message h1,
.mail-complete-page .mail-complete-content .complete-message h1 {
  text-align: center;
  color: var(--color-01);
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 769px) {
  .mail-confirm-page .mail-confirm-content .error-message h1,
  .mail-confirm-page .mail-confirm-content .confirm-message h1,
  .mail-confirm-page .mail-confirm-content .complete-message h1,
  .mail-confirm-page .mail-complete-content .error-message h1,
  .mail-confirm-page .mail-complete-content .confirm-message h1,
  .mail-confirm-page .mail-complete-content .complete-message h1,
  .mail-complete-page .mail-confirm-content .error-message h1,
  .mail-complete-page .mail-confirm-content .confirm-message h1,
  .mail-complete-page .mail-confirm-content .complete-message h1,
  .mail-complete-page .mail-complete-content .error-message h1,
  .mail-complete-page .mail-complete-content .confirm-message h1,
  .mail-complete-page .mail-complete-content .complete-message h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .error-message h1,
  .mail-confirm-page .mail-confirm-content .confirm-message h1,
  .mail-confirm-page .mail-confirm-content .complete-message h1,
  .mail-confirm-page .mail-complete-content .error-message h1,
  .mail-confirm-page .mail-complete-content .confirm-message h1,
  .mail-confirm-page .mail-complete-content .complete-message h1,
  .mail-complete-page .mail-confirm-content .error-message h1,
  .mail-complete-page .mail-confirm-content .confirm-message h1,
  .mail-complete-page .mail-confirm-content .complete-message h1,
  .mail-complete-page .mail-complete-content .error-message h1,
  .mail-complete-page .mail-complete-content .confirm-message h1,
  .mail-complete-page .mail-complete-content .complete-message h1 {
    font-size: 24px;
  }
}
.mail-confirm-page .mail-confirm-content .error-message .error-detail,
.mail-confirm-page .mail-complete-content .error-message .error-detail,
.mail-complete-page .mail-confirm-content .error-message .error-detail,
.mail-complete-page .mail-complete-content .error-message .error-detail {
  background-color: var(--color-04);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 2px solid #f00;
}
.mail-confirm-page .mail-confirm-content .error-message .error-detail p,
.mail-confirm-page .mail-complete-content .error-message .error-detail p,
.mail-complete-page .mail-confirm-content .error-message .error-detail p,
.mail-complete-page .mail-complete-content .error-message .error-detail p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .error-message .error-detail p,
  .mail-confirm-page .mail-complete-content .error-message .error-detail p,
  .mail-complete-page .mail-confirm-content .error-message .error-detail p,
  .mail-complete-page .mail-complete-content .error-message .error-detail p {
    font-size: 16px;
  }
}
.mail-confirm-page .mail-confirm-content .error-message .error-detail .error-text,
.mail-confirm-page .mail-complete-content .error-message .error-detail .error-text,
.mail-complete-page .mail-confirm-content .error-message .error-detail .error-text,
.mail-complete-page .mail-complete-content .error-message .error-detail .error-text {
  color: #f00;
  font-weight: bold;
}
.mail-confirm-page .mail-confirm-content .confirm-message .confirm-intro,
.mail-confirm-page .mail-complete-content .confirm-message .confirm-intro,
.mail-complete-page .mail-confirm-content .confirm-message .confirm-intro,
.mail-complete-page .mail-complete-content .confirm-message .confirm-intro {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .confirm-message .confirm-intro,
  .mail-confirm-page .mail-complete-content .confirm-message .confirm-intro,
  .mail-complete-page .mail-confirm-content .confirm-message .confirm-intro,
  .mail-complete-page .mail-complete-content .confirm-message .confirm-intro {
    font-size: 16px;
  }
}
.mail-confirm-page .mail-confirm-content .confirm-message .formTable,
.mail-confirm-page .mail-complete-content .confirm-message .formTable,
.mail-complete-page .mail-confirm-content .confirm-message .formTable,
.mail-complete-page .mail-complete-content .confirm-message .formTable {
  width: 100%;
  margin: 0 auto 30px;
  border-collapse: collapse;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.mail-confirm-page .mail-confirm-content .confirm-message .formTable th,
.mail-confirm-page .mail-confirm-content .confirm-message .formTable td,
.mail-confirm-page .mail-complete-content .confirm-message .formTable th,
.mail-confirm-page .mail-complete-content .confirm-message .formTable td,
.mail-complete-page .mail-confirm-content .confirm-message .formTable th,
.mail-complete-page .mail-confirm-content .confirm-message .formTable td,
.mail-complete-page .mail-complete-content .confirm-message .formTable th,
.mail-complete-page .mail-complete-content .confirm-message .formTable td {
  border: 1px solid #ccc;
  padding: 15px;
  text-align: left;
}
@media screen and (max-width: 769px) {
  .mail-confirm-page .mail-confirm-content .confirm-message .formTable th,
  .mail-confirm-page .mail-confirm-content .confirm-message .formTable td,
  .mail-confirm-page .mail-complete-content .confirm-message .formTable th,
  .mail-confirm-page .mail-complete-content .confirm-message .formTable td,
  .mail-complete-page .mail-confirm-content .confirm-message .formTable th,
  .mail-complete-page .mail-confirm-content .confirm-message .formTable td,
  .mail-complete-page .mail-complete-content .confirm-message .formTable th,
  .mail-complete-page .mail-complete-content .confirm-message .formTable td {
    padding: 12px;
  }
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .confirm-message .formTable th,
  .mail-confirm-page .mail-confirm-content .confirm-message .formTable td,
  .mail-confirm-page .mail-complete-content .confirm-message .formTable th,
  .mail-confirm-page .mail-complete-content .confirm-message .formTable td,
  .mail-complete-page .mail-confirm-content .confirm-message .formTable th,
  .mail-complete-page .mail-confirm-content .confirm-message .formTable td,
  .mail-complete-page .mail-complete-content .confirm-message .formTable th,
  .mail-complete-page .mail-complete-content .confirm-message .formTable td {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
.mail-confirm-page .mail-confirm-content .confirm-message .formTable th,
.mail-confirm-page .mail-complete-content .confirm-message .formTable th,
.mail-complete-page .mail-confirm-content .confirm-message .formTable th,
.mail-complete-page .mail-complete-content .confirm-message .formTable th {
  width: 30%;
  font-weight: bold;
  background-color: var(--color-04);
  color: var(--color-01);
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .confirm-message .formTable th,
  .mail-confirm-page .mail-complete-content .confirm-message .formTable th,
  .mail-complete-page .mail-confirm-content .confirm-message .formTable th,
  .mail-complete-page .mail-complete-content .confirm-message .formTable th {
    width: 100%;
    border-bottom: 0;
  }
}
.mail-confirm-page .mail-confirm-content .confirm-message .formTable td,
.mail-confirm-page .mail-complete-content .confirm-message .formTable td,
.mail-complete-page .mail-confirm-content .confirm-message .formTable td,
.mail-complete-page .mail-complete-content .confirm-message .formTable td {
  width: 70%;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .confirm-message .formTable td,
  .mail-confirm-page .mail-complete-content .confirm-message .formTable td,
  .mail-complete-page .mail-confirm-content .confirm-message .formTable td,
  .mail-complete-page .mail-complete-content .confirm-message .formTable td {
    width: 100%;
  }
}
.mail-confirm-page .mail-confirm-content .complete-message .complete-icon,
.mail-confirm-page .mail-complete-content .complete-message .complete-icon,
.mail-complete-page .mail-confirm-content .complete-message .complete-icon,
.mail-complete-page .mail-complete-content .complete-message .complete-icon {
  text-align: center;
  margin-bottom: 30px;
}
.mail-confirm-page .mail-confirm-content .complete-message .complete-icon svg,
.mail-confirm-page .mail-complete-content .complete-message .complete-icon svg,
.mail-complete-page .mail-confirm-content .complete-message .complete-icon svg,
.mail-complete-page .mail-complete-content .complete-message .complete-icon svg {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .complete-message .complete-icon svg,
  .mail-confirm-page .mail-complete-content .complete-message .complete-icon svg,
  .mail-complete-page .mail-confirm-content .complete-message .complete-icon svg,
  .mail-complete-page .mail-complete-content .complete-message .complete-icon svg {
    width: 60px;
    height: 60px;
  }
}
.mail-confirm-page .mail-confirm-content .complete-message p,
.mail-confirm-page .mail-complete-content .complete-message p,
.mail-complete-page .mail-confirm-content .complete-message p,
.mail-complete-page .mail-complete-content .complete-message p {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .complete-message p,
  .mail-confirm-page .mail-complete-content .complete-message p,
  .mail-complete-page .mail-confirm-content .complete-message p,
  .mail-complete-page .mail-complete-content .complete-message p {
    font-size: 16px;
  }
}
.mail-confirm-page .mail-confirm-content .button-area,
.mail-confirm-page .mail-complete-content .button-area,
.mail-complete-page .mail-confirm-content .button-area,
.mail-complete-page .mail-complete-content .button-area {
  text-align: center;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .button-area,
  .mail-confirm-page .mail-complete-content .button-area,
  .mail-complete-page .mail-confirm-content .button-area,
  .mail-complete-page .mail-complete-content .button-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.mail-confirm-page .mail-confirm-content .button-area .btn-submit,
.mail-confirm-page .mail-confirm-content .button-area .btn-back,
.mail-confirm-page .mail-confirm-content .button-area .btn-primary,
.mail-confirm-page .mail-complete-content .button-area .btn-submit,
.mail-confirm-page .mail-complete-content .button-area .btn-back,
.mail-confirm-page .mail-complete-content .button-area .btn-primary,
.mail-complete-page .mail-confirm-content .button-area .btn-submit,
.mail-complete-page .mail-confirm-content .button-area .btn-back,
.mail-complete-page .mail-confirm-content .button-area .btn-primary,
.mail-complete-page .mail-complete-content .button-area .btn-submit,
.mail-complete-page .mail-complete-content .button-area .btn-back,
.mail-complete-page .mail-complete-content .button-area .btn-primary {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 481px) {
  .mail-confirm-page .mail-confirm-content .button-area .btn-submit,
  .mail-confirm-page .mail-confirm-content .button-area .btn-back,
  .mail-confirm-page .mail-confirm-content .button-area .btn-primary,
  .mail-confirm-page .mail-complete-content .button-area .btn-submit,
  .mail-confirm-page .mail-complete-content .button-area .btn-back,
  .mail-confirm-page .mail-complete-content .button-area .btn-primary,
  .mail-complete-page .mail-confirm-content .button-area .btn-submit,
  .mail-complete-page .mail-confirm-content .button-area .btn-back,
  .mail-complete-page .mail-confirm-content .button-area .btn-primary,
  .mail-complete-page .mail-complete-content .button-area .btn-submit,
  .mail-complete-page .mail-complete-content .button-area .btn-back,
  .mail-complete-page .mail-complete-content .button-area .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    width: 100%;
  }
}
.mail-confirm-page .mail-confirm-content .button-area .btn-submit:hover,
.mail-confirm-page .mail-confirm-content .button-area .btn-back:hover,
.mail-confirm-page .mail-confirm-content .button-area .btn-primary:hover,
.mail-confirm-page .mail-complete-content .button-area .btn-submit:hover,
.mail-confirm-page .mail-complete-content .button-area .btn-back:hover,
.mail-confirm-page .mail-complete-content .button-area .btn-primary:hover,
.mail-complete-page .mail-confirm-content .button-area .btn-submit:hover,
.mail-complete-page .mail-confirm-content .button-area .btn-back:hover,
.mail-complete-page .mail-confirm-content .button-area .btn-primary:hover,
.mail-complete-page .mail-complete-content .button-area .btn-submit:hover,
.mail-complete-page .mail-complete-content .button-area .btn-back:hover,
.mail-complete-page .mail-complete-content .button-area .btn-primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.mail-confirm-page .mail-confirm-content .button-area .btn-submit,
.mail-confirm-page .mail-confirm-content .button-area .btn-primary,
.mail-confirm-page .mail-complete-content .button-area .btn-submit,
.mail-confirm-page .mail-complete-content .button-area .btn-primary,
.mail-complete-page .mail-confirm-content .button-area .btn-submit,
.mail-complete-page .mail-confirm-content .button-area .btn-primary,
.mail-complete-page .mail-complete-content .button-area .btn-submit,
.mail-complete-page .mail-complete-content .button-area .btn-primary {
  background-color: var(--color-01);
  color: #fff;
}
.mail-confirm-page .mail-confirm-content .button-area .btn-submit:hover,
.mail-confirm-page .mail-confirm-content .button-area .btn-primary:hover,
.mail-confirm-page .mail-complete-content .button-area .btn-submit:hover,
.mail-confirm-page .mail-complete-content .button-area .btn-primary:hover,
.mail-complete-page .mail-confirm-content .button-area .btn-submit:hover,
.mail-complete-page .mail-confirm-content .button-area .btn-primary:hover,
.mail-complete-page .mail-complete-content .button-area .btn-submit:hover,
.mail-complete-page .mail-complete-content .button-area .btn-primary:hover {
  background-color: var(--color-02);
}
.mail-confirm-page .mail-confirm-content .button-area .btn-back,
.mail-confirm-page .mail-complete-content .button-area .btn-back,
.mail-complete-page .mail-confirm-content .button-area .btn-back,
.mail-complete-page .mail-complete-content .button-area .btn-back {
  background-color: #999;
  color: #fff;
}
.mail-confirm-page .mail-confirm-content .button-area .btn-back:hover,
.mail-confirm-page .mail-complete-content .button-area .btn-back:hover,
.mail-complete-page .mail-confirm-content .button-area .btn-back:hover,
.mail-complete-page .mail-complete-content .button-area .btn-back:hover {
  background-color: #777;
}
.mail-confirm-page .mail-confirm-content .button-area input[type=submit].btn-submit, .mail-confirm-page .mail-confirm-content .button-area input[type=submit].btn-back,
.mail-confirm-page .mail-confirm-content .button-area input[type=button].btn-submit,
.mail-confirm-page .mail-confirm-content .button-area input[type=button].btn-back,
.mail-confirm-page .mail-complete-content .button-area input[type=submit].btn-submit,
.mail-confirm-page .mail-complete-content .button-area input[type=submit].btn-back,
.mail-confirm-page .mail-complete-content .button-area input[type=button].btn-submit,
.mail-confirm-page .mail-complete-content .button-area input[type=button].btn-back,
.mail-complete-page .mail-confirm-content .button-area input[type=submit].btn-submit,
.mail-complete-page .mail-confirm-content .button-area input[type=submit].btn-back,
.mail-complete-page .mail-confirm-content .button-area input[type=button].btn-submit,
.mail-complete-page .mail-confirm-content .button-area input[type=button].btn-back,
.mail-complete-page .mail-complete-content .button-area input[type=submit].btn-submit,
.mail-complete-page .mail-complete-content .button-area input[type=submit].btn-back,
.mail-complete-page .mail-complete-content .button-area input[type=button].btn-submit,
.mail-complete-page .mail-complete-content .button-area input[type=button].btn-back {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* ===== サンクスページ ===== */
.thanks-page .thanks-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
@media screen and (max-width: 769px) {
  .thanks-page .thanks-content {
    padding: 40px 20px;
  }
}
.thanks-page .thanks-content .thanks-message .thanks-icon {
  text-align: center;
  margin-bottom: 30px;
}
.thanks-page .thanks-content .thanks-message .thanks-icon svg {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message .thanks-icon svg {
    width: 60px;
    height: 60px;
  }
}
.thanks-page .thanks-content .thanks-message h1 {
  text-align: center;
  color: var(--color-01);
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 769px) {
  .thanks-page .thanks-content .thanks-message h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message h1 {
    font-size: 24px;
  }
}
.thanks-page .thanks-content .thanks-message .thanks-intro {
  text-align: center;
  margin-bottom: 50px;
}
.thanks-page .thanks-content .thanks-message .thanks-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-05);
}
@media screen and (max-width: 769px) {
  .thanks-page .thanks-content .thanks-message .thanks-intro p {
    font-size: 16px;
  }
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message .thanks-intro p {
    font-size: 14px;
    text-align: left;
  }
}
.thanks-page .thanks-content .thanks-message article {
  background-color: var(--color-04);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 769px) {
  .thanks-page .thanks-content .thanks-message article {
    padding: 20px;
  }
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article {
    padding: 15px;
  }
}
.thanks-page .thanks-content .thanks-message article h2 {
  font-size: 24px;
  color: var(--color-01);
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid var(--color-01);
  padding-bottom: 10px;
}
@media screen and (max-width: 769px) {
  .thanks-page .thanks-content .thanks-message article h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article h2 {
    font-size: 18px;
  }
}
.thanks-page .thanks-content .thanks-message article.thanks-info .flow-list {
  list-style: none;
  counter-reset: flow-counter;
}
.thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
  counter-increment: flow-counter;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li {
    padding-left: 40px;
    margin-bottom: 25px;
  }
}
.thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li::before {
  content: counter(flow-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: var(--color-01);
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li::before {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
.thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li strong {
  display: block;
  font-size: 18px;
  color: var(--color-01);
  margin-bottom: 10px;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li strong {
    font-size: 16px;
  }
}
.thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-05);
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.thanks-info .flow-list li p {
    font-size: 14px;
  }
}
.thanks-page .thanks-content .thanks-message article.contact-info-box {
  background-color: #fff;
  border: 2px solid var(--color-01);
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p {
    font-size: 14px;
    text-align: left;
  }
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p.tel-large {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-01);
  margin: 15px 0;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p.tel-large {
    font-size: 20px;
  }
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p.tel-large a {
  color: var(--color-01);
  text-decoration: none;
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p.tel-large a:hover {
  text-decoration: underline;
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p strong {
  color: var(--color-01);
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p a {
  color: var(--color-02);
  text-decoration: none;
}
.thanks-page .thanks-content .thanks-message article.contact-info-box .contact-info p a:hover {
  text-decoration: underline;
}
.thanks-page .thanks-content .thanks-message article.useful-links p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.useful-links p {
    font-size: 14px;
    text-align: left;
  }
}
.thanks-page .thanks-content .thanks-message article.useful-links .link-list {
  list-style: none;
  display: grid;
  gap: 15px;
}
.thanks-page .thanks-content .thanks-message article.useful-links .link-list li a {
  display: block;
  padding: 15px 20px;
  background-color: #fff;
  border: 2px solid var(--color-01);
  border-radius: 8px;
  color: var(--color-01);
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.useful-links .link-list li a {
    padding: 12px 15px;
    font-size: 14px;
  }
}
.thanks-page .thanks-content .thanks-message article.useful-links .link-list li a::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message article.useful-links .link-list li a::after {
    right: 15px;
    font-size: 16px;
  }
}
.thanks-page .thanks-content .thanks-message article.useful-links .link-list li a:hover {
  background-color: var(--color-01);
  color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.thanks-page .thanks-content .thanks-message .back-to-top {
  text-align: center;
  margin-top: 50px;
}
.thanks-page .thanks-content .thanks-message .back-to-top .btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--color-01);
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 481px) {
  .thanks-page .thanks-content .thanks-message .back-to-top .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
  }
}
.thanks-page .thanks-content .thanks-message .back-to-top .btn-primary:hover {
  background-color: var(--color-02);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}