@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.
*/
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDPGothic&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=IBM+Plex+Sans+JP&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kaisei+Opti&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  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;
}

/* 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;
  touch-action: manipulation;
}

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

: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 {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* Make sure users can't select button text */
: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;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #000000;
  display: flex;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.6rem;
  flex-direction: column;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
  min-height: 100vh;
  position: relative;
}
@media screen and (max-width:1000px) {
  body {
    font-size: 1.4em;
  }
}

header {
  height: 72px;
}
@media screen and (max-width:1000px) {
  header {
    height: 64px;
  }
}

main {
  padding-top: 72px;
}
@media screen and (max-width:1000px) {
  main {
    padding-top: 64px;
  }
}

section {
  padding: 80px 0;
  width: 100%;
}
@media screen and (max-width:1000px) {
  section {
    padding: 64px 0;
  }
}
section.subSection {
  padding: 0 0 80px;
}
@media screen and (max-width:1000px) {
  section.subSection {
    padding: 0 0 64px;
  }
}
section .section__inner {
  width: min(1092px, 100% - 40px);
  margin: 0 auto;
}

footer {
  margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a,
button {
  display: inline-block;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}

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

button {
  background-color: transparent;
}

img {
  display: inline-block;
  height: auto;
}

ul,
li {
  list-style: none;
}

.pc {
  display: block !important;
}

.pc-flex {
  display: flex !important;
}

.md {
  display: none !important;
}

.sp {
  display: none !important;
}

.sp-flex {
  display: none !important;
}

@media screen and (min-width:1001px) and (max-width:1300px) {
  .md {
    display: block !important;
  }
}
@media screen and (max-width:1000px) {
  .pc {
    display: none !important;
  }
  .pc-flex {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-flex {
    display: flex !important;
  }
}
.font-bold {
  font-weight: bold !important;
}

.font-medium {
  font-weight: 400 !important;
}

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

.section__title {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 64px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width:1000px) {
  .section__title {
    font-size: 3.2rem;
    margin: 0 0 32px;
  }
}

.text-link {
  text-decoration: underline;
  color: #007cbf;
}
@media (hover: hover) {
  .text-link:hover {
    text-decoration: none;
  }
}
.text-link.is-blank {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.text-link.is-blank::after {
  content: "";
  display: inline-block;
  background: url("../images/icon/icon-pdf-blue.svg") no-repeat center center;
  background-size: 20px;
  width: 20px;
  height: 20px;
}

.accordion .accordion-head {
  position: relative;
  cursor: pointer;
}
.accordion .accordion-head::before, .accordion .accordion-head::after {
  background: #008753;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 22px;
}
.accordion .accordion-head::before {
  transform: translateY(-50%) rotate(90deg);
}
.accordion .accordion-content {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.accordion.is-active .accordion-head::before {
  transform: translateY(-50%);
}
.accordion.is-active .accordion-content {
  height: auto;
}

.u_button {
  background-color: #ffffff;
  border: 2px solid #000000;
  border-radius: 32px;
  box-shadow: 0 6px 0px rgba(42, 52, 64, 0.1607843137);
  color: #000000;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  line-height: 1;
  position: relative;
  transition: all 0.3s;
  width: min(392px, 100%);
}
.u_button:after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .u_button:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width:1000px) {
  .u_button {
    font-size: 1.8rem;
  }
}
.u_button-link:after {
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #000000; /* 三角形の色 */
}
.u_button-pdf:after {
  content: "";
  background: url("../images/icon/icon-pdf.svg") no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
}
.u_button-prepare {
  border: 2px solid #777777;
  pointer-events: none;
}
.u_button-prepare::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border-radius: 32px;
  z-index: 1;
  background: #F2F2F7;
  opacity: 0.49;
}
.u_button-pink {
  background: #d911ae;
}
.u_button-green {
  background: #008753;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(42, 52, 64, 0.1607843137);
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 14px 48px;
  width: 100%;
}
@media screen and (max-width:1000px) {
  .header__inner {
    padding: 0;
  }
}

.header__logo {
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width:1000px) {
  .header__logo {
    font-size: 1.4rem;
    padding: 0 0 0 16px;
  }
}
.header__logo .header__logo__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  line-height: 1.2;
}
@media screen and (max-width:1000px) {
  .header__logo .header__logo__inner {
    gap: 16px;
  }
}
@media screen and (min-width:1301px) {
  .header__logo .header__logo__inner {
    line-height: 1;
  }
}
.header__logo img {
  width: 136px;
}
@media screen and (max-width:1000px) {
  .header__logo img {
    width: 85px;
  }
}

.humburger {
  position: relative;
  display: none;
}
@media screen and (max-width:1000px) {
  .humburger {
    display: block;
    width: 62px;
    height: 64px;
  }
}
.humburger .humburger__line {
  display: block;
  position: absolute;
  background-color: #000;
  height: 2px;
  width: 20px;
  transition: all ease 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.humburger .humburger__line-top {
  transform: translate(-50%, calc(-50% - 6px));
}
.humburger .humburger__line-bottom {
  transform: translate(-50%, calc(-50% + 6px));
}
.humburger.is-active .humburger__line-top {
  transform: translate(-50%, -50%) rotate(45deg);
}
.humburger.is-active .humburger__line-middle {
  opacity: 0;
}
.humburger.is-active .humburger__line-bottom {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__nav {
  font-weight: 700;
}
.header__nav-sp {
  display: none;
}
@media screen and (max-width:1000px) {
  .header__nav-sp {
    display: block;
  }
}
@media screen and (max-width:1000px) {
  .header__nav {
    position: fixed;
    top: 64px;
    background-color: #fff;
    height: calc(100vh - 64px);
    width: 100vw;
    display: none;
    z-index: 100;
    padding: 0 20px;
  }
  .header__nav.is-active {
    display: block;
  }
}
.header__nav .navigation__inner {
  display: flex;
  gap: 32px;
}
@media screen and (max-width:1000px) {
  .header__nav .navigation__inner {
    align-items: center;
    font-size: 2.4rem;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 192px 0 0;
  }
}
.header__nav .navigation__item {
  line-height: 1.2;
}
@media screen and (min-width:1301px) {
  .header__nav .navigation__item {
    line-height: 1;
  }
}
@media screen and (min-width:1001px) and (max-width:1300px) {
  .header__nav .navigation__item {
    text-align: left;
  }
}
@media screen and (max-width:1000px) {
  .header__nav .navigation__item {
    width: 100%;
    text-align: center;
  }
}
.header__nav .navigation__item a {
  width: 100%;
}
@media (hover: hover) {
  .header__nav .navigation__item a:hover {
    color: #007cbf;
  }
}
.header__nav .navigation__item-button {
  margin: 75px 0 0;
  text-align: center;
}

.footer {
  text-align: center;
  width: 100%;
}
.footer__inner {
  margin: 0 auto;
  padding: 48px 0;
  position: relative;
}
@media screen and (max-width:1000px) {
  .footer__inner {
    padding: 32px 0;
  }
}
.footer__title {
  color: #007cbf;
  font-size: 2.4rem;
  margin: 0 0 24px;
}
@media screen and (max-width:1000px) {
  .footer__title {
    font-size: 2rem;
  }
}
.footer__contact {
  margin: 0 0 20px;
}
.footer small {
  display: inline-block;
  font-size: 1.4rem;
  margin: 20px 0 0;
}
@media screen and (max-width:1000px) {
  .footer small {
    font-size: 1.2rem;
  }
}

.contact {
  background: #efeff5;
  padding: 66px 0 80px;
  text-align: center;
}
@media screen and (max-width:1000px) {
  .contact {
    padding: 48px 0;
  }
}
.contact .contact__title {
  margin: 0 0 48px;
}
@media screen and (max-width:1000px) {
  .contact .contact__title {
    margin: 0 0 40px;
  }
}
@media screen and (max-width:1000px) {
  .contact p {
    text-align: left;
  }
}
.contact .contact__button {
  margin: 32px 0 0;
}

.mainVisual {
  padding: 0;
}
.mainVisual .mainVisual__inner {
  width: 100%;
}
.mainVisual .mainVisual__image img {
  display: block;
  width: 100%;
}

.notice {
  text-align: center;
  background: #f5ff79;
  padding: 36px 0 48px;
}
.notice .notice__head {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: normal;
  margin: 0 0 44px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width:1000px) {
  .notice .notice__head {
    font-size: 2.4rem;
    margin: 0 0 32px;
  }
}
.notice .notice__head span:first-child {
  color: #007cbf;
  background: #ffffff;
  border: 4px solid #007cbf;
  padding: 8px 12px;
  margin: 0 24px 0 0;
}
@media screen and (max-width:1000px) {
  .notice .notice__head span:first-child {
    border: 3px solid #007cbf;
    display: inline-block;
    margin: 0 0 16px 0;
  }
}
.notice .notice__head span:not(:first-child) {
  font-size: 4rem;
}
@media screen and (max-width:1000px) {
  .notice .notice__head span:not(:first-child) {
    font-size: 3.2rem;
  }
}
.notice .notice__button {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 auto 24px;
}
@media screen and (max-width:1000px) {
  .notice .notice__button {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0 auto 16px;
  }
}

.search {
  background: #efeff5;
  text-align: center;
  padding: 48px 0;
  margin: 0 auto 80px;
}
@media screen and (max-width:1000px) {
  .search {
    padding: 32px 0;
    margin: 0 auto 64px;
  }
}
.search .search__button {
  margin: 0 0 24px;
}
@media screen and (max-width:1000px) {
  .search .search__button {
    margin: 0 0 16px;
  }
}

.flow {
  background: rgba(217, 17, 174, 0.0509803922);
}
.flow .section__title span {
  display: block;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 16px;
}
@media screen and (max-width:1000px) {
  .flow .section__title span {
    font-size: 1.6rem;
  }
}
.flow .flow__steps-wrapper {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin: 0 auto 48px;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 0 auto 32px;
  }
}
.flow .flow__steps-wrapper .flow__steps:nth-child(1) {
  grid-column: 1/3;
}
.flow .flow__steps-wrapper .flow__steps:nth-child(1) .flow__steps-lists {
  width: 100%;
}
.flow .flow__steps-wrapper .flow__steps:nth-child(1) .flow__steps-lists li {
  justify-content: center;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-wrapper .flow__steps:nth-child(1) .flow__steps-lists li {
    justify-content: flex-start;
  }
}
.flow .flow__steps-wrapper .flow__steps:nth-child(1) .flow__steps-lists li::after {
  display: block;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-wrapper .flow__steps:nth-child(1) .flow__steps-lists li::after {
    top: calc(100% + 16px);
    transform: none;
    left: 30px;
  }
}
.flow .flow__steps-wrapper .flow__steps:nth-child(2) {
  grid-column: 1;
}
.flow .flow__steps-wrapper .flow__steps:nth-child(3) {
  grid-column: 2;
}
.flow .flow__steps {
  width: min(512px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}
.flow .flow__steps-title {
  font-size: 3.2rem;
  font-weight: 700;
  padding: 12px 0;
  width: 100%;
  margin: 0 0 60px;
  text-align: center;
  color: #d911ae;
  background: #ffffff;
  position: relative;
}
.flow .flow__steps-title::after {
  position: absolute;
  top: 100%;
  content: "";
  width: 100%;
  height: 4px;
  background: #d911ae;
  left: 0;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-title {
    font-size: 2.4rem;
    padding: 8px 0;
    width: 100%;
    margin: 0 0 32px;
  }
}
.flow .flow__steps-lists {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: calc(100% - 64px);
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-lists {
    gap: 48px;
    width: 100%;
  }
}
.flow .flow__steps-lists li {
  display: flex;
  gap: 24px;
  position: relative;
  align-items: center;
  width: 100%;
}
.flow .flow__steps-lists li::after {
  position: absolute;
  content: "";
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #000000;
  top: calc(100% + 24px);
  left: 44px;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-lists li::after {
    top: calc(100% + 16px);
    left: 30px;
  }
}
.flow .flow__steps-lists li:last-child::after {
  display: none;
}
.flow .flow__steps-lists img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-lists img {
    width: 96px;
    height: 96px;
  }
}
.flow .flow__steps-lists h4 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}
@media screen and (max-width:1000px) {
  .flow .flow__steps-lists h4 {
    font-size: 1.8rem;
  }
}

.faq .faq__inner {
  width: min(906px, 100% - 40px);
}
.faq .faq__lists {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq .faq__item {
  border: 2px solid #008753;
  border-radius: 8px;
  overflow: hidden;
}
.faq .faq__item-icon {
  width: 44px;
  height: 44px;
}
.faq .faq__item-head {
  line-height: 1.4;
  font-weight: 600;
  padding: 16px 54px 16px 16px;
  background: #eff5f0;
}
.faq .faq__item-head p {
  align-items: center;
  display: flex;
  gap: 12px;
}
.faq .faq__item-head p::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-image: url("../images/icon/icon-question.svg");
  background-size: cover;
}
.faq .faq__item-content {
  display: flex;
}
.faq .faq__item-content .content__inner {
  padding: 24px 16px;
  display: flex;
  gap: 12px;
}
.faq .faq__item-content .content__inner::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-image: url("../images/icon/icon-answer.svg");
  background-size: cover;
}

.homepage p {
  font-size: 1.6rem;
}
.homepage .u_button {
  margin: 32px auto 0;
}
@media screen and (max-width:1000px) {
  .homepage .u_button {
    margin: 24px auto 0;
  }
}

.searchForm {
  padding: 100px 0 80px;
}
@media screen and (max-width:1000px) {
  .searchForm {
    padding: 48px 0 40px;
  }
}
.searchForm .searchForm__wrapper {
  width: min(906px, 100%);
  margin: 64px auto 0;
}
@media screen and (max-width:1000px) {
  .searchForm .searchForm__wrapper {
    margin: 48px auto 0;
  }
}
.searchForm .section__title {
  margin: 0 0 32px;
}
.searchForm .section__title img {
  display: block;
  width: 205px;
  margin: 0 auto 8px;
}
@media screen and (max-width:1000px) {
  .searchForm .section__title img {
    width: 145px;
    margin: 0 auto 8px;
  }
}
.searchForm .searchForm__select {
  border: 2px solid #000000;
  border-radius: 8px;
  width: 100%;
  outline: none;
  font-size: 1.8rem;
  padding: 10px;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../images/icon/icon-arrow.svg") no-repeat right 0.75em center;
  background-size: 1em;
  color: #777777;
}
.searchForm .searchForm__select.is-focused {
  color: #000000;
}
@media screen and (max-width:1000px) {
  .searchForm .searchForm__select {
    font-size: 2rem;
    padding: 6px 16px;
  }
}
.searchForm .searchForm__text {
  margin: 90px 0 20px;
  text-align: center;
  color: #777777;
}
@media screen and (max-width:1000px) {
  .searchForm .searchForm__text {
    margin: 90px 0 40px;
  }
}
.searchForm .searchForm__result-wrapper {
  display: none;
  margin: 48px auto 0;
}
@media screen and (max-width:1000px) {
  .searchForm .searchForm__result-wrapper {
    margin: 40px auto 0;
  }
}
.searchForm .searchForm__result {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0 0;
}
@media screen and (max-width:1000px) {
  .searchForm .searchForm__result {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 16px 0 0;
  }
}
.searchForm .search__result-item {
  padding: 20px 16px;
  border: 1px solid #cccccc;
  border-radius: 8px;
}
.searchForm .search__result-item .search__result-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 14px;
  line-height: 1.2;
}
@media screen and (max-width:1000px) {
  .searchForm .search__result-item .search__result-title {
    font-size: 1.8rem;
  }
}
.searchForm .search__result-item dl {
  display: flex;
}
.searchForm .search__result-item dt {
  width: 72px;
  flex-shrink: 0;
}
.searchForm .search__result-item .search__result-notice {
  margin: 16px 0 0;
  color: #777777;
  line-height: 1.4;
}

.searchForm.tojitsu .section__title img {
  display: block;
  width: 165px;
  margin: 0 auto 8px;
}
@media screen and (max-width:1000px) {
  .searchForm.tojitsu .section__title img {
    width: 116px;
    margin: 0 auto 8px;
  }
}