@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root {
  --header_body_height: 92px;
}

:root {
  --sp_header_body_height: 84px;
}

:root {
  --sp_header_body_height: 84px;
}

/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 90px;
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul {
  -webkit-padding-start: 22px;
          padding-inline-start: 22px;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@-webkit-keyframes menu-container-appeared {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes menu-container-appeared {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes menu-container-leaved {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes menu-container-leaved {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@-webkit-keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.has-background-color--gray {
  background-color: #F1F1F1;
}

.has-background-color--green {
  background-color: #C0DAAF;
}

.has-font-weight--bold {
  font-weight: 600;
}

.has-colof--yellow {
  color: #F0EF96;
}

.has-font-size--large {
  font-size: 2.25rem;
}

.has-font-family--regulation {
  font-family: Helvetica Neue, Helvetica, Arial, Meiryo, YuGothic, "Yu Gothic M", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
.text-break {
  display: inline-block;
}

/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: white;
  border-bottom: 6px solid #b4b4b4;
}

@media screen and (min-width: 992px) {
  .nav-header {
    border-bottom: 1px solid #b4b4b4;
    border-top: 3px solid #FA0046;
  }
}

.nav-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1140px;
  height: 84px;
  margin: 0 auto;
  padding: 0 0 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (min-width: 992px) {
  .nav-header__container {
    padding: 0 15px;
    height: 92px;
  }
}

.nav-header__logo {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  color: #222222;
  font-weight: 700;
  font-size: 2.0rem;
}

.nav-header__logo-image {
  display: block;
  height: 3rem;
}

.nav-header__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.nav-header__menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-header__link {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #222222;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 16px;
  min-width: 100px;
}

.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #08aeb0;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}

.nav-header__sub-menu {
  display: none;
  list-style: none;
  margin-top: 10px;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-header__sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.nav-header__sub-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  position: relative;
  width: 100%;
  height: 100%;
}

.nav-header__sub-menu-link {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: black;
  text-align: center;
  font-size: 12px;
  padding: 0 16px;
  min-width: 100px;
  max-height: 1em;
}

.nav-header__contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  -webkit-transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
  transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s, -webkit-box-shadow .2s;
  background-color: #08aeb0;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}

.nav-header__contact:hover {
  background-color: #079698;
}

.nav-header__toggle {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 84px;
  height: 84px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
    width: 96px;
    height: 96px;
  }
}

.nav-header__toggle-line {
  display: block;
  width: 20px;
  border-bottom: 2px solid black;
}

.nav-header__toggle-line:nth-child(2) {
  margin: 5px 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
  color: white;
}

.nav-drawer__container {
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-clip-path: polygon(calc(100% - var(--sp-header_body_height)) 0%, 100% 0, 100% 100%, 0 100%, 0 var(--sp-header_body_height), calc(100% - var(--sp-header_body_height)) var(--sp-header_body_height));
          clip-path: polygon(calc(100% - var(--sp-header_body_height)) 0%, 100% 0, 100% 100%, 0 100%, 0 var(--sp-header_body_height), calc(100% - var(--sp-header_body_height)) var(--sp-header_body_height));
}

.nav-drawer[data-open="true"] .nav-drawer__container {
  -webkit-animation-name: menu-container-appeared;
          animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  -webkit-animation-name: menu-container-leaved;
          animation-name: menu-container-leaved;
}

.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.nav-drawer__menu-item {
  background-color: #777;
  margin: 10px;
  position: relative;
}

.nav-drawer__menu-item::before, .nav-drawer__menu-item::after {
  content: '';
  position: absolute;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nav-drawer__menu-item:hover::before, .nav-drawer__menu-item:hover::after {
  right: 10px;
}

.nav-drawer__menu-item::before {
  top: 24px;
  right: 20px;
  height: 2px;
  width: 25px;
}

.nav-drawer__menu-item::after {
  top: 20px;
  right: 20px;
  height: 2px;
  width: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-drawer__link {
  position: relative;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 10px 10px;
  text-decoration: none;
}

.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}

.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}

.nav-drawer__menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-drawer__menu-body {
  height: 100vh;
  background-color: #000;
}

.nav-drawer__button-close {
  position: relative;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 96px;
  height: 84px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: black;
}

.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
}

.nav-drawer__button-close::after {
  position: fixed;
  display: inline-block;
  color: white;
  padding: 10px;
  content: "閉じる";
  width: 100%;
  border: 10px solid black;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  z-index: 1004;
  background-color: #555;
}

.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  background: white;
}

.nav-drawer__button-close-line:nth-child(1) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}

.nav-drawer__button-close-line:nth-child(2) {
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
}

.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  -webkit-animation-duration: var(--nav-drawer-duration);
          animation-duration: var(--nav-drawer-duration);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-appeared;
          animation-name: menu-overlay-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__overlay {
  -webkit-animation-name: menu-overlay-leaved;
          animation-name: menu-overlay-leaved;
}

.nav-pagetop {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #08aeb0;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}

.nav-pagetop:before {
  display: block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop:after {
  content: 'PAGETOP';
  display: block;
  padding: 4px 0px;
}

.nav-pagetop:hover {
  background: #079698;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-pagetop:hover:before {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.page-heading {
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .page-heading {
    margin-bottom: 40px;
  }
}

.page-heading__content {
  margin: 0;
  padding: 0;
}

.page-heading__content--left {
  text-align: left;
}

.page-heading__content--center {
  text-align: center;
}

.page-heading__content--right {
  text-align: right;
}

.page-heading__text-main {
  font-size: 2.3rem;
}

@media screen and (min-width: 992px) {
  .page-heading__text-main {
    font-size: 4.0rem;
  }
}

.page-heading__text-sub {
  font-weight: 400;
  font-size: 1.6rem;
  color: #222222;
  padding-top: 2.4rem;
}

.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.footer {
  background: white;
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", ヒラギノ角ゴシック, "Hiragino Sans", sans-serif;
  height: 110px;
}

@media screen and (min-width: 992px) {
  .footer {
    max-height: 96px;
  }
}

.footer__container {
  max-width: 1140px;
  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;
  padding-left: 20px;
  padding-right: 20px;
  padding-left: 10px;
  padding-right: 10px;
  gap: 10px;
}

@media screen and (min-width: 992px) {
  .footer__container {
    gap: initial;
  }
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 5px;
}

@media screen and (min-width: 992px) {
  .footer__menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 0;
    margin-top: initial;
  }
}

.footer__menu--pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .footer__menu--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__menu--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 992px) {
  .footer__menu--sp {
    display: none;
  }
}

.footer__menu-item {
  line-height: 1em;
  max-height: 1em;
  display: inline-block;
  position: relative;
  padding: 0 20px;
}

.footer__menu-item:first-child {
  margin-bottom: 12px;
  padding: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .footer__menu-item:first-child {
    margin-bottom: initial;
    padding-right: 20px;
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    text-align: initial;
  }
}

.footer__menu-item:nth-child(2) {
  padding-left: 0;
  padding-right: 10px;
  max-width: 50%;
}

@media screen and (min-width: 992px) {
  .footer__menu-item:nth-child(2) {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.footer__menu-item:last-child {
  padding-right: 0;
  padding-left: 10px;
  max-width: 50%;
}

@media screen and (min-width: 992px) {
  .footer__menu-item:last-child {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 992px) {
  .footer__menu-item:not(:first-child)::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1em;
    display: inline-block;
    border-right: 1px solid #6e6e6e;
    content: "";
  }
}

.footer__menu-item:not(:only-child):last-child::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1em;
  display: inline-block;
  border-right: 1px solid #6e6e6e;
  content: "";
}

.footer__menu-item:only-child {
  padding: 0;
}

.footer__menu-item-link {
  color: #333;
  line-height: 1em;
  max-height: 1em;
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 14px;
  letter-spacing: 0;
}

@media screen and (min-width: 992px) {
  .footer__menu-item-link {
    font-size: 12px;
    letter-spacing: initial;
  }
}

.footer__menu-item-link:hover, .footer__menu-item-link:focus {
  text-decoration: underline;
}

.footer__border {
  display: inline-block;
  background-color: #FA0046;
  width: 100vw;
  height: 4px;
  margin: 0 calc(50% - 50vw);
}

@media screen and (min-width: 992px) {
  .footer__border {
    height: 3px;
  }
}

.footer__copy {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: -1px;
}

@media screen and (min-width: 992px) {
  .footer__copy {
    font-size: initial;
    text-align: right;
    margin-top: initial;
    margin-bottom: 12px;
  }
}

.image-and-text {
  counter-reset: list-order 0;
}

.image-and-text__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.image-and-text__heading {
  margin-bottom: 6.4rem;
}

.image-and-text__list {
  margin: 0 auto;
}

.image-and-text__list-item {
  margin-bottom: 2rem;
  counter-increment: list-order 1;
}

@media screen and (min-width: 992px) {
  .image-and-text__list-item {
    margin-bottom: 4.8rem;
  }
}

.image-and-text__guide {
  margin-top: 6.4rem;
}

.image-and-text__list-order::before {
  content: counter(list-order) ". ";
  font-size: 4rem;
  font-style: italic;
}

.image-and-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.image-and-text-item__thumbnail {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (min-width: 992px) {
  .image-and-text-item__thumbnail {
    width: 30rem;
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.image-and-text-item__thumbnail-image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: .8rem;
}

@media screen and (min-width: 992px) {
  .image-and-text-item__thumbnail-image {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.image-and-text-item__content {
  padding-top: 1.6rem;
}

@media screen and (min-width: 992px) {
  .image-and-text-item__content {
    width: calc(100% - 30rem);
    padding: 0 3.2rem;
  }
}

.image-and-text-item__content-title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .image-and-text-item__content-title {
    font-size: 2.4rem;
    text-align: left;
  }
}

.image-and-text-item__content-text:last-child {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}

.section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section__content > :where(:not(h1, h2, h3, h4, h5, h6)) {
  margin-top: 1.4rem;
}

.section__content > :where(h1, h2, h3, h4, h5, h6) {
  margin-top: 2.2rem;
  margin-bottom: 2rem;
}

.section__content > :first-child {
  margin-top: initial;
}

.section__btn:not(:first-child) {
  margin-top: 30px;
}

@media screen and (min-width: 992px) {
  .section__btn:not(:first-child) {
    margin-top: 40px;
  }
}

.section::before {
  display: block;
  width: 100%;
  height: 100px;
  margin-top: -100px;
}

@media screen and (min-width: 992px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section--nallow {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .section--nallow {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.section__container {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 992px) {
  .section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.logo__mark {
  max-height: 69px;
  height: 69px;
}

.logo__name {
  margin-left: 16px;
  margin-bottom: 25px;
  max-height: 20px;
  height: 20px;
}

.logo__img {
  max-height: 40px;
  height: 40px;
}

.logo--pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .logo--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.logo--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 992px) {
  .logo--sp {
    display: none;
  }
}

.btn {
  text-align: center;
  letter-spacing: 1px;
}

.btn__link {
  position: relative;
  display: inline-block;
  color: white;
  background-color: #4C7FB2;
  padding: 6px 60px 10px 40px;
  border: 2px solid white;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn__link:hover {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.btn__link::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translate(-5px, -50%);
          transform: translate(-5px, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn__link::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(-5px, -50%);
          transform: translate(-5px, -50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn__link:hover::after, .btn__link:hover::before {
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
